[arch-commits] Commit in nvidia-390xx-settings/repos (3 files)

2018-06-08 Thread Sven-Hendrik Haase via arch-commits
Date: Saturday, June 9, 2018 @ 05:58:05
  Author: svenstaro
Revision: 326506

archrelease: copy trunk to extra-x86_64

Added:
  nvidia-390xx-settings/repos/extra-x86_64/
  nvidia-390xx-settings/repos/extra-x86_64/PKGBUILD
(from rev 326505, nvidia-390xx-settings/trunk/PKGBUILD)
  nvidia-390xx-settings/repos/extra-x86_64/libxnvctrl_so.patch
(from rev 326505, nvidia-390xx-settings/trunk/libxnvctrl_so.patch)

-+
 PKGBUILD|   64 +++
 libxnvctrl_so.patch |   67 ++
 2 files changed, 131 insertions(+)

Copied: nvidia-390xx-settings/repos/extra-x86_64/PKGBUILD (from rev 326505, 
nvidia-390xx-settings/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2018-06-09 05:58:05 UTC (rev 326506)
@@ -0,0 +1,64 @@
+# Maintainer: Sven-Hendrik Haase 
+
+pkgbase=nvidia-390xx-settings
+pkgname=('nvidia-390xx-settings' 'libxnvctrl-390xx')
+pkgver=390.67
+pkgrel=1
+pkgdesc='Tool for configuring the NVIDIA graphics driver, 390xx legacy branch'
+url='https://github.com/NVIDIA/nvidia-settings'
+arch=('x86_64')
+license=('GPL2')
+makedepends=('git' 'inetutils' 'gtk2' 'jansson' 'gtk3' 'libxv' 'libvdpau' 
'nvidia-390xx-utils' 'libxext')
+options=('staticlibs')
+source=(nvidia-settings-${pkgver}.tar.gz::https://github.com/NVIDIA/nvidia-settings/archive/${pkgver}.tar.gz
+libxnvctrl_so.patch)
+sha512sums=('fc2e34d6b4770a69fe46a756d93af6864ec306947ee1e6136efb0b4dc41dabdfd8a5c94258099935f5535f10b27a131c33efdc01f9f0614dcaa6b37927389b36'
+
'f69f5dc84fe624579a3c9ce877f4ae4e34c2184877576afbea07b8abdd7ff01e470517f2b77cd11a904518cbcb83fb388ca1d0006f0ef2854723920c9cf8')
+
+prepare() {
+  export PREFIX=/usr
+  export NV_USE_BUNDLED_LIBJANSSON=0
+  cd nvidia-settings-${pkgver}
+  patch -p1 < "${srcdir}/libxnvctrl_so.patch"
+}
+
+build() {
+  cd nvidia-settings-${pkgver}
+  make
+  make -C src/libXNVCtrl
+}
+
+package_nvidia-390xx-settings() {
+  depends=('jansson' 'gtk3' 'libxv' 'libvdpau' 'nvidia-390xx-utils' 
'libxnvctrl')
+  conflicts=('nvidia-settings')
+  provides=('nvidia-settings')
+
+  cd nvidia-settings-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  install -D -m644 doc/nvidia-settings.desktop 
"${pkgdir}/usr/share/applications/nvidia-settings.desktop"
+  install -D -m644 doc/nvidia-settings.png 
"${pkgdir}/usr/share/pixmaps/nvidia-settings.png"
+  sed -e 's:__UTILS_PATH__:/usr/bin:' -e 
's:__PIXMAP_PATH__:/usr/share/pixmaps:' -i 
"${pkgdir}/usr/share/applications/nvidia-settings.desktop"
+
+  rm "$pkgdir/usr/lib/libnvidia-gtk2.so.$pkgver"
+}
+
+package_libxnvctrl-390xx() {
+  depends=('libxext')
+  conflicts=('libxnvctrl')
+  provides=('libxnvctrl')
+  pkgdesc='NVIDIA NV-CONTROL X extension, 390xx legacy branch'
+
+  cd nvidia-settings-${pkgver}
+  install -Dm 644 doc/{NV-CONTROL-API.txt,FRAMELOCK.txt} -t 
"${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm 644 samples/{Makefile,README,*.c,*.h,*.mk} -t 
"${pkgdir}/usr/share/doc/${pkgname}/samples"
+
+  cd src/libXNVCtrl
+  install -Dm 644 *.h -t "${pkgdir}/usr/include/NVCtrl"
+  install -Dm 644 libXNVCtrl.a -t "${pkgdir}/usr/lib"
+  install -Dm 755 libXNVCtrl.so.0.0.0 -t "${pkgdir}/usr/lib"
+  ln -s libXNVCtrl.so.0.0.0 "${pkgdir}/usr/lib/libXNVCtrl.so.0"
+  ln -s libXNVCtrl.so.0 "${pkgdir}/usr/lib/libXNVCtrl.so"
+}
+
+# vim: ts=2 sw=2 et:

Copied: nvidia-390xx-settings/repos/extra-x86_64/libxnvctrl_so.patch (from rev 
326505, nvidia-390xx-settings/trunk/libxnvctrl_so.patch)
===
--- extra-x86_64/libxnvctrl_so.patch(rev 0)
+++ extra-x86_64/libxnvctrl_so.patch2018-06-09 05:58:05 UTC (rev 326506)
@@ -0,0 +1,67 @@
+--- a/src/Makefile
 b/src/Makefile
+@@ -106,6 +106,8 @@
+ XNVCTRL_DIR ?= libXNVCtrl
+ XNVCTRL_MAKEFILE?= Makefile
+ XNVCTRL_ARCHIVE ?= $(XNVCTRL_DIR)/libXNVCtrl.a
++XNVCTRL_SHARED  ?= $(XNVCTRL_DIR)/libXNVCtrl.so.0
++XNVCTRL_LIB ?= $(XNVCTRL_SHARED)
+ XCONFIG_PARSER_DIR  ?= XF86Config-parser
+ COMMON_UTILS_DIR?= common-utils
+ COMMON_UNIX_DIR ?= common-unix
+@@ -280,15 +282,18 @@
+   $(MKDIR) $(BINDIR)
+   $(INSTALL) $(INSTALL_BIN_ARGS) $< $(BINDIR)/$(notdir $<)
+ 
++$(XNVCTRL_ARCHIVE) $(XNVCTRL_SHARED):
++  $(MAKE) -C $(XNVCTRL_DIR)
++
+ $(eval $(call DEBUG_INFO_RULES, $(NVIDIA_SETTINGS)))
+-$(NVIDIA_SETTINGS).unstripped: $(OBJS) $(XNVCTRL_ARCHIVE)
++$(NVIDIA_SETTINGS).unstripped: $(OBJS) $(XNVCTRL_LIB)
+   $(call quiet_cmd,LINK) $(CFLAGS) $(LDFLAGS) $(BIN_LDFLAGS) \
+-  -rdynamic -o $@ $(OBJS) $(XNVCTRL_ARCHIVE) $(LIBS)
++  -rdynamic -o $@ $(OBJS) $(XNVCTRL_LIB) $(LIBS)
+ 
+ $(eval $(call DEBUG_INFO_RULES, $(GTK2LIB)))
+ $(GTK2LIB).unstripped: $(GTK2_OBJS) $(XCP_OBJS) $(IMAGE_OBJS) $(VERSION_MK)
+   

[arch-commits] Commit in (5 files)

2018-06-08 Thread Sven-Hendrik Haase via arch-commits
Date: Saturday, June 9, 2018 @ 05:56:30
  Author: svenstaro
Revision: 326505

Add nvidia-390xx-settings

Added:
  nvidia-390xx-settings/
  nvidia-390xx-settings/repos/
  nvidia-390xx-settings/trunk/
  nvidia-390xx-settings/trunk/PKGBUILD
  nvidia-390xx-settings/trunk/libxnvctrl_so.patch

-+
 PKGBUILD|   64 +++
 libxnvctrl_so.patch |   67 ++
 2 files changed, 131 insertions(+)

Added: nvidia-390xx-settings/trunk/PKGBUILD
===
--- nvidia-390xx-settings/trunk/PKGBUILD(rev 0)
+++ nvidia-390xx-settings/trunk/PKGBUILD2018-06-09 05:56:30 UTC (rev 
326505)
@@ -0,0 +1,64 @@
+# Maintainer: Sven-Hendrik Haase 
+
+pkgbase=nvidia-390xx-settings
+pkgname=('nvidia-390xx-settings' 'libxnvctrl-390xx')
+pkgver=390.67
+pkgrel=1
+pkgdesc='Tool for configuring the NVIDIA graphics driver, 390xx legacy branch'
+url='https://github.com/NVIDIA/nvidia-settings'
+arch=('x86_64')
+license=('GPL2')
+makedepends=('git' 'inetutils' 'gtk2' 'jansson' 'gtk3' 'libxv' 'libvdpau' 
'nvidia-390xx-utils' 'libxext')
+options=('staticlibs')
+source=(nvidia-settings-${pkgver}.tar.gz::https://github.com/NVIDIA/nvidia-settings/archive/${pkgver}.tar.gz
+libxnvctrl_so.patch)
+sha512sums=('fc2e34d6b4770a69fe46a756d93af6864ec306947ee1e6136efb0b4dc41dabdfd8a5c94258099935f5535f10b27a131c33efdc01f9f0614dcaa6b37927389b36'
+
'f69f5dc84fe624579a3c9ce877f4ae4e34c2184877576afbea07b8abdd7ff01e470517f2b77cd11a904518cbcb83fb388ca1d0006f0ef2854723920c9cf8')
+
+prepare() {
+  export PREFIX=/usr
+  export NV_USE_BUNDLED_LIBJANSSON=0
+  cd nvidia-settings-${pkgver}
+  patch -p1 < "${srcdir}/libxnvctrl_so.patch"
+}
+
+build() {
+  cd nvidia-settings-${pkgver}
+  make
+  make -C src/libXNVCtrl
+}
+
+package_nvidia-390xx-settings() {
+  depends=('jansson' 'gtk3' 'libxv' 'libvdpau' 'nvidia-390xx-utils' 
'libxnvctrl')
+  conflicts=('nvidia-settings')
+  provides=('nvidia-settings')
+
+  cd nvidia-settings-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  install -D -m644 doc/nvidia-settings.desktop 
"${pkgdir}/usr/share/applications/nvidia-settings.desktop"
+  install -D -m644 doc/nvidia-settings.png 
"${pkgdir}/usr/share/pixmaps/nvidia-settings.png"
+  sed -e 's:__UTILS_PATH__:/usr/bin:' -e 
's:__PIXMAP_PATH__:/usr/share/pixmaps:' -i 
"${pkgdir}/usr/share/applications/nvidia-settings.desktop"
+
+  rm "$pkgdir/usr/lib/libnvidia-gtk2.so.$pkgver"
+}
+
+package_libxnvctrl-390xx() {
+  depends=('libxext')
+  conflicts=('libxnvctrl')
+  provides=('libxnvctrl')
+  pkgdesc='NVIDIA NV-CONTROL X extension, 390xx legacy branch'
+
+  cd nvidia-settings-${pkgver}
+  install -Dm 644 doc/{NV-CONTROL-API.txt,FRAMELOCK.txt} -t 
"${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm 644 samples/{Makefile,README,*.c,*.h,*.mk} -t 
"${pkgdir}/usr/share/doc/${pkgname}/samples"
+
+  cd src/libXNVCtrl
+  install -Dm 644 *.h -t "${pkgdir}/usr/include/NVCtrl"
+  install -Dm 644 libXNVCtrl.a -t "${pkgdir}/usr/lib"
+  install -Dm 755 libXNVCtrl.so.0.0.0 -t "${pkgdir}/usr/lib"
+  ln -s libXNVCtrl.so.0.0.0 "${pkgdir}/usr/lib/libXNVCtrl.so.0"
+  ln -s libXNVCtrl.so.0 "${pkgdir}/usr/lib/libXNVCtrl.so"
+}
+
+# vim: ts=2 sw=2 et:

Added: nvidia-390xx-settings/trunk/libxnvctrl_so.patch
===
--- nvidia-390xx-settings/trunk/libxnvctrl_so.patch 
(rev 0)
+++ nvidia-390xx-settings/trunk/libxnvctrl_so.patch 2018-06-09 05:56:30 UTC 
(rev 326505)
@@ -0,0 +1,67 @@
+--- a/src/Makefile
 b/src/Makefile
+@@ -106,6 +106,8 @@
+ XNVCTRL_DIR ?= libXNVCtrl
+ XNVCTRL_MAKEFILE?= Makefile
+ XNVCTRL_ARCHIVE ?= $(XNVCTRL_DIR)/libXNVCtrl.a
++XNVCTRL_SHARED  ?= $(XNVCTRL_DIR)/libXNVCtrl.so.0
++XNVCTRL_LIB ?= $(XNVCTRL_SHARED)
+ XCONFIG_PARSER_DIR  ?= XF86Config-parser
+ COMMON_UTILS_DIR?= common-utils
+ COMMON_UNIX_DIR ?= common-unix
+@@ -280,15 +282,18 @@
+   $(MKDIR) $(BINDIR)
+   $(INSTALL) $(INSTALL_BIN_ARGS) $< $(BINDIR)/$(notdir $<)
+ 
++$(XNVCTRL_ARCHIVE) $(XNVCTRL_SHARED):
++  $(MAKE) -C $(XNVCTRL_DIR)
++
+ $(eval $(call DEBUG_INFO_RULES, $(NVIDIA_SETTINGS)))
+-$(NVIDIA_SETTINGS).unstripped: $(OBJS) $(XNVCTRL_ARCHIVE)
++$(NVIDIA_SETTINGS).unstripped: $(OBJS) $(XNVCTRL_LIB)
+   $(call quiet_cmd,LINK) $(CFLAGS) $(LDFLAGS) $(BIN_LDFLAGS) \
+-  -rdynamic -o $@ $(OBJS) $(XNVCTRL_ARCHIVE) $(LIBS)
++  -rdynamic -o $@ $(OBJS) $(XNVCTRL_LIB) $(LIBS)
+ 
+ $(eval $(call DEBUG_INFO_RULES, $(GTK2LIB)))
+ $(GTK2LIB).unstripped: $(GTK2_OBJS) $(XCP_OBJS) $(IMAGE_OBJS) $(VERSION_MK)
+   $(call quiet_cmd,LINK) -shared $(CFLAGS) $(LDFLAGS) $(BIN_LDFLAGS) \
+-  $(XNVCTRL_ARCHIVE) $(LIBS) $(GTK2_LIBS) \
++  $(XNVCTRL_LIB) $(LIBS) $(GTK2_LIBS) \
+   

[arch-commits] Commit in gitlab/repos/community-x86_64 (26 files)

2018-06-08 Thread Sven-Hendrik Haase via arch-commits
Date: Saturday, June 9, 2018 @ 04:37:45
  Author: svenstaro
Revision: 342105

archrelease: copy trunk to community-x86_64

Added:
  gitlab/repos/community-x86_64/PKGBUILD
(from rev 342104, gitlab/trunk/PKGBUILD)
  gitlab/repos/community-x86_64/a951b96be2862ce660dc715a364f574c2f5f72e1.patch
(from rev 342104, 
gitlab/trunk/a951b96be2862ce660dc715a364f574c2f5f72e1.patch)
  gitlab/repos/community-x86_64/b41b2de702c26bfbbe375c70c48293a75546df42.patch
(from rev 342104, 
gitlab/trunk/b41b2de702c26bfbbe375c70c48293a75546df42.patch)
  gitlab/repos/community-x86_64/gitlab-backup.service
(from rev 342104, gitlab/trunk/gitlab-backup.service)
  gitlab/repos/community-x86_64/gitlab-backup.timer
(from rev 342104, gitlab/trunk/gitlab-backup.timer)
  gitlab/repos/community-x86_64/gitlab-mailroom.service
(from rev 342104, gitlab/trunk/gitlab-mailroom.service)
  gitlab/repos/community-x86_64/gitlab-sidekiq.service
(from rev 342104, gitlab/trunk/gitlab-sidekiq.service)
  gitlab/repos/community-x86_64/gitlab-unicorn.service
(from rev 342104, gitlab/trunk/gitlab-unicorn.service)
  gitlab/repos/community-x86_64/gitlab.install
(from rev 342104, gitlab/trunk/gitlab.install)
  gitlab/repos/community-x86_64/gitlab.logrotate
(from rev 342104, gitlab/trunk/gitlab.logrotate)
  gitlab/repos/community-x86_64/gitlab.target
(from rev 342104, gitlab/trunk/gitlab.target)
  gitlab/repos/community-x86_64/gitlab.tmpfiles.d
(from rev 342104, gitlab/trunk/gitlab.tmpfiles.d)
  gitlab/repos/community-x86_64/lighttpd.conf.example
(from rev 342104, gitlab/trunk/lighttpd.conf.example)
Deleted:
  gitlab/repos/community-x86_64/PKGBUILD
  gitlab/repos/community-x86_64/a951b96be2862ce660dc715a364f574c2f5f72e1.patch
  gitlab/repos/community-x86_64/b41b2de702c26bfbbe375c70c48293a75546df42.patch
  gitlab/repos/community-x86_64/gitlab-backup.service
  gitlab/repos/community-x86_64/gitlab-backup.timer
  gitlab/repos/community-x86_64/gitlab-mailroom.service
  gitlab/repos/community-x86_64/gitlab-sidekiq.service
  gitlab/repos/community-x86_64/gitlab-unicorn.service
  gitlab/repos/community-x86_64/gitlab.install
  gitlab/repos/community-x86_64/gitlab.logrotate
  gitlab/repos/community-x86_64/gitlab.target
  gitlab/repos/community-x86_64/gitlab.tmpfiles.d
  gitlab/repos/community-x86_64/lighttpd.conf.example

+
 PKGBUILD   |  434 +++
 a951b96be2862ce660dc715a364f574c2f5f72e1.patch |   56 +-
 b41b2de702c26bfbbe375c70c48293a75546df42.patch |  136 +++
 gitlab-backup.service  |   40 +-
 gitlab-backup.timer|   20 -
 gitlab-mailroom.service|   44 +-
 gitlab-sidekiq.service |   62 +--
 gitlab-unicorn.service |   68 +--
 gitlab.install |   40 +-
 gitlab.logrotate   |   22 -
 gitlab.target  |   14 
 gitlab.tmpfiles.d  |2 
 lighttpd.conf.example  |   70 +--
 13 files changed, 503 insertions(+), 505 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-06-09 04:37:33 UTC (rev 342104)
+++ PKGBUILD2018-06-09 04:37:45 UTC (rev 342105)
@@ -1,218 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Pavol (Lopo) Hluchy 
-# Contributor: Jonas Heinrich 
-# Contributor: Massimiliano Torromeo 
-# Contributor: Tobias Hunger 
-# Contributor: Stefan Tatschner 
-# Contributor: Caleb Maclennan 
-
-pkgname=gitlab
-pkgver=10.8.3
-pkgrel=3
-pkgdesc="Project management and code hosting application"
-arch=('x86_64')
-url="https://gitlab.com/gitlab-org/gitlab-ce;
-license=('MIT')
-options=(!buildflags)
-depends=('ruby2.3' 'git' 'ruby2.3-bundler' 'gitlab-workhorse' 'gitlab-gitaly' 
'openssh' 'redis' 'libxslt' 'icu' 're2' 'http-parser')
-makedepends=('cmake' 'postgresql' 'mariadb' 'yarn' 'go' 'nodejs')
-optdepends=('postgresql: database backend'
-'mysql: database backend'
-'python2-docutils: reStructuredText markup language support'
-'smtp-server: mail server in order to receive mail notifications')
-backup=("etc/webapps/${pkgname}/application.rb"
-"etc/webapps/${pkgname}/gitlab.yml"
-"etc/webapps/${pkgname}/resque.yml"
-"etc/webapps/${pkgname}/unicorn.rb"
-"etc/logrotate.d/${pkgname}")
-source=("$pkgname-$pkgver.tar.gz::https://gitlab.com/api/v4/projects/gitlab-org%2Fgitlab-ce/repository/archive?sha=v${pkgver};
-gitlab-unicorn.service
-gitlab-sidekiq.service
-gitlab-backup.service
-gitlab-mailroom.service
-gitlab-backup.timer
-gitlab.target
-gitlab.tmpfiles.d
-gitlab.logrotate
-b41b2de702c26bfbbe375c70c48293a75546df42.patch)
-install='gitlab.install'

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

2018-06-08 Thread Sven-Hendrik Haase via arch-commits
Date: Saturday, June 9, 2018 @ 04:37:33
  Author: svenstaro
Revision: 342104

upgpkg: gitlab 10.8.4-1

Modified:
  gitlab/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-06-09 04:14:32 UTC (rev 342103)
+++ PKGBUILD2018-06-09 04:37:33 UTC (rev 342104)
@@ -7,8 +7,8 @@
 # Contributor: Caleb Maclennan 
 
 pkgname=gitlab
-pkgver=10.8.3
-pkgrel=3
+pkgver=10.8.4
+pkgrel=1
 pkgdesc="Project management and code hosting application"
 arch=('x86_64')
 url="https://gitlab.com/gitlab-org/gitlab-ce;
@@ -36,7 +36,7 @@
 gitlab.logrotate
 b41b2de702c26bfbbe375c70c48293a75546df42.patch)
 install='gitlab.install'
-sha512sums=('59e0420087fe5307d9816d755a87c14fab8cf8b03c1e738567a804820fa320ca4c9a03ebc262273fb0a788cbc9e2d6d4f93989bc5185c1614a00cce63eaffb50'
+sha512sums=('86d6498f2d732276ba33007eef689f0e914526554b2fe519550bed8503c2ad1a0b5ff0c5826d2bba2b82bdc8fd2ecd535234895aa73332c85c863602ec2087ac'
 
'b1bc7c1f3d47758e4745ae3689e61989c6d1fd8490fa60d75de60d3960025f2888da5c50c4a70e1656d75e4d53bcece518e87f743855eed150a61cb11d40b7d2'
 
'ea5ae64214a82b522a09c20be2967ae2ff6fbfd7683587909b748dab4647f99b3128c0e16aba375ecb191e47e1b9045587a84322e216e5cda940904c4fa6271c'
 
'69e6f43008389fb54bba6cea61adb0dbf5b75c5796f5cca327326f20f329365c003847bbd6d53b113a0afb1a0d3a0b101a92476739daf85f65c670a1d4466f9c'
@@ -54,8 +54,6 @@
 _srcdir="gitlab-ce-"
 
 prepare() {
-  cd "${srcdir}"
-
   # Get first 7 characters from sha1 which has 40 characters in total
   local revision=$(ls -d ${_srcdir}* | rev | cut -c 34-40 | rev)
 


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

2018-06-08 Thread Felix Yan via arch-commits
Date: Saturday, June 9, 2018 @ 04:14:32
  Author: felixonmars
Revision: 342103

archrelease: copy trunk to community-x86_64

Added:
  zerotier-one/repos/community-x86_64/PKGBUILD
(from rev 342102, zerotier-one/trunk/PKGBUILD)
Deleted:
  zerotier-one/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-06-09 04:14:17 UTC (rev 342102)
+++ PKGBUILD2018-06-09 04:14:32 UTC (rev 342103)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Harry Jeffery 
-# Contributor: Alex Jordan 
-
-pkgname=zerotier-one
-pkgver=1.2.8
-pkgrel=1
-pkgdesc="Creates virtual Ethernet networks of almost unlimited size."
-arch=('x86_64')
-url="https://www.zerotier.com/index.html;
-license=('GPL3')
-depends=('gcc-libs' 'libnatpmp' 'miniupnpc')
-makedepends=('ruby-ronn')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/zerotier/ZeroTierOne/archive/$pkgver.tar.gz;)
-sha512sums=('a97a8ff0e5050294fd8d56e74b5dd320b77822242ed4d43919c62a361ccbe1837417cba07d4114c91e277816f60bf47d226f37f816278bfd96505b752ef5d5ff')
-
-prepare() {
-  cd ZeroTierOne-$pkgver
-  sed -i 's/sbin/bin/' make-linux.mk debian/zerotier-one.service
-}
-
-build() {
-  cd ZeroTierOne-$pkgver
-  make
-}
-
-check() {
-  cd ZeroTierOne-$pkgver
-  make selftest
-  ./zerotier-selftest
-}
-
-package() {
-  cd ZeroTierOne-$pkgver
-  make DESTDIR="$pkgdir" install
-  install -Dm644 debian/zerotier-one.service 
"$pkgdir"/usr/lib/systemd/system/zerotier-one.service
-}

Copied: zerotier-one/repos/community-x86_64/PKGBUILD (from rev 342102, 
zerotier-one/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-06-09 04:14:32 UTC (rev 342103)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Harry Jeffery 
+# Contributor: Alex Jordan 
+
+pkgname=zerotier-one
+pkgver=1.2.10
+pkgrel=1
+pkgdesc="Creates virtual Ethernet networks of almost unlimited size."
+arch=('x86_64')
+url="https://www.zerotier.com/index.html;
+license=('GPL3')
+depends=('gcc-libs' 'libnatpmp' 'miniupnpc')
+makedepends=('ruby-ronn')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/zerotier/ZeroTierOne/archive/$pkgver.tar.gz;)
+sha512sums=('75d967524b67176295c647d7ea04edd5892bd94e19bbe924b5acf439da35f3bc67145c1265294538fb9dfb90ddd9affe258d46fa6aa69704cbd515bc42237058')
+
+prepare() {
+  cd ZeroTierOne-$pkgver
+  sed -i 's/sbin/bin/' make-linux.mk debian/zerotier-one.service
+}
+
+build() {
+  cd ZeroTierOne-$pkgver
+  make
+}
+
+check() {
+  cd ZeroTierOne-$pkgver
+  make selftest
+  ./zerotier-selftest
+}
+
+package() {
+  cd ZeroTierOne-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -Dm644 debian/zerotier-one.service 
"$pkgdir"/usr/lib/systemd/system/zerotier-one.service
+}


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

2018-06-08 Thread Felix Yan via arch-commits
Date: Saturday, June 9, 2018 @ 04:14:17
  Author: felixonmars
Revision: 342102

upgpkg: zerotier-one 1.2.10-1

Modified:
  zerotier-one/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-06-09 04:01:24 UTC (rev 342101)
+++ PKGBUILD2018-06-09 04:14:17 UTC (rev 342102)
@@ -4,7 +4,7 @@
 # Contributor: Alex Jordan 
 
 pkgname=zerotier-one
-pkgver=1.2.8
+pkgver=1.2.10
 pkgrel=1
 pkgdesc="Creates virtual Ethernet networks of almost unlimited size."
 arch=('x86_64')
@@ -13,7 +13,7 @@
 depends=('gcc-libs' 'libnatpmp' 'miniupnpc')
 makedepends=('ruby-ronn')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/zerotier/ZeroTierOne/archive/$pkgver.tar.gz;)
-sha512sums=('a97a8ff0e5050294fd8d56e74b5dd320b77822242ed4d43919c62a361ccbe1837417cba07d4114c91e277816f60bf47d226f37f816278bfd96505b752ef5d5ff')
+sha512sums=('75d967524b67176295c647d7ea04edd5892bd94e19bbe924b5acf439da35f3bc67145c1265294538fb9dfb90ddd9affe258d46fa6aa69704cbd515bc42237058')
 
 prepare() {
   cd ZeroTierOne-$pkgver


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

2018-06-08 Thread Felix Yan via arch-commits
Date: Saturday, June 9, 2018 @ 04:01:24
  Author: felixonmars
Revision: 342101

archrelease: copy trunk to community-x86_64

Added:
  zerotier-one/repos/community-x86_64/PKGBUILD
(from rev 342100, zerotier-one/trunk/PKGBUILD)
Deleted:
  zerotier-one/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-06-09 04:01:09 UTC (rev 342100)
+++ PKGBUILD2018-06-09 04:01:24 UTC (rev 342101)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Harry Jeffery 
-# Contributor: Alex Jordan 
-
-pkgname=zerotier-one
-pkgver=1.2.4
-pkgrel=4
-pkgdesc="Creates virtual Ethernet networks of almost unlimited size."
-arch=('x86_64')
-url="https://www.zerotier.com/index.html;
-license=('GPL3')
-depends=('gcc-libs' 'http-parser' 'libnatpmp' 'miniupnpc' 'libminiupnpc.so')
-makedepends=('ruby-ronn')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/zerotier/ZeroTierOne/archive/$pkgver.tar.gz;)
-sha512sums=('82adb110208d24ae2745e3839810afcac87955de050ebfe0517a7dc2a875881dafd40c1b16a041742d8c4d0f6513abcc71d6ea3e06c2fb89b47be2630a500363')
-
-prepare() {
-  cd ZeroTierOne-$pkgver
-  sed -i 's|"2.."|"2..*"|' make-linux.mk
-  sed -i 's/sbin/bin/' make-linux.mk debian/zerotier-one.service
-}
-
-build() {
-  cd ZeroTierOne-$pkgver
-  make
-}
-
-check() {
-  cd ZeroTierOne-$pkgver
-  make selftest
-  ./zerotier-selftest
-}
-
-package() {
-  cd ZeroTierOne-$pkgver
-  make DESTDIR="$pkgdir" install
-  install -Dm644 debian/zerotier-one.service 
"$pkgdir"/usr/lib/systemd/system/zerotier-one.service
-}

Copied: zerotier-one/repos/community-x86_64/PKGBUILD (from rev 342100, 
zerotier-one/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-06-09 04:01:24 UTC (rev 342101)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Harry Jeffery 
+# Contributor: Alex Jordan 
+
+pkgname=zerotier-one
+pkgver=1.2.8
+pkgrel=1
+pkgdesc="Creates virtual Ethernet networks of almost unlimited size."
+arch=('x86_64')
+url="https://www.zerotier.com/index.html;
+license=('GPL3')
+depends=('gcc-libs' 'libnatpmp' 'miniupnpc')
+makedepends=('ruby-ronn')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/zerotier/ZeroTierOne/archive/$pkgver.tar.gz;)
+sha512sums=('a97a8ff0e5050294fd8d56e74b5dd320b77822242ed4d43919c62a361ccbe1837417cba07d4114c91e277816f60bf47d226f37f816278bfd96505b752ef5d5ff')
+
+prepare() {
+  cd ZeroTierOne-$pkgver
+  sed -i 's/sbin/bin/' make-linux.mk debian/zerotier-one.service
+}
+
+build() {
+  cd ZeroTierOne-$pkgver
+  make
+}
+
+check() {
+  cd ZeroTierOne-$pkgver
+  make selftest
+  ./zerotier-selftest
+}
+
+package() {
+  cd ZeroTierOne-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -Dm644 debian/zerotier-one.service 
"$pkgdir"/usr/lib/systemd/system/zerotier-one.service
+}


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

2018-06-08 Thread Felix Yan via arch-commits
Date: Saturday, June 9, 2018 @ 04:01:09
  Author: felixonmars
Revision: 342100

upgpkg: zerotier-one 1.2.8-1

Modified:
  zerotier-one/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-06-09 03:59:11 UTC (rev 342099)
+++ PKGBUILD2018-06-09 04:01:09 UTC (rev 342100)
@@ -4,20 +4,19 @@
 # Contributor: Alex Jordan 
 
 pkgname=zerotier-one
-pkgver=1.2.4
-pkgrel=4
+pkgver=1.2.8
+pkgrel=1
 pkgdesc="Creates virtual Ethernet networks of almost unlimited size."
 arch=('x86_64')
 url="https://www.zerotier.com/index.html;
 license=('GPL3')
-depends=('gcc-libs' 'http-parser' 'libnatpmp' 'miniupnpc' 'libminiupnpc.so')
+depends=('gcc-libs' 'libnatpmp' 'miniupnpc')
 makedepends=('ruby-ronn')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/zerotier/ZeroTierOne/archive/$pkgver.tar.gz;)
-sha512sums=('82adb110208d24ae2745e3839810afcac87955de050ebfe0517a7dc2a875881dafd40c1b16a041742d8c4d0f6513abcc71d6ea3e06c2fb89b47be2630a500363')
+sha512sums=('a97a8ff0e5050294fd8d56e74b5dd320b77822242ed4d43919c62a361ccbe1837417cba07d4114c91e277816f60bf47d226f37f816278bfd96505b752ef5d5ff')
 
 prepare() {
   cd ZeroTierOne-$pkgver
-  sed -i 's|"2.."|"2..*"|' make-linux.mk
   sed -i 's/sbin/bin/' make-linux.mk debian/zerotier-one.service
 }
 


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

2018-06-08 Thread Felix Yan via arch-commits
Date: Saturday, June 9, 2018 @ 03:59:11
  Author: felixonmars
Revision: 342099

archrelease: copy trunk to community-x86_64

Added:
  libqtshadowsocks/repos/community-x86_64/PKGBUILD
(from rev 342098, libqtshadowsocks/trunk/PKGBUILD)
Deleted:
  libqtshadowsocks/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-06-09 03:58:53 UTC (rev 342098)
+++ PKGBUILD2018-06-09 03:59:11 UTC (rev 342099)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: yk 
-
-pkgname=libqtshadowsocks
-pkgver=2.0.2
-pkgrel=3
-pkgdesc="A lightweight library for shadowsocks"
-arch=("x86_64")
-url="https://github.com/shadowsocks/libQtShadowsocks;
-license=("GPL")
-depends=('qt5-base' 'botan')
-makedepends=('cmake')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/shadowsocks/libQtShadowsocks/archive/v$pkgver.tar.gz;)
-sha512sums=('7ec1a4d96d86dc419938d39e62b75e2c589304aea74e7648a8d3449731f944bcd47501a96df2473fc6e6e84b232930be92631ecdaf3b0017bfe9d16a9c82dd33')
-
-build() {
-  cd libQtShadowsocks-$pkgver
-  cmake -DUSE_BOTAN2=On -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release 
.
-  make
-}
-
-package() {
-  cd libQtShadowsocks-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: libqtshadowsocks/repos/community-x86_64/PKGBUILD (from rev 342098, 
libqtshadowsocks/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-06-09 03:59:11 UTC (rev 342099)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: yk 
+
+pkgname=libqtshadowsocks
+pkgver=2.1.0
+pkgrel=1
+pkgdesc="A lightweight library for shadowsocks"
+arch=("x86_64")
+url="https://github.com/shadowsocks/libQtShadowsocks;
+license=("GPL")
+depends=('qt5-base' 'botan')
+makedepends=('cmake')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/shadowsocks/libQtShadowsocks/archive/v$pkgver.tar.gz;)
+sha512sums=('af5b71ce7e40b593bf95c1000d866e2c4426d17398620083a996b84234524e8418fbae071edd03ac1944817a96d7eee8b0b7a5860872fef41996ebbda8418558')
+
+build() {
+  cd libQtShadowsocks-$pkgver
+  cmake -DUSE_BOTAN2=On -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release 
.
+  make
+}
+
+package() {
+  cd libQtShadowsocks-$pkgver
+  make DESTDIR="$pkgdir" install
+}


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

2018-06-08 Thread Felix Yan via arch-commits
Date: Saturday, June 9, 2018 @ 03:58:53
  Author: felixonmars
Revision: 342098

upgpkg: libqtshadowsocks 2.1.0-1

Modified:
  libqtshadowsocks/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-06-09 03:54:29 UTC (rev 342097)
+++ PKGBUILD2018-06-09 03:58:53 UTC (rev 342098)
@@ -3,8 +3,8 @@
 # Contributor: yk 
 
 pkgname=libqtshadowsocks
-pkgver=2.0.2
-pkgrel=3
+pkgver=2.1.0
+pkgrel=1
 pkgdesc="A lightweight library for shadowsocks"
 arch=("x86_64")
 url="https://github.com/shadowsocks/libQtShadowsocks;
@@ -12,7 +12,7 @@
 depends=('qt5-base' 'botan')
 makedepends=('cmake')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/shadowsocks/libQtShadowsocks/archive/v$pkgver.tar.gz;)
-sha512sums=('7ec1a4d96d86dc419938d39e62b75e2c589304aea74e7648a8d3449731f944bcd47501a96df2473fc6e6e84b232930be92631ecdaf3b0017bfe9d16a9c82dd33')
+sha512sums=('af5b71ce7e40b593bf95c1000d866e2c4426d17398620083a996b84234524e8418fbae071edd03ac1944817a96d7eee8b0b7a5860872fef41996ebbda8418558')
 
 build() {
   cd libQtShadowsocks-$pkgver


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

2018-06-08 Thread Felix Yan via arch-commits
Date: Saturday, June 9, 2018 @ 03:54:29
  Author: felixonmars
Revision: 342097

archrelease: copy trunk to community-x86_64

Added:
  v2ray/repos/community-x86_64/PKGBUILD
(from rev 342096, v2ray/trunk/PKGBUILD)
  v2ray/repos/community-x86_64/v2ray.service
(from rev 342096, v2ray/trunk/v2ray.service)
Deleted:
  v2ray/repos/community-x86_64/PKGBUILD
  v2ray/repos/community-x86_64/v2ray.service

---+
 PKGBUILD  |   92 
 v2ray.service |   26 +++
 2 files changed, 59 insertions(+), 59 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-06-09 03:54:11 UTC (rev 342096)
+++ PKGBUILD2018-06-09 03:54:29 UTC (rev 342097)
@@ -1,46 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: pandada8 
-
-pkgname=v2ray
-pkgver=3.25
-pkgrel=1
-pkgdesc="A platform for building proxies to bypass network restrictions"
-arch=('x86_64')
-url="https://github.com/v2ray/v2ray-core;
-license=('MIT')
-makedepends=('go' 'git')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/v2ray/v2ray-core/archive/v$pkgver.tar.gz;
-'v2ray.service')
-sha512sums=('843b8ff35f9d983ea4228f881846d06ac322d8af0d094ca724a86d06bc05868e5b8c500e501c10ba84a19c1b56e0496db4f059075fd407010b683c361e7742a8'
-
'bebb87f43b3920be8efde9aece9c4305323cd7d3a65a3b2441f0dbd0098c02a18ca89a5b08833eee70482cffae2c8e7b7237bb5a4d1076e3c30d273898e2bedb')
-
-prepare() {
-  export GOPATH="$srcdir/build"
-  go get v2ray.com/core github.com/miekg/dns golang.org/x/sys/unix 
v2ray.com/ext/assert \
- github.com/gorilla/websocket golang.org/x/crypto/chacha20poly1305 
golang.org/x/crypto/sha3 \
- v2ray.com/ext golang.org/x/net/proxy 
github.com/google/go-github/github golang.org/x/oauth2 \
- github.com/gogo/protobuf/proto google.golang.org/grpc
-  go install v2ray.com/ext/tools/build/vbuild
-}
-
-build() {
-  cd v2ray-core-$pkgver
-  "$GOPATH"/bin/vbuild
-}
-
-check() {
-  cd v2ray-core-$pkgver
-  go test -p 1 -tags json -v v2ray.com/core/...
-}
-
-package() {
-  cd v2ray-core-$pkgver
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/v2ray/LICENSE
-  install -Dm644 release/config/systemd/v2ray.service 
${pkgdir}/usr/lib/systemd/system/v2ray.service
-  sed -i '/ExecStart/c\ExecStart=/usr/bin/env v2ray.location.asset=/etc/v2ray 
/usr/bin/v2ray -config /etc/v2ray/config.json' 
"$pkgdir"/usr/lib/systemd/system/v2ray.service
-  install -Dm644 release/config/geoip.dat release/config/geosite.dat 
release/config/*.json -t "$pkgdir"/etc/v2ray/
-  install -Dm755 "$GOPATH"/bin/v2ray-custom-linux-64/{v2ray,v2ctl} -t 
"$pkgdir"/usr/bin/
-
-  install -Dm644 "$srcdir"/v2ray.service 
"$pkgdir"/usr/lib/systemd/system/v2ray@.service
-}

Copied: v2ray/repos/community-x86_64/PKGBUILD (from rev 342096, 
v2ray/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-06-09 03:54:29 UTC (rev 342097)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: pandada8 
+
+pkgname=v2ray
+pkgver=3.25.1
+pkgrel=1
+pkgdesc="A platform for building proxies to bypass network restrictions"
+arch=('x86_64')
+url="https://github.com/v2ray/v2ray-core;
+license=('MIT')
+makedepends=('go' 'git')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/v2ray/v2ray-core/archive/v$pkgver.tar.gz;
+'v2ray.service')
+sha512sums=('ffa1846a2675302ad82208189a8d7d5c5c0150c275e829a6d371864a14aa7e13f21e3666983c481425f1ff3f85bc6de75493f062e6220eb8ff130f0e740661bf'
+
'bebb87f43b3920be8efde9aece9c4305323cd7d3a65a3b2441f0dbd0098c02a18ca89a5b08833eee70482cffae2c8e7b7237bb5a4d1076e3c30d273898e2bedb')
+
+prepare() {
+  export GOPATH="$srcdir/build"
+  go get v2ray.com/core github.com/miekg/dns golang.org/x/sys/unix 
v2ray.com/ext/assert \
+ github.com/gorilla/websocket golang.org/x/crypto/chacha20poly1305 
golang.org/x/crypto/sha3 \
+ v2ray.com/ext golang.org/x/net/proxy 
github.com/google/go-github/github golang.org/x/oauth2 \
+ github.com/gogo/protobuf/proto google.golang.org/grpc
+  go install v2ray.com/ext/tools/build/vbuild
+}
+
+build() {
+  cd v2ray-core-$pkgver
+  "$GOPATH"/bin/vbuild
+}
+
+check() {
+  cd v2ray-core-$pkgver
+  go test -p 1 -tags json -v v2ray.com/core/...
+}
+
+package() {
+  cd v2ray-core-$pkgver
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/v2ray/LICENSE
+  install -Dm644 release/config/systemd/v2ray.service 
${pkgdir}/usr/lib/systemd/system/v2ray.service
+  sed -i '/ExecStart/c\ExecStart=/usr/bin/env v2ray.location.asset=/etc/v2ray 
/usr/bin/v2ray -config /etc/v2ray/config.json' 
"$pkgdir"/usr/lib/systemd/system/v2ray.service
+  install -Dm644 release/config/geoip.dat release/config/geosite.dat 
release/config/*.json -t "$pkgdir"/etc/v2ray/
+  install -Dm755 "$GOPATH"/bin/v2ray-custom-linux-64/{v2ray,v2ctl} -t 
"$pkgdir"/usr/bin/
+
+  install 

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

2018-06-08 Thread Felix Yan via arch-commits
Date: Saturday, June 9, 2018 @ 03:54:11
  Author: felixonmars
Revision: 342096

upgpkg: v2ray 3.25.1-1

Modified:
  v2ray/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-06-09 03:43:46 UTC (rev 342095)
+++ PKGBUILD2018-06-09 03:54:11 UTC (rev 342096)
@@ -3,7 +3,7 @@
 # Contributor: pandada8 
 
 pkgname=v2ray
-pkgver=3.25
+pkgver=3.25.1
 pkgrel=1
 pkgdesc="A platform for building proxies to bypass network restrictions"
 arch=('x86_64')
@@ -12,7 +12,7 @@
 makedepends=('go' 'git')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/v2ray/v2ray-core/archive/v$pkgver.tar.gz;
 'v2ray.service')
-sha512sums=('843b8ff35f9d983ea4228f881846d06ac322d8af0d094ca724a86d06bc05868e5b8c500e501c10ba84a19c1b56e0496db4f059075fd407010b683c361e7742a8'
+sha512sums=('ffa1846a2675302ad82208189a8d7d5c5c0150c275e829a6d371864a14aa7e13f21e3666983c481425f1ff3f85bc6de75493f062e6220eb8ff130f0e740661bf'
 
'bebb87f43b3920be8efde9aece9c4305323cd7d3a65a3b2441f0dbd0098c02a18ca89a5b08833eee70482cffae2c8e7b7237bb5a4d1076e3c30d273898e2bedb')
 
 prepare() {


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

2018-06-08 Thread Felix Yan via arch-commits
Date: Saturday, June 9, 2018 @ 03:43:46
  Author: felixonmars
Revision: 342095

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-skylighting/repos/community-staging-x86_64/
  haskell-skylighting/repos/community-staging-x86_64/PKGBUILD
(from rev 342094, haskell-skylighting/trunk/PKGBUILD)

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

Copied: haskell-skylighting/repos/community-staging-x86_64/PKGBUILD (from rev 
342094, haskell-skylighting/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-06-09 03:43:46 UTC (rev 342095)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=skylighting
+pkgname=haskell-skylighting
+pkgver=0.7.2
+pkgrel=1
+pkgdesc="Syntax highlighting library"
+url="https://github.com/jgm/skylighting;
+license=('GPL2')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-ansi-terminal' 
'haskell-attoparsec'
+ 'haskell-base64-bytestring' 'haskell-blaze-html' 
'haskell-case-insensitive'
+ 'haskell-colour' 'haskell-hxt' 'haskell-pretty-show' 
'haskell-regex-pcre'
+ 'haskell-safe' 'haskell-skylighting-core' 'haskell-utf8-string')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('cf4898dc52a0156a780b114d2d9a12665cb5e5b052ceb0e0316a6dadb501502c483b82ef3a3d718d7fd6e628ae003b551b6ded583fc7c5bedc11472710a5d7c4')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fsystem-pcre -fexecutable
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2018-06-08 Thread Felix Yan via arch-commits
Date: Saturday, June 9, 2018 @ 03:43:28
  Author: felixonmars
Revision: 342094

upgpkg: haskell-skylighting 0.7.2-1

rebuild with skylighting-core 0.7.2, skylighting 0.7.2

Modified:
  haskell-skylighting/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-06-09 03:42:39 UTC (rev 342093)
+++ PKGBUILD2018-06-09 03:43:28 UTC (rev 342094)
@@ -3,8 +3,8 @@
 
 _hkgname=skylighting
 pkgname=haskell-skylighting
-pkgver=0.7.1
-pkgrel=15
+pkgver=0.7.2
+pkgrel=1
 pkgdesc="Syntax highlighting library"
 url="https://github.com/jgm/skylighting;
 license=('GPL2')
@@ -15,7 +15,7 @@
  'haskell-safe' 'haskell-skylighting-core' 'haskell-utf8-string')
 makedepends=('ghc')
 
source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-sha512sums=('a768bc80685bc0d8fad34c1f381664ed2b1f25873c5736ab35b4ae7e999bed035e9fbd1a30cf36d21979822d51edb571a090fa59f4529392fc2dcba3b4d5f19a')
+sha512sums=('cf4898dc52a0156a780b114d2d9a12665cb5e5b052ceb0e0316a6dadb501502c483b82ef3a3d718d7fd6e628ae003b551b6ded583fc7c5bedc11472710a5d7c4')
 
 build() {
 cd $_hkgname-$pkgver


[arch-commits] Commit in haskell-skylighting-core/repos (2 files)

2018-06-08 Thread Felix Yan via arch-commits
Date: Saturday, June 9, 2018 @ 03:42:39
  Author: felixonmars
Revision: 342093

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-skylighting-core/repos/community-staging-x86_64/
  haskell-skylighting-core/repos/community-staging-x86_64/PKGBUILD
(from rev 342092, haskell-skylighting-core/trunk/PKGBUILD)

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

Copied: haskell-skylighting-core/repos/community-staging-x86_64/PKGBUILD (from 
rev 342092, haskell-skylighting-core/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-06-09 03:42:39 UTC (rev 342093)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=skylighting-core
+pkgname=haskell-skylighting-core
+pkgver=0.7.2
+pkgrel=1
+pkgdesc="Syntax highlighting library"
+url="https://github.com/jgm/skylighting;
+license=('custom:BSD3')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-ansi-terminal' 
'haskell-attoparsec'
+ 'haskell-base64-bytestring' 'haskell-blaze-html' 
'haskell-case-insensitive'
+ 'haskell-colour' 'haskell-hxt' 'haskell-regex-pcre' 'haskell-safe'
+ 'haskell-utf8-string')
+makedepends=('ghc' 'haskell-diff' 'haskell-hunit' 'haskell-pretty-show' 
'haskell-quickcheck'
+ 'haskell-random' 'haskell-tasty' 'haskell-tasty-golden' 
'haskell-tasty-hunit'
+ 'haskell-tasty-quickcheck')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('09fa3a44a08da045b394dbb4f526f0ca6cdb35bedde3619c21269d4e8bd4534a39a62d4b6fc5130d62f483bfe8e94eb4523b92cfac4fe0d5c2f7b49354ce5642')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fexecutable -fsystem-pcre
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


[arch-commits] Commit in haskell-skylighting-core/trunk (PKGBUILD)

2018-06-08 Thread Felix Yan via arch-commits
Date: Saturday, June 9, 2018 @ 03:42:26
  Author: felixonmars
Revision: 342092

upgpkg: haskell-skylighting-core 0.7.2-1

rebuild with skylighting-core 0.7.2, skylighting 0.7.2

Modified:
  haskell-skylighting-core/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-06-09 03:15:09 UTC (rev 342091)
+++ PKGBUILD2018-06-09 03:42:26 UTC (rev 342092)
@@ -3,8 +3,8 @@
 
 _hkgname=skylighting-core
 pkgname=haskell-skylighting-core
-pkgver=0.7.1
-pkgrel=15
+pkgver=0.7.2
+pkgrel=1
 pkgdesc="Syntax highlighting library"
 url="https://github.com/jgm/skylighting;
 license=('custom:BSD3')
@@ -17,7 +17,7 @@
  'haskell-random' 'haskell-tasty' 'haskell-tasty-golden' 
'haskell-tasty-hunit'
  'haskell-tasty-quickcheck')
 
source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
-sha512sums=('41d0ab5db34386e9ff05cc448c68502d4a87af05e9b797e1dc1fa4aea5dad8923ad03dd7016a49964e05a0e3f2cdeffc67f1eb8d551709d22abb6d3f8fc3fc42')
+sha512sums=('09fa3a44a08da045b394dbb4f526f0ca6cdb35bedde3619c21269d4e8bd4534a39a62d4b6fc5130d62f483bfe8e94eb4523b92cfac4fe0d5c2f7b49354ce5642')
 
 build() {
 cd "${srcdir}/${_hkgname}-${pkgver}"


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

2018-06-08 Thread Sven-Hendrik Haase via arch-commits
Date: Saturday, June 9, 2018 @ 03:15:09
  Author: svenstaro
Revision: 342091

archrelease: copy trunk to community-any

Added:
  python-ntlm-auth/repos/community-any/PKGBUILD
(from rev 342090, python-ntlm-auth/trunk/PKGBUILD)
Deleted:
  python-ntlm-auth/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-06-09 03:15:00 UTC (rev 342090)
+++ PKGBUILD2018-06-09 03:15:09 UTC (rev 342091)
@@ -1,39 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Christoph W 
-
-pkgbase=('python-ntlm-auth')
-pkgname=('python-ntlm-auth' 'python2-ntlm-auth')
-_module='ntlm-auth'
-pkgver=1.1.0
-pkgrel=1
-pkgdesc="Creates NTLM authentication structures"
-url="https://github.com/jborean93/ntlm-auth;
-makedepends=(python-setuptools python2-setuptools)
-license=(LGPL3)
-arch=(any)
-source=("https://github.com/jborean93/ntlm-auth/archive/v${pkgver}.tar.gz;)
-sha512sums=('0c41cfab957c48d5fabf391422323556289cc6d8ba5a50c82bb179f6cdbf68528f005c3987e0b47fb47aff2fbcf00deebb0ac4220df6bd08d335879344f8470a')
-
-prepare() {
-cp -a "${srcdir}/${_module}-${pkgver}"{,-python2}
-}
-
-build() {
-cd "${srcdir}/${_module}-${pkgver}"
-python setup.py build
-
-cd "${srcdir}/${_module}-${pkgver}-python2"
-python2 setup.py build
-}
-
-package_python-ntlm-auth() {
-depends+=('python' 'python-six')
-cd "${srcdir}/${_module}-${pkgver}"
-python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
-}
-
-package_python2-ntlm-auth() {
-depends+=('python2' 'python2-six' 'python2-ordereddict')
-cd "${srcdir}/${_module}-${pkgver}-python2"
-python2 setup.py install --root="${pkgdir}" --optimize=1 --skip-build
-}

Copied: python-ntlm-auth/repos/community-any/PKGBUILD (from rev 342090, 
python-ntlm-auth/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-06-09 03:15:09 UTC (rev 342091)
@@ -0,0 +1,39 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Christoph W 
+
+pkgbase=('python-ntlm-auth')
+pkgname=('python-ntlm-auth' 'python2-ntlm-auth')
+_module='ntlm-auth'
+pkgver=1.2.0
+pkgrel=1
+pkgdesc="Creates NTLM authentication structures"
+url="https://github.com/jborean93/ntlm-auth;
+makedepends=(python-setuptools python2-setuptools)
+license=(LGPL3)
+arch=(any)
+source=("https://github.com/jborean93/ntlm-auth/archive/v${pkgver}.tar.gz;)
+sha512sums=('4fa537c5a6a7f3493df2fdf49261f9588b7aac876f72b7a7ef5b8a7a1dd971d9426dacdc8bbf520cecdbe5b7adb916ddcad9e9cf4df725b69793299304601912')
+
+prepare() {
+cp -a "${srcdir}/${_module}-${pkgver}"{,-python2}
+}
+
+build() {
+cd "${srcdir}/${_module}-${pkgver}"
+python setup.py build
+
+cd "${srcdir}/${_module}-${pkgver}-python2"
+python2 setup.py build
+}
+
+package_python-ntlm-auth() {
+depends+=('python' 'python-six')
+cd "${srcdir}/${_module}-${pkgver}"
+python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+}
+
+package_python2-ntlm-auth() {
+depends+=('python2' 'python2-six' 'python2-ordereddict')
+cd "${srcdir}/${_module}-${pkgver}-python2"
+python2 setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+}


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

2018-06-08 Thread Sven-Hendrik Haase via arch-commits
Date: Saturday, June 9, 2018 @ 03:15:00
  Author: svenstaro
Revision: 342090

upgpkg: python-ntlm-auth 1.2.0-1

Modified:
  python-ntlm-auth/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-06-09 03:09:35 UTC (rev 342089)
+++ PKGBUILD2018-06-09 03:15:00 UTC (rev 342090)
@@ -4,7 +4,7 @@
 pkgbase=('python-ntlm-auth')
 pkgname=('python-ntlm-auth' 'python2-ntlm-auth')
 _module='ntlm-auth'
-pkgver=1.1.0
+pkgver=1.2.0
 pkgrel=1
 pkgdesc="Creates NTLM authentication structures"
 url="https://github.com/jborean93/ntlm-auth;
@@ -12,7 +12,7 @@
 license=(LGPL3)
 arch=(any)
 source=("https://github.com/jborean93/ntlm-auth/archive/v${pkgver}.tar.gz;)
-sha512sums=('0c41cfab957c48d5fabf391422323556289cc6d8ba5a50c82bb179f6cdbf68528f005c3987e0b47fb47aff2fbcf00deebb0ac4220df6bd08d335879344f8470a')
+sha512sums=('4fa537c5a6a7f3493df2fdf49261f9588b7aac876f72b7a7ef5b8a7a1dd971d9426dacdc8bbf520cecdbe5b7adb916ddcad9e9cf4df725b69793299304601912')
 
 prepare() {
 cp -a "${srcdir}/${_module}-${pkgver}"{,-python2}


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

2018-06-08 Thread Sven-Hendrik Haase via arch-commits
Date: Saturday, June 9, 2018 @ 03:09:35
  Author: svenstaro
Revision: 342089

archrelease: copy trunk to community-x86_64

Added:
  gitlab-shell/repos/community-x86_64/PKGBUILD
(from rev 342088, gitlab-shell/trunk/PKGBUILD)
  gitlab-shell/repos/community-x86_64/gitlab-shell.gitconfig
(from rev 342088, gitlab-shell/trunk/gitlab-shell.gitconfig)
  gitlab-shell/repos/community-x86_64/gitlab-shell.install
(from rev 342088, gitlab-shell/trunk/gitlab-shell.install)
  gitlab-shell/repos/community-x86_64/gitlab-shell.sysusers
(from rev 342088, gitlab-shell/trunk/gitlab-shell.sysusers)
Deleted:
  gitlab-shell/repos/community-x86_64/PKGBUILD
  gitlab-shell/repos/community-x86_64/gitlab-shell.gitconfig
  gitlab-shell/repos/community-x86_64/gitlab-shell.install
  gitlab-shell/repos/community-x86_64/gitlab-shell.sysusers

+
 PKGBUILD   |  194 +++
 gitlab-shell.gitconfig |   10 +-
 gitlab-shell.install   |8 -
 gitlab-shell.sysusers  |2 
 4 files changed, 107 insertions(+), 107 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-06-09 03:09:27 UTC (rev 342088)
+++ PKGBUILD2018-06-09 03:09:35 UTC (rev 342089)
@@ -1,97 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Pavol (Lopo) Hluchy 
-# Contributor: Massimiliano Torromeo 
-# Contributor: Jonas Heinrich 
-# Contributor: Lee Watson 
-# Contributor: Tobias Hunger 
-# Contributor: Stefan Tatschner 
-
-pkgname=gitlab-shell
-pkgver=7.1.3
-pkgrel=1
-epoch=2
-pkgdesc="Git management software"
-arch=('x86_64')
-url="https://gitlab.com/gitlab-org/gitlab-shell/;
-license=('MIT')
-depends=('ruby2.3' 'redis' 'git')
-makedepends=('go-pie')
-options=('!strip')
-install=gitlab-shell.install
-backup=("etc/webapps/${pkgname}/config.yml"
-"etc/webapps/${pkgname}/secret"
-"etc/webapps/${pkgname}/gitconfig"
-"etc/webapps/${pkgname}/authorized_keys"
-"etc/webapps/${pkgname}/")
-source=("${pkgname}-${pkgver}.tar.gz::https://gitlab.com/api/v4/projects/gitlab-org%2Fgitlab-shell/repository/archive?sha=v${pkgver};
-"gitlab-shell.gitconfig"
-"gitlab-shell.sysusers")
-sha512sums=('41089910b02c0901a486fc8df9ec5c039e62a1071552b5cab1b247cb00355b9a11cc386a8cfd2d9a5320f4b1829841e57de196707513e8a8454b774a159d014a'
-
'5caafe5300621ced58479e724b39656afc17f32a64ecde5dfa4919683ef37d9121552c78f066678472acb56e0a34b5c3cf34d9b44414d1ed5d91f725d180fa43'
-
'616188911fa7b7c569bc2d5e2024177e67366c48b4ffef1f7ad4dc8e4e9e2cdb421b687f45a1e9bdec8bf2736a157ca9f1e0ba24edae2f073b8c7b5ac42745e8')
-
-_datadir="/usr/share/webapps/${pkgname}"
-_etcdir="/etc/webapps/${pkgname}"
-_homedir="/var/lib/gitlab"
-_logdir="/var/log/gitlab"
-_srcdir="gitlab-shell-v${pkgver}"
-
-prepare() {
-  cd "${srcdir}/${_srcdir}"-*
-
-  sed -e "s|user: git|user: gitlab|" \
-  -e "s|/home/git|${_homedir}|" \
-  -e "s|# log_file: .*|log_file: \"${_logdir}/gitlab-shell.log\"|" \
-  -e "s|# host:|host:|" \
-  -e "s|# port:|port:|" \
-  -e "s|socket:|# socket:|" \
-  config.yml.example > config.yml
-
-  for file in {bin,hooks}/*; do
-sed -i s/ruby/ruby-2.3/g ${file}
-  done
-}
-
-build() {
-  cd "${srcdir}/${_srcdir}"-*
-
-  ./bin/compile
-}
-
-package() {
-  cd "${srcdir}/${_srcdir}"-*
-
-  install -dm755 -o root -g root "${pkgdir}${_datadir}"
-  install -dm750 -o 105 -g 105 "${pkgdir}${_homedir}"
-  install -dm750 -o 105 -g 105 "${pkgdir}${_homedir}/satellites"
-  install -dm700 -o 105 -g 105 "${pkgdir}${_homedir}/.ssh"
-  install -dm750 -o 105 -g 105 "${pkgdir}${_etcdir}"
-  install -dm770 -o 105 -g root "${pkgdir}${_logdir}"
-
-  # sysusers
-  install -Dm644 "${srcdir}/gitlab-shell.sysusers" 
"${pkgdir}/usr/lib/sysusers.d/gitlab-shell.conf"
-
-  # .gitconfig
-  install -Dm644 -o 105 -g 105 "${srcdir}/gitlab-shell.gitconfig" 
"${pkgdir}${_etcdir}/.gitconfig"
-  ln -fs "${_etcdir}/.gitconfig" "${pkgdir}${_homedir}/.gitconfig"
-
-  # .gitlab_shell_secret
-  touch "${pkgdir}${_etcdir}/secret"
-  chmod 640 "${pkgdir}${_etcdir}/secret"
-  chown root:105 "${pkgdir}${_etcdir}/secret"
-  ln -fs "${_etcdir}/secret" "${pkgdir}${_datadir}/.gitlab_shell_secret"
-
-  # config.yml
-  mv config.yml "${pkgdir}${_etcdir}"
-  ln -fs "${_etcdir}/config.yml" "${pkgdir}${_datadir}/config.yml"
-
-  cp -r VERSION bin hooks lib spec support "${pkgdir}${_datadir}"
-  ln -fs "${_datadir}" "${pkgdir}/${_homedir}/"
-
-  install -dm2770 -o 105 -g 105 "${pkgdir}${_homedir}/repositories"
-
-  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  install -Dm644 README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: gitlab-shell/repos/community-x86_64/PKGBUILD (from rev 342088, 
gitlab-shell/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD  

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

2018-06-08 Thread Sven-Hendrik Haase via arch-commits
Date: Saturday, June 9, 2018 @ 03:09:27
  Author: svenstaro
Revision: 342088

upgpkg: gitlab-shell 2:7.1.4-1

Modified:
  gitlab-shell/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-06-09 03:07:18 UTC (rev 342087)
+++ PKGBUILD2018-06-09 03:09:27 UTC (rev 342088)
@@ -7,7 +7,7 @@
 # Contributor: Stefan Tatschner 
 
 pkgname=gitlab-shell
-pkgver=7.1.3
+pkgver=7.1.4
 pkgrel=1
 epoch=2
 pkgdesc="Git management software"
@@ -26,7 +26,7 @@
 
source=("${pkgname}-${pkgver}.tar.gz::https://gitlab.com/api/v4/projects/gitlab-org%2Fgitlab-shell/repository/archive?sha=v${pkgver};
 "gitlab-shell.gitconfig"
 "gitlab-shell.sysusers")
-sha512sums=('41089910b02c0901a486fc8df9ec5c039e62a1071552b5cab1b247cb00355b9a11cc386a8cfd2d9a5320f4b1829841e57de196707513e8a8454b774a159d014a'
+sha512sums=('c53a445ea2feb9f61b25dbc558efcd055f97715802172dba8217efcd5f686a6d47b3ade11e38b53fe6ca904de8009efb964a093a44a9289fe4b59dab92ef2ebe'
 
'5caafe5300621ced58479e724b39656afc17f32a64ecde5dfa4919683ef37d9121552c78f066678472acb56e0a34b5c3cf34d9b44414d1ed5d91f725d180fa43'
 
'616188911fa7b7c569bc2d5e2024177e67366c48b4ffef1f7ad4dc8e4e9e2cdb421b687f45a1e9bdec8bf2736a157ca9f1e0ba24edae2f073b8c7b5ac42745e8')
 


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

2018-06-08 Thread Sven-Hendrik Haase via arch-commits
Date: Saturday, June 9, 2018 @ 03:07:11
  Author: svenstaro
Revision: 342086

upgpkg: go-bindata 3.4.0-1

Modified:
  go-bindata/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-06-09 02:47:01 UTC (rev 342085)
+++ PKGBUILD2018-06-09 03:07:11 UTC (rev 342086)
@@ -2,7 +2,7 @@
 # Contributor: Lubomir 'Kuci' Kucera 
 
 pkgname=go-bindata
-pkgver=3.3.0
+pkgver=3.4.0
 pkgrel=1
 pkgdesc="A small utility which generates Go code from any file"
 arch=('x86_64')
@@ -11,7 +11,7 @@
 depends=('glibc')
 makedepends=('go-pie')
 source=("https://github.com/shuLhan/go-bindata/archive/v${pkgver}.tar.gz;)
-sha512sums=('27d85b8c90fa984f7aaee8099976d1c9394c76b39fe54a7aef34b65dd9a70f7d062749dea49aff36785ee0663331cee8f29d88bea4be030f1c3ef9d280df0530')
+sha512sums=('1d1d0a0f3e4865d0b7c4b61c6ed0570800948054c620c4a2f4c6ad03614b69fb931ef19697193717dd3109922962684314ce81102e2a0e325c3ce904a7bd230c')
 
 prepare() {
 mkdir -p "${srcdir}/src/github.com/shuLhan/"
@@ -19,12 +19,12 @@
 }
 
 build() {
-cd "${srcdir}/src/github.com/shuLhan/go-bindata/go-bindata"
+cd "${srcdir}/src/github.com/shuLhan/go-bindata/cmd/go-bindata"
 GOPATH="${srcdir}" go build
 }
 
 package() {
-cd "${srcdir}/src/github.com/shuLhan/go-bindata"
-install -Dm755 "go-bindata/go-bindata" "${pkgdir}/usr/bin/go-bindata"
-install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+cd "${srcdir}/src/github.com/shuLhan/go-bindata/cmd/go-bindata"
+install -Dm755 "go-bindata" "${pkgdir}/usr/bin/go-bindata"
+install -Dm644 ../../LICENSE 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
 }


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

2018-06-08 Thread Sven-Hendrik Haase via arch-commits
Date: Saturday, June 9, 2018 @ 03:07:18
  Author: svenstaro
Revision: 342087

archrelease: copy trunk to community-x86_64

Added:
  go-bindata/repos/community-x86_64/PKGBUILD
(from rev 342086, go-bindata/trunk/PKGBUILD)
Deleted:
  go-bindata/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-06-09 03:07:11 UTC (rev 342086)
+++ PKGBUILD2018-06-09 03:07:18 UTC (rev 342087)
@@ -1,30 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Lubomir 'Kuci' Kucera 
-
-pkgname=go-bindata
-pkgver=3.3.0
-pkgrel=1
-pkgdesc="A small utility which generates Go code from any file"
-arch=('x86_64')
-url='https://github.com/shuLhan/go-bindata'
-license=('CC0 1.0')
-depends=('glibc')
-makedepends=('go-pie')
-source=("https://github.com/shuLhan/go-bindata/archive/v${pkgver}.tar.gz;)
-sha512sums=('27d85b8c90fa984f7aaee8099976d1c9394c76b39fe54a7aef34b65dd9a70f7d062749dea49aff36785ee0663331cee8f29d88bea4be030f1c3ef9d280df0530')
-
-prepare() {
-mkdir -p "${srcdir}/src/github.com/shuLhan/"
-mv "${srcdir}/${pkgname}-${pkgver}" 
"${srcdir}/src/github.com/shuLhan/go-bindata"
-}
-
-build() {
-cd "${srcdir}/src/github.com/shuLhan/go-bindata/go-bindata"
-GOPATH="${srcdir}" go build
-}
-
-package() {
-cd "${srcdir}/src/github.com/shuLhan/go-bindata"
-install -Dm755 "go-bindata/go-bindata" "${pkgdir}/usr/bin/go-bindata"
-install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: go-bindata/repos/community-x86_64/PKGBUILD (from rev 342086, 
go-bindata/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-06-09 03:07:18 UTC (rev 342087)
@@ -0,0 +1,30 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Lubomir 'Kuci' Kucera 
+
+pkgname=go-bindata
+pkgver=3.4.0
+pkgrel=1
+pkgdesc="A small utility which generates Go code from any file"
+arch=('x86_64')
+url='https://github.com/shuLhan/go-bindata'
+license=('CC0 1.0')
+depends=('glibc')
+makedepends=('go-pie')
+source=("https://github.com/shuLhan/go-bindata/archive/v${pkgver}.tar.gz;)
+sha512sums=('1d1d0a0f3e4865d0b7c4b61c6ed0570800948054c620c4a2f4c6ad03614b69fb931ef19697193717dd3109922962684314ce81102e2a0e325c3ce904a7bd230c')
+
+prepare() {
+mkdir -p "${srcdir}/src/github.com/shuLhan/"
+mv "${srcdir}/${pkgname}-${pkgver}" 
"${srcdir}/src/github.com/shuLhan/go-bindata"
+}
+
+build() {
+cd "${srcdir}/src/github.com/shuLhan/go-bindata/cmd/go-bindata"
+GOPATH="${srcdir}" go build
+}
+
+package() {
+cd "${srcdir}/src/github.com/shuLhan/go-bindata/cmd/go-bindata"
+install -Dm755 "go-bindata" "${pkgdir}/usr/bin/go-bindata"
+install -Dm644 ../../LICENSE 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}


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

2018-06-08 Thread Sven-Hendrik Haase via arch-commits
Date: Saturday, June 9, 2018 @ 02:47:01
  Author: svenstaro
Revision: 342085

archrelease: copy trunk to community-x86_64

Added:
  bazel/repos/community-x86_64/PKGBUILD
(from rev 342084, bazel/trunk/PKGBUILD)
Deleted:
  bazel/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-06-09 02:46:47 UTC (rev 342084)
+++ PKGBUILD2018-06-09 02:47:01 UTC (rev 342085)
@@ -1,38 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Frederik Schwan 
-# Contributor: Simon Legner 
-
-pkgname=bazel
-pkgver=0.14.0
-pkgrel=1
-pkgdesc='Correct, reproducible, and fast builds for everyone'
-arch=('x86_64')
-license=('Apache')
-url='https://bazel.io/'
-depends=('java-environment=8' 'libarchive' 'zip' 'unzip')
-makedepends=('git' 'protobuf' 'python')
-options=('!distcc' '!strip')
-source=(https://github.com/bazelbuild/bazel/releases/download/${pkgver}/bazel-${pkgver}-dist.zip
-
https://github.com/bazelbuild/bazel/releases/download/${pkgver}/bazel-${pkgver}-dist.zip.sig)
-sha512sums=('32a797e173168171f2a28415f4511b10f443dee1e547bca50bcddadd6f522e96ca3f4a9fc7b0f1c063f8cb5d34685c6f41773451889afa9a100f29c19b3fe21c'
-'SKIP')
-validpgpkeys=('71A1D0EFCFEB6281FD0437C93D5919B448457EE0')
-
-build() {
-  ./compile.sh
-  ./output/bazel build scripts:bazel-complete.bash
-  cd output
-  ./bazel shutdown
-}
-
-package() {
-  install -Dm755 ${srcdir}/scripts/packages/bazel.sh ${pkgdir}/usr/bin/bazel
-  install -Dm755 ${srcdir}/output/bazel ${pkgdir}/usr/bin/bazel-real
-  install -Dm644 ${srcdir}/bazel-bin/scripts/bazel-complete.bash 
${pkgdir}/usr/share/bash-completion/completions/bazel
-  install -Dm644 ${srcdir}/scripts/zsh_completion/_bazel 
${pkgdir}/usr/share/zsh/site-functions/_bazel
-  mkdir -p ${pkgdir}/opt/bazel/
-  for d in examples third_party tools; do
-cp -r ${srcdir}/${d} ${pkgdir}/opt/bazel/
-  done
-}
-# vim:set ts=2 sw=2 et:

Copied: bazel/repos/community-x86_64/PKGBUILD (from rev 342084, 
bazel/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-06-09 02:47:01 UTC (rev 342085)
@@ -0,0 +1,38 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Frederik Schwan 
+# Contributor: Simon Legner 
+
+pkgname=bazel
+pkgver=0.14.1
+pkgrel=1
+pkgdesc='Correct, reproducible, and fast builds for everyone'
+arch=('x86_64')
+license=('Apache')
+url='https://bazel.io/'
+depends=('java-environment=8' 'libarchive' 'zip' 'unzip')
+makedepends=('git' 'protobuf' 'python')
+options=('!distcc' '!strip')
+source=(https://github.com/bazelbuild/bazel/releases/download/${pkgver}/bazel-${pkgver}-dist.zip
+
https://github.com/bazelbuild/bazel/releases/download/${pkgver}/bazel-${pkgver}-dist.zip.sig)
+sha512sums=('02c7125438f060d8e5e25b91ce3ca76fac6681b4f12033d807955a4ca5a5c22a3508a7229581b7349f35f343911f8408f43f8d78d54601277576dd32539e4681'
+'SKIP')
+validpgpkeys=('71A1D0EFCFEB6281FD0437C93D5919B448457EE0')
+
+build() {
+  ./compile.sh
+  ./output/bazel build scripts:bazel-complete.bash
+  cd output
+  ./bazel shutdown
+}
+
+package() {
+  install -Dm755 ${srcdir}/scripts/packages/bazel.sh ${pkgdir}/usr/bin/bazel
+  install -Dm755 ${srcdir}/output/bazel ${pkgdir}/usr/bin/bazel-real
+  install -Dm644 ${srcdir}/bazel-bin/scripts/bazel-complete.bash 
${pkgdir}/usr/share/bash-completion/completions/bazel
+  install -Dm644 ${srcdir}/scripts/zsh_completion/_bazel 
${pkgdir}/usr/share/zsh/site-functions/_bazel
+  mkdir -p ${pkgdir}/opt/bazel/
+  for d in examples third_party tools; do
+cp -r ${srcdir}/${d} ${pkgdir}/opt/bazel/
+  done
+}
+# vim:set ts=2 sw=2 et:


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

2018-06-08 Thread Sven-Hendrik Haase via arch-commits
Date: Saturday, June 9, 2018 @ 02:46:47
  Author: svenstaro
Revision: 342084

upgpkg: bazel 0.14.1-1

Modified:
  bazel/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-06-09 01:33:31 UTC (rev 342083)
+++ PKGBUILD2018-06-09 02:46:47 UTC (rev 342084)
@@ -3,7 +3,7 @@
 # Contributor: Simon Legner 
 
 pkgname=bazel
-pkgver=0.14.0
+pkgver=0.14.1
 pkgrel=1
 pkgdesc='Correct, reproducible, and fast builds for everyone'
 arch=('x86_64')
@@ -14,7 +14,7 @@
 options=('!distcc' '!strip')
 
source=(https://github.com/bazelbuild/bazel/releases/download/${pkgver}/bazel-${pkgver}-dist.zip
 
https://github.com/bazelbuild/bazel/releases/download/${pkgver}/bazel-${pkgver}-dist.zip.sig)
-sha512sums=('32a797e173168171f2a28415f4511b10f443dee1e547bca50bcddadd6f522e96ca3f4a9fc7b0f1c063f8cb5d34685c6f41773451889afa9a100f29c19b3fe21c'
+sha512sums=('02c7125438f060d8e5e25b91ce3ca76fac6681b4f12033d807955a4ca5a5c22a3508a7229581b7349f35f343911f8408f43f8d78d54601277576dd32539e4681'
 'SKIP')
 validpgpkeys=('71A1D0EFCFEB6281FD0437C93D5919B448457EE0')
 


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

2018-06-08 Thread Dan Printzell via arch-commits
Date: Friday, June 8, 2018 @ 22:36:43
  Author: wild
Revision: 342082

archrelease: copy trunk to community-x86_64

Added:
  dfmt/repos/community-x86_64/PKGBUILD
(from rev 342081, dfmt/trunk/PKGBUILD)
Deleted:
  dfmt/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-06-08 22:36:35 UTC (rev 342081)
+++ PKGBUILD2018-06-08 22:36:43 UTC (rev 342082)
@@ -1,53 +0,0 @@
-# $Id$
-# Maintainer: Dan Printzell 
-
-pkgname=('dfmt')
-pkgver=0.8.0
-pkgrel=1
-_pkgcommit=b416d72221b07bd460ded8407487e32520fd3962
-pkgdesc="Dfmt is a formatter for D source code"
-arch=('x86_64')
-url="https://github.com/dlang-community/dfmt;
-license=("custom")
-groups=('dlang')
-makedepends=('dmd' 'git')
-depends=('libphobos')
-
-source=(
-   "git+https://github.com/dlang-community/dfmt#commit=$_pkgcommit;
-   "git+https://github.com/dlang-community/libdparse;
-   "git+https://github.com/sociomantic-tsunami/makd;
-   "git+https://github.com/sociomantic-tsunami/beaver;
-   "git+https://github.com/dlang-community/stdx-allocator;
-)
-sha256sums=(
-   'SKIP'
-   'SKIP'
-   'SKIP'
-   'SKIP'
-   'SKIP'
-)
-
-prepare() {
-   cd "$srcdir/dfmt"
-
-   git submodule init
-   git config submodule.libdparse.url "$srcdir/libdparse"
-   git config submodule.makd.url "$srcdir/makd"
-   git config submodule.beaver.url "$srcdir/beaver"
-   git config submodule.stdx-allocator.url "$srcdir/stdx-allocator"
-   git submodule update
-}
-
-build() {
-   cd "$srcdir/dfmt"
-   make
-}
-
-package() {
-   # binaries
-   install -Dm755 "$srcdir/dfmt/bin/dfmt" "$pkgdir/usr/bin/dfmt"
-
-   # license
-   install -Dm644 "$srcdir/dfmt/LICENSE.txt" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: dfmt/repos/community-x86_64/PKGBUILD (from rev 342081, 
dfmt/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-06-08 22:36:43 UTC (rev 342082)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Dan Printzell 
+
+pkgname=('dfmt')
+pkgver=0.8.1
+pkgrel=1
+_pkgcommit=c66fea0fe546103db12d4354c2a9c73247bb9302
+pkgdesc="Dfmt is a formatter for D source code"
+arch=('x86_64')
+url="https://github.com/dlang-community/dfmt;
+license=("custom")
+groups=('dlang')
+makedepends=('dmd' 'git')
+depends=('libphobos')
+
+source=(
+   "git+https://github.com/dlang-community/dfmt#commit=$_pkgcommit;
+   "git+https://github.com/dlang-community/libdparse;
+   "git+https://github.com/sociomantic-tsunami/makd;
+   "git+https://github.com/sociomantic-tsunami/beaver;
+   "git+https://github.com/dlang-community/stdx-allocator;
+)
+sha256sums=(
+   'SKIP'
+   'SKIP'
+   'SKIP'
+   'SKIP'
+   'SKIP'
+)
+
+prepare() {
+   cd "$srcdir/dfmt"
+
+   git submodule init
+   git config submodule.libdparse.url "$srcdir/libdparse"
+   git config submodule.makd.url "$srcdir/makd"
+   git config submodule.beaver.url "$srcdir/beaver"
+   git config submodule.stdx-allocator.url "$srcdir/stdx-allocator"
+   git submodule update
+}
+
+build() {
+   cd "$srcdir/dfmt"
+   make
+}
+
+package() {
+   # binaries
+   install -Dm755 "$srcdir/dfmt/bin/dfmt" "$pkgdir/usr/bin/dfmt"
+
+   # license
+   install -Dm644 "$srcdir/dfmt/LICENSE.txt" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2018-06-08 Thread Dan Printzell via arch-commits
Date: Friday, June 8, 2018 @ 22:36:35
  Author: wild
Revision: 342081

upgpkg: dfmt 0.8.1-1

Updated to 0.8.1

Modified:
  dfmt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-06-08 22:29:21 UTC (rev 342080)
+++ PKGBUILD2018-06-08 22:36:35 UTC (rev 342081)
@@ -2,9 +2,9 @@
 # Maintainer: Dan Printzell 
 
 pkgname=('dfmt')
-pkgver=0.8.0
+pkgver=0.8.1
 pkgrel=1
-_pkgcommit=b416d72221b07bd460ded8407487e32520fd3962
+_pkgcommit=c66fea0fe546103db12d4354c2a9c73247bb9302
 pkgdesc="Dfmt is a formatter for D source code"
 arch=('x86_64')
 url="https://github.com/dlang-community/dfmt;


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

2018-06-08 Thread Antonio Rojas via arch-commits
Date: Friday, June 8, 2018 @ 22:29:01
  Author: arojas
Revision: 342079

BUILDINFO rebuild

Modified:
  mesa-dri1/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-06-08 22:28:29 UTC (rev 342078)
+++ PKGBUILD2018-06-08 22:29:01 UTC (rev 342079)
@@ -4,9 +4,9 @@
 pkgname=('unichrome-dri' 'i810-dri' 'mach64-dri' 'mga-dri' 'r128-dri' 
'savage-dri' 'sis-dri' 'tdfx-dri')
 
 pkgver=7.11.2
-pkgrel=9
+pkgrel=10
 arch=('x86_64')
-makedepends=('glproto>=1.4.14' 'dri2proto' 'libdrm>=2.4.26' 
'libxxf86vm>=1.1.1' 'libxdamage>=1.1.3' 'expat>=2.0.1' 'libx11>=1.4.3' 
'libxt>=1.1.1' 
+makedepends=('xorgproto' 'libdrm>=2.4.26' 'libxxf86vm>=1.1.1' 
'libxdamage>=1.1.3' 'expat>=2.0.1' 'libx11>=1.4.3' 'libxt>=1.1.1' 
  'gcc-libs>=4.6.1' 'python2' 'libxml2' 'imake' 'llvm' 'udev')
 url="http://mesa3d.sourceforge.net;
 license=('custom')


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

2018-06-08 Thread Antonio Rojas via arch-commits
Date: Friday, June 8, 2018 @ 22:29:21
  Author: arojas
Revision: 342080

archrelease: copy trunk to community-x86_64

Added:
  mesa-dri1/repos/community-x86_64/LICENSE
(from rev 342079, mesa-dri1/trunk/LICENSE)
  mesa-dri1/repos/community-x86_64/PKGBUILD
(from rev 342079, mesa-dri1/trunk/PKGBUILD)
Deleted:
  mesa-dri1/repos/community-x86_64/LICENSE
  mesa-dri1/repos/community-x86_64/PKGBUILD

--+
 LICENSE  |  164 +--
 PKGBUILD |  230 ++---
 2 files changed, 197 insertions(+), 197 deletions(-)

Deleted: LICENSE
===
--- LICENSE 2018-06-08 22:29:01 UTC (rev 342079)
+++ LICENSE 2018-06-08 22:29:21 UTC (rev 342080)
@@ -1,82 +0,0 @@
-Disclaimer
-
-Mesa is a 3-D graphics library with an API which is very similar to
-that of OpenGL*
-To the extent that Mesa utilizes the OpenGL command syntax or state
-machine, it is being used with authorization from Silicon Graphics,
-Inc.(SGI). However, the author does not possess an OpenGL license
-from SGI, and makes no claim that Mesa is in any way a compatible
-replacement for OpenGL or associated with SGI. Those who want a
-licensed implementation of OpenGL should contact a licensed
-vendor.
-
-Please do not refer to the library as MesaGL (for legal
-reasons). It's just Mesa or The Mesa 3-D graphics
-library
-
-* OpenGL is a trademark of Silicon Graphics Incorporated.
-
-License / Copyright Information
-
-The Mesa distribution consists of several components.  Different copyrights
-and licenses apply to different components.  For example, GLUT is copyrighted
-by Mark Kilgard, some demo programs are copyrighted by SGI, some of the Mesa
-device drivers are copyrighted by their authors.  See below for a list of
-Mesa's main components and the license for each.
-
-The core Mesa library is licensed according to the terms of the MIT license.
-This allows integration with the XFree86, Xorg and DRI projects.
-
-The default Mesa license is as follows:
-
-Copyright (C) 1999-2007  Brian Paul   All Rights Reserved.
-
-Permission is hereby granted, free of charge, to any person obtaining a
-copy of this software and associated documentation files (the "Software"),
-to deal in the Software without restriction, including without limitation
-the rights to use, copy, modify, merge, publish, distribute, sublicense,
-and/or sell copies of the Software, and to permit persons to whom the
-Software is furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included
-in all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
-OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
-BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
-AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
-CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
-Attention, Contributors
-
-When contributing to the Mesa project you must agree to the licensing terms
-of the component to which you're contributing.
-The following section lists the primary components of the Mesa distribution
-and their respective licenses.
-
-
-Mesa Component Licenses
-
-Component Location   Primary Author  License
-
-Main Mesa codesrc/mesa/  Brian Paul  Mesa (MIT)
-
-Device driverssrc/mesa/drivers/* See drivers See drivers
-
-Ext headers   include/GL/glext.h SGI SGI Free B
-  include/GL/glxext.h
-
-GLUT  src/glut/  Mark KilgardMark's copyright
-
-Mesa GLU library  src/glu/mesa/  Brian Paul  GNU-LGPL
-
-SGI GLU library   src/glu/sgi/   SGI SGI Free B
-
-demo programs progs/demos/   various see source files
-
-X demos   progs/xdemos/  Brian Paul  see source files
-
-SGI demos progs/samples/ SGI SGI copyright
-
-RedBook demos progs/redbook/ SGI SGI copyright

Copied: mesa-dri1/repos/community-x86_64/LICENSE (from rev 342079, 
mesa-dri1/trunk/LICENSE)
===
--- LICENSE (rev 0)
+++ LICENSE 2018-06-08 22:29:21 UTC (rev 342080)
@@ -0,0 +1,82 @@
+Disclaimer
+
+Mesa is a 3-D graphics library with an API which is very similar to
+that of OpenGL*
+To the extent that Mesa utilizes the OpenGL command syntax or state
+machine, it is being used with authorization from Silicon Graphics,
+Inc.(SGI). However, the author does not possess an 

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

2018-06-08 Thread Dan Printzell via arch-commits
Date: Friday, June 8, 2018 @ 22:28:29
  Author: wild
Revision: 342078

archrelease: copy trunk to community-x86_64

Added:
  dtools/repos/community-x86_64/PKGBUILD
(from rev 342077, dtools/trunk/PKGBUILD)
  dtools/repos/community-x86_64/autodetect.diff
(from rev 342077, dtools/trunk/autodetect.diff)
Deleted:
  dtools/repos/community-x86_64/PKGBUILD
  dtools/repos/community-x86_64/autodetect.diff

-+
 PKGBUILD|   96 +++---
 autodetect.diff |   94 ++--
 2 files changed, 95 insertions(+), 95 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-06-08 22:28:21 UTC (rev 342077)
+++ PKGBUILD2018-06-08 22:28:29 UTC (rev 342078)
@@ -1,48 +0,0 @@
-# $Id$
-# Maintainer: Dan Printzell 
-# Contributor: Mihails Strasunse 
-
-pkgname='dtools'
-pkgver=2.080.0
-pkgrel=1
-pkgdesc="Ancilliary tools for the D programming language"
-license=('Boost')
-groups=('dlang')
-arch=('x86_64')
-url="http://www.dlang.org;
-makedepends=('dmd' 'libphobos')
-depends=('curl')
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/dlang/tools/archive/v${pkgver}.tar.gz
-   "http://www.boost.org/LICENSE_1_0.txt;
-   "autodetect.diff")
-sha512sums=('c317e0bd624972b0695a3a73cd10eed009407faab7b59328ac44e1f4d92e96ef5639efb82e1f1bc10288ed6e37b95311abb9a9bb8b961df07bcbd8727e87289b'
-
'd6078467835dba8932314c1c1e945569a64b065474d7aced27c9a7acc391d52e9f234138ed9f1aa9cd576f25f12f557e0b733c14891d42c16ecdc4a7bd4d60b8'
-
'3bce3c66cf24837fcb9bf244f2b07ed6116d8d67a75b2319010cf93956e93b43262b7d9613359503e6b0352b82684be8baeeb7b1f50e77accda334ce470bf5e3')
-
-build() {
-DMD=dmd
-cd tools-${pkgver}
-
-# rdmd is used to build others
-$DMD -od. -ofdtools-rdmd rdmd.d
-
-for tool in DustMite/dustmite ddemangle catdoc detab tolf dget; do
-./dtools-rdmd --compiler=$DMD --build-only -od. -ofdtools-`basename 
$tool` $tool.d
-done
-}
-
-package() {
-cd tools-${pkgver}
-
-mkdir -p $pkgdir/usr/bin
-for tool in rdmd ddemangle catdoc detab tolf dget dustmite; do
-install -m755 -t $pkgdir/usr/bin $pkgname-$tool
-done
-
-cd $pkgdir
-ln -s dtools-rdmd usr/bin/rdmd
-ln -s dtools-dustmite usr/bin/dustmite
-ln -s dtools-ddemangle usr/bin/ddemangle
-
-install -Dm644 $srcdir/LICENSE_1_0.txt usr/share/licenses/$pkgname/LICENSE
-}

Copied: dtools/repos/community-x86_64/PKGBUILD (from rev 342077, 
dtools/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-06-08 22:28:29 UTC (rev 342078)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Dan Printzell 
+# Contributor: Mihails Strasunse 
+
+pkgname='dtools'
+pkgver=2.080.1
+pkgrel=1
+pkgdesc="Ancilliary tools for the D programming language"
+license=('Boost')
+groups=('dlang')
+arch=('x86_64')
+url="http://www.dlang.org;
+makedepends=('dmd' 'libphobos')
+depends=('curl')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/dlang/tools/archive/v${pkgver}.tar.gz
+   "http://www.boost.org/LICENSE_1_0.txt;
+   "autodetect.diff")
+sha512sums=('31acfdebeab3175dead39524fd7009a5bbaaeeaf4733dd20eb492893748e00ad0786cd1f2a7098dc08245158f6174b6a321ea62ccee0a44983f92705bda43055'
+
'd6078467835dba8932314c1c1e945569a64b065474d7aced27c9a7acc391d52e9f234138ed9f1aa9cd576f25f12f557e0b733c14891d42c16ecdc4a7bd4d60b8'
+
'3bce3c66cf24837fcb9bf244f2b07ed6116d8d67a75b2319010cf93956e93b43262b7d9613359503e6b0352b82684be8baeeb7b1f50e77accda334ce470bf5e3')
+
+build() {
+DMD=dmd
+cd tools-${pkgver}
+
+# rdmd is used to build others
+$DMD -od. -ofdtools-rdmd rdmd.d
+
+for tool in DustMite/dustmite ddemangle catdoc detab tolf dget; do
+./dtools-rdmd --compiler=$DMD --build-only -od. -ofdtools-`basename 
$tool` $tool.d
+done
+}
+
+package() {
+cd tools-${pkgver}
+
+mkdir -p $pkgdir/usr/bin
+for tool in rdmd ddemangle catdoc detab tolf dget dustmite; do
+install -m755 -t $pkgdir/usr/bin $pkgname-$tool
+done
+
+cd $pkgdir
+ln -s dtools-rdmd usr/bin/rdmd
+ln -s dtools-dustmite usr/bin/dustmite
+ln -s dtools-ddemangle usr/bin/ddemangle
+
+install -Dm644 $srcdir/LICENSE_1_0.txt usr/share/licenses/$pkgname/LICENSE
+}

Deleted: autodetect.diff
===
--- autodetect.diff 2018-06-08 22:28:21 UTC (rev 342077)
+++ autodetect.diff 2018-06-08 22:28:29 UTC (rev 342078)
@@ -1,47 +0,0 @@
-diff --git a/rdmd.d b/rdmd.d
-index bd82637..390d533 100644
 a/rdmd.d
-+++ b/rdmd.d
-@@ -52,7 +52,32 @@ else version (LDC)
- else
- static assert(false, "Unknown compiler");
- 
--private string compiler = defaultCompiler;
-+private string compiler;
-+
-+void chooseCompiler(ref string 

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

2018-06-08 Thread Dan Printzell via arch-commits
Date: Friday, June 8, 2018 @ 22:28:02
  Author: wild
Revision: 342076

archrelease: copy trunk to community-x86_64

Added:
  dmd/repos/community-x86_64/PKGBUILD
(from rev 342075, dmd/trunk/PKGBUILD)
  dmd/repos/community-x86_64/dmd-doc.desktop
(from rev 342075, dmd/trunk/dmd-doc.desktop)
  dmd/repos/community-x86_64/dmd.conf
(from rev 342075, dmd/trunk/dmd.conf)
Deleted:
  dmd/repos/community-x86_64/PKGBUILD
  dmd/repos/community-x86_64/dmd-doc.desktop
  dmd/repos/community-x86_64/dmd.conf

-+
 PKGBUILD|  248 +++---
 dmd-doc.desktop |   14 +--
 dmd.conf|   10 +-
 3 files changed, 136 insertions(+), 136 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-06-08 22:27:52 UTC (rev 342075)
+++ PKGBUILD2018-06-08 22:28:02 UTC (rev 342076)
@@ -1,124 +0,0 @@
-# $Id$
-# Maintainer: Dan Printzell 
-# Contributor: Mihails Strasunse 
-# Contributor: Sven-Hendrik Haase 
-# Contributor: Chris Brannon 
-# Contributor: Andrea Scarpino 
-# Contributor: Anders Bergh 
-# Contributor: Alexander Fehr 
-
-pkgname=('dmd' 'dmd-docs' 'libphobos')
-pkgdesc="D programming language compiler and standard library"
-groups=('dlang' 'dlang-dmd')
-pkgbase=dmd
-pkgver=2.080.0
-pkgrel=1
-epoch=1
-arch=('x86_64')
-url="http://www.dlang.org;
-makedepends=('git' 'ldc')
-source=("git+https://github.com/dlang/dmd.git#tag=v$pkgver;
-"git+https://github.com/dlang/druntime.git#tag=v$pkgver;
-"git+https://github.com/dlang/phobos.git#tag=v$pkgver;
-
"http://downloads.dlang.org/releases/2.x/$pkgver/dmd.$pkgver.linux.tar.xz;
-
"http://downloads.dlang.org/releases/2.x/$pkgver/dmd.$pkgver.linux.tar.xz.sig;
-"dmd.conf"
-"dmd-doc.desktop")
-sha256sums=('SKIP'
-'SKIP'
-'SKIP'
-'0ce8cbde1116dfc0e3f6f3e6ead794a5e6cbefa9483cdd55493e6a3b7e093bc3'
-'SKIP'
-'3d639e89528fed1da90006f4dfb2b0fdc41308da5a96d953381ff4ccf257c035'
-'19c9cd3670bdef7fbde88de36c459d940e6b7bacc2a5e48aefbfd1b2c1895e07')
-validpgpkeys=('AFC7DB45693D62BB472BF27BAB8FE924C2F7E724') # Martin Nowak 

-noextract=("dmd.$pkgver.linux.tar.xz")
-
-prepare() {
-# We only want to extract the docs & samples, not the prebuild executables
-tar xfJ "dmd.$pkgver.linux.tar.xz" dmd2/html
-
-sed -i "/DFLAGS=/ a override DFLAGS += -link-defaultlib-shared=false" 
"$srcdir"/dmd/src/posix.mak
-}
-
-build() {
-cd "$srcdir"/dmd
-make -f posix.mak BUILD=release RELEASE=1 PIC=1 ENABLE_LTO=1 HOST_DMD=ldmd2
-
-cd "$srcdir"/druntime
-make -f posix.mak DMD="$srcdir"/dmd/generated/linux/release/*/dmd 
BUILD=release RELEASE=1 PIC=1
-
-cd "$srcdir"/phobos
-make -f posix.mak DMD="$srcdir"/dmd/generated/linux/release/*/dmd 
BUILD=release RELEASE=1 PIC=1
-}
-
-package_dmd() {
-pkgdesc="The D programming language reference compiler"
-backup=('etc/dmd.conf')
-depends=('gcc' 'libphobos')
-optdepends=(
-'dtools: collection of useful utilities for development in D'
-'gcc-multilib: to cross-compile 32-bit applications'
-'dmd-docs: documentation and sample code for D'
-)
-provides=("d-compiler=$pkgver")
-license=('Boost')
-
-cd "$srcdir"/dmd
-
-install -Dm755 "$srcdir"/dmd/generated/linux/release/*/dmd 
"$pkgdir"/usr/bin/dmd
-
-mkdir -p "$pkgdir"/etc
-install -Dm644 "$srcdir"/dmd.conf "$pkgdir"/etc/dmd.conf
-
-mkdir -p "$pkgdir"/usr/share/man/man1
-mkdir -p "$pkgdir"/usr/share/man/man5
-cp -r docs/man/man1/* "$pkgdir"/usr/share/man/man1/
-cp -r docs/man/man5/* "$pkgdir"/usr/share/man/man5/
-
-install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-
-find "$pkgdir"/usr -type f | xargs chmod 0644
-chmod 755 "$pkgdir"/usr/bin/*
-}
-
-package_dmd-docs() {
-pkgdesc="Documentation and sample code for D programming language"
-depends=('dmd')
-license=('Boost')
-
-cd "$srcdir"/dmd
-
-mkdir -p "$pkgdir"/usr/share/applications
-install -Dm644 "$srcdir"/dmd-doc.desktop 
"$pkgdir"/usr/share/applications/dmd-doc.desktop
-
-mkdir -p "$pkgdir"/usr/share/d/samples/
-cp -r samples/* "$pkgdir"/usr/share/d/samples/
-
-mkdir -p "$pkgdir"/usr/share/d/html
-cp -r "$srcdir"/dmd2/html/* "$pkgdir"/usr/share/d/html/
-
-install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_libphobos() {
-pkgdesc="The Phobos standard library for D programming language"
-options=('staticlibs' '!strip')
-depends=('gcc-libs')
-conflicts=('libphobos-devel')
-provides=("d-runtime=$pkgver" "d-stdlib=$pkgver" "libphobos-devel=$pkgver")
-replaces=('libphobos-devel')
-license=('Boost')
-
-mkdir -p "$pkgdir"/usr/lib
-cp -P $(find "$srcdir"/{druntime,phobos}/generated/linux/release/ \( 
-iname "*.a" -a \! -iname "*.so.a" \) -o \( -iname "*.so*" -a \! 

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

2018-06-08 Thread Dan Printzell via arch-commits
Date: Friday, June 8, 2018 @ 22:28:21
  Author: wild
Revision: 342077

upgpkg: dtools 2.080.1-1

Updated to 2.080.1

Modified:
  dtools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-06-08 22:28:02 UTC (rev 342076)
+++ PKGBUILD2018-06-08 22:28:21 UTC (rev 342077)
@@ -3,7 +3,7 @@
 # Contributor: Mihails Strasunse 
 
 pkgname='dtools'
-pkgver=2.080.0
+pkgver=2.080.1
 pkgrel=1
 pkgdesc="Ancilliary tools for the D programming language"
 license=('Boost')
@@ -15,7 +15,7 @@
 
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/dlang/tools/archive/v${pkgver}.tar.gz
"http://www.boost.org/LICENSE_1_0.txt;
"autodetect.diff")
-sha512sums=('c317e0bd624972b0695a3a73cd10eed009407faab7b59328ac44e1f4d92e96ef5639efb82e1f1bc10288ed6e37b95311abb9a9bb8b961df07bcbd8727e87289b'
+sha512sums=('31acfdebeab3175dead39524fd7009a5bbaaeeaf4733dd20eb492893748e00ad0786cd1f2a7098dc08245158f6174b6a321ea62ccee0a44983f92705bda43055'
 
'd6078467835dba8932314c1c1e945569a64b065474d7aced27c9a7acc391d52e9f234138ed9f1aa9cd576f25f12f557e0b733c14891d42c16ecdc4a7bd4d60b8'
 
'3bce3c66cf24837fcb9bf244f2b07ed6116d8d67a75b2319010cf93956e93b43262b7d9613359503e6b0352b82684be8baeeb7b1f50e77accda334ce470bf5e3')
 


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

2018-06-08 Thread Dan Printzell via arch-commits
Date: Friday, June 8, 2018 @ 22:27:52
  Author: wild
Revision: 342075

upgpkg: dmd 1:2.080.1-1

Updated to 2.080.1

Modified:
  dmd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-06-08 22:24:47 UTC (rev 342074)
+++ PKGBUILD2018-06-08 22:27:52 UTC (rev 342075)
@@ -11,7 +11,7 @@
 pkgdesc="D programming language compiler and standard library"
 groups=('dlang' 'dlang-dmd')
 pkgbase=dmd
-pkgver=2.080.0
+pkgver=2.080.1
 pkgrel=1
 epoch=1
 arch=('x86_64')
@@ -27,7 +27,7 @@
 sha256sums=('SKIP'
 'SKIP'
 'SKIP'
-'0ce8cbde1116dfc0e3f6f3e6ead794a5e6cbefa9483cdd55493e6a3b7e093bc3'
+'4e79c92abc3823cfae58a953f2cef4cc4574fa9a9c7a2d8de36d4faa4b3ccef1'
 'SKIP'
 '3d639e89528fed1da90006f4dfb2b0fdc41308da5a96d953381ff4ccf257c035'
 '19c9cd3670bdef7fbde88de36c459d940e6b7bacc2a5e48aefbfd1b2c1895e07')


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

2018-06-08 Thread Antonio Rojas via arch-commits
Date: Friday, June 8, 2018 @ 22:24:47
  Author: arojas
Revision: 342074

archrelease: copy trunk to community-x86_64

Added:
  zinnia/repos/community-x86_64/PKGBUILD
(from rev 342073, zinnia/trunk/PKGBUILD)
  zinnia/repos/community-x86_64/zinnia-gcc6.patch
(from rev 342073, zinnia/trunk/zinnia-gcc6.patch)
Deleted:
  zinnia/repos/community-x86_64/PKGBUILD

---+
 PKGBUILD  |   64 
 zinnia-gcc6.patch |   21 +
 2 files changed, 56 insertions(+), 29 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-06-08 22:24:25 UTC (rev 342073)
+++ PKGBUILD2018-06-08 22:24:47 UTC (rev 342074)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Humbert Julien 
-
-pkgname=zinnia
-pkgver=0.06
-pkgrel=4
-pkgdesc="Simple, customizable and portable online hand recognition system 
based on Support Vector Machines"
-arch=('i686' 'x86_64')
-url="http://zinnia.sourceforge.net/;
-license=('BSD')
-depends=('gcc-libs')
-makedepends=('libtool')
-source=("http://downloads.sourceforge.net/project/$pkgname/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz;)
-sha256sums=('ece3af93f937282971634fd81d3e997f848e8cfa958220e26a4564ca064ac20b')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  make DESTDIR="$pkgdir" install
-  install -Dm644 "$srcdir/$pkgname-$pkgver/COPYING" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: zinnia/repos/community-x86_64/PKGBUILD (from rev 342073, 
zinnia/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-06-08 22:24:47 UTC (rev 342074)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Humbert Julien 
+
+pkgname=zinnia
+pkgver=0.06
+pkgrel=5
+pkgdesc="Simple, customizable and portable online hand recognition system 
based on Support Vector Machines"
+arch=('x86_64')
+url="http://zinnia.sourceforge.net/;
+license=('BSD')
+depends=('gcc-libs')
+source=("http://downloads.sourceforge.net/project/$pkgname/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz;
+zinnia-gcc6.patch)
+sha256sums=('ece3af93f937282971634fd81d3e997f848e8cfa958220e26a4564ca064ac20b'
+'f27cc4bd687d4c66525f744315c53caa537f1998dd546ffba9ef337e033854e6')
+
+prepare() {
+  cd $pkgname-$pkgver
+  patch -p1 -i ../zinnia-gcc6.patch # Fix build with GCC 6 (Debian)
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make DESTDIR="$pkgdir" install
+  install -Dm644 "$srcdir/$pkgname-$pkgver/COPYING" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}

Copied: zinnia/repos/community-x86_64/zinnia-gcc6.patch (from rev 342073, 
zinnia/trunk/zinnia-gcc6.patch)
===
--- zinnia-gcc6.patch   (rev 0)
+++ zinnia-gcc6.patch   2018-06-08 22:24:47 UTC (rev 342074)
@@ -0,0 +1,21 @@
+--- a/trainer.cpp
 b/trainer.cpp
+@@ -93,7 +93,7 @@ class TrainerImpl: public Trainer {
+ 
+  public:
+   bool add(const Character ) {
+-const std::string y = character.value();
++std::string y = character.value();
+ CHECK_FALSE(!y.empty()) << "input character is empty";
+ Features features;
+ CHECK_FALSE(features.read(character)) << "cannot read character: " << y;
+@@ -103,7 +103,7 @@ class TrainerImpl: public Trainer {
+ if (!fn) {
+   return false;
+ }
+-x_.push_back(std::make_pair(y, fn));
++x_.push_back(std::make_pair(y, fn));
+ return true;
+   }
+ 
+


[arch-commits] Commit in zinnia/trunk (PKGBUILD zinnia-gcc6.patch)

2018-06-08 Thread Antonio Rojas via arch-commits
Date: Friday, June 8, 2018 @ 22:24:25
  Author: arojas
Revision: 342073

BUILDINFO rebuild

Added:
  zinnia/trunk/zinnia-gcc6.patch
Modified:
  zinnia/trunk/PKGBUILD

---+
 PKGBUILD  |   18 --
 zinnia-gcc6.patch |   21 +
 2 files changed, 33 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-06-08 20:06:04 UTC (rev 342072)
+++ PKGBUILD2018-06-08 22:24:25 UTC (rev 342073)
@@ -4,18 +4,24 @@
 
 pkgname=zinnia
 pkgver=0.06
-pkgrel=4
+pkgrel=5
 pkgdesc="Simple, customizable and portable online hand recognition system 
based on Support Vector Machines"
 arch=('x86_64')
 url="http://zinnia.sourceforge.net/;
 license=('BSD')
 depends=('gcc-libs')
-makedepends=('libtool')
-source=("http://downloads.sourceforge.net/project/$pkgname/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz;)
-sha256sums=('ece3af93f937282971634fd81d3e997f848e8cfa958220e26a4564ca064ac20b')
+source=("http://downloads.sourceforge.net/project/$pkgname/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz;
+zinnia-gcc6.patch)
+sha256sums=('ece3af93f937282971634fd81d3e997f848e8cfa958220e26a4564ca064ac20b'
+'f27cc4bd687d4c66525f744315c53caa537f1998dd546ffba9ef337e033854e6')
 
+prepare() {
+  cd $pkgname-$pkgver
+  patch -p1 -i ../zinnia-gcc6.patch # Fix build with GCC 6 (Debian)
+}
+
 build() {
-  cd "$srcdir/$pkgname-$pkgver"
+  cd $pkgname-$pkgver
 
   ./configure --prefix=/usr
   make
@@ -22,7 +28,7 @@
 }
 
 package() {
-  cd "$srcdir/$pkgname-$pkgver"
+  cd $pkgname-$pkgver
 
   make DESTDIR="$pkgdir" install
   install -Dm644 "$srcdir/$pkgname-$pkgver/COPYING" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"

Added: zinnia-gcc6.patch
===
--- zinnia-gcc6.patch   (rev 0)
+++ zinnia-gcc6.patch   2018-06-08 22:24:25 UTC (rev 342073)
@@ -0,0 +1,21 @@
+--- a/trainer.cpp
 b/trainer.cpp
+@@ -93,7 +93,7 @@ class TrainerImpl: public Trainer {
+ 
+  public:
+   bool add(const Character ) {
+-const std::string y = character.value();
++std::string y = character.value();
+ CHECK_FALSE(!y.empty()) << "input character is empty";
+ Features features;
+ CHECK_FALSE(features.read(character)) << "cannot read character: " << y;
+@@ -103,7 +103,7 @@ class TrainerImpl: public Trainer {
+ if (!fn) {
+   return false;
+ }
+-x_.push_back(std::make_pair(y, fn));
++x_.push_back(std::make_pair(y, fn));
+ return true;
+   }
+ 
+


[arch-commits] Commit in syslog-ng/repos/testing-x86_64 (6 files)

2018-06-08 Thread Antonio Rojas via arch-commits
Date: Friday, June 8, 2018 @ 22:01:12
  Author: arojas
Revision: 326504

archrelease: copy trunk to testing-x86_64

Added:
  syslog-ng/repos/testing-x86_64/PKGBUILD
(from rev 326503, syslog-ng/trunk/PKGBUILD)
  syslog-ng/repos/testing-x86_64/syslog-ng.conf
(from rev 326503, syslog-ng/trunk/syslog-ng.conf)
  syslog-ng/repos/testing-x86_64/syslog-ng.logrotate
(from rev 326503, syslog-ng/trunk/syslog-ng.logrotate)
Deleted:
  syslog-ng/repos/testing-x86_64/PKGBUILD
  syslog-ng/repos/testing-x86_64/syslog-ng.conf
  syslog-ng/repos/testing-x86_64/syslog-ng.logrotate

-+
 PKGBUILD|  125 +
 syslog-ng.conf  |  184 +-
 syslog-ng.logrotate |   14 +--
 3 files changed, 162 insertions(+), 161 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-06-08 22:00:49 UTC (rev 326503)
+++ PKGBUILD2018-06-08 22:01:12 UTC (rev 326504)
@@ -1,62 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-
-pkgname=syslog-ng
-pkgver=3.15.1
-pkgrel=2
-pkgdesc="Next-generation syslogd with advanced networking and filtering 
capabilities"
-arch=('x86_64')
-url="http://www.balabit.com/network-security/syslog-ng/;
-license=('GPL2' 'LGPL2.1')
-depends=('awk' 'systemd' 'glib2' 'libdbi' 'libnsl')
-makedepends=('libxslt' 'json-c' 'mongo-c-driver' 'librabbitmq-c' 'python')
-checkdepends=('python-nose' 'python-ply')
-optdepends=('logrotate: for rotating log files'
-   'json-c: for json-plugin'
-'curl: for the HTTP module'
-'librabbitmq-c: for the AMQP plugin'
-'mongo-c-driver: for the MongoDB plugin'
-'python: for the Python plugin')
-conflicts=('eventlog')
-replaces=('eventlog')
-backup=('etc/syslog-ng/scl.conf'
-'etc/syslog-ng/syslog-ng.conf'
-'etc/logrotate.d/syslog-ng'
-'etc/default/syslog-ng@default')
-source=(https://github.com/balabit/syslog-ng/releases/download/syslog-ng-$pkgver/$pkgname-$pkgver.tar.gz
-syslog-ng.conf syslog-ng.logrotate)
-sha256sums=('a2dabd28674e2b558e4fb92484ad111d77bf7150070aa28556827130b479f9ef'
-'893a2db9e4d56c740cfa9de64a153dccb590049cc93750bd2cdea68be14486a9'
-'93c935eca56854011ea9e353b7a1da662ad40b2e8452954c5b4b5a1d5b2d5317')
-
-prepare() {
-  cd $pkgname-$pkgver
-  sed -i -e 's,/bin/,/usr/bin/,' -e 's,/sbin/,/bin/,' 
contrib/systemd/syslog-ng@.service
-  sed -i -e 's|etc|etc/syslog-ng|g' -e 's|/var/run|/run|g' 
contrib/systemd/syslog-ng@default
-}
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc/syslog-ng --libexecdir=/usr/lib \
---sbindir=/usr/bin --localstatedir=/var/lib/syslog-ng --datadir=/usr/share 
\
---with-pidfile-dir=/run --disable-spoof-source --enable-ipv6 --enable-sql \
---enable-systemd --with-systemdsystemunitdir=/usr/lib/systemd/system \
---enable-manpages --with-jsonc=system --with-mongoc=system 
--with-librabbitmq-client=system
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make check || /bin/true # python test requires pep8
-}
-
-package() {
-  make -C $pkgname-$pkgver DESTDIR="$pkgdir" install
-  install -dm755 "$pkgdir/var/lib/syslog-ng" 
"$pkgdir/etc/syslog-ng/patterndb.d"
-  install -Dm644 "$srcdir/syslog-ng.conf" 
"$pkgdir/etc/syslog-ng/syslog-ng.conf"
-  install -Dm644 "$srcdir/syslog-ng.logrotate" 
"$pkgdir/etc/logrotate.d/syslog-ng"
-  install -Dm644 "$srcdir"/$pkgname-$pkgver/contrib/systemd/syslog-ng@default 
-t "$pkgdir"/etc/default
-
-# See http://lists.balabit.hu/pipermail/syslog-ng/2016-February/022667.html
-  rm -r "$pkgdir"/usr/share/syslog-ng/include/scl/cim
-}

Copied: syslog-ng/repos/testing-x86_64/PKGBUILD (from rev 326503, 
syslog-ng/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-06-08 22:01:12 UTC (rev 326504)
@@ -0,0 +1,63 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgname=syslog-ng
+pkgver=3.15.1
+pkgrel=3
+pkgdesc="Next-generation syslogd with advanced networking and filtering 
capabilities"
+arch=('x86_64')
+url="http://www.balabit.com/network-security/syslog-ng/;
+license=('GPL2' 'LGPL2.1')
+depends=('awk' 'systemd' 'glib2' 'libdbi' 'libnsl')
+makedepends=('libxslt' 'json-c' 'mongo-c-driver' 'librabbitmq-c' 'python' 
'libesmtp')
+checkdepends=('python-nose' 'python-ply')
+optdepends=('logrotate: for rotating log files'
+   'json-c: for json-plugin'
+'curl: for the HTTP module'
+'librabbitmq-c: for the AMQP plugin'
+'mongo-c-driver: for the MongoDB plugin'
+'python: for the Python plugin'
+'libesmtp: for the SMTP plugin')
+conflicts=('eventlog')
+replaces=('eventlog')
+backup=('etc/syslog-ng/scl.conf'
+'etc/syslog-ng/syslog-ng.conf'
+'etc/logrotate.d/syslog-ng'
+'etc/default/syslog-ng@default')

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

2018-06-08 Thread Antonio Rojas via arch-commits
Date: Friday, June 8, 2018 @ 22:00:49
  Author: arojas
Revision: 326503

Enable SMTP module (FS#58924)

Modified:
  syslog-ng/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-06-08 20:25:10 UTC (rev 326502)
+++ PKGBUILD2018-06-08 22:00:49 UTC (rev 326503)
@@ -3,13 +3,13 @@
 
 pkgname=syslog-ng
 pkgver=3.15.1
-pkgrel=2
+pkgrel=3
 pkgdesc="Next-generation syslogd with advanced networking and filtering 
capabilities"
 arch=('x86_64')
 url="http://www.balabit.com/network-security/syslog-ng/;
 license=('GPL2' 'LGPL2.1')
 depends=('awk' 'systemd' 'glib2' 'libdbi' 'libnsl')
-makedepends=('libxslt' 'json-c' 'mongo-c-driver' 'librabbitmq-c' 'python')
+makedepends=('libxslt' 'json-c' 'mongo-c-driver' 'librabbitmq-c' 'python' 
'libesmtp')
 checkdepends=('python-nose' 'python-ply')
 optdepends=('logrotate: for rotating log files'
'json-c: for json-plugin'
@@ -16,7 +16,8 @@
 'curl: for the HTTP module'
 'librabbitmq-c: for the AMQP plugin'
 'mongo-c-driver: for the MongoDB plugin'
-'python: for the Python plugin')
+'python: for the Python plugin'
+'libesmtp: for the SMTP plugin')
 conflicts=('eventlog')
 replaces=('eventlog')
 backup=('etc/syslog-ng/scl.conf'
@@ -39,7 +40,7 @@
   cd $pkgname-$pkgver
   ./configure --prefix=/usr --sysconfdir=/etc/syslog-ng --libexecdir=/usr/lib \
 --sbindir=/usr/bin --localstatedir=/var/lib/syslog-ng --datadir=/usr/share 
\
---with-pidfile-dir=/run --disable-spoof-source --enable-ipv6 --enable-sql \
+--with-pidfile-dir=/run --disable-spoof-source --enable-ipv6 --enable-sql 
--enable-smtp \
 --enable-systemd --with-systemdsystemunitdir=/usr/lib/systemd/system \
 --enable-manpages --with-jsonc=system --with-mongoc=system 
--with-librabbitmq-client=system
   make


[arch-commits] Commit in systemd/repos (21 files)

2018-06-08 Thread Christian Hesse via arch-commits
Date: Friday, June 8, 2018 @ 20:25:10
  Author: eworm
Revision: 326502

archrelease: copy trunk to testing-x86_64

Added:
  systemd/repos/testing-x86_64/
  systemd/repos/testing-x86_64/0001-Use-Arch-Linux-device-access-groups.patch
(from rev 326501, 
systemd/trunk/0001-Use-Arch-Linux-device-access-groups.patch)
  systemd/repos/testing-x86_64/PKGBUILD
(from rev 326501, systemd/trunk/PKGBUILD)
  systemd/repos/testing-x86_64/arch.conf
(from rev 326501, systemd/trunk/arch.conf)
  systemd/repos/testing-x86_64/initcpio-hook-udev
(from rev 326501, systemd/trunk/initcpio-hook-udev)
  systemd/repos/testing-x86_64/initcpio-install-systemd
(from rev 326501, systemd/trunk/initcpio-install-systemd)
  systemd/repos/testing-x86_64/initcpio-install-udev
(from rev 326501, systemd/trunk/initcpio-install-udev)
  systemd/repos/testing-x86_64/loader.conf
(from rev 326501, systemd/trunk/loader.conf)
  systemd/repos/testing-x86_64/splash-arch.bmp
(from rev 326501, systemd/trunk/splash-arch.bmp)
  systemd/repos/testing-x86_64/systemd-binfmt.hook
(from rev 326501, systemd/trunk/systemd-binfmt.hook)
  systemd/repos/testing-x86_64/systemd-catalog.hook
(from rev 326501, systemd/trunk/systemd-catalog.hook)
  systemd/repos/testing-x86_64/systemd-daemon-reload.hook
(from rev 326501, systemd/trunk/systemd-daemon-reload.hook)
  systemd/repos/testing-x86_64/systemd-hook
(from rev 326501, systemd/trunk/systemd-hook)
  systemd/repos/testing-x86_64/systemd-hwdb.hook
(from rev 326501, systemd/trunk/systemd-hwdb.hook)
  systemd/repos/testing-x86_64/systemd-sysctl.hook
(from rev 326501, systemd/trunk/systemd-sysctl.hook)
  systemd/repos/testing-x86_64/systemd-sysusers.hook
(from rev 326501, systemd/trunk/systemd-sysusers.hook)
  systemd/repos/testing-x86_64/systemd-tmpfiles.hook
(from rev 326501, systemd/trunk/systemd-tmpfiles.hook)
  systemd/repos/testing-x86_64/systemd-udev-reload.hook
(from rev 326501, systemd/trunk/systemd-udev-reload.hook)
  systemd/repos/testing-x86_64/systemd-update.hook
(from rev 326501, systemd/trunk/systemd-update.hook)
  systemd/repos/testing-x86_64/systemd-user.pam
(from rev 326501, systemd/trunk/systemd-user.pam)
  systemd/repos/testing-x86_64/systemd.install
(from rev 326501, systemd/trunk/systemd.install)

+
 0001-Use-Arch-Linux-device-access-groups.patch |   75 ++
 PKGBUILD   |  255 +++
 arch.conf  |7 
 initcpio-hook-udev |   22 +
 initcpio-install-systemd   |  202 ++
 initcpio-install-udev  |   29 ++
 loader.conf|1 
 systemd-binfmt.hook|   11 
 systemd-catalog.hook   |   11 
 systemd-daemon-reload.hook |   11 
 systemd-hook   |   38 +++
 systemd-hwdb.hook  |   11 
 systemd-sysctl.hook|   11 
 systemd-sysusers.hook  |   11 
 systemd-tmpfiles.hook  |   11 
 systemd-udev-reload.hook   |   11 
 systemd-update.hook|   11 
 systemd-user.pam   |5 
 systemd.install|   99 
 19 files changed, 832 insertions(+)

Copied: 
systemd/repos/testing-x86_64/0001-Use-Arch-Linux-device-access-groups.patch 
(from rev 326501, systemd/trunk/0001-Use-Arch-Linux-device-access-groups.patch)
===
--- testing-x86_64/0001-Use-Arch-Linux-device-access-groups.patch   
(rev 0)
+++ testing-x86_64/0001-Use-Arch-Linux-device-access-groups.patch   
2018-06-08 20:25:10 UTC (rev 326502)
@@ -0,0 +1,75 @@
+From 34e4b4953cb99642e9144d97823edf32b06ffe93 Mon Sep 17 00:00:00 2001
+Message-Id: 
<34e4b4953cb99642e9144d97823edf32b06ffe93.1520376078.git.jan.steff...@gmail.com>
+From: "Jan Alexander Steffens (heftig)" 
+Date: Tue, 6 Mar 2018 23:39:47 +0100
+Subject: [PATCH] Use Arch Linux' device access groups
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+  cdrom   → optical
+  dialout → uucp
+  tape→ storage
+---
+ rules/50-udev-default.rules.in | 14 +++---
+ sysusers.d/basic.conf.in   |  6 +++---
+ 2 files changed, 10 insertions(+), 10 deletions(-)
+
+diff --git a/rules/50-udev-default.rules.in b/rules/50-udev-default.rules.in
+index 191f56f42..f81c4d0fc 100644
+--- a/rules/50-udev-default.rules.in
 b/rules/50-udev-default.rules.in
+@@ -22,7 +22,7 @@ SUBSYSTEM=="tty", KERNEL=="sclp_line[0-9]*", GROUP="tty", 
MODE="0620"
+ SUBSYSTEM=="tty", KERNEL=="ttysclp[0-9]*", GROUP="tty", MODE="0620"
+ SUBSYSTEM=="tty", 

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

2018-06-08 Thread Christian Hesse via arch-commits
Date: Friday, June 8, 2018 @ 20:24:59
  Author: eworm
Revision: 326501

upgpkg: systemd 238.133-2

backport sd-shutdown improvements (FS#58867)

Modified:
  systemd/trunk/PKGBUILD

--+
 PKGBUILD |   14 +-
 1 file changed, 13 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-06-08 20:24:38 UTC (rev 326500)
+++ PKGBUILD2018-06-08 20:24:59 UTC (rev 326501)
@@ -8,7 +8,7 @@
 # Can be from either systemd or systemd-stable
 _commit='f58e62cbbc1c2842881a2a6ab9beda7bcb044a30'
 pkgver=238.133
-pkgrel=1
+pkgrel=2
 arch=('x86_64')
 url="https://www.github.com/systemd/systemd;
 makedepends=('acl' 'cryptsetup' 'docbook-xsl' 'gperf' 'lz4' 'xz' 'pam' 'libelf'
@@ -64,6 +64,18 @@
 _backports=(
   # nspawn: wait for network namespace creation before interface setup (#8633)
   '7511655807e90aa33ea7b71991401a79ec36bb41'
+
+  # sd-shutdown improvements #8429
+  # umount: Add more asserts and remove some unused arguments
+  '0494cae03d762eaf2fb7217ee7d70f615dcb5183'
+  # umount: Decide whether to remount read-only earlier
+  '1d62d22d9432d5c4a637002c9a29b20d52f25d9a'
+  # umount: Provide the same mount flags too when remounting read-only
+  '3bc341bee9fc7dfb41a131246b6fb0afd6ff4407'
+  # umount: Try unmounting even if remounting read-only failed
+  '8645ffd12b3cc7b0292acd9e1d691c4fab4cf409'
+  # umount: Don't bother remounting api and ro filesystems read-only
+  'e783b4902f387640bba12496936d01e967545c3c'
 )
 
 _reverts=(


[arch-commits] Commit in cups/repos/testing-x86_64 (21 files)

2018-06-08 Thread Jan Steffens via arch-commits
Date: Friday, June 8, 2018 @ 20:24:38
  Author: heftig
Revision: 326500

archrelease: copy trunk to testing-x86_64

Added:
  cups/repos/testing-x86_64/PKGBUILD
(from rev 326499, cups/trunk/PKGBUILD)
  cups/repos/testing-x86_64/cups-1.6.2-statedir.patch
(from rev 326499, cups/trunk/cups-1.6.2-statedir.patch)
  cups/repos/testing-x86_64/cups-2.2.8-5325.patch
(from rev 326499, cups/trunk/cups-2.2.8-5325.patch)
  cups/repos/testing-x86_64/cups-no-export-ssllibs.patch
(from rev 326499, cups/trunk/cups-no-export-ssllibs.patch)
  cups/repos/testing-x86_64/cups-no-gzip-man.patch
(from rev 326499, cups/trunk/cups-no-gzip-man.patch)
  cups/repos/testing-x86_64/cups-systemd-socket.patch
(from rev 326499, cups/trunk/cups-systemd-socket.patch)
  cups/repos/testing-x86_64/cups.install
(from rev 326499, cups/trunk/cups.install)
  cups/repos/testing-x86_64/cups.logrotate
(from rev 326499, cups/trunk/cups.logrotate)
  cups/repos/testing-x86_64/cups.pam
(from rev 326499, cups/trunk/cups.pam)
  cups/repos/testing-x86_64/cups.sysusers
(from rev 326499, cups/trunk/cups.sysusers)
  cups/repos/testing-x86_64/guid.patch
(from rev 326499, cups/trunk/guid.patch)
Deleted:
  cups/repos/testing-x86_64/PKGBUILD
  cups/repos/testing-x86_64/cups-1.6.2-statedir.patch
  cups/repos/testing-x86_64/cups-no-export-ssllibs.patch
  cups/repos/testing-x86_64/cups-no-gzip-man.patch
  cups/repos/testing-x86_64/cups-systemd-socket.patch
  cups/repos/testing-x86_64/cups.install
  cups/repos/testing-x86_64/cups.logrotate
  cups/repos/testing-x86_64/cups.pam
  cups/repos/testing-x86_64/cups.sysusers
  cups/repos/testing-x86_64/guid.patch

--+
 PKGBUILD |  349 -
 cups-1.6.2-statedir.patch|   24 +-
 cups-2.2.8-5325.patch|   45 +
 cups-no-export-ssllibs.patch |   24 +-
 cups-no-gzip-man.patch   |   36 ++--
 cups-systemd-socket.patch|   98 +--
 cups.install |   40 ++--
 cups.logrotate   |   10 -
 cups.pam |6 
 cups.sysusers|4 
 guid.patch   |   84 -
 11 files changed, 386 insertions(+), 334 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-06-08 20:23:24 UTC (rev 326499)
+++ PKGBUILD2018-06-08 20:24:38 UTC (rev 326500)
@@ -1,171 +0,0 @@
-# $Id$
-# Maintainer: Andreas Radke 
-
-pkgbase="cups"
-pkgname=('libcups' 'cups')
-pkgver=2.2.8
-pkgrel=1
-arch=('x86_64')
-license=('GPL')
-url="https://www.cups.org/;
-makedepends=('libtiff' 'libpng' 'acl' 'pam' 'xdg-utils' 'krb5' 'gnutls'
- 'cups-filters' 'bc' 'colord' 'xinetd' 'gzip' 'autoconf' 'libusb' 
'dbus' 
- 'avahi'  'hicolor-icon-theme' 'systemd' 'inetutils' 'libpaper' 
'valgrind')
-source=(https://github.com/apple/cups/releases/download/v${pkgver}/cups-${pkgver}-source.tar.gz{,.sig}
-cups.logrotate cups.pam
-cups.sysusers guid.patch
-# improve build and linking
-cups-no-export-ssllibs.patch
-cups-no-gzip-man.patch
-cups-1.6.2-statedir.patch
-# bugfixes
-cups-systemd-socket.patch)
-sha256sums=('3968fc1d26fc48727508db1c1380e36c6694ab90177fd6920aec5f6cc73af9e4'
-'SKIP'
-'d87fa0f0b5ec677aae34668f260333db17ce303aa1a752cba5f8e72623d9acf9'
-'57dfd072fd7ef0018c6b0a798367aac1abb5979060ff3f9df22d1048bb71c0d5'
-'06173dfaea37bdd9b39b3e09aba98c34ae7112a2f521db45a688907d8848caa2'
-'d4537526c1e075866ae22ad263da000fc2a592d36c26b79a459a1cfdade2bb2d'
-'ff3eb0782af0405f5dafe89e04b1b4ea7a49afc5496860d724343bd04f375832'
-'b8fc2e3bc603495f0278410350ea8f0161d9d83719feb64f573b63430cb4800b'
-'23349c96f2f7aeb7d48e3bcd35a969f5d5ac8f55a032b0cfaa0a03d7e37ea9af'
-'f909719e2595e016c320afa421cad74ccda285ac59b11749ddac58e707d4330a')
-validpgpkeys=('3737FD0D0E63B30172440D2DDBA3A7AB08D76223') # CUPS.org (CUPS.org 
PGP key) 
-validpgpkeys+=('45D083946E3035282B3CCA9AF434104235DA97EB') # "CUPS.org 
"
-validpgpkeys+=('845464660B686AAB36540B6F999559A027815955') # "Michael R Sweet 
"
-
-prepare() {
-
-  cd ${pkgbase}-${pkgver}
-
-  # improve build and linking
-  # Do not export SSL libs in cups-config
-  patch -Np1 -i ${srcdir}/cups-no-export-ssllibs.patch
-  # don't zip man pages in make install, let makepkg do that / Fedora
-  patch -Np1 -i ${srcdir}/cups-no-gzip-man.patch
-  # move /var/run -> /run for pid file
-  patch -Np1 -i ${srcdir}/cups-1.6.2-statedir.patch
-
-  # bug fixes
-  # make sure network is up when starting and notify systemd - FC
-  patch -Np1 -i ${srcdir}/cups-systemd-socket.patch
-
-  # FS#56818 - https://github.com/apple/cups/issues/5236
-  patch -Np1 -i ${srcdir}/guid.patch
-
-  # set MaxLogSize to 0 to prevent using cups internal log rotation
-  sed -i -e '5i\ ' conf/cupsd.conf.in
-  sed -i -e '6i# 

[arch-commits] Commit in epiphany/repos/extra-x86_64 (4 files)

2018-06-08 Thread Jan Steffens via arch-commits
Date: Friday, June 8, 2018 @ 20:23:22
  Author: heftig
Revision: 326498

archrelease: copy trunk to extra-x86_64

Added:
  epiphany/repos/extra-x86_64/PKGBUILD
(from rev 326497, epiphany/trunk/PKGBUILD)
  epiphany/repos/extra-x86_64/pluginsdir.diff
(from rev 326497, epiphany/trunk/pluginsdir.diff)
Deleted:
  epiphany/repos/extra-x86_64/PKGBUILD
  epiphany/repos/extra-x86_64/pluginsdir.diff

-+
 PKGBUILD|   78 +++---
 pluginsdir.diff |   56 +++---
 2 files changed, 67 insertions(+), 67 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-06-08 20:22:35 UTC (rev 326497)
+++ PKGBUILD2018-06-08 20:23:22 UTC (rev 326498)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=epiphany
-pkgver=3.28.3
-pkgrel=1
-pkgdesc="A GNOME web browser based on the WebKit rendering engine"
-url="https://wiki.gnome.org/Apps/Web;
-arch=(x86_64)
-license=(GPL)
-depends=(webkit2gtk gcr icu)
-makedepends=(itstool docbook-xml startup-notification lsb-release
- gobject-introspection yelp-tools appstream-glib git meson)
-groups=(gnome)
-_commit=6c4b1795fc35a17c2b686fa843cb06735c1ce497  # tags/3.28.3^0
-source=("git+https://gitlab.gnome.org/GNOME/epiphany.git#commit=$_commit;
-pluginsdir.diff)
-sha256sums=('SKIP'
-'b6c8ee6ace934c053f2fd89758e0b587cb8953c6b0246c1359aecaae4de70289')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  patch -Np1 -i ../pluginsdir.diff
-}
-
-build() {
-  arch-meson $pkgname build \
--D distributor_name="Arch Linux®"
-  ninja -C build
-}
-
-package() {
-  DESTDIR="$pkgdir" ninja -C build install
-}

Copied: epiphany/repos/extra-x86_64/PKGBUILD (from rev 326497, 
epiphany/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-06-08 20:23:22 UTC (rev 326498)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=epiphany
+pkgver=3.28.3.1
+pkgrel=1
+pkgdesc="A GNOME web browser based on the WebKit rendering engine"
+url="https://wiki.gnome.org/Apps/Web;
+arch=(x86_64)
+license=(GPL)
+depends=(webkit2gtk gcr icu)
+makedepends=(itstool docbook-xml startup-notification lsb-release
+ gobject-introspection yelp-tools appstream-glib git meson)
+groups=(gnome)
+_commit=a5a9a7e2904e2206b3cc863ab13748255247e3eb  # tags/3.28.3.1^0
+source=("git+https://gitlab.gnome.org/GNOME/epiphany.git#commit=$_commit;
+pluginsdir.diff)
+sha256sums=('SKIP'
+'b6c8ee6ace934c053f2fd89758e0b587cb8953c6b0246c1359aecaae4de70289')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  patch -Np1 -i ../pluginsdir.diff
+}
+
+build() {
+  arch-meson $pkgname build \
+-D distributor_name="Arch Linux®"
+  ninja -C build
+}
+
+package() {
+  DESTDIR="$pkgdir" ninja -C build install
+}

Deleted: pluginsdir.diff
===
--- pluginsdir.diff 2018-06-08 20:22:35 UTC (rev 326497)
+++ pluginsdir.diff 2018-06-08 20:23:22 UTC (rev 326498)
@@ -1,28 +0,0 @@
- embed/ephy-embed-shell.c | 1 +
- meson.build  | 1 +
- 2 files changed, 2 insertions(+)
-
-diff --git c/embed/ephy-embed-shell.c i/embed/ephy-embed-shell.c
-index b4837f834..1b5012bae 100644
 c/embed/ephy-embed-shell.c
-+++ i/embed/ephy-embed-shell.c
-@@ -910,6 +910,7 @@ ephy_embed_shell_create_web_context (EphyEmbedShell *shell)
-   g_free (cache_dir);
- 
-   priv->web_context = webkit_web_context_new_with_website_data_manager 
(manager);
-+  webkit_web_context_set_additional_plugins_directory (priv->web_context, 
EPHY_PLUGINS_DIR);
-   g_object_unref (manager);
- }
- 
-diff --git c/meson.build i/meson.build
-index a4a8a36b7..0c98f6c36 100644
 c/meson.build
-+++ i/meson.build
-@@ -25,6 +25,7 @@ conf = configuration_data()
- conf.set_quoted('BUILD_ROOT', meson.build_root())
- conf.set_quoted('DISTRIBUTOR_NAME', get_option('distributor_name'))
- conf.set_quoted('EPHY_WEB_EXTENSIONS_DIR', webextensionsdir)
-+conf.set_quoted('EPHY_PLUGINS_DIR', join_paths(pkglibdir, 'plugins'))
- conf.set_quoted('GETTEXT_PACKAGE', meson.project_name())
- conf.set_quoted('ISO_CODES_PREFIX', iso_codes_prefix)
- conf.set_quoted('LOCALEDIR', localedir)

Copied: epiphany/repos/extra-x86_64/pluginsdir.diff (from rev 326497, 
epiphany/trunk/pluginsdir.diff)
===
--- pluginsdir.diff (rev 0)
+++ pluginsdir.diff 2018-06-08 20:23:22 UTC (rev 326498)
@@ -0,0 +1,28 @@
+ embed/ephy-embed-shell.c | 1 +
+ meson.build  | 1 +
+ 2 files changed, 2 insertions(+)
+
+diff --git c/embed/ephy-embed-shell.c i/embed/ephy-embed-shell.c
+index b4837f834..1b5012bae 100644
+--- 

[arch-commits] Commit in cups/trunk (PKGBUILD cups-2.2.8-5325.patch)

2018-06-08 Thread Jan Steffens via arch-commits
Date: Friday, June 8, 2018 @ 20:23:24
  Author: heftig
Revision: 326499

2.2.8-2: Fix gsd-print-notifications causing a polling storm

Added:
  cups/trunk/cups-2.2.8-5325.patch
Modified:
  cups/trunk/PKGBUILD

---+
 PKGBUILD  |   37 ++---
 cups-2.2.8-5325.patch |   45 +
 2 files changed, 67 insertions(+), 15 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-06-08 20:23:22 UTC (rev 326498)
+++ PKGBUILD2018-06-08 20:23:24 UTC (rev 326499)
@@ -4,32 +4,36 @@
 pkgbase="cups"
 pkgname=('libcups' 'cups')
 pkgver=2.2.8
-pkgrel=1
+pkgrel=2
 arch=('x86_64')
 license=('GPL')
 url="https://www.cups.org/;
 makedepends=('libtiff' 'libpng' 'acl' 'pam' 'xdg-utils' 'krb5' 'gnutls'
- 'cups-filters' 'bc' 'colord' 'xinetd' 'gzip' 'autoconf' 'libusb' 
'dbus' 
+ 'cups-filters' 'bc' 'colord' 'xinetd' 'gzip' 'autoconf' 'libusb' 
'dbus'
  'avahi'  'hicolor-icon-theme' 'systemd' 'inetutils' 'libpaper' 
'valgrind')
 
source=(https://github.com/apple/cups/releases/download/v${pkgver}/cups-${pkgver}-source.tar.gz{,.sig}
-cups.logrotate cups.pam
-cups.sysusers guid.patch
+cups.logrotate
+cups.pam
+cups.sysusers
 # improve build and linking
 cups-no-export-ssllibs.patch
 cups-no-gzip-man.patch
 cups-1.6.2-statedir.patch
 # bugfixes
-cups-systemd-socket.patch)
+cups-systemd-socket.patch
+guid.patch
+cups-2.2.8-5325.patch)
 sha256sums=('3968fc1d26fc48727508db1c1380e36c6694ab90177fd6920aec5f6cc73af9e4'
 'SKIP'
 'd87fa0f0b5ec677aae34668f260333db17ce303aa1a752cba5f8e72623d9acf9'
 '57dfd072fd7ef0018c6b0a798367aac1abb5979060ff3f9df22d1048bb71c0d5'
 '06173dfaea37bdd9b39b3e09aba98c34ae7112a2f521db45a688907d8848caa2'
-'d4537526c1e075866ae22ad263da000fc2a592d36c26b79a459a1cfdade2bb2d'
 'ff3eb0782af0405f5dafe89e04b1b4ea7a49afc5496860d724343bd04f375832'
 'b8fc2e3bc603495f0278410350ea8f0161d9d83719feb64f573b63430cb4800b'
 '23349c96f2f7aeb7d48e3bcd35a969f5d5ac8f55a032b0cfaa0a03d7e37ea9af'
-'f909719e2595e016c320afa421cad74ccda285ac59b11749ddac58e707d4330a')
+'f909719e2595e016c320afa421cad74ccda285ac59b11749ddac58e707d4330a'
+'d4537526c1e075866ae22ad263da000fc2a592d36c26b79a459a1cfdade2bb2d'
+'118698d5225d0f481fb9294d26c446abcdaa7891f1a449391db6fe16b5bdd660')
 validpgpkeys=('3737FD0D0E63B30172440D2DDBA3A7AB08D76223') # CUPS.org (CUPS.org 
PGP key) 
 validpgpkeys+=('45D083946E3035282B3CCA9AF434104235DA97EB') # "CUPS.org 
"
 validpgpkeys+=('845464660B686AAB36540B6F999559A027815955') # "Michael R Sweet 
"
@@ -53,6 +57,9 @@
   # FS#56818 - https://github.com/apple/cups/issues/5236
   patch -Np1 -i ${srcdir}/guid.patch
 
+  # https://github.com/apple/cups/issues/5325
+  patch -Np1 -i ${srcdir}/cups-2.2.8-5325.patch
+
   # set MaxLogSize to 0 to prevent using cups internal log rotation
   sed -i -e '5i\ ' conf/cupsd.conf.in
   sed -i -e '6i# Disable cups internal logging - use logrotate instead' 
conf/cupsd.conf.in
@@ -101,7 +108,7 @@
   cd ${pkgbase}-${pkgver}
   make BUILDROOT=${pkgdir} install-headers install-libs
   # put this into the libs pkg to make other software find the libs(no 
pkg-config file included)
-  mkdir -p ${pkgdir}/usr/bin 
+  mkdir -p ${pkgdir}/usr/bin
   install -m755 ${srcdir}/${pkgbase}-${pkgver}/cups-config 
${pkgdir}/usr/bin/cups-config
 }
 
@@ -117,7 +124,7 @@
 etc/dbus-1/system.d/cups.conf
 etc/logrotate.d/cups
 etc/pam.d/cups)
-depends=('acl' 'pam' "libcups>=${pkgver}" 'cups-filters' 'bc' 
+depends=('acl' 'pam' "libcups>=${pkgver}" 'cups-filters' 'bc'
  'dbus' 'systemd' 'libpaper' 'hicolor-icon-theme')
 optdepends=('xdg-utils: xdg .desktop file support'
 'colord: for ICC color profile support')
@@ -151,21 +158,21 @@
   # install some more configuration files that will get filled by cupsd
   touch ${pkgdir}/etc/cups/printers.conf
   touch ${pkgdir}/etc/cups/classes.conf
-  touch ${pkgdir}/etc/cups/subscriptions.conf 
+  touch ${pkgdir}/etc/cups/subscriptions.conf
   chgrp -R 209 ${pkgdir}/etc/cups
-  
+
   # fix .desktop file
   sed -i 's|^Exec=htmlview http://localhost:631/|Exec=xdg-open 
http://localhost:631/|g' ${pkgdir}/usr/share/applications/cups.desktop
-  
+
   # compress some driver files, adopted from Fedora
   find ${pkgdir}/usr/share/cups/model -name "*.ppd" | xargs gzip -n9f
-  
+
   # remove client.conf man page
   rm -f ${pkgdir}/usr/share/man/man5/client.conf.5
-  
+
   # comment out all conversion rules which use any of the removed filters that 
are now part of cups-filters
   perl -p -i -e 's:^(.*\s+bannertops\s*)$:#\1:' 
$pkgdir/usr/share/cups/mime/mime.convs
-  
+
   # comment out unnecessary 

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

2018-06-08 Thread Jan Steffens via arch-commits
Date: Friday, June 8, 2018 @ 20:22:35
  Author: heftig
Revision: 326497

3.28.3.1-1

Modified:
  epiphany/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-06-08 19:47:21 UTC (rev 326496)
+++ PKGBUILD2018-06-08 20:22:35 UTC (rev 326497)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot 
 
 pkgname=epiphany
-pkgver=3.28.3
+pkgver=3.28.3.1
 pkgrel=1
 pkgdesc="A GNOME web browser based on the WebKit rendering engine"
 url="https://wiki.gnome.org/Apps/Web;
@@ -12,7 +12,7 @@
 makedepends=(itstool docbook-xml startup-notification lsb-release
  gobject-introspection yelp-tools appstream-glib git meson)
 groups=(gnome)
-_commit=6c4b1795fc35a17c2b686fa843cb06735c1ce497  # tags/3.28.3^0
+_commit=a5a9a7e2904e2206b3cc863ab13748255247e3eb  # tags/3.28.3.1^0
 source=("git+https://gitlab.gnome.org/GNOME/epiphany.git#commit=$_commit;
 pluginsdir.diff)
 sha256sums=('SKIP'


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

2018-06-08 Thread Jelle van der Waa via arch-commits
Date: Friday, June 8, 2018 @ 20:06:04
  Author: jelle
Revision: 342072

Update alioth to salsa

Alioth is deprecated

Modified:
  disorderfs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-06-08 20:01:19 UTC (rev 342071)
+++ PKGBUILD2018-06-08 20:06:04 UTC (rev 342072)
@@ -10,7 +10,7 @@
 license=('GPL3')
 depends=('fuse')
 makedepends=('asciidoc' 'git')
-source=("git+https://anonscm.debian.org/git/reproducible/disorderfs.git#commit=67434205f890f249476bc621a5900b8798d5cedc;)
+source=("git+https://salsa.debian.org/reproducible-builds/disorderfs.git#commit=67434205f890f249476bc621a5900b8798d5cedc;)
 sha512sums=('SKIP')
 
 build() {


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

2018-06-08 Thread Jelle van der Waa via arch-commits
Date: Friday, June 8, 2018 @ 20:01:03
  Author: jelle
Revision: 342070

upgpkg: python-psutil 5.4.6-1

Modified:
  python-psutil/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-06-08 18:54:34 UTC (rev 342069)
+++ PKGBUILD2018-06-08 20:01:03 UTC (rev 342070)
@@ -3,7 +3,7 @@
 
 pkgbase=python-psutil
 pkgname=('python-psutil' 'python2-psutil')
-pkgver=5.4.5
+pkgver=5.4.6
 pkgrel=1
 arch=('x86_64')
 url='https://github.com/giampaolo/psutil'
@@ -11,7 +11,7 @@
 makedepends=('python' 'python-setuptools' 'python2' 'python2-setuptools')
 checkdepends=('net-tools' 'procps-ng' 'python2-nose' 'python-nose')
 source=("https://github.com/giampaolo/psutil/archive/release-$pkgver.tar.gz;)
-md5sums=('ce3e6b33706dd73eea4c37566eb9a0a1')
+md5sums=('32d606eebd13ceea0fa1231c42f8548a')
 
 build() {
   cd psutil-release-$pkgver


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

2018-06-08 Thread Jelle van der Waa via arch-commits
Date: Friday, June 8, 2018 @ 20:01:19
  Author: jelle
Revision: 342071

archrelease: copy trunk to community-x86_64

Added:
  python-psutil/repos/community-x86_64/PKGBUILD
(from rev 342070, python-psutil/trunk/PKGBUILD)
Deleted:
  python-psutil/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-06-08 20:01:03 UTC (rev 342070)
+++ PKGBUILD2018-06-08 20:01:19 UTC (rev 342071)
@@ -1,62 +0,0 @@
-# $Id$
-# Maintainer: Sébastien Luttringer
-
-pkgbase=python-psutil
-pkgname=('python-psutil' 'python2-psutil')
-pkgver=5.4.5
-pkgrel=1
-arch=('x86_64')
-url='https://github.com/giampaolo/psutil'
-license=('custom: BSD')
-makedepends=('python' 'python-setuptools' 'python2' 'python2-setuptools')
-checkdepends=('net-tools' 'procps-ng' 'python2-nose' 'python-nose')
-source=("https://github.com/giampaolo/psutil/archive/release-$pkgver.tar.gz;)
-md5sums=('ce3e6b33706dd73eea4c37566eb9a0a1')
-
-build() {
-  cd psutil-release-$pkgver
-
-  msg2 python
-  python setup.py build --build-lib=build/python
-
-  msg2 python2
-  python2 setup.py build --build-lib=build/python2
-  find build/python2 -type f -exec \
-sed -i '1s,^#! \?/usr/bin/\(env \|\)python$,#!/usr/bin/python2,' {} \;
-}
-
-check() {
-  cd psutil-release-$pkgver
-
-  msg2 python
-  export PYTHONPATH="$PWD/build/python"
-  cd psutil/tests/
-  # FIXME: dynamic loading so
-
-
-  msg2 python2
-  export PYTHONPATH="$PWD/build/python2"
-  #python2 psutil/tests/runner.py
-}
-
-package_python-psutil() {
-  pkgdesc='A cross-platform process and system utilities module for Python'
-  depends=('python')
-
-  cd psutil-release-$pkgver
-  python setup.py build --build-lib=build/python \
-  install --root="$pkgdir" --optimize=1
-  install -D -m 644 LICENSE "$pkgdir/"usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-psutil() {
-  pkgdesc='A cross-platform process and system utilities module for Python2'
-  depends=('python2')
-
-  cd psutil-release-$pkgver
-  python2 setup.py build --build-lib=build/python2 \
-   install --root="$pkgdir" --optimize=1
-  install -D -m 644 LICENSE "$pkgdir/"usr/share/licenses/$pkgname/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-psutil/repos/community-x86_64/PKGBUILD (from rev 342070, 
python-psutil/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-06-08 20:01:19 UTC (rev 342071)
@@ -0,0 +1,62 @@
+# $Id$
+# Maintainer: Sébastien Luttringer
+
+pkgbase=python-psutil
+pkgname=('python-psutil' 'python2-psutil')
+pkgver=5.4.6
+pkgrel=1
+arch=('x86_64')
+url='https://github.com/giampaolo/psutil'
+license=('custom: BSD')
+makedepends=('python' 'python-setuptools' 'python2' 'python2-setuptools')
+checkdepends=('net-tools' 'procps-ng' 'python2-nose' 'python-nose')
+source=("https://github.com/giampaolo/psutil/archive/release-$pkgver.tar.gz;)
+md5sums=('32d606eebd13ceea0fa1231c42f8548a')
+
+build() {
+  cd psutil-release-$pkgver
+
+  msg2 python
+  python setup.py build --build-lib=build/python
+
+  msg2 python2
+  python2 setup.py build --build-lib=build/python2
+  find build/python2 -type f -exec \
+sed -i '1s,^#! \?/usr/bin/\(env \|\)python$,#!/usr/bin/python2,' {} \;
+}
+
+check() {
+  cd psutil-release-$pkgver
+
+  msg2 python
+  export PYTHONPATH="$PWD/build/python"
+  cd psutil/tests/
+  # FIXME: dynamic loading so
+
+
+  msg2 python2
+  export PYTHONPATH="$PWD/build/python2"
+  #python2 psutil/tests/runner.py
+}
+
+package_python-psutil() {
+  pkgdesc='A cross-platform process and system utilities module for Python'
+  depends=('python')
+
+  cd psutil-release-$pkgver
+  python setup.py build --build-lib=build/python \
+  install --root="$pkgdir" --optimize=1
+  install -D -m 644 LICENSE "$pkgdir/"usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-psutil() {
+  pkgdesc='A cross-platform process and system utilities module for Python2'
+  depends=('python2')
+
+  cd psutil-release-$pkgver
+  python2 setup.py build --build-lib=build/python2 \
+   install --root="$pkgdir" --optimize=1
+  install -D -m 644 LICENSE "$pkgdir/"usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:


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

2018-06-08 Thread Christian Hesse via arch-commits
Date: Friday, June 8, 2018 @ 19:47:21
  Author: eworm
Revision: 326496

archrelease: copy trunk to testing-x86_64

Added:
  iproute2/repos/testing-x86_64/
  iproute2/repos/testing-x86_64/0001-make-iproute2-fhs-compliant.patch
(from rev 326495, iproute2/trunk/0001-make-iproute2-fhs-compliant.patch)
  iproute2/repos/testing-x86_64/PKGBUILD
(from rev 326495, iproute2/trunk/PKGBUILD)

+
 0001-make-iproute2-fhs-compliant.patch |  101 +++
 PKGBUILD   |   59 ++
 2 files changed, 160 insertions(+)

Copied: iproute2/repos/testing-x86_64/0001-make-iproute2-fhs-compliant.patch 
(from rev 326495, iproute2/trunk/0001-make-iproute2-fhs-compliant.patch)
===
--- testing-x86_64/0001-make-iproute2-fhs-compliant.patch   
(rev 0)
+++ testing-x86_64/0001-make-iproute2-fhs-compliant.patch   2018-06-08 
19:47:21 UTC (rev 326496)
@@ -0,0 +1,101 @@
+From f0624f6cc656cb177b64e2664f2a806221bfab58 Mon Sep 17 00:00:00 2001
+From: Christian Hesse 
+Date: Thu, 28 Jul 2016 08:49:20 +0200
+Subject: [PATCH 1/1] make iproute2 fhs compliant
+
+Signed-off-by: Christian Hesse 
+---
+ Makefile   |  2 +-
+ netem/Makefile |  4 ++--
+ tc/q_netem.c   |  2 +-
+ tc/tc_util.c   | 15 +++
+ tc/tc_util.h   |  1 +
+ 5 files changed, 20 insertions(+), 4 deletions(-)
+
+diff --git a/Makefile b/Makefile
+index eb571a5..db0a04c 100644
+--- a/Makefile
 b/Makefile
+@@ -14,7 +14,7 @@ DBM_INCLUDE:=$(DESTDIR)/usr/include
+ 
+ SHARED_LIBS = y
+ 
+-DEFINES= -DRESOLVE_HOSTNAMES -DLIBDIR=\"$(LIBDIR)\"
++DEFINES= -DRESOLVE_HOSTNAMES -DLIBDIR=\"$(LIBDIR)\" -DDATADIR=\"$(DATADIR)\"
+ ifneq ($(SHARED_LIBS),y)
+ DEFINES+= -DNO_SHARED_LIBS
+ endif
+diff --git a/netem/Makefile b/netem/Makefile
+index e52e125..5b4d283 100644
+--- a/netem/Makefile
 b/netem/Makefile
+@@ -20,9 +20,9 @@ stats: stats.c
+   $(HOSTCC) $(CCOPTS) -I../include -o $@ $@.c -lm
+ 
+ install: all
+-  mkdir -p $(DESTDIR)$(LIBDIR)/tc
++  mkdir -p $(DESTDIR)$(DATADIR)/tc
+   for i in $(DISTDATA); \
+-  do install -m 644 $$i $(DESTDIR)$(LIBDIR)/tc; \
++  do install -m 644 $$i $(DESTDIR)$(DATADIR)/tc; \
+   done
+ 
+ clean:
+diff --git a/tc/q_netem.c b/tc/q_netem.c
+index 8fe2204..a15a5c7 100644
+--- a/tc/q_netem.c
 b/tc/q_netem.c
+@@ -113,7 +113,7 @@ static int get_distribution(const char *type, __s16 *data, 
int maxdata)
+   char *line = NULL;
+   char name[128];
+ 
+-  snprintf(name, sizeof(name), "%s/%s.dist", get_tc_lib(), type);
++  snprintf(name, sizeof(name), "%s/%s.dist", get_tc_datadir(), type);
+   if ((f = fopen(name, "r")) == NULL) {
+   fprintf(stderr, "No distribution data for %s (%s: %s)\n",
+   type, name, strerror(errno));
+diff --git a/tc/tc_util.c b/tc/tc_util.c
+index afc4cf5..728b854 100644
+--- a/tc/tc_util.c
 b/tc/tc_util.c
+@@ -32,6 +32,10 @@
+ #define LIBDIR "/usr/lib"
+ #endif
+ 
++#ifndef DATADIR
++#define DATADIR "/usr/share"
++#endif
++
+ static struct db_names *cls_names;
+ 
+ #define NAMES_DB "/etc/iproute2/tc_cls"
+@@ -73,6 +77,17 @@ const char *get_tc_lib(void)
+   return lib_dir;
+ }
+ 
++const char *get_tc_datadir(void)
++{
++  const char *data_dir;
++
++  data_dir = getenv("TC_DATA_DIR");
++  if (!data_dir)
++  data_dir = DATADIR "/tc/";
++
++  return data_dir;
++}
++
+ int get_qdisc_handle(__u32 *h, const char *str)
+ {
+   __u32 maj;
+diff --git a/tc/tc_util.h b/tc/tc_util.h
+index 61e60b1..6d448de 100644
+--- a/tc/tc_util.h
 b/tc/tc_util.h
+@@ -55,6 +55,7 @@ struct exec_util {
+ };
+ 
+ const char *get_tc_lib(void);
++const char *get_tc_datadir(void);
+ 
+ struct qdisc_util *get_qdisc_kind(const char *str);
+ struct filter_util *get_filter_kind(const char *str);

Copied: iproute2/repos/testing-x86_64/PKGBUILD (from rev 326495, 
iproute2/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2018-06-08 19:47:21 UTC (rev 326496)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Christian Hesse 
+# Maintainer: Ronald van Haren 
+# Contributor: Judd Vinet 
+
+pkgname=iproute2
+pkgver=4.17.0
+pkgrel=1
+pkgdesc='IP Routing Utilities'
+arch=('x86_64')
+license=('GPL2')
+url='https://git.kernel.org/pub/scm/network/iproute2/iproute2.git'
+depends=('glibc' 'iptables' 'libelf')
+optdepends=('linux-atm: ATM support')
+groups=('base')
+provides=('iproute')
+backup=('etc/iproute2/ematch_map'
+'etc/iproute2/rt_dsfield'
+'etc/iproute2/rt_protos'
+'etc/iproute2/rt_realms'
+'etc/iproute2/rt_scopes'
+'etc/iproute2/rt_tables')
+makedepends=('linux-atm')
+options=('staticlibs')
+validpgpkeys=('9F6FC345B05BE7E766B83C8F80A77F6095CDE47E') # Stephen Hemminger

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

2018-06-08 Thread Christian Hesse via arch-commits
Date: Friday, June 8, 2018 @ 19:47:01
  Author: eworm
Revision: 326495

upgpkg: iproute2 4.17.0-1

new upstream release

Modified:
  iproute2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-06-08 18:40:51 UTC (rev 326494)
+++ PKGBUILD2018-06-08 19:47:01 UTC (rev 326495)
@@ -4,7 +4,7 @@
 # Contributor: Judd Vinet 
 
 pkgname=iproute2
-pkgver=4.16.0
+pkgver=4.17.0
 pkgrel=1
 pkgdesc='IP Routing Utilities'
 arch=('x86_64')
@@ -14,10 +14,6 @@
 optdepends=('linux-atm: ATM support')
 groups=('base')
 provides=('iproute')
-# Upstream commit b2fd7a0e6efa7b85a041b5cb9ea6fc1a6a798fd3 removed old 
documentation.
-# Add conflict and replace to get rid of the package. TODO: Remove anytime 
soon.
-conflicts=('iproute' 'iproute2-doc')
-replaces=('iproute' 'iproute2-doc')
 backup=('etc/iproute2/ematch_map'
 'etc/iproute2/rt_dsfield'
 'etc/iproute2/rt_protos'
@@ -29,7 +25,7 @@
 validpgpkeys=('9F6FC345B05BE7E766B83C8F80A77F6095CDE47E') # Stephen Hemminger
 
source=("https://www.kernel.org/pub/linux/utils/net/${pkgname}/${pkgname}-${pkgver}.tar."{xz,sign}
 '0001-make-iproute2-fhs-compliant.patch')
-sha256sums=('0c5c24020fd7349fe25728c5edee9fb6a1bc8a38f08e23be5c57a6301e55ee0a'
+sha256sums=('6fa991b092315887775b9e47dc6a89af7ae09dd3ad4ccff754d055c566b4be6e'
 'SKIP'
 'f60fefe4c17d3b768824bb50ae6416292bcebba06d73452e23f4147b46b827d3')
 


[arch-commits] Commit in matrix-synapse/repos/community-any (6 files)

2018-06-08 Thread Johannes Löthberg via arch-commits
Date: Friday, June 8, 2018 @ 18:54:34
  Author: demize
Revision: 342069

archrelease: copy trunk to community-any

Added:
  matrix-synapse/repos/community-any/PKGBUILD
(from rev 342068, matrix-synapse/trunk/PKGBUILD)
  matrix-synapse/repos/community-any/synapse.install
(from rev 342068, matrix-synapse/trunk/synapse.install)
  matrix-synapse/repos/community-any/sysusers-synapse.conf
(from rev 342068, matrix-synapse/trunk/sysusers-synapse.conf)
Deleted:
  matrix-synapse/repos/community-any/PKGBUILD
  matrix-synapse/repos/community-any/synapse.install
  matrix-synapse/repos/community-any/sysusers-synapse.conf

---+
 PKGBUILD  |  120 
 synapse.install   |   50 ++--
 sysusers-synapse.conf |2 
 3 files changed, 86 insertions(+), 86 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-06-08 18:54:23 UTC (rev 342068)
+++ PKGBUILD2018-06-08 18:54:34 UTC (rev 342069)
@@ -1,60 +0,0 @@
-# Maintainer: Johannes Löthberg 
-# Contributor: Ivan Shapovalov 
-
-pkgname=matrix-synapse
-pkgver=0.30.0
-pkgrel=1
-
-pkgdesc="Matrix reference homeserver"
-url="https://github.com/matrix-org/synapse;
-arch=('any')
-license=('Apache')
-
-depends=('python2-jsonschema' 'python2-twisted' 'python2-service-identity'
- 'python2-pyopenssl' 'python2-yaml' 'python2-pyasn1' 'python2-pynacl'
- 'python2-daemonize' 'python2-bcrypt' 'python2-frozendict'
- 'python2-pillow' 'python2-pydenticon' 'python2-ujson' 'python2-blist'
- 'python2-pysaml2' 'python2-setuptools'
- 'python2-systemd' 'python2-unpaddedbase64' 'python2-canonicaljson'
- 'python2-signedjson' 'python2-pymacaroons-pynacl'
- 'python2-service-identity' 'python2-msgpack'
- 'python2-phonenumbers'
- 'systemd')
-makedepends=('python2-mock')
-checkdepends=('python2-lxml')
-optdepends=('python2-psycopg2: PostgreSQL support'
-'python2-netaddr: URL previewing'
-'python2-lxml: URL previewing'
-'python2-jinja: e-mail notifications'
-'python2-bleach: e-mail notifications'
-'python2-psutil: metrics'
-'python2-matrix-angular-sdk: built-in web client')
-
-source=("synapse-$pkgver.tar.gz::https://github.com/matrix-org/synapse/archive/v$pkgver.tar.gz;
-'sysusers-synapse.conf')
-
-md5sums=('9eb0c0b81fd14f60d9eb49d0b4e252d8'
- 'ecd9f66fb57fe1a2e1e2df07a460a35b')
-
-backup=('etc/synapse/log_config.yaml')
-install=synapse.install
-
-build() {
-   cd synapse-$pkgver
-   python2 setup.py build
-}
-
-check() {
-   cd synapse-$pkgver
-   PYTHONPATH=. trial tests
-}
-
-package() {
-   cd synapse-$pkgver
-   python2 setup.py install --root "$pkgdir" --optimize=1 --skip-build
-
-   install -dm755 -o 198 -g 198 "$pkgdir"/etc/synapse
-   install -Dm644 contrib/systemd/log_config.yaml 
"$pkgdir"/etc/synapse/log_config.yaml
-   install -Dm644 contrib/systemd/synapse.service 
"$pkgdir"/usr/lib/systemd/system/synapse.service
-   install -Dm644 "$srcdir"/sysusers-synapse.conf 
"$pkgdir"/usr/lib/sysusers.d/synapse.conf
-}

Copied: matrix-synapse/repos/community-any/PKGBUILD (from rev 342068, 
matrix-synapse/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-06-08 18:54:34 UTC (rev 342069)
@@ -0,0 +1,60 @@
+# Maintainer: Johannes Löthberg 
+# Contributor: Ivan Shapovalov 
+
+pkgname=matrix-synapse
+pkgver=0.31.1
+pkgrel=1
+
+pkgdesc="Matrix reference homeserver"
+url="https://github.com/matrix-org/synapse;
+arch=('any')
+license=('Apache')
+
+depends=('python2-jsonschema' 'python2-twisted' 'python2-service-identity'
+ 'python2-pyopenssl' 'python2-yaml' 'python2-pyasn1' 'python2-pynacl'
+ 'python2-daemonize' 'python2-bcrypt' 'python2-frozendict'
+ 'python2-pillow' 'python2-pydenticon' 'python2-ujson' 'python2-blist'
+ 'python2-pysaml2' 'python2-setuptools'
+ 'python2-systemd' 'python2-unpaddedbase64' 'python2-canonicaljson'
+ 'python2-signedjson' 'python2-pymacaroons-pynacl'
+ 'python2-service-identity' 'python2-msgpack'
+ 'python2-phonenumbers' 'python2-prometheus_client'
+ 'systemd')
+makedepends=('python2-mock')
+checkdepends=('python2-lxml')
+optdepends=('python2-psycopg2: PostgreSQL support'
+'python2-netaddr: URL previewing'
+'python2-lxml: URL previewing'
+'python2-jinja: e-mail notifications'
+'python2-bleach: e-mail notifications'
+'python2-psutil: metrics'
+'python2-matrix-angular-sdk: built-in web client')
+
+source=("synapse-$pkgver.tar.gz::https://github.com/matrix-org/synapse/archive/v$pkgver.tar.gz;
+'sysusers-synapse.conf')
+
+md5sums=('a7122d23f66a48d7ac5bef84e5111e25'
+

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

2018-06-08 Thread Johannes Löthberg via arch-commits
Date: Friday, June 8, 2018 @ 18:54:23
  Author: demize
Revision: 342068

upgpkg: matrix-synapse 0.31.1-1

Modified:
  matrix-synapse/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-06-08 18:36:31 UTC (rev 342067)
+++ PKGBUILD2018-06-08 18:54:23 UTC (rev 342068)
@@ -2,7 +2,7 @@
 # Contributor: Ivan Shapovalov 
 
 pkgname=matrix-synapse
-pkgver=0.30.0
+pkgver=0.31.1
 pkgrel=1
 
 pkgdesc="Matrix reference homeserver"
@@ -18,7 +18,7 @@
  'python2-systemd' 'python2-unpaddedbase64' 'python2-canonicaljson'
  'python2-signedjson' 'python2-pymacaroons-pynacl'
  'python2-service-identity' 'python2-msgpack'
- 'python2-phonenumbers'
+ 'python2-phonenumbers' 'python2-prometheus_client'
  'systemd')
 makedepends=('python2-mock')
 checkdepends=('python2-lxml')
@@ -33,7 +33,7 @@
 
source=("synapse-$pkgver.tar.gz::https://github.com/matrix-org/synapse/archive/v$pkgver.tar.gz;
 'sysusers-synapse.conf')
 
-md5sums=('9eb0c0b81fd14f60d9eb49d0b4e252d8'
+md5sums=('a7122d23f66a48d7ac5bef84e5111e25'
  'ecd9f66fb57fe1a2e1e2df07a460a35b')
 
 backup=('etc/synapse/log_config.yaml')


[arch-commits] Commit in xorg-xkbcomp/repos/extra-x86_64 (3 files)

2018-06-08 Thread Andreas Radke via arch-commits
Date: Friday, June 8, 2018 @ 18:40:51
  Author: andyrtr
Revision: 326494

archrelease: copy trunk to extra-x86_64

Added:
  xorg-xkbcomp/repos/extra-x86_64/PKGBUILD
(from rev 326493, xorg-xkbcomp/trunk/PKGBUILD)
Deleted:
  xorg-xkbcomp/repos/extra-x86_64/0001-Ignore-xkb_keycodes.maximum-of-255.patch
  xorg-xkbcomp/repos/extra-x86_64/PKGBUILD

---+
 0001-Ignore-xkb_keycodes.maximum-of-255.patch |   51 
 PKGBUILD  |   74 ++--
 2 files changed, 33 insertions(+), 92 deletions(-)

Deleted: 0001-Ignore-xkb_keycodes.maximum-of-255.patch
===
--- 0001-Ignore-xkb_keycodes.maximum-of-255.patch   2018-06-08 18:40:38 UTC 
(rev 326493)
+++ 0001-Ignore-xkb_keycodes.maximum-of-255.patch   2018-06-08 18:40:51 UTC 
(rev 326494)
@@ -1,51 +0,0 @@
-From 52195d453cae1369a90b4fd08793df9bb0869192 Mon Sep 17 00:00:00 2001
-From: Peter Hutterer 
-Date: Thu, 7 Jun 2018 11:25:01 +1000
-Subject: [PATCH xkbcomp] Ignore xkb_keycodes.maximum of > 255
-
-Continuation from 7fdfabd75 "keycodes: Ignore high keycodes"
-
-A keymap with a key > 255 will have a xkb_keycodes.maximum of that keycode.
-Let's not throw a fatal error on that, just crop it back to the maximum of
-255. This doesn't set the "high_keycode_warned" on purpose so we get this for
-the first key that actually matters.
-
-Reproducible with xkeyboard-config 2.24 which has a maximum of 374.
-
-Signed-off-by: Peter Hutterer 

- keycodes.c | 10 +-
- 1 file changed, 9 insertions(+), 1 deletion(-)
-
-diff --git a/keycodes.c b/keycodes.c
-index d5ac762..c21f7c4 100644
 a/keycodes.c
-+++ b/keycodes.c
-@@ -663,7 +663,7 @@ HandleKeyNameVar(VarDef * stmt, KeyNamesInfo * info)
- ACTION1("Assignment to field %s ignored\n", field.str);
- return 0;
- }
--if ((tmp.ival < XkbMinLegalKeyCode) || (tmp.ival > XkbMaxLegalKeyCode))
-+if ((tmp.ival < XkbMinLegalKeyCode))
- {
- ERROR3
- ("Illegal keycode %d (must be in the range %d-%d inclusive)\n",
-@@ -671,6 +671,14 @@ HandleKeyNameVar(VarDef * stmt, KeyNamesInfo * info)
- ACTION1("Value of \"%s\" not changed\n", field.str);
- return 0;
- }
-+if ((tmp.ival > XkbMaxLegalKeyCode))
-+{
-+WARN2("Unsupported maximum keycode %d, clipping.\n", tmp.ival);
-+ACTION2("X11 cannot support keycodes above 255.\n");
-+info->explicitMax = XkbMaxLegalKeyCode;
-+info->effectiveMax = XkbMaxLegalKeyCode;
-+return 1;
-+}
- if (which == MIN_KEYCODE_DEF)
- {
- if ((info->explicitMax > 0) && (info->explicitMax < tmp.ival))
--- 
-2.14.4
-
-

Deleted: PKGBUILD
===
--- PKGBUILD2018-06-08 18:40:38 UTC (rev 326493)
+++ PKGBUILD2018-06-08 18:40:51 UTC (rev 326494)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-# Maintainer: Andreas Radke 
-
-pkgname=xorg-xkbcomp
-pkgver=1.4.1
-pkgrel=2
-pkgdesc="X Keyboard description compiler"
-arch=(x86_64)
-url="https://xorg.freedesktop.org/;
-license=('custom')
-depends=('libxkbfile')
-makedepends=('xorg-util-macros')
-groups=('xorg-apps' 'xorg')
-source=(${url}/releases/individual/app/xkbcomp-${pkgver}.tar.bz2{,.sig}
-0001-Ignore-xkb_keycodes.maximum-of-255.patch)
-sha512sums=('443397e112f67e2ebc5150ec0dbf0f4a072ea39585d964d2c7cbd0569b7e0ce7d8bed0bc2c2d886343fdb060c941e65b42aac16adf189c66e90849029e278f23'
-'SKIP'
-
'4005d187a3d585fd4165254c2a4a17cd381d9cf04dfef649de47ecb26dfbe1442e42b1c87e4aa9a3d7f45054393a5371299167a8c089d50e981a74b764e7353c')
-validpgpkeys=('3C2C43D9447D5938EF4551EBE23B7E70B467F0BF') # Peter Hutterer 
(Who-T) 
-validpgpkeys+=('A66D805F7C9329B4C5D82767CCC4F07FAC641EFF') # "Daniel Stone 
"
-validpgpkeys+=('DD38563A8A8224537D1F90E45B8A2D50A0ECD0D3') # "Adam Jackson 
"
-
-prepare() {
-  cd xkbcomp-${pkgver}
-  # FS58908; https://bugzilla.redhat.com/show_bug.cgi?id=1587998
-  patch -Np1 -i ../0001-Ignore-xkb_keycodes.maximum-of-255.patch
-}
-
-build() {
-  cd xkbcomp-${pkgver}
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd xkbcomp-${pkgver}
-  make DESTDIR="${pkgdir}" install
-  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
-}

Copied: xorg-xkbcomp/repos/extra-x86_64/PKGBUILD (from rev 326493, 
xorg-xkbcomp/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-06-08 18:40:51 UTC (rev 326494)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Maintainer: Andreas Radke 
+
+pkgname=xorg-xkbcomp
+pkgver=1.4.2
+pkgrel=1
+pkgdesc="X Keyboard description compiler"
+arch=(x86_64)
+url="https://xorg.freedesktop.org/;
+license=('custom')
+depends=('libxkbfile')

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

2018-06-08 Thread Andreas Radke via arch-commits
Date: Friday, June 8, 2018 @ 18:40:38
  Author: andyrtr
Revision: 326493

upgpkg: xorg-xkbcomp 1.4.2-1

upstream update 1.4.2

Modified:
  xorg-xkbcomp/trunk/PKGBUILD
Deleted:
  xorg-xkbcomp/trunk/0001-Ignore-xkb_keycodes.maximum-of-255.patch

---+
 0001-Ignore-xkb_keycodes.maximum-of-255.patch |   51 
 PKGBUILD  |   18 ++--
 2 files changed, 5 insertions(+), 64 deletions(-)

Deleted: 0001-Ignore-xkb_keycodes.maximum-of-255.patch
===
--- 0001-Ignore-xkb_keycodes.maximum-of-255.patch   2018-06-08 17:38:38 UTC 
(rev 326492)
+++ 0001-Ignore-xkb_keycodes.maximum-of-255.patch   2018-06-08 18:40:38 UTC 
(rev 326493)
@@ -1,51 +0,0 @@
-From 52195d453cae1369a90b4fd08793df9bb0869192 Mon Sep 17 00:00:00 2001
-From: Peter Hutterer 
-Date: Thu, 7 Jun 2018 11:25:01 +1000
-Subject: [PATCH xkbcomp] Ignore xkb_keycodes.maximum of > 255
-
-Continuation from 7fdfabd75 "keycodes: Ignore high keycodes"
-
-A keymap with a key > 255 will have a xkb_keycodes.maximum of that keycode.
-Let's not throw a fatal error on that, just crop it back to the maximum of
-255. This doesn't set the "high_keycode_warned" on purpose so we get this for
-the first key that actually matters.
-
-Reproducible with xkeyboard-config 2.24 which has a maximum of 374.
-
-Signed-off-by: Peter Hutterer 

- keycodes.c | 10 +-
- 1 file changed, 9 insertions(+), 1 deletion(-)
-
-diff --git a/keycodes.c b/keycodes.c
-index d5ac762..c21f7c4 100644
 a/keycodes.c
-+++ b/keycodes.c
-@@ -663,7 +663,7 @@ HandleKeyNameVar(VarDef * stmt, KeyNamesInfo * info)
- ACTION1("Assignment to field %s ignored\n", field.str);
- return 0;
- }
--if ((tmp.ival < XkbMinLegalKeyCode) || (tmp.ival > XkbMaxLegalKeyCode))
-+if ((tmp.ival < XkbMinLegalKeyCode))
- {
- ERROR3
- ("Illegal keycode %d (must be in the range %d-%d inclusive)\n",
-@@ -671,6 +671,14 @@ HandleKeyNameVar(VarDef * stmt, KeyNamesInfo * info)
- ACTION1("Value of \"%s\" not changed\n", field.str);
- return 0;
- }
-+if ((tmp.ival > XkbMaxLegalKeyCode))
-+{
-+WARN2("Unsupported maximum keycode %d, clipping.\n", tmp.ival);
-+ACTION2("X11 cannot support keycodes above 255.\n");
-+info->explicitMax = XkbMaxLegalKeyCode;
-+info->effectiveMax = XkbMaxLegalKeyCode;
-+return 1;
-+}
- if (which == MIN_KEYCODE_DEF)
- {
- if ((info->explicitMax > 0) && (info->explicitMax < tmp.ival))
--- 
-2.14.4
-
-

Modified: PKGBUILD
===
--- PKGBUILD2018-06-08 17:38:38 UTC (rev 326492)
+++ PKGBUILD2018-06-08 18:40:38 UTC (rev 326493)
@@ -3,8 +3,8 @@
 # Maintainer: Andreas Radke 
 
 pkgname=xorg-xkbcomp
-pkgver=1.4.1
-pkgrel=2
+pkgver=1.4.2
+pkgrel=1
 pkgdesc="X Keyboard description compiler"
 arch=(x86_64)
 url="https://xorg.freedesktop.org/;
@@ -12,21 +12,13 @@
 depends=('libxkbfile')
 makedepends=('xorg-util-macros')
 groups=('xorg-apps' 'xorg')
-source=(${url}/releases/individual/app/xkbcomp-${pkgver}.tar.bz2{,.sig}
-0001-Ignore-xkb_keycodes.maximum-of-255.patch)
-sha512sums=('443397e112f67e2ebc5150ec0dbf0f4a072ea39585d964d2c7cbd0569b7e0ce7d8bed0bc2c2d886343fdb060c941e65b42aac16adf189c66e90849029e278f23'
-'SKIP'
-
'4005d187a3d585fd4165254c2a4a17cd381d9cf04dfef649de47ecb26dfbe1442e42b1c87e4aa9a3d7f45054393a5371299167a8c089d50e981a74b764e7353c')
+source=(${url}/releases/individual/app/xkbcomp-${pkgver}.tar.bz2{,.sig})
+sha512sums=('b00d1eb08c19be86044418c8ea3bfc3c3973406c481878270138a70ed9dab348acb8e4d0af8678879598ffbd7df1c640a63d0abad3d7481758be99af8dd7734e'
+'SKIP')
 validpgpkeys=('3C2C43D9447D5938EF4551EBE23B7E70B467F0BF') # Peter Hutterer 
(Who-T) 
 validpgpkeys+=('A66D805F7C9329B4C5D82767CCC4F07FAC641EFF') # "Daniel Stone 
"
 validpgpkeys+=('DD38563A8A8224537D1F90E45B8A2D50A0ECD0D3') # "Adam Jackson 
"
 
-prepare() {
-  cd xkbcomp-${pkgver}
-  # FS58908; https://bugzilla.redhat.com/show_bug.cgi?id=1587998
-  patch -Np1 -i ../0001-Ignore-xkb_keycodes.maximum-of-255.patch
-}
-
 build() {
   cd xkbcomp-${pkgver}
   ./configure --prefix=/usr


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

2018-06-08 Thread Felix Yan via arch-commits
Date: Friday, June 8, 2018 @ 18:36:31
  Author: felixonmars
Revision: 342067

archrelease: copy trunk to community-any

Added:
  python2-webpy/repos/community-any/PKGBUILD
(from rev 342066, python2-webpy/trunk/PKGBUILD)
Deleted:
  python2-webpy/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-06-08 18:36:09 UTC (rev 342066)
+++ PKGBUILD2018-06-08 18:36:31 UTC (rev 342067)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth 
-# Contributor: Chris Brannon 
-# Contributor: Geoffroy Carrier 
-# Contributor: Erol V. Aktay 
-
-pkgname=python2-webpy
-pkgver=0.37
-pkgrel=7
-pkgdesc='Simple but powerful web framework for python'
-arch=('any')
-url='http://webpy.org/'
-license=('custom:public domain')
-depends=('python2')
-optdepends=('python2-psycopg2: use PostgreSQL as the backing database'
-'mysql-python: use MySQL as the backing database'
-'python2-mako: alternative templating engine')
-source=("http://webpy.org/static/web.py-$pkgver.tar.gz;)
-sha256sums=('748c7e99ad9e36f62ea19f7965eb7dd7860b530e8f563ed60ce3e53e7409a550')
-
-prepare() {
-  cd "web.py-$pkgver"
-
-  echo 'web.py is in the public domain; you can use it for whatever purpose 
with absolutely no restrictions.' > LICENSE 
-
-  find . -name '*.py' -print0 |xargs -0 \
-sed -i -e 's,^#!/usr/bin/env python$,#!/usr/bin/env python2,' \
--e 's,^#!/usr/bin/python$,#!/usr/bin/python2,'
-}
-
-
-package() {
-  cd "web.py-$pkgver"
-
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python2-webpy/repos/community-any/PKGBUILD (from rev 342066, 
python2-webpy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-06-08 18:36:31 UTC (rev 342067)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Contributor: Chris Brannon 
+# Contributor: Geoffroy Carrier 
+# Contributor: Erol V. Aktay 
+
+pkgname=python2-webpy
+pkgver=0.38
+pkgrel=1
+pkgdesc='Simple but powerful web framework for python'
+arch=('any')
+url='http://webpy.org/'
+license=('custom:public domain')
+depends=('python2')
+optdepends=('python2-psycopg2: use PostgreSQL as the backing database'
+'mysql-python: use MySQL as the backing database'
+'python2-mako: alternative templating engine')
+source=("http://webpy.org/static/web.py-$pkgver.tar.gz;)
+sha512sums=('cac697206945f918bbe657d019623132e0bde9eabb0836f617cf86482095c756d6f28984e0efbedaab954966b58578d30cd9ecfecc0ed79f7d0ac74d95a19a12')
+
+prepare() {
+  cd "web.py-$pkgver"
+
+  echo 'web.py is in the public domain; you can use it for whatever purpose 
with absolutely no restrictions.' > LICENSE 
+
+  find . -name '*.py' -print0 |xargs -0 \
+sed -i -e 's,^#!/usr/bin/env python$,#!/usr/bin/env python2,' \
+-e 's,^#!/usr/bin/python$,#!/usr/bin/python2,'
+}
+
+
+package() {
+  cd "web.py-$pkgver"
+
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:


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

2018-06-08 Thread Felix Yan via arch-commits
Date: Friday, June 8, 2018 @ 18:36:09
  Author: felixonmars
Revision: 342066

upgpkg: python2-webpy 0.38-1

Modified:
  python2-webpy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-06-08 18:35:37 UTC (rev 342065)
+++ PKGBUILD2018-06-08 18:36:09 UTC (rev 342066)
@@ -5,8 +5,8 @@
 # Contributor: Erol V. Aktay 
 
 pkgname=python2-webpy
-pkgver=0.37
-pkgrel=7
+pkgver=0.38
+pkgrel=1
 pkgdesc='Simple but powerful web framework for python'
 arch=('any')
 url='http://webpy.org/'
@@ -16,7 +16,7 @@
 'mysql-python: use MySQL as the backing database'
 'python2-mako: alternative templating engine')
 source=("http://webpy.org/static/web.py-$pkgver.tar.gz;)
-sha256sums=('748c7e99ad9e36f62ea19f7965eb7dd7860b530e8f563ed60ce3e53e7409a550')
+sha512sums=('cac697206945f918bbe657d019623132e0bde9eabb0836f617cf86482095c756d6f28984e0efbedaab954966b58578d30cd9ecfecc0ed79f7d0ac74d95a19a12')
 
 prepare() {
   cd "web.py-$pkgver"


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

2018-06-08 Thread Felix Yan via arch-commits
Date: Friday, June 8, 2018 @ 18:35:37
  Author: felixonmars
Revision: 342065

archrelease: copy trunk to community-x86_64

Added:
  python-cx_freeze/repos/community-x86_64/PKGBUILD
(from rev 342064, python-cx_freeze/trunk/PKGBUILD)
Deleted:
  python-cx_freeze/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-06-08 18:35:18 UTC (rev 342064)
+++ PKGBUILD2018-06-08 18:35:37 UTC (rev 342065)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth 
-# Contributor: Ray Rashif 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: Eric Belanger 
-# Contributor: Roberto Alsina 
-# Contributor: Julien Duponchelle 
-
-pkgbase=python-cx_freeze
-pkgname=('python-cx_freeze' 'python2-cx_freeze')
-pkgver=5.1
-pkgrel=1
-pkgdesc='Utilities for freezing Python scripts into executables'
-arch=('x86_64')
-url='http://cx-freeze.sourceforge.net/'
-license=('PSF')
-makedepends=('python' 'python2')
-source=("https://pypi.io/packages/source/c/cx_Freeze/cx_Freeze-$pkgver.tar.gz;)
-sha512sums=('cd71558bf7a20110b8f922c96a986cca1cca2b67b46356c6c4f1b6ae4a3420b7bba6949b2b47e8ddbefd61c148991b39a9522116324876b5ef17bba1e7d8540a')
-
-package_python-cx_freeze() {
-  depends=('python')
-  conflicts=('cx_freeze' 'python2-cx_freeze')
-
-  cd "cx_Freeze-$pkgver"
-  python setup.py install --root "$pkgdir" --optimize 1
-}
-
-package_python2-cx_freeze() {
-  depends=('python2')
-  conflicts=('cx_freeze' 'python-cx_freeze')
-  replaces=('cx_freeze')
-
-  cd "cx_Freeze-$pkgver"
-  python2 setup.py install --root "$pkgdir" --optimize 1
-
-  # Python 2 fix
-  find "$pkgdir" -name qotd.py -exec sed -i '0,/on/s//on2/' {} \;
-}

Copied: python-cx_freeze/repos/community-x86_64/PKGBUILD (from rev 342064, 
python-cx_freeze/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-06-08 18:35:37 UTC (rev 342065)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Contributor: Ray Rashif 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: Eric Belanger 
+# Contributor: Roberto Alsina 
+# Contributor: Julien Duponchelle 
+
+pkgbase=python-cx_freeze
+pkgname=('python-cx_freeze' 'python2-cx_freeze')
+pkgver=5.1.1
+pkgrel=1
+pkgdesc='Utilities for freezing Python scripts into executables'
+arch=('x86_64')
+url='http://cx-freeze.sourceforge.net/'
+license=('PSF')
+makedepends=('python' 'python2')
+source=("https://pypi.io/packages/source/c/cx_Freeze/cx_Freeze-$pkgver.tar.gz;)
+sha512sums=('64f9c3b7f6c3003c1dc439fc2da7d0c13c5f146834e3ab8ece3921f1eb30c6e3eda480ccc84e61cc061597521b360cf8f5ef8e0bbcce1437157360c3d9c1adbc')
+
+package_python-cx_freeze() {
+  depends=('python')
+  conflicts=('cx_freeze' 'python2-cx_freeze')
+
+  cd "cx_Freeze-$pkgver"
+  python setup.py install --root "$pkgdir" --optimize 1
+}
+
+package_python2-cx_freeze() {
+  depends=('python2')
+  conflicts=('cx_freeze' 'python-cx_freeze')
+  replaces=('cx_freeze')
+
+  cd "cx_Freeze-$pkgver"
+  python2 setup.py install --root "$pkgdir" --optimize 1
+
+  # Python 2 fix
+  find "$pkgdir" -name qotd.py -exec sed -i '0,/on/s//on2/' {} \;
+}


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

2018-06-08 Thread Felix Yan via arch-commits
Date: Friday, June 8, 2018 @ 18:35:18
  Author: felixonmars
Revision: 342064

upgpkg: python-cx_freeze 5.1.1-1

Modified:
  python-cx_freeze/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-06-08 18:31:20 UTC (rev 342063)
+++ PKGBUILD2018-06-08 18:35:18 UTC (rev 342064)
@@ -8,7 +8,7 @@
 
 pkgbase=python-cx_freeze
 pkgname=('python-cx_freeze' 'python2-cx_freeze')
-pkgver=5.1
+pkgver=5.1.1
 pkgrel=1
 pkgdesc='Utilities for freezing Python scripts into executables'
 arch=('x86_64')
@@ -16,7 +16,7 @@
 license=('PSF')
 makedepends=('python' 'python2')
 source=("https://pypi.io/packages/source/c/cx_Freeze/cx_Freeze-$pkgver.tar.gz;)
-sha512sums=('cd71558bf7a20110b8f922c96a986cca1cca2b67b46356c6c4f1b6ae4a3420b7bba6949b2b47e8ddbefd61c148991b39a9522116324876b5ef17bba1e7d8540a')
+sha512sums=('64f9c3b7f6c3003c1dc439fc2da7d0c13c5f146834e3ab8ece3921f1eb30c6e3eda480ccc84e61cc061597521b360cf8f5ef8e0bbcce1437157360c3d9c1adbc')
 
 package_python-cx_freeze() {
   depends=('python')


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

2018-06-08 Thread Gaëtan Bisson via arch-commits
Date: Friday, June 8, 2018 @ 17:38:38
  Author: bisson
Revision: 326492

archrelease: copy trunk to testing-x86_64

Added:
  gnupg/repos/testing-x86_64/
  gnupg/repos/testing-x86_64/PKGBUILD
(from rev 326491, gnupg/trunk/PKGBUILD)
  gnupg/repos/testing-x86_64/install
(from rev 326491, gnupg/trunk/install)

--+
 PKGBUILD |   68 +
 install  |   41 
 2 files changed, 109 insertions(+)

Copied: gnupg/repos/testing-x86_64/PKGBUILD (from rev 326491, 
gnupg/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2018-06-08 17:38:38 UTC (rev 326492)
@@ -0,0 +1,68 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Tobias Powalowski 
+# Contributor: Andreas Radke 
+# Contributor: Judd Vinet 
+
+pkgname=gnupg
+pkgver=2.2.8
+pkgrel=1
+pkgdesc='Complete and free implementation of the OpenPGP standard'
+url='https://www.gnupg.org/'
+license=('GPL')
+arch=('x86_64')
+checkdepends=('openssh')
+makedepends=('libldap' 'libusb-compat' 'pcsclite')
+depends=('npth' 'libgpg-error' 'libgcrypt' 'libksba' 'libassuan'
+ 'pinentry' 'bzip2' 'readline' 'gnutls' 'sqlite')
+optdepends=('libldap: gpg2keys_ldap'
+'libusb-compat: scdaemon'
+'pcsclite: scdaemon')
+validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6'
+  '46CC730865BB5C78EBABADCF04376F3EE0856959'
+  '031EC2536E580D8EA286A9F22071B08A33BD3F06'
+  'D238EA65D64C67ED4C3073F28A861B1C7EFD60D9')
+source=("https://gnupg.org/ftp/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2"{,.sig})
+sha256sums=('777b4cb8ced21965a5053d4fa20fe11484f0a478f3d011cef508a1a49db50dcd'
+'SKIP')
+
+install=install
+
+conflicts=('dirmngr' 'gnupg2')
+provides=('dirmngr' "gnupg2=${pkgver}")
+replaces=('dirmngr' 'gnupg2')
+
+prepare() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   sed '/noinst_SCRIPTS = gpg-zip/c sbin_SCRIPTS += gpg-zip' -i 
tools/Makefile.in
+}
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./configure \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --sbindir=/usr/bin \
+   --libexecdir=/usr/lib/gnupg \
+   --enable-maintainer-mode \
+   --enable-symcryptrun \
+
+   make
+}
+
+check() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make check
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+   ln -s gpg "${pkgdir}"/usr/bin/gpg2
+   ln -s gpgv "${pkgdir}"/usr/bin/gpgv2
+
+   cd doc/examples/systemd-user
+   for i in *.*; do
+   install -Dm644 "$i" "${pkgdir}/usr/lib/systemd/user/$i"
+   done
+}

Copied: gnupg/repos/testing-x86_64/install (from rev 326491, 
gnupg/trunk/install)
===
--- testing-x86_64/install  (rev 0)
+++ testing-x86_64/install  2018-06-08 17:38:38 UTC (rev 326492)
@@ -0,0 +1,41 @@
+_global_units() {
+   _units=(dirmngr.socket gpg-agent.socket 
gpg-agent-{browser,extra,ssh}.socket)
+   _dir=/etc/systemd/user/sockets.target.wants
+
+   case $1 in
+   enable)
+   mkdir -p $_dir
+   for _u in "${_units[@]}"; do
+   ln -sf /usr/lib/systemd/user/$_u $_dir/$_u
+   done
+   ;;
+   disable)
+   for _u in "${_units[@]}"; do
+   rm -f $_dir/$_u
+   done
+   rmdir -p --ignore-fail-on-non-empty $_dir
+   ;;
+   esac
+}
+
+post_install() {
+   # See FS#42798 and FS#47371
+   dirmngr /dev/null
+
+   # Let systemd supervise daemons by default
+   _global_units enable
+}
+
+post_upgrade() {
+   if (( $(vercmp $2 2.1.13-1) < 0 )); then
+   echo "==> Please kill running gpg-agent and dirmngr processes 
before using this release."
+   fi
+
+   if (( $(vercmp $2 2.1.21-3) < 0 )); then
+   _global_units enable
+   fi
+}
+
+pre_remove() {
+   _global_units disable
+}


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

2018-06-08 Thread Gaëtan Bisson via arch-commits
Date: Friday, June 8, 2018 @ 17:38:10
  Author: bisson
Revision: 326491

upstream update

Modified:
  gnupg/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-06-08 17:35:35 UTC (rev 326490)
+++ PKGBUILD2018-06-08 17:38:10 UTC (rev 326491)
@@ -5,25 +5,25 @@
 # Contributor: Judd Vinet 
 
 pkgname=gnupg
-pkgver=2.2.7
+pkgver=2.2.8
 pkgrel=1
 pkgdesc='Complete and free implementation of the OpenPGP standard'
-url='http://www.gnupg.org/'
+url='https://www.gnupg.org/'
 license=('GPL')
 arch=('x86_64')
+checkdepends=('openssh')
+makedepends=('libldap' 'libusb-compat' 'pcsclite')
+depends=('npth' 'libgpg-error' 'libgcrypt' 'libksba' 'libassuan'
+ 'pinentry' 'bzip2' 'readline' 'gnutls' 'sqlite')
 optdepends=('libldap: gpg2keys_ldap'
 'libusb-compat: scdaemon'
 'pcsclite: scdaemon')
-makedepends=('libldap' 'libusb-compat' 'pcsclite')
-checkdepends=('openssh')
-depends=('npth' 'libgpg-error' 'libgcrypt' 'libksba' 'libassuan'
- 'pinentry' 'bzip2' 'readline' 'gnutls' 'sqlite')
 validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6'
   '46CC730865BB5C78EBABADCF04376F3EE0856959'
   '031EC2536E580D8EA286A9F22071B08A33BD3F06'
   'D238EA65D64C67ED4C3073F28A861B1C7EFD60D9')
 
source=("https://gnupg.org/ftp/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2"{,.sig})
-sha256sums=('d95b361ee6ef7eff86af40c8c72bf9313736ac9f7010d6604d78bf83818e976e'
+sha256sums=('777b4cb8ced21965a5053d4fa20fe11484f0a478f3d011cef508a1a49db50dcd'
 'SKIP')
 
 install=install


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

2018-06-08 Thread Johannes Löthberg via arch-commits
Date: Friday, June 8, 2018 @ 17:35:35
  Author: demize
Revision: 326490

archrelease: copy trunk to extra-any

Added:
  python-prometheus_client/repos/extra-any/
  python-prometheus_client/repos/extra-any/PKGBUILD
(from rev 326489, python-prometheus_client/trunk/PKGBUILD)

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

Copied: python-prometheus_client/repos/extra-any/PKGBUILD (from rev 326489, 
python-prometheus_client/trunk/PKGBUILD)
===
--- extra-any/PKGBUILD  (rev 0)
+++ extra-any/PKGBUILD  2018-06-08 17:35:35 UTC (rev 326490)
@@ -0,0 +1,51 @@
+# Maintainer: Johannes Löthberg 
+
+pkgname=(python-prometheus_client python2-prometheus_client)
+pkgver=0.2.0
+pkgrel=1
+
+pkgdesc="Prometheus instrumentation library for Python applications"
+url="https://github.com/prometheus/client_python;
+arch=('any')
+license=('APACHE')
+
+makedepends=('python' 'python-setuptools'
+ 'python2' 'python2-setuptools')
+checkdepends=('python-twisted' 'python2-twisted')
+
+source=(client_python-$pkgver.tar.gz::https://github.com/prometheus/client_python/archive/v${pkgver}.tar.gz)
+sha512sums=('7336d8294ef91dfebe91f325a882105cdaf947de212bff651d1c3ebfc139d9045b7f637ea44b18e921a9f2ad9af554aee28587e57b1202b5a30c49b1a765ba4c')
+
+prepare() {
+  cp -r client_python-$pkgver client_python-$pkgver-py2
+}
+
+build() {
+  cd client_python-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/client_python-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd client_python-$pkgver
+  python setup.py test
+
+  cd "$srcdir"/client_python-$pkgver-py2
+  python2 setup.py test
+}
+
+package_python-prometheus_client() {
+  depends=('python')
+
+  cd client_python-$pkgver
+  python setup.py install --root="$pkgdir" --skip-build --optimize=1
+}
+
+package_python2-prometheus_client() {
+  depends=('python2')
+
+  cd client_python-$pkgver
+  python2 setup.py install --root="$pkgdir" --skip-build --optimize=1
+}


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

2018-06-08 Thread Johannes Löthberg via arch-commits
Date: Friday, June 8, 2018 @ 17:35:21
  Author: demize
Revision: 326489

python-prometheus_client: run test suite

Modified:
  python-prometheus_client/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-06-08 17:33:01 UTC (rev 326488)
+++ PKGBUILD2018-06-08 17:35:21 UTC (rev 326489)
@@ -11,6 +11,7 @@
 
 makedepends=('python' 'python-setuptools'
  'python2' 'python2-setuptools')
+checkdepends=('python-twisted' 'python2-twisted')
 
 
source=(client_python-$pkgver.tar.gz::https://github.com/prometheus/client_python/archive/v${pkgver}.tar.gz)
 
sha512sums=('7336d8294ef91dfebe91f325a882105cdaf947de212bff651d1c3ebfc139d9045b7f637ea44b18e921a9f2ad9af554aee28587e57b1202b5a30c49b1a765ba4c')
@@ -27,6 +28,14 @@
   python2 setup.py build
 }
 
+check() {
+  cd client_python-$pkgver
+  python setup.py test
+
+  cd "$srcdir"/client_python-$pkgver-py2
+  python2 setup.py test
+}
+
 package_python-prometheus_client() {
   depends=('python')
 


[arch-commits] Commit in (4 files)

2018-06-08 Thread Johannes Löthberg via arch-commits
Date: Friday, June 8, 2018 @ 17:33:01
  Author: demize
Revision: 326488

Import python-prometheus_client

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

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

Added: python-prometheus_client/trunk/PKGBUILD
===
--- python-prometheus_client/trunk/PKGBUILD (rev 0)
+++ python-prometheus_client/trunk/PKGBUILD 2018-06-08 17:33:01 UTC (rev 
326488)
@@ -0,0 +1,42 @@
+# Maintainer: Johannes Löthberg 
+
+pkgname=(python-prometheus_client python2-prometheus_client)
+pkgver=0.2.0
+pkgrel=1
+
+pkgdesc="Prometheus instrumentation library for Python applications"
+url="https://github.com/prometheus/client_python;
+arch=('any')
+license=('APACHE')
+
+makedepends=('python' 'python-setuptools'
+ 'python2' 'python2-setuptools')
+
+source=(client_python-$pkgver.tar.gz::https://github.com/prometheus/client_python/archive/v${pkgver}.tar.gz)
+sha512sums=('7336d8294ef91dfebe91f325a882105cdaf947de212bff651d1c3ebfc139d9045b7f637ea44b18e921a9f2ad9af554aee28587e57b1202b5a30c49b1a765ba4c')
+
+prepare() {
+  cp -r client_python-$pkgver client_python-$pkgver-py2
+}
+
+build() {
+  cd client_python-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/client_python-$pkgver-py2
+  python2 setup.py build
+}
+
+package_python-prometheus_client() {
+  depends=('python')
+
+  cd client_python-$pkgver
+  python setup.py install --root="$pkgdir" --skip-build --optimize=1
+}
+
+package_python2-prometheus_client() {
+  depends=('python2')
+
+  cd client_python-$pkgver
+  python2 setup.py install --root="$pkgdir" --skip-build --optimize=1
+}


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


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

2018-06-08 Thread Anatol Pomozov via arch-commits
Date: Friday, June 8, 2018 @ 17:23:50
  Author: anatolik
Revision: 342062

archrelease: copy trunk to community-x86_64

Added:
  nanomsg/repos/community-x86_64/PKGBUILD
(from rev 342061, nanomsg/trunk/PKGBUILD)
Deleted:
  nanomsg/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-06-08 17:23:05 UTC (rev 342061)
+++ PKGBUILD2018-06-08 17:23:50 UTC (rev 342062)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Anatol Pomozov 
-# Contributor: KokaKiwi 
-# Contributor: James Bulmer 
-
-pkgname=nanomsg
-pkgver=1.1.3
-pkgrel=1
-pkgdesc='Simple high-performance implementation of several "scalability 
protocols"'
-url='http://nanomsg.org/'
-license=(MIT)
-arch=(x86_64)
-depends=(glibc)
-makedepends=(cmake)
-source=(nanomsg-$pkgver.tar.gz::https://github.com/nanomsg/nanomsg/archive/$pkgver.tar.gz)
-sha1sums=('6db69589e8a6b45dedf72a0a425f8e23a1e6003f')
-
-
-build() {
-  cd nanomsg-$pkgver
-  cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=lib .
-  make
-}
-
-check() {
-  cd nanomsg-$pkgver
-  ctest
-}
-
-package() {
-  cd nanomsg-$pkgver
-  make DESTDIR="$pkgdir" install
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
-}

Copied: nanomsg/repos/community-x86_64/PKGBUILD (from rev 342061, 
nanomsg/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-06-08 17:23:50 UTC (rev 342062)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Anatol Pomozov 
+# Contributor: KokaKiwi 
+# Contributor: James Bulmer 
+
+pkgname=nanomsg
+pkgver=1.1.4
+pkgrel=1
+pkgdesc='Simple high-performance implementation of several "scalability 
protocols"'
+url='http://nanomsg.org/'
+license=(MIT)
+arch=(x86_64)
+depends=(glibc)
+makedepends=(cmake)
+source=(nanomsg-$pkgver.tar.gz::https://github.com/nanomsg/nanomsg/archive/$pkgver.tar.gz)
+sha1sums=('e4253d0441aee9c43e650aa1a2f12b15d7f34fc1')
+
+
+build() {
+  cd nanomsg-$pkgver
+  cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=lib .
+  make
+}
+
+check() {
+  cd nanomsg-$pkgver
+  ctest
+}
+
+package() {
+  cd nanomsg-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
+}


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

2018-06-08 Thread Anatol Pomozov via arch-commits
Date: Friday, June 8, 2018 @ 17:23:05
  Author: anatolik
Revision: 342061

upgpkg: nanomsg 1.1.4-1

Modified:
  nanomsg/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-06-08 17:21:13 UTC (rev 342060)
+++ PKGBUILD2018-06-08 17:23:05 UTC (rev 342061)
@@ -4,7 +4,7 @@
 # Contributor: James Bulmer 
 
 pkgname=nanomsg
-pkgver=1.1.3
+pkgver=1.1.4
 pkgrel=1
 pkgdesc='Simple high-performance implementation of several "scalability 
protocols"'
 url='http://nanomsg.org/'
@@ -13,7 +13,7 @@
 depends=(glibc)
 makedepends=(cmake)
 
source=(nanomsg-$pkgver.tar.gz::https://github.com/nanomsg/nanomsg/archive/$pkgver.tar.gz)
-sha1sums=('6db69589e8a6b45dedf72a0a425f8e23a1e6003f')
+sha1sums=('e4253d0441aee9c43e650aa1a2f12b15d7f34fc1')
 
 
 build() {


[arch-commits] Commit in firefox-developer-edition-i18n/repos/community-any (2 files)

2018-06-08 Thread Andrew Crerar via arch-commits
Date: Friday, June 8, 2018 @ 17:21:13
  Author: andrewsc
Revision: 342060

archrelease: copy trunk to community-any

Added:
  firefox-developer-edition-i18n/repos/community-any/PKGBUILD
(from rev 342059, firefox-developer-edition-i18n/trunk/PKGBUILD)
Deleted:
  firefox-developer-edition-i18n/repos/community-any/PKGBUILD

--+
 PKGBUILD |  466 ++---
 1 file changed, 233 insertions(+), 233 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-06-08 17:20:42 UTC (rev 342059)
+++ PKGBUILD2018-06-08 17:21:13 UTC (rev 342060)
@@ -1,233 +0,0 @@
-# $Id$
-# Maintainer: Andrew Crerar 
-
-pkgbase=firefox-developer-edition-i18n
-pkgver=61.0b11
-pkgrel=1
-pkgdesc="Language pack for Firefox Developer Edition"
-arch=('any')
-url="https://www.mozilla.com/;
-license=('MPL' 'GPL')
-
-_languages=(
-  'ach"Acholi"'
-  'af "Afrikaans"'
-  'an "Aragonese"'
-  'ar "Arabic"'
-  'as "Assamese"'
-  'ast"Asturian"'
-  'az "Azerbaijani"'
-  'be "Belarusian"'
-  'bg "Bulgarian"'
-  'bn-BD  "Bengali (Bangladesh)"'
-  'bn-IN  "Bengali (India)"'
-  'br "Breton"'
-  'bs "Bosnian"'
-  'ca "Catalan"'
-  'cak"Maya Kaqchikel"'
-  'cs "Czech"'
-  'cy "Welsh"'
-  'da "Danish"'
-  'de "German"'
-  'dsb"Lower Sorbian"'
-  'el "Greek"'
-  'en-GB  "English (British)"'
-  'en-US  "English (US)"'
-  'en-ZA  "English (South African)"'
-  'eo "Esperanto"'
-  'es-AR  "Spanish (Argentina)"'
-  'es-CL  "Spanish (Chile)"'
-  'es-ES  "Spanish (Spain)"'
-  'es-MX  "Spanish (Mexico)"'
-  'et "Estonian"'
-  'eu "Basque"'
-  'fa "Persian"'
-  'ff "Fulah"'
-  'fi "Finnish"'
-  'fr "French"'
-  'fy-NL  "Frisian"'
-  'ga-IE  "Irish"'
-  'gd "Gaelic (Scotland)"'
-  'gl "Galician"'
-  'gn "Guarani"'
-  'gu-IN  "Gujarati (India)"'
-  'he "Hebrew"'
-  'hi-IN  "Hindi (India)"'
-  'hr "Croatian"'
-  'hsb"Upper Sorbian"'
-  'hu "Hungarian"'
-  'hy-AM  "Armenian"'
-  'ia "Interlingua"'
-  'id "Indonesian"'
-  'is "Icelandic"'
-  'it "Italian"'
-  'ja "Japanese"'
-  'ka "Georgian"'
-  'kab"Kabyle"'
-  'kk "Kazakh"'
-  'km "Khmer"'
-  'kn "Kannada"'
-  'ko "Korean"'
-  'lij"Ligurian"'
-  'lt "Lithuanian"'
-  'lv "Latvian"'
-  'mai"Maithili"'
-  'mk "Macedonian"'
-  'ml "Malayalam"'
-  'mr "Marathi"'
-  'ms "Malay"'
-  'my "Burmese"'
-  'nb-NO  "Norwegian (Bokmål)"'
-  'ne-NP  "Nepali"'
-  'nl "Dutch"'
-  'nn-NO  "Norwegian (Nynorsk)"'
-  'or "Oriya"'
-  'pa-IN  "Punjabi (India)"'
-  'pl "Polish"'
-  'pt-BR  "Portuguese (Brazilian)"'
-  'pt-PT  "Portuguese (Portugal)"'
-  'rm "Romansh"'
-  'ro "Romanian"'
-  'ru "Russian"'
-  'si "Sinhala"'
-  'sk "Slovak"'
-  'sl "Slovenian"'
-  'son"Songhai"'
-  'sq "Albanian"'
-  'sr "Serbian"'
-  'sv-SE  "Swedish"'
-  'ta "Tamil"'
-  'te "Telugu"'
-  'th "Thai"'
-  'tr "Turkish"'
-  'uk "Ukrainian"'
-  'ur "Urdu"'
-  'uz "Uzbek"'
-  'vi "Vietnamese"'
-  'xh "Xhosa"'
-  'zh-CN  "Chinese (Simplified)"'
-  'zh-TW  "Chinese (Traditional)"'
-)
-
-pkgname=()
-source=()
-_url=https://archive.mozilla.org/pub/devedition/releases/$pkgver/linux-x86_64/xpi
-
-for _lang in "${_languages[@]}"; do
-  _locale=${_lang%% *}
-  _pkgname=firefox-developer-edition-i18n-${_locale,,}
-
-  pkgname+=($_pkgname)
-  
source+=("firefox-developer-edition-i18n-$pkgver-$_locale.xpi::$_url/$_locale.xpi")
-  eval "package_$_pkgname() {
-_package $_lang
-  }"
-done
-
-# Don't extract anything
-noextract=(${source[@]%%::*})
-
-_package() {
-  pkgdesc="$2 language pack for Firefox Developer Edition"
-  depends=("firefox-developer-edition>=$pkgver")
-  install -Dm644 firefox-developer-edition-i18n-$pkgver-$1.xpi \
-
"$pkgdir/usr/lib/firefox-developer-edition/browser/extensions/langpack-$1...@devedition.mozilla.org.xpi"
-}
-
-sha512sums=('b8e3c93587b6f9c7c00edb92e4da6b9041005c9a591ab9ef78067d6c58ee87459b740ccb256594a51f1c37074a94061b66d81e40abf2e0c8e708e05ef4b03753'
-
'695551dee13e90cff9528a8cea530d9c93d574023d6db92be2ccaf0e7f2b005466c5a6f73923035c77873ab100497bb4326438fa84de60899b3e4e769c60fa25'
-
'37af0ca3d79fd406a78505e6c4906c7f54ec8997c45bf68fb3ba066a9d8b07f1ef245a5b1091543ff9df3ac0e941581056a11423813a07195d5d16397623109a'
-
'bfa4c4180932e321272d97b43e1cc245b8a597453a6c066ccb7137f6f48cffc11c8f9f3f2920dfc244c61cfaa2f3cd7a3ec079ed62eed3df23726af3450ca69c'
-
'0d6259b09040f84338495f13cd2159683201f3dd0d51c4c6ed0a03c657acba0fb97ce0ba24b8f189cbf61ae6ed296d29423a477e0afa2fadf525a6dccfb5'
-
'e0925ba5d98d0e73f865f0de344263962684de04120554225ddb92f08996a0a692a389e7b6589fec970f8b221b45cfd41dcb7069be7551010d6236b8c61d9afb'
-

[arch-commits] Commit in firefox-developer-edition-i18n/trunk (PKGBUILD)

2018-06-08 Thread Andrew Crerar via arch-commits
Date: Friday, June 8, 2018 @ 17:20:42
  Author: andrewsc
Revision: 342059

upgpkg: firefox-developer-edition-i18n 61.0b12-1

firefox-developer-edition-i18n: Updating to 61.0b12

Modified:
  firefox-developer-edition-i18n/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-06-08 17:14:02 UTC (rev 342058)
+++ PKGBUILD2018-06-08 17:20:42 UTC (rev 342059)
@@ -2,7 +2,7 @@
 # Maintainer: Andrew Crerar 
 
 pkgbase=firefox-developer-edition-i18n
-pkgver=61.0b11
+pkgver=61.0b12
 pkgrel=1
 pkgdesc="Language pack for Firefox Developer Edition"
 arch=('any')
@@ -134,100 +134,100 @@
 
"$pkgdir/usr/lib/firefox-developer-edition/browser/extensions/langpack-$1...@devedition.mozilla.org.xpi"
 }
 
-sha512sums=('b8e3c93587b6f9c7c00edb92e4da6b9041005c9a591ab9ef78067d6c58ee87459b740ccb256594a51f1c37074a94061b66d81e40abf2e0c8e708e05ef4b03753'
-
'695551dee13e90cff9528a8cea530d9c93d574023d6db92be2ccaf0e7f2b005466c5a6f73923035c77873ab100497bb4326438fa84de60899b3e4e769c60fa25'
-
'37af0ca3d79fd406a78505e6c4906c7f54ec8997c45bf68fb3ba066a9d8b07f1ef245a5b1091543ff9df3ac0e941581056a11423813a07195d5d16397623109a'
-
'bfa4c4180932e321272d97b43e1cc245b8a597453a6c066ccb7137f6f48cffc11c8f9f3f2920dfc244c61cfaa2f3cd7a3ec079ed62eed3df23726af3450ca69c'
-
'0d6259b09040f84338495f13cd2159683201f3dd0d51c4c6ed0a03c657acba0fb97ce0ba24b8f189cbf61ae6ed296d29423a477e0afa2fadf525a6dccfb5'
-
'e0925ba5d98d0e73f865f0de344263962684de04120554225ddb92f08996a0a692a389e7b6589fec970f8b221b45cfd41dcb7069be7551010d6236b8c61d9afb'
-
'c386dbfcf3879694ed55f20aaaf1391df45c589545dd876d8c7140b45d7bc823ad11cb5ca53045aecbed31240106f40a68e7cb26b44aeefd90fba91ef660ac8d'
-
'40ac9a9bd3d11d7d111354501ae16c4827e275c8b3040833eb98dccbf951cf4d8f860ce993630e89daf1a0d0ccdc97a4a2b04508eebac31586612b8d45f5c898'
-
'70bebd5a85e8ff7ac45933f086dba66c0f89734ad3d695a7f76b8e13e1961647fc389f7f304e5bdd8616e925490882125cd0ec3d0ffc9c602c38fccce703720c'
-
'0db61c7cc337347ae46bb1f797544c2b97e5896f5c624af851b821c430e9814eeba3547f668e67a9aa17bc0d39e63462cbec94997e2284448905ee69e976000f'
-
'f3959825c07bd9ba1605d54752c32048f4379ac0a1e9a30a57d6bd17fdd48fe1c6c03af224ef3bfed45486036e2f63c543f29f300ea375c481722e2a496e2b5b'
-
'7e6789736f66862494e63a9644aefcf868b1de4d4dcf4abac9ec92e3c603d6e6ac36ea2e99704b9043fe75221ab374145b7b0db0231d8ae4e56a65aecabf7b73'
-
'5a829a8b13fc345ddedbff23415ed5c70bba21825d34c90c323c523d11982c2cab7377d70ed6ffb72d24b9d032993d031494085c6df5b14f6ef29d171eac65ec'
-
'6a126017acee9ab39d3e4fa5e57951b70fc135a56ba9d4b033cdbfe73e939c5297487a292003755bdc0bd5a519b646a275dff566ac5902759429840c1d3a0ce6'
-
'6d02ab6bfc8deb37cbcb86a86576af29bb7b1f4e483fb9c9e291a69e3bb459eca354ff98f8b93d7ba7c01da17edb159272e60575774c39c4a75245a2556ddb5c'
-
'915f0568bf27104435d2f1744724277c7082242061211ef5fab65ced48e2545296e3429cf71f59f8d45923b8df940ab0edb63a8824d13f01740d1ada01885ff9'
-
'7c9cab931cb0aed7130283b1e289597303bca6f3825182b18d0a041fbb4a2c323c6b7bd7423f9fd83c62d6fe3486bbf9b20360931b6c7c69f426a3c42882606c'
-
'33c0334f87e229a8199ee6cab76f71a0d7533a4eb2f31bbc9fa5421ec0be1399453cbc303948f81d499e737639836cc655f7d029901182e40c0828376ace2767'
-
'4fcbe02c4489d0bc66b807d93a91ddaa48f4cbcc36232b614ba9aa21ea5d9e1ed17489b713dc04656de0b3479a533325e4d9e0767369ee05522bb6728f2a2e20'
-
'27415471f980ed90db553f421a62fa08ea27b2fd8617259ed72cc3c08a509fbaf87965fe854e32cb99f965407f295702d89e4a71852d9fb29d1270e3d6754077'
-
'73656902a4f78e355a8e84bd4c420aca825e72358526c1460de0d42215aff36c5f25b4a0ceec452c6be9444391d308829d8a2c1e8ffb9e0bf649615ab6c1fdf7'
-
'cc0b3d4abaebfd666d569ec68e71990177e4e09e7a3d68547da15948dcaa04fff551a716dbe7b8db4c27e48d1432567d1c13016212082064ee27315b92ad'
-
'1cb9c285ab2499db2182f09d4b7e4dc5886e02fd8edc461bab7eb40f08600db5424c2a263b0ab847b31d5cf7f26869fcbbaa4d352c5809c86bb17613f1e0fd72'
-
'a3aac937c894b7ab352f2cc3abd2e20ee2cbd5aa533af858f449a231619ece66b6b77eb9d956dda8b6c19d0cffe9541b0c12414d89bb67e508adb48cfba58e6f'
-
'477880e03e6b7f668c3b2001a750dad14b33b1e0c2ec712c5e0ebf64893679905c0ee0245daa8aaaffd785ab75298df3fecf582e35f4c0b1abc70828b88c578c'
-
'744c78d083097550ef5808fe5554db2bb221bf881061c30cfce866e287d6a6251e5ffad98d13d7e927b683c324cfca04d0b26b8e8ca251ee5bd54151d1c3f8a4'
-
'419b32bcc255adb837695e02243b4951bad2b38fc9ddc7c3c9b3354c5af103560ad1bc216ff015e61936448d48d124c060161e886709af335926790461f820f0'
-
'0c6880925f2305f5641e65e9a2ee85b541cb4e6ac4a4a55d89fad82c590eb1e82cd1cda3e89bbf060598b5f7ec0a5cb45033c036b8ad7b9403efab524f3282d5'
-

[arch-commits] Commit in firefox-developer-edition/repos/community-x86_64 (8 files)

2018-06-08 Thread Andrew Crerar via arch-commits
Date: Friday, June 8, 2018 @ 17:14:02
  Author: andrewsc
Revision: 342058

archrelease: copy trunk to community-x86_64

Added:
  firefox-developer-edition/repos/community-x86_64/PKGBUILD
(from rev 342057, firefox-developer-edition/trunk/PKGBUILD)
  
firefox-developer-edition/repos/community-x86_64/firefox-developer-edition.desktop
(from rev 342057, 
firefox-developer-edition/trunk/firefox-developer-edition.desktop)
  firefox-developer-edition/repos/community-x86_64/firefox-install-dir.patch
(from rev 342057, firefox-developer-edition/trunk/firefox-install-dir.patch)
  firefox-developer-edition/repos/community-x86_64/firefox-symbolic.svg
(from rev 342057, firefox-developer-edition/trunk/firefox-symbolic.svg)
Deleted:
  firefox-developer-edition/repos/community-x86_64/PKGBUILD
  
firefox-developer-edition/repos/community-x86_64/firefox-developer-edition.desktop
  firefox-developer-edition/repos/community-x86_64/firefox-install-dir.patch
  firefox-developer-edition/repos/community-x86_64/firefox-symbolic.svg

---+
 PKGBUILD  |  344 +--
 firefox-developer-edition.desktop |  622 ++--
 firefox-install-dir.patch |   84 ++--
 firefox-symbolic.svg  |  128 +++
 4 files changed, 589 insertions(+), 589 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-06-08 17:13:24 UTC (rev 342057)
+++ PKGBUILD2018-06-08 17:14:02 UTC (rev 342058)
@@ -1,172 +0,0 @@
-# $Id$
-# Maintainer: Andrew Crerar 
-# Contributor: Jan Alexander Steffens (heftig) 
-
-pkgname=firefox-developer-edition
-pkgver=61.0b11
-pkgrel=1
-pkgdesc="Developer Edition of the popular Firefox web browser"
-arch=('x86_64')
-license=('MPL' 'GPL' 'LGPL')
-url="https://www.mozilla.org/firefox/channel/#developer;
-depends=('gtk3' 'mozilla-common' 'libxt' 'startup-notification' 'mime-types'
- 'dbus-glib' 'ffmpeg' 'nss' 'hunspell-en_US' 'sqlite' 'ttf-font' 
'libpulse')
-makedepends=('unzip' 'zip' 'diffutils' 'python2' 'python' 'yasm' 'mesa' 
'imake' 'gconf' 'inetutils'
- 'xorg-server-xvfb' 'autoconf2.13' 'rust' 'mercurial' 'clang' 
'llvm' 'jack' 'gtk2')
-optdepends=('networkmanager: Location detection via available WiFi networks'
-'libnotify: Notification integration'
-'pulseaudio: Audio support'
-'speech-dispatcher: Text-to-Speech')
-replaces=('firefox-developer')
-options=(!emptydirs !makeflags !strip)
-_repo=https://hg.mozilla.org/mozilla-unified
-source=("hg+$_repo#tag=DEVEDITION_${pkgver//./_}_RELEASE"
-"$pkgname".desktop
-firefox-symbolic.svg
-firefox-install-dir.patch)
-sha512sums=('SKIP'
-
'12617f60e01420350b8d9c7c1c3a2a5ba0f2c46df31b0e23e51093ebd68019ced7d193a01d964421b91e1b444ce4ab499523f21cd3a39a2ffac8883d096ac195'
-
'ba7db9a7c95a051bcd84e4c09c802fc55ee3c0d1d06ec1b169b04e414259b75bbe92fe584aee41a1e3f71e71c160df8bedf5393449e5024110ed27dbc0579ea8'
-
'8fdf6a65e78406251075168c8310bb12c9b8419b3e51f59b1aa6244ef48ef1d201aae8bfdd5faa1da79242d9967fce959cbeffa54991ff39691f16168111b248')
-
-# Google API keys (see http://www.chromium.org/developers/how-tos/api-keys)
-# Note: These are for Arch Linux use ONLY. For your own distribution, please
-# get your own set of keys. Feel free to contact foutre...@archlinux.org for
-# more information.
-_google_api_key=AIzaSyDwr302FpOSkGRpLlUpPThNTDPbXcIn_FM
-
-# Mozilla API keys (see https://location.services.mozilla.com/api)
-# Note: These are for Arch Linux use ONLY. For your own distribution, please
-# get your own set of keys. Feel free to contact hef...@archlinux.org for
-# more information.
-_mozilla_api_key=16674381-f021-49de-8622-3021c5942aff
-
-prepare() {
-  mkdir path
-  ln -s /usr/bin/python2 path/python
-
-  cd mozilla-unified
-  patch -Np1 -i ../firefox-install-dir.patch
-
-  echo -n "$_google_api_key" > google-api-key
-  echo -n "$_mozilla_api_key" > mozilla-api-key
-
-  cat > .mozconfig << END
-ac_add_options --enable-application=browser
-
-ac_add_options --prefix=/usr
-ac_add_options --enable-release
-ac_add_options --enable-gold
-ac_add_options --enable-pie
-ac_add_options --enable-optimize="-O2"
-ac_add_options --enable-rust-simd
-
-# Branding
-ac_add_options --with-branding=browser/branding/aurora
-ac_add_options --enable-update-channel=aurora
-ac_add_options --with-distribution-id=org.archlinux
-export MOZILLA_OFFICIAL=1
-export MOZ_TELEMETRY_REPORTING=1
-export MOZ_ADDON_SIGNING=1
-export MOZ_REQUIRE_SIGNING=0
-ac_add_options "MOZ_ALLOW_LEGACY_EXTENSIONS=1"
-
-# Keys
-ac_add_options --with-google-api-keyfile=${PWD@Q}/google-api-key
-ac_add_options --with-mozilla-api-keyfile=${PWD@Q}/mozilla-api-key
-
-# System libraries
-ac_add_options --with-system-zlib
-ac_add_options --with-system-bz2
-ac_add_options --enable-system-sqlite
-ac_add_options --enable-system-ffi
-
-# Features

[arch-commits] Commit in firefox-developer-edition/trunk (PKGBUILD)

2018-06-08 Thread Andrew Crerar via arch-commits
Date: Friday, June 8, 2018 @ 17:13:24
  Author: andrewsc
Revision: 342057

upgpkg: firefox-developer-edition 61.0b12-1

firefox-developer-edition: Updating to 61.0b12

Modified:
  firefox-developer-edition/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-06-08 16:55:52 UTC (rev 342056)
+++ PKGBUILD2018-06-08 17:13:24 UTC (rev 342057)
@@ -3,7 +3,7 @@
 # Contributor: Jan Alexander Steffens (heftig) 
 
 pkgname=firefox-developer-edition
-pkgver=61.0b11
+pkgver=61.0b12
 pkgrel=1
 pkgdesc="Developer Edition of the popular Firefox web browser"
 arch=('x86_64')


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

2018-06-08 Thread Eli Schwartz via arch-commits
Date: Friday, June 8, 2018 @ 16:55:34
  Author: eschwartz
Revision: 342055

upgpkg: python-pytoml 0.1.16-1

upstream release

Modified:
  python-pytoml/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-06-08 16:46:43 UTC (rev 342054)
+++ PKGBUILD2018-06-08 16:55:34 UTC (rev 342055)
@@ -7,7 +7,7 @@
 _pkgname=pytoml
 pkgbase=python-pytoml
 pkgname=('python-pytoml' 'python2-pytoml')
-pkgver=0.1.15
+pkgver=0.1.16
 pkgrel=1
 pkgdesc="A TOML-0.4.0 parser/writer for Python."
 arch=('any')
@@ -16,7 +16,7 @@
 makedepends=('python-setuptools' 'python2-setuptools')
 checkdepends=('python-pytest' 'python2-pytest')
 source=("${_pkgname}-${pkgver}.tar.gz::${url}/archive/v${pkgver}.tar.gz")
-sha256sums=('ab00e17374b2f633fd682069689a6d48379a2661b1bbdc615ba80f8e25044f92')
+sha256sums=('15828a91627e750ef5440d1aa9fd9a920793760bd151dc45d3de22ab1c668e17')
 
 build() {
 cd "${srcdir}"/${_pkgname}-${pkgver}


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

2018-06-08 Thread Eli Schwartz via arch-commits
Date: Friday, June 8, 2018 @ 16:55:52
  Author: eschwartz
Revision: 342056

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-06-08 16:55:34 UTC (rev 342055)
+++ PKGBUILD2018-06-08 16:55:52 UTC (rev 342056)
@@ -1,49 +0,0 @@
-# $Id$
-# Maintainer: Eli Schwartz 
-# Contributor: Caleb Maclennan 
-# Contributor: Artem Vorotnikov 
-# Contributor: Andy Weidenbaum 
-
-_pkgname=pytoml
-pkgbase=python-pytoml
-pkgname=('python-pytoml' 'python2-pytoml')
-pkgver=0.1.15
-pkgrel=1
-pkgdesc="A TOML-0.4.0 parser/writer for Python."
-arch=('any')
-url="https://github.com/avakar/${_pkgname};
-license=('MIT')
-makedepends=('python-setuptools' 'python2-setuptools')
-checkdepends=('python-pytest' 'python2-pytest')
-source=("${_pkgname}-${pkgver}.tar.gz::${url}/archive/v${pkgver}.tar.gz")
-sha256sums=('ab00e17374b2f633fd682069689a6d48379a2661b1bbdc615ba80f8e25044f92')
-
-build() {
-cd "${srcdir}"/${_pkgname}-${pkgver}
-
-python setup.py build
-python2 setup.py build
-}
-
-check() {
-cd "${srcdir}"/${_pkgname}-${pkgver}
-
-python -m pytest
-python2 -m pytest
-}
-
-package_python-pytoml() {
-depends=('python')
-
-cd "${srcdir}"/${_pkgname}-${pkgver}
-python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
-install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-}
-
-package_python2-pytoml() {
-depends=('python2')
-
-cd "${srcdir}"/${_pkgname}-${pkgver}
-python2 setup.py install --root="${pkgdir}" --optimize=1 --skip-build
-install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: python-pytoml/repos/community-any/PKGBUILD (from rev 342055, 
python-pytoml/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-06-08 16:55:52 UTC (rev 342056)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Eli Schwartz 
+# Contributor: Caleb Maclennan 
+# Contributor: Artem Vorotnikov 
+# Contributor: Andy Weidenbaum 
+
+_pkgname=pytoml
+pkgbase=python-pytoml
+pkgname=('python-pytoml' 'python2-pytoml')
+pkgver=0.1.16
+pkgrel=1
+pkgdesc="A TOML-0.4.0 parser/writer for Python."
+arch=('any')
+url="https://github.com/avakar/${_pkgname};
+license=('MIT')
+makedepends=('python-setuptools' 'python2-setuptools')
+checkdepends=('python-pytest' 'python2-pytest')
+source=("${_pkgname}-${pkgver}.tar.gz::${url}/archive/v${pkgver}.tar.gz")
+sha256sums=('15828a91627e750ef5440d1aa9fd9a920793760bd151dc45d3de22ab1c668e17')
+
+build() {
+cd "${srcdir}"/${_pkgname}-${pkgver}
+
+python setup.py build
+python2 setup.py build
+}
+
+check() {
+cd "${srcdir}"/${_pkgname}-${pkgver}
+
+python -m pytest
+python2 -m pytest
+}
+
+package_python-pytoml() {
+depends=('python')
+
+cd "${srcdir}"/${_pkgname}-${pkgver}
+python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}
+
+package_python2-pytoml() {
+depends=('python2')
+
+cd "${srcdir}"/${_pkgname}-${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-gevent/trunk (PKGBUILD)

2018-06-08 Thread Felix Yan via arch-commits
Date: Friday, June 8, 2018 @ 16:46:28
  Author: felixonmars
Revision: 342053

upgpkg: python-gevent 1.3.3-1

Modified:
  python-gevent/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-06-08 16:43:48 UTC (rev 342052)
+++ PKGBUILD2018-06-08 16:46:28 UTC (rev 342053)
@@ -5,7 +5,7 @@
 
 pkgbase=python-gevent
 pkgname=(python-gevent python2-gevent)
-pkgver=1.3.2.post0
+pkgver=1.3.3
 pkgrel=1
 arch=('x86_64')
 pkgdesc="Python network library that uses greenlet and libev for easy and 
scalable concurrency"
@@ -17,7 +17,7 @@
   'python2-dnspython' 'python-requests' 'python2-requests' 
'python-zope-event'
   'python2-zope-event' 'python2-mock')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/gevent/gevent/archive/$pkgver.tar.gz;)
-sha512sums=('187d38b0b92b91b10aff4669d7c696b57d9cf23fd0c32d49a7b2a9657431a8d7004145ec578691976d6c4cf8f3ade567720e2066154fc1cedc3fe1d29cabc4a4')
+sha512sums=('cef6efadf0a3ce079dd05b7866ac995a8ad05281dbaab17ea02b100d69f95d5f5b2632bcbe6582df4271327741e2dc1924468eef7f1b5f175b88dd0f4e346deb')
 
 prepare() {
   sed -e 's/C.UTF-8/en_US.UTF-8/' -e '/@which/d' -i gevent-$pkgver/Makefile


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

2018-06-08 Thread Felix Yan via arch-commits
Date: Friday, June 8, 2018 @ 16:46:43
  Author: felixonmars
Revision: 342054

archrelease: copy trunk to community-x86_64

Added:
  python-gevent/repos/community-x86_64/PKGBUILD
(from rev 342053, python-gevent/trunk/PKGBUILD)
Deleted:
  python-gevent/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |  156 ++---
 1 file changed, 78 insertions(+), 78 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-06-08 16:46:28 UTC (rev 342053)
+++ PKGBUILD2018-06-08 16:46:43 UTC (rev 342054)
@@ -1,78 +0,0 @@
-# $Id: PKGBUILD 70305 2012-05-04 08:21:08Z mtorromeo $
-# Maintainer: Massimiliano Torromeo 
-# Maintainer: Felix Yan 
-# Contributor: Ralf Schmitt 
-
-pkgbase=python-gevent
-pkgname=(python-gevent python2-gevent)
-pkgver=1.3.2.post0
-pkgrel=1
-arch=('x86_64')
-pkgdesc="Python network library that uses greenlet and libev for easy and 
scalable concurrency"
-license=("MIT")
-url="http://www.gevent.org/;
-makedepends=('python-greenlet' 'python2-greenlet' 'cython' 'cython2')
-checkdepends=('lsof' 'python-perf' 'python2-perf' 'python2-virtualenv' 
'python-objgraph'
-  'python2-objgraph' 'python-zope-interface' 
'python2-zope-interface' 'python-dnspython'
-  'python2-dnspython' 'python-requests' 'python2-requests' 
'python-zope-event'
-  'python2-zope-event' 'python2-mock')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/gevent/gevent/archive/$pkgver.tar.gz;)
-sha512sums=('187d38b0b92b91b10aff4669d7c696b57d9cf23fd0c32d49a7b2a9657431a8d7004145ec578691976d6c4cf8f3ade567720e2066154fc1cedc3fe1d29cabc4a4')
-
-prepare() {
-  sed -e 's/C.UTF-8/en_US.UTF-8/' -e '/@which/d' -i gevent-$pkgver/Makefile
-
-  cp -a gevent-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir"/gevent-$pkgver
-
-  EMBED=1 \
-  CYTHON=cython \
-  PYTHON=python \
-  python setup.py build
-
-  cd "$srcdir"/gevent-$pkgver-py2
-
-  EMBED=1 \
-  CYTHON=cython2 \
-  PYTHON=python2 \
-  python2 setup.py build
-}
-
-check() {
-  (
-cd "$srcdir"/gevent-$pkgver
-pyvenv "$srcdir/pyvenv" --system-site-packages
-. "$srcdir/pyvenv/bin/activate"
-export PYTHONPATH="$PYTHONPATH:/usr/lib/python3.6/site-packages"
-python setup.py install
-make bench alltest
-  ) || warning "Tests failed"
-
-  (
-cd "$srcdir"/gevent-$pkgver-py2
-virtualenv2 "$srcdir/pyvenv" --system-site-packages
-. "$srcdir/pyvenv/bin/activate"
-export PYTHONPATH="$PYTHONPATH:/usr/lib/python2.7/site-packages"
-python setup.py install
-PYTHON=python2 make bench alltest
-  ) || warning "Tests failed"
-}
-
-package_python-gevent() {
-  depends=('python-greenlet')
-
-  cd gevent-$pkgver
-  python setup.py install -O1 --root="$pkgdir"
-  install -Dm0644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-gevent() {
-  depends=('python2-greenlet')
-
-  cd gevent-$pkgver-py2
-  python2 setup.py install -O1 --root="$pkgdir"
-  install -Dm0644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-gevent/repos/community-x86_64/PKGBUILD (from rev 342053, 
python-gevent/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-06-08 16:46:43 UTC (rev 342054)
@@ -0,0 +1,78 @@
+# $Id: PKGBUILD 70305 2012-05-04 08:21:08Z mtorromeo $
+# Maintainer: Massimiliano Torromeo 
+# Maintainer: Felix Yan 
+# Contributor: Ralf Schmitt 
+
+pkgbase=python-gevent
+pkgname=(python-gevent python2-gevent)
+pkgver=1.3.3
+pkgrel=1
+arch=('x86_64')
+pkgdesc="Python network library that uses greenlet and libev for easy and 
scalable concurrency"
+license=("MIT")
+url="http://www.gevent.org/;
+makedepends=('python-greenlet' 'python2-greenlet' 'cython' 'cython2')
+checkdepends=('lsof' 'python-perf' 'python2-perf' 'python2-virtualenv' 
'python-objgraph'
+  'python2-objgraph' 'python-zope-interface' 
'python2-zope-interface' 'python-dnspython'
+  'python2-dnspython' 'python-requests' 'python2-requests' 
'python-zope-event'
+  'python2-zope-event' 'python2-mock')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/gevent/gevent/archive/$pkgver.tar.gz;)
+sha512sums=('cef6efadf0a3ce079dd05b7866ac995a8ad05281dbaab17ea02b100d69f95d5f5b2632bcbe6582df4271327741e2dc1924468eef7f1b5f175b88dd0f4e346deb')
+
+prepare() {
+  sed -e 's/C.UTF-8/en_US.UTF-8/' -e '/@which/d' -i gevent-$pkgver/Makefile
+
+  cp -a gevent-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/gevent-$pkgver
+
+  EMBED=1 \
+  CYTHON=cython \
+  PYTHON=python \
+  python setup.py build
+
+  cd "$srcdir"/gevent-$pkgver-py2
+
+  EMBED=1 \
+  CYTHON=cython2 \
+  PYTHON=python2 \
+  python2 setup.py build
+}
+
+check() {
+  (
+cd "$srcdir"/gevent-$pkgver
+pyvenv "$srcdir/pyvenv" --system-site-packages
+. "$srcdir/pyvenv/bin/activate"
+export 

[arch-commits] Commit in deepin-file-manager/repos/community-x86_64 (2 files)

2018-06-08 Thread Felix Yan via arch-commits
Date: Friday, June 8, 2018 @ 16:43:48
  Author: felixonmars
Revision: 342052

archrelease: copy trunk to community-x86_64

Added:
  deepin-file-manager/repos/community-x86_64/PKGBUILD
(from rev 342051, deepin-file-manager/trunk/PKGBUILD)
Deleted:
  deepin-file-manager/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-06-08 16:43:35 UTC (rev 342051)
+++ PKGBUILD2018-06-08 16:43:48 UTC (rev 342052)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-file-manager
-pkgver=4.5.4
-pkgrel=2
-epoch=1
-pkgdesc='Deepin File Manager'
-arch=('x86_64')
-url="https://github.com/linuxdeepin/dde-file-manager;
-license=('GPL3')
-depends=('deepin-qt5integration' 'gtk2' 'gsettings-qt' 'libsecret' 'qt5-svg' 
'file' 'avfs'
- 'polkit-qt5' 'deepin-shortcut-viewer' 'poppler' 'ffmpegthumbnailer' 
'deepin-manual'
- 'file-roller' 'deepin-qt-dbus-factory' 'treefrog-framework' 
'deepin-terminal'
- 'gst-plugins-good' 'mpv' 'deepin-anything' 'deepin-movie')
-makedepends=('qt5-tools' 'deepin-dock' 'deepin-gettext-tools')
-groups=('deepin')
-provides=('deepin-desktop')
-conflicts=('deepin-desktop')
-replaces=('deepin-desktop')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/dde-file-manager/archive/$pkgver.tar.gz;)
-sha512sums=('b44cfa57af232c7f1292c049e5a26ea9c39894087024eefdf94bcc451d0657010d8017b4973fdf84258feaa59c1b8bec68d2c2d1933682c29f806a2a8d7a8577')
-
-prepare() {
-  cd dde-file-manager-$pkgver
-  sed -i 's|service.path = /lib/systemd/system|service.path = 
/usr/lib/systemd/system|' dde-anythingmonitor/dde-anythingmonitor.pro
-}
-
-build() {
-  cd dde-file-manager-$pkgver
-  qmake-qt5 PREFIX=/usr QMAKE_CFLAGS_ISYSTEM=
-  make
-}
-
-package() {
-  cd dde-file-manager-$pkgver
-  make INSTALL_ROOT="$pkgdir" install
-}

Copied: deepin-file-manager/repos/community-x86_64/PKGBUILD (from rev 342051, 
deepin-file-manager/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-06-08 16:43:48 UTC (rev 342052)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-file-manager
+pkgver=4.5.5
+pkgrel=1
+epoch=1
+pkgdesc='Deepin File Manager'
+arch=('x86_64')
+url="https://github.com/linuxdeepin/dde-file-manager;
+license=('GPL3')
+depends=('deepin-qt5integration' 'gtk2' 'gsettings-qt' 'libsecret' 'qt5-svg' 
'file' 'avfs'
+ 'polkit-qt5' 'deepin-shortcut-viewer' 'poppler' 'ffmpegthumbnailer' 
'deepin-manual'
+ 'file-roller' 'deepin-qt-dbus-factory' 'treefrog-framework' 
'deepin-terminal'
+ 'gst-plugins-good' 'mpv' 'deepin-anything' 'deepin-movie')
+makedepends=('qt5-tools' 'deepin-dock' 'deepin-gettext-tools')
+groups=('deepin')
+provides=('deepin-desktop')
+conflicts=('deepin-desktop')
+replaces=('deepin-desktop')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/dde-file-manager/archive/$pkgver.tar.gz;)
+sha512sums=('4777e77e67670f5fe0ed768b187636dc4555c0c4f33ec1bdeb8b7cfecdf4b83274143c0c8c6b6e40a799cca4700f9b75fa3b0c3f37a8f2e1995a2ec4a43b5d90')
+
+prepare() {
+  cd dde-file-manager-$pkgver
+  sed -i 's|service.path = /lib/systemd/system|service.path = 
/usr/lib/systemd/system|' dde-anythingmonitor/dde-anythingmonitor.pro
+}
+
+build() {
+  cd dde-file-manager-$pkgver
+  qmake-qt5 PREFIX=/usr QMAKE_CFLAGS_ISYSTEM=
+  make
+}
+
+package() {
+  cd dde-file-manager-$pkgver
+  make INSTALL_ROOT="$pkgdir" install
+}


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

2018-06-08 Thread Felix Yan via arch-commits
Date: Friday, June 8, 2018 @ 16:43:35
  Author: felixonmars
Revision: 342051

upgpkg: deepin-file-manager 1:4.5.5-1

Modified:
  deepin-file-manager/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-06-08 16:40:00 UTC (rev 342050)
+++ PKGBUILD2018-06-08 16:43:35 UTC (rev 342051)
@@ -4,8 +4,8 @@
 # Contributor: Xu Fasheng 
 
 pkgname=deepin-file-manager
-pkgver=4.5.4
-pkgrel=2
+pkgver=4.5.5
+pkgrel=1
 epoch=1
 pkgdesc='Deepin File Manager'
 arch=('x86_64')
@@ -21,7 +21,7 @@
 conflicts=('deepin-desktop')
 replaces=('deepin-desktop')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/dde-file-manager/archive/$pkgver.tar.gz;)
-sha512sums=('b44cfa57af232c7f1292c049e5a26ea9c39894087024eefdf94bcc451d0657010d8017b4973fdf84258feaa59c1b8bec68d2c2d1933682c29f806a2a8d7a8577')
+sha512sums=('4777e77e67670f5fe0ed768b187636dc4555c0c4f33ec1bdeb8b7cfecdf4b83274143c0c8c6b6e40a799cca4700f9b75fa3b0c3f37a8f2e1995a2ec4a43b5d90')
 
 prepare() {
   cd dde-file-manager-$pkgver


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

2018-06-08 Thread Felix Yan via arch-commits
Date: Friday, June 8, 2018 @ 16:39:47
  Author: felixonmars
Revision: 342049

upgpkg: python-novaclient 10.3.0-1

Modified:
  python-novaclient/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-06-08 15:14:29 UTC (rev 342048)
+++ PKGBUILD2018-06-08 16:39:47 UTC (rev 342049)
@@ -4,7 +4,7 @@
 
 pkgbase=python-novaclient
 pkgname=(python-novaclient python2-novaclient)
-pkgver=10.2.0
+pkgver=10.3.0
 pkgrel=1
 pkgdesc="Client library for OpenStack Compute API"
 arch=('any')
@@ -17,7 +17,7 @@
  'python2-oslo-i18n' 'python-oslo-serialization' 
'python2-oslo-serialization')
 checkdepends=('python-oslotest' 'python2-oslotest' 'python-requests-mock' 
'python2-requests-mock')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/openstack/python-novaclient/archive/$pkgver.tar.gz;)
-sha512sums=('92e38d6d515ff42c33bbaa939facfe54b909b936d25c49649aba86bdab434d65d4027a6e3fdf8203de8d1c09692ec8d23ba6d22942df8244da6ea92df975a2cf')
+sha512sums=('8dbd510ad93cd82944548283ff1412ef788d42234ec0d1ac7e8f7261c44b1e184f50c7770f1beb961e2ecdd4ab27f6c80ff46ba1d836d4d5f44e1e7d408a6bb0')
 
 prepare() {
   sed -i '/simplejson/d' python-novaclient-$pkgver/requirements.txt


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

2018-06-08 Thread Felix Yan via arch-commits
Date: Friday, June 8, 2018 @ 16:40:00
  Author: felixonmars
Revision: 342050

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-06-08 16:39:47 UTC (rev 342049)
+++ PKGBUILD2018-06-08 16:40:00 UTC (rev 342050)
@@ -1,65 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Daniel Wallace 
-
-pkgbase=python-novaclient
-pkgname=(python-novaclient python2-novaclient)
-pkgver=10.2.0
-pkgrel=1
-pkgdesc="Client library for OpenStack Compute API"
-arch=('any')
-url="http://docs.openstack.org/developer/python-novaclient;
-license=('Apache')
-makedepends=('python-setuptools' 'python2-setuptools' 'python-pbr' 
'python2-pbr' 'python-babel'
- 'python2-babel' 'python-prettytable' 'python2-prettytable' 
'python-keystoneauth1'
- 'python2-keystoneauth1' 'python-requests' 'python2-requests' 
'python-iso8601'
- 'python2-iso8601' 'python-oslo-utils' 'python2-oslo-utils' 
'python-oslo-i18n'
- 'python2-oslo-i18n' 'python-oslo-serialization' 
'python2-oslo-serialization')
-checkdepends=('python-oslotest' 'python2-oslotest' 'python-requests-mock' 
'python2-requests-mock')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/openstack/python-novaclient/archive/$pkgver.tar.gz;)
-sha512sums=('92e38d6d515ff42c33bbaa939facfe54b909b936d25c49649aba86bdab434d65d4027a6e3fdf8203de8d1c09692ec8d23ba6d22942df8244da6ea92df975a2cf')
-
-prepare() {
-  sed -i '/simplejson/d' python-novaclient-$pkgver/requirements.txt
-  cp -a python-novaclient-$pkgver{,-py2}
-
-  export PBR_VERSION=$pkgver
-}
-
-build() {
-  cd "$srcdir"/python-novaclient-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/python-novaclient-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/python-novaclient-$pkgver
-  python setup.py testr || warning "Tests failed"
-
-  cd "$srcdir"/python-novaclient-$pkgver-py2
-  PYTHON=python2 python2 setup.py testr || warning "Tests failed"
-}
-
-package_python-novaclient() {
-  depends=('python-six' 'python-pbr' 'python-babel' 'python-prettytable' 
'python-keystoneauth1'
-   'python-requests' 'python-iso8601' 'python-oslo-utils' 
'python-oslo-i18n'
-   'python-oslo-serialization')
-
-  cd "$srcdir"/python-novaclient-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-}
-
-package_python2-novaclient() {
-  depends=('python2-six' 'python2-pbr' 'python2-babel' 'python2-prettytable' 
'python2-keystoneauth1'
-   'python2-requests' 'python2-iso8601' 'python2-oslo-utils' 
'python2-oslo-i18n'
-   'python2-oslo-serialization')
-
-  cd "$srcdir"/python-novaclient-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-
-  mv "$pkgdir"/usr/bin/nova{,2}
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-novaclient/repos/community-any/PKGBUILD (from rev 342049, 
python-novaclient/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-06-08 16:40:00 UTC (rev 342050)
@@ -0,0 +1,65 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Daniel Wallace 
+
+pkgbase=python-novaclient
+pkgname=(python-novaclient python2-novaclient)
+pkgver=10.3.0
+pkgrel=1
+pkgdesc="Client library for OpenStack Compute API"
+arch=('any')
+url="http://docs.openstack.org/developer/python-novaclient;
+license=('Apache')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-pbr' 
'python2-pbr' 'python-babel'
+ 'python2-babel' 'python-prettytable' 'python2-prettytable' 
'python-keystoneauth1'
+ 'python2-keystoneauth1' 'python-requests' 'python2-requests' 
'python-iso8601'
+ 'python2-iso8601' 'python-oslo-utils' 'python2-oslo-utils' 
'python-oslo-i18n'
+ 'python2-oslo-i18n' 'python-oslo-serialization' 
'python2-oslo-serialization')
+checkdepends=('python-oslotest' 'python2-oslotest' 'python-requests-mock' 
'python2-requests-mock')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/openstack/python-novaclient/archive/$pkgver.tar.gz;)
+sha512sums=('8dbd510ad93cd82944548283ff1412ef788d42234ec0d1ac7e8f7261c44b1e184f50c7770f1beb961e2ecdd4ab27f6c80ff46ba1d836d4d5f44e1e7d408a6bb0')
+
+prepare() {
+  sed -i '/simplejson/d' python-novaclient-$pkgver/requirements.txt
+  cp -a python-novaclient-$pkgver{,-py2}
+
+  export PBR_VERSION=$pkgver
+}
+
+build() {
+  cd "$srcdir"/python-novaclient-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/python-novaclient-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/python-novaclient-$pkgver
+  python setup.py testr || warning "Tests failed"
+

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

2018-06-08 Thread Evgeniy Alekseev via arch-commits
Date: Friday, June 8, 2018 @ 15:14:09
  Author: arcanis
Revision: 342047

upgpkg: geogebra 6.0.472.0-1

Modified:
  geogebra/trunk/ChangeLog
  geogebra/trunk/PKGBUILD

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

Modified: ChangeLog
===
--- ChangeLog   2018-06-08 14:47:46 UTC (rev 342046)
+++ ChangeLog   2018-06-08 15:14:09 UTC (rev 342047)
@@ -1,3 +1,6 @@
+6.0.472.0-1:
+upstream update
+
 6.0.464.0-1:
 upstream update
 

Modified: PKGBUILD
===
--- PKGBUILD2018-06-08 14:47:46 UTC (rev 342046)
+++ PKGBUILD2018-06-08 15:14:09 UTC (rev 342047)
@@ -5,7 +5,7 @@
 # Contributor: moostik 
 
 pkgname=geogebra
-pkgver=6.0.464.0
+pkgver=6.0.472.0
 pkgrel=1
 pkgdesc="Dynamic mathematics software with interactive graphics, algebra and 
spreadsheet"
 arch=('x86_64')
@@ -39,7 +39,7 @@
   install -Dm644 "${srcdir}/geogebra-mime.xml" 
"${pkgdir}/usr/share/mime/packages/geogebra.xml"
 }
 
-sha512sums=('fd7d8803942e1c95705bf85a47917f36965195e950ba59e8904d59d9d46acd7d40d96105a186f897ad3581fd790bdbcd56a5aeb938686576039c5a1ea1c958e6'
+sha512sums=('27ebdf85cbbb9fe93999e4c9bfa486d5500bd4c42359d86fa3a99e2a9e5424b7beda1b31095f5089fe2888e5cae814baa0d5ae2c50fb5bd0567e2f6c31d12974'
 
'a946acb8867f497c68ce6f8fff8172da4a43a9ca118aafcc5ac414318fd52c4bc6ada387bdfa296f0ff2e1d7411ae345b61197b4adaa3f54299aab837647df55'
 
'18176e1776593161fffbb433df41db7961440068941cf58eadd9a5c0e12f3de7c04cdc4bcdcefa7d312d2b3c1f9f92318ffac32762034df47f95a44391885a64'
 
'415e73ff15524d5e81b05cf4c31241f4e21a4eedcef0a11e5af82423f9a7c2cbf632e9ee1e86b4cc60ebc566472462979a65cb7f3cfc9f94243fb545ac042a0f')


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

2018-06-08 Thread Evgeniy Alekseev via arch-commits
Date: Friday, June 8, 2018 @ 15:14:29
  Author: arcanis
Revision: 342048

archrelease: copy trunk to community-x86_64

Added:
  geogebra/repos/community-x86_64/ChangeLog
(from rev 342047, geogebra/trunk/ChangeLog)
  geogebra/repos/community-x86_64/PKGBUILD
(from rev 342047, geogebra/trunk/PKGBUILD)
  geogebra/repos/community-x86_64/geogebra
(from rev 342047, geogebra/trunk/geogebra)
  geogebra/repos/community-x86_64/geogebra-mime.xml
(from rev 342047, geogebra/trunk/geogebra-mime.xml)
Deleted:
  geogebra/repos/community-x86_64/ChangeLog
  geogebra/repos/community-x86_64/PKGBUILD
  geogebra/repos/community-x86_64/geogebra
  geogebra/repos/community-x86_64/geogebra-mime.xml

---+
 ChangeLog |  257 ++--
 PKGBUILD  |   90 +-
 geogebra  |6 -
 geogebra-mime.xml |   54 +-
 4 files changed, 205 insertions(+), 202 deletions(-)

Deleted: ChangeLog
===
--- ChangeLog   2018-06-08 15:14:09 UTC (rev 342047)
+++ ChangeLog   2018-06-08 15:14:29 UTC (rev 342048)
@@ -1,127 +0,0 @@
-6.0.464.0-1:
-upstream update
-
-6.0.451.0-1:
-upstream update
-
-6.0.445.0-1:
-upstream update
-
-6.0.432.0-1:
-upstream update
-
-6.0.427.0-1:
-* upstream update
-
-6.0.417.0-1:
-* upstream update
-* try to use electron app
-
-5.0.414.0-1:
-* upstream update
-
-5.0.400.0-1:
-* upstream update
-
-5.0.390.0-1:
-* upstream update
-* force java-8 (FS#55912)
-
-5.0.387.0-1:
-upstream update
-
-5.0.382.0-1:
-upstream update
-
-5.0.374.0-1:
-* upstream update
-* add mime xml (FS#54733)
-
-5.0.357.0-1:
-upstream update
-
-5.0.344.0-1:
-upstream update
-
-5.0.311.0-1:
-upstream update
-
-5.0.299.0-1:
-upstream update
-
-5.0.290.0-1:
-upstream update
-
-5.0.286.0-1
-upstream update
-
-5.0.280.0-1:
-upstream update
-
-5.0.274.0-1:
-upstream update
-
-5.0.266.0-1:
-upstream update
-
-5.0.260.0-1:
-upstream update
-
-5.0.241.0-1:
-upstream update
-
-5.0.231.0-1:
-upstream update, move to pacman hooks
-
-5.0.230.0-1:
-upstream update
-
-5.0.205.0-1:
-upstream update
-
-5.0.202.0-1:
-upstream update
-
-5.0.190.0-1:
-upstream update
-
-5.0.185.0-1:
-upstream update
-
-5.0.180.0-1:
-upstream update
-
-5.0.170.0-1:
-upstream update
-
-5.0.168.0-1:
-upstream update
-
-5.0.166.0-1:
-upstream update
-
-5.0.164.0-1:
-upstream update
-
-5.0.161.0-1:
-upstream update
-
-5.0.158.0-1:
-upstream update
-
-5.0.150.0-1:
-upstream update
-
-5.0.149.0-1:
-upstream update
-
-5.0.146.0-1:
-upstream update
-
-5.0.143.0-1:
-upstream update
-
-5.0.129.0-1:
-upstream update
-put icon back
-

Copied: geogebra/repos/community-x86_64/ChangeLog (from rev 342047, 
geogebra/trunk/ChangeLog)
===
--- ChangeLog   (rev 0)
+++ ChangeLog   2018-06-08 15:14:29 UTC (rev 342048)
@@ -0,0 +1,130 @@
+6.0.472.0-1:
+upstream update
+
+6.0.464.0-1:
+upstream update
+
+6.0.451.0-1:
+upstream update
+
+6.0.445.0-1:
+upstream update
+
+6.0.432.0-1:
+upstream update
+
+6.0.427.0-1:
+* upstream update
+
+6.0.417.0-1:
+* upstream update
+* try to use electron app
+
+5.0.414.0-1:
+* upstream update
+
+5.0.400.0-1:
+* upstream update
+
+5.0.390.0-1:
+* upstream update
+* force java-8 (FS#55912)
+
+5.0.387.0-1:
+upstream update
+
+5.0.382.0-1:
+upstream update
+
+5.0.374.0-1:
+* upstream update
+* add mime xml (FS#54733)
+
+5.0.357.0-1:
+upstream update
+
+5.0.344.0-1:
+upstream update
+
+5.0.311.0-1:
+upstream update
+
+5.0.299.0-1:
+upstream update
+
+5.0.290.0-1:
+upstream update
+
+5.0.286.0-1
+upstream update
+
+5.0.280.0-1:
+upstream update
+
+5.0.274.0-1:
+upstream update
+
+5.0.266.0-1:
+upstream update
+
+5.0.260.0-1:
+upstream update
+
+5.0.241.0-1:
+upstream update
+
+5.0.231.0-1:
+upstream update, move to pacman hooks
+
+5.0.230.0-1:
+upstream update
+
+5.0.205.0-1:
+upstream update
+
+5.0.202.0-1:
+upstream update
+
+5.0.190.0-1:
+upstream update
+
+5.0.185.0-1:
+upstream update
+
+5.0.180.0-1:
+upstream update
+
+5.0.170.0-1:
+upstream update
+
+5.0.168.0-1:
+upstream update
+
+5.0.166.0-1:
+upstream update
+
+5.0.164.0-1:
+upstream update
+
+5.0.161.0-1:
+upstream update
+
+5.0.158.0-1:
+upstream update
+
+5.0.150.0-1:
+upstream update
+
+5.0.149.0-1:
+upstream update
+
+5.0.146.0-1:
+upstream update
+
+5.0.143.0-1:
+upstream update
+
+5.0.129.0-1:
+upstream update
+put icon back
+

Deleted: PKGBUILD
===
--- PKGBUILD2018-06-08 15:14:09 UTC (rev 342047)
+++ PKGBUILD2018-06-08 15:14:29 UTC (rev 342048)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Evgeniy Alekseev 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Felipe Hommen 
-# Contributor: moostik 
-
-pkgname=geogebra
-pkgver=6.0.464.0
-pkgrel=1
-pkgdesc="Dynamic mathematics software with interactive graphics, algebra and 
spreadsheet"
-arch=('x86_64')
-url='http://www.geogebra.org/'

[arch-commits] Commit in libvirt/repos/community-x86_64 (10 files)

2018-06-08 Thread Christian Rebischke via arch-commits
Date: Friday, June 8, 2018 @ 14:47:46
  Author: shibumi
Revision: 342046

archrelease: copy trunk to community-x86_64

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

+
 PKGBUILD   |  279 ++-
 libvirt.install|   18 +--
 libvirt.sysusers.d |2 
 libvirtd-guests.conf.d |   18 +--
 libvirtd.conf.d|2 
 5 files changed, 156 insertions(+), 163 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-06-08 14:47:34 UTC (rev 342045)
+++ PKGBUILD2018-06-08 14:47:46 UTC (rev 342046)
@@ -1,143 +0,0 @@
-# ${Id}: PKGBUILD 274316 2017-12-13 22:56:42Z anatolik ${}
-# Maintainer: Christian Rebischke 
-# Contributor: Sergej Pupykin 
-# Contributor: Jonathan Wiersma 
-
-pkgname=libvirt
-pkgver=4.4.0
-pkgrel=1
-pkgdesc="API for controlling virtualization engines 
(openvz,kvm,qemu,virtualbox,xen,etc)"
-arch=('x86_64')
-url="http://libvirt.org/;
-license=('LGPL')
-makedepends=('pkgconfig' 'lvm2' 'linux-api-headers' 'dnsmasq' 'lxc'
-'libiscsi' 'open-iscsi' 'perl-xml-xpath' 'libxslt' 'qemu'
-   'ceph-libs' 'glusterfs' 'netcf' 'yajl' 'parted')
-options=('emptydirs')
-validpgpkeys=('C74415BA7C9C7F78F02E1DC34606B8A5DE95BC1F')
-source=("https://libvirt.org/sources/${pkgname}-${pkgver}.tar.xz"{,.asc}
-   'libvirtd.conf.d'
-   'libvirtd-guests.conf.d'
-   'libvirt.sysusers.d')
-#  
"ae102b5d7bccd29bc6015a3e0acefeaa90d097ac.patch::https://libvirt.org/git/?p=libvirt.git;a=patch;h=ae102b5d7bccd29bc6015a3e0acefeaa90d097ac;)
-sha512sums=('725b9b093a2aaeab6fdcb8df341a400ab363bcd50af8400dfd0593c41d8fbc8352f89147be9fbfde2e8418cc7298e090fe07ec7255b0aff1f0d001b93322f93f'
-'SKIP'
-
'fc0e16e045a2c84d168d42c97d9e14ca32ba0d86025135967f4367cf3fa663882eefb6923ebf04676ae763f4f459e5156d7221b36b47c835f9e531c6b6e0cd9d'
-
'ef221bae994ad0a15ab5186b7469132896156d82bfdc3ef3456447d5cf1af347401ef33e8665d5b2f76451f5457aee7ea01064d7b9223d6691c90c4456763258'
-
'7d1d535aaf739a6753f6819c49272c8d9b5f488e0a8553797499334a76b8631474e222b6048f2125b858e5ecc21e602face45dd02121f833d605b9ae58322982')
-
-prepare() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  for file in $(find . -name '*.py' -print); do
-sed -i 's_#!.*/usr/bin/python_#!/usr/bin/python2_' "${file}"
-sed -i 's_#!.*/usr/bin/env.*python_#!/usr/bin/env python2_' "${file}"
-  done
-
-  sed -i 's|/sysconfig/|/conf.d/|g' \
-src/remote/libvirtd.service.in \
-tools/{libvirt-guests.service,libvirt-guests.sh,virt-pki-validate}.in \
-src/locking/virtlockd.service.in
-  sed -i 's|@sbindir@|/usr/bin|g' src/locking/virtlockd.service.in
-  sed -i 
's|/usr/libexec/qemu-bridge-helper|/usr/lib/qemu/qemu-bridge-helper|g' \
-src/qemu/qemu{.conf,_conf.c} \
-src/qemu/test_libvirtd_qemu.aug.in
-
-  sed -i 's|libsystemd-daemon|libsystemd|g' configure
-  sed -i 's/notify/simple/' src/remote/libvirtd.service.in
-
-#  patch -p1 -i "${srcdir}"/ae102b5d7bccd29bc6015a3e0acefeaa90d097ac.patch
-}
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  export PYTHON=`which python2`
-  export LDFLAGS=-lX11
-  export RADVD=/usr/bin/radvd
-  [ -f Makefile ] || ./configure --prefix=/usr --libexec=/usr/lib/"${pkgname}" 
--sbindir=/usr/bin \
-   --with-storage-lvm --without-xen --with-udev --without-hal 
--disable-static \
-   --with-init-script=systemd --with-storage-gluster \
-   --with-qemu-user=nobody --with-qemu-group=kvm \
-   --with-netcf --with-interface --with-lxc --with-storage-iscsi 
--with-storage-disk
-   # --with-audit
-  make
-}
-
-package_libvirt() {
-  depends=('e2fsprogs' 'gnutls' 'iptables' 'libxml2' 'parted' 'polkit' 
'python2'
- 'avahi' 'yajl' 'libpciaccess' 'udev' 'dbus' 'libxau' 'libxdmcp' 'libpcap' 
'libcap-ng'
- 'curl' 'libsasl' 'libgcrypt' 'libgpg-error' 'openssl' 'libxcb' 'gcc-libs'
- 'iproute2' 'libnl' 'libx11' 'numactl' 'gettext' 'ceph-libs' 'libssh2'
- 'netcf' 'fuse2')
-  optdepends=('ebtables: required for default NAT networking'
-'dnsmasq: required for default NAT/DHCP for guests'
-'bridge-utils: for bridged networking'
-'netcat: for remote management 

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

2018-06-08 Thread Christian Rebischke via arch-commits
Date: Friday, June 8, 2018 @ 14:47:34
  Author: shibumi
Revision: 342045

upgpkg: libvirt 4.4.0-2

This release merges libvirt + libvirt-glusterfs. It should fix #58903

Modified:
  libvirt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-06-08 14:45:11 UTC (rev 342044)
+++ PKGBUILD2018-06-08 14:47:34 UTC (rev 342045)
@@ -5,7 +5,7 @@
 
 pkgname=libvirt
 pkgver=4.4.0
-pkgrel=1
+pkgrel=2
 pkgdesc="API for controlling virtualization engines 
(openvz,kvm,qemu,virtualbox,xen,etc)"
 arch=('x86_64')
 url="http://libvirt.org/;
@@ -13,6 +13,56 @@
 makedepends=('pkgconfig' 'lvm2' 'linux-api-headers' 'dnsmasq' 'lxc'
 'libiscsi' 'open-iscsi' 'perl-xml-xpath' 'libxslt' 'qemu'
'ceph-libs' 'glusterfs' 'netcf' 'yajl' 'parted')
+depends=('e2fsprogs' 'gnutls' 'iptables' 'libxml2' 'parted' 'polkit' 'python2'
+   'avahi' 'yajl' 'libpciaccess' 'udev' 'dbus' 'libxau' 'libxdmcp' 'libpcap' 
'libcap-ng'
+   'curl' 'libsasl' 'libgcrypt' 'libgpg-error' 'openssl' 'libxcb' 'gcc-libs'
+   'iproute2' 'libnl' 'libx11' 'numactl' 'gettext' 'libssh2'
+   'netcf' 'fuse2' 'glusterfs')
+optdepends=('ebtables: required for default NAT networking'
+  'dnsmasq: required for default NAT/DHCP for guests'
+  'bridge-utils: for bridged networking'
+  'netcat: for remote management over ssh'
+  'qemu'
+  'radvd'
+  'dmidecode'
+  'parted'
+  'ceph: for ceph support'
+  'qemu-blockcluster: for qemu glusterfs support')
+backup=('etc/conf.d/libvirt-guests'
+  'etc/conf.d/libvirtd'
+  'etc/libvirt/libvirt.conf'
+  'etc/libvirt/virtlogd.conf'
+  'etc/libvirt/libvirtd.conf'
+  'etc/libvirt/lxc.conf'
+  'etc/libvirt/nwfilter/allow-arp.xml'
+  'etc/libvirt/nwfilter/allow-dhcp-server.xml'
+  'etc/libvirt/nwfilter/allow-dhcp.xml'
+  'etc/libvirt/nwfilter/allow-incoming-ipv4.xml'
+  'etc/libvirt/nwfilter/allow-ipv4.xml'
+  'etc/libvirt/nwfilter/clean-traffic.xml'
+  'etc/libvirt/nwfilter/no-arp-ip-spoofing.xml'
+  'etc/libvirt/nwfilter/no-arp-mac-spoofing.xml'
+  'etc/libvirt/nwfilter/no-arp-spoofing.xml'
+  'etc/libvirt/nwfilter/no-ip-multicast.xml'
+  'etc/libvirt/nwfilter/no-ip-spoofing.xml'
+  'etc/libvirt/nwfilter/no-mac-broadcast.xml'
+  'etc/libvirt/nwfilter/no-mac-spoofing.xml'
+  'etc/libvirt/nwfilter/no-other-l2-traffic.xml'
+  'etc/libvirt/nwfilter/no-other-rarp-traffic.xml'
+  'etc/libvirt/nwfilter/qemu-announce-self-rarp.xml'
+  'etc/libvirt/nwfilter/qemu-announce-self.xml'
+  'etc/libvirt/qemu-lockd.conf'
+  'etc/libvirt/qemu.conf'
+  'etc/libvirt/qemu/networks/default.xml'
+  'etc/libvirt/virt-login-shell.conf'
+  'etc/libvirt/virtlockd.conf'
+  'etc/logrotate.d/libvirtd'
+  'etc/logrotate.d/libvirtd.lxc'
+  'etc/logrotate.d/libvirtd.qemu'
+  'etc/logrotate.d/libvirtd.uml'
+  'etc/sasl2/libvirt.conf')
+install="libvirt.install"
+
 options=('emptydirs')
 validpgpkeys=('C74415BA7C9C7F78F02E1DC34606B8A5DE95BC1F')
 source=("https://libvirt.org/sources/${pkgname}-${pkgver}.tar.xz"{,.asc}
@@ -64,54 +114,7 @@
   make
 }
 
-package_libvirt() {
-  depends=('e2fsprogs' 'gnutls' 'iptables' 'libxml2' 'parted' 'polkit' 
'python2'
- 'avahi' 'yajl' 'libpciaccess' 'udev' 'dbus' 'libxau' 'libxdmcp' 'libpcap' 
'libcap-ng'
- 'curl' 'libsasl' 'libgcrypt' 'libgpg-error' 'openssl' 'libxcb' 'gcc-libs'
- 'iproute2' 'libnl' 'libx11' 'numactl' 'gettext' 'ceph-libs' 'libssh2'
- 'netcf' 'fuse2')
-  optdepends=('ebtables: required for default NAT networking'
-'dnsmasq: required for default NAT/DHCP for guests'
-'bridge-utils: for bridged networking'
-'netcat: for remote management over ssh'
-'qemu'
-'radvd'
-'dmidecode'
-'parted')
-  backup=('etc/conf.d/libvirt-guests'
-'etc/conf.d/libvirtd'
-'etc/libvirt/libvirt.conf'
-'etc/libvirt/virtlogd.conf'
-'etc/libvirt/libvirtd.conf'
-'etc/libvirt/lxc.conf'
-'etc/libvirt/nwfilter/allow-arp.xml'
-'etc/libvirt/nwfilter/allow-dhcp-server.xml'
-'etc/libvirt/nwfilter/allow-dhcp.xml'
-'etc/libvirt/nwfilter/allow-incoming-ipv4.xml'
-'etc/libvirt/nwfilter/allow-ipv4.xml'
-'etc/libvirt/nwfilter/clean-traffic.xml'
-'etc/libvirt/nwfilter/no-arp-ip-spoofing.xml'
-'etc/libvirt/nwfilter/no-arp-mac-spoofing.xml'
-'etc/libvirt/nwfilter/no-arp-spoofing.xml'
-'etc/libvirt/nwfilter/no-ip-multicast.xml'
-'etc/libvirt/nwfilter/no-ip-spoofing.xml'
-'etc/libvirt/nwfilter/no-mac-broadcast.xml'
-'etc/libvirt/nwfilter/no-mac-spoofing.xml'
-'etc/libvirt/nwfilter/no-other-l2-traffic.xml'
-'etc/libvirt/nwfilter/no-other-rarp-traffic.xml'
-'etc/libvirt/nwfilter/qemu-announce-self-rarp.xml'
-'etc/libvirt/nwfilter/qemu-announce-self.xml'
-'etc/libvirt/qemu-lockd.conf'
-'etc/libvirt/qemu.conf'
-

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

2018-06-08 Thread Evgeniy Alekseev via arch-commits
Date: Friday, June 8, 2018 @ 14:45:02
  Author: arcanis
Revision: 342043

upgpkg: eric-i18n 18.06-1

Modified:
  eric-i18n/trunk/ChangeLog
  eric-i18n/trunk/PKGBUILD

---+
 ChangeLog |3 +++
 PKGBUILD  |   14 +-
 2 files changed, 8 insertions(+), 9 deletions(-)

Modified: ChangeLog
===
--- ChangeLog   2018-06-08 14:40:42 UTC (rev 342042)
+++ ChangeLog   2018-06-08 14:45:02 UTC (rev 342043)
@@ -1,3 +1,6 @@
+18.06-1:
+upstream update
+
 18.05-1:
 upstream update
 

Modified: PKGBUILD
===
--- PKGBUILD2018-06-08 14:40:42 UTC (rev 342042)
+++ PKGBUILD2018-06-08 14:45:02 UTC (rev 342043)
@@ -3,7 +3,7 @@
 # Contributor: M0Rf30
 
 pkgbase=eric-i18n
-pkgver=18.05
+pkgver=18.06
 pkgrel=1
 pkgdesc="Language pack for the Eric IDE"
 arch=('any')
@@ -42,11 +42,7 @@
  "${pkgdir}/usr/share/qt/translations/eric6_${1}.qm"
 }
 
-sha512sums=('cc4a449c01b7c11422689440f624c543ef65cdb29ae8d7155e4f39308f65c85551d0130b0325e47f494eb4fa76f3134427dc294dc1412934752346ff5f4491cd'
-
'b1e7da29ca06992f139ca3e27050dbd1dba28a4bcca8e93310036d167242c7b5c8ada597c49a1fb82407733f2d1d9fbd5ebcc54d2e0362c56e16b84b80c6d956'
-
'3177604057b37e53f73fa2c80d18afde640d54668e04c2e16bde9a3da564dbdf3c6de2cbe358cb7dcce08a00ae75c4009c8b2b7e99a8af4246f68da571c5ce3e'
-
'ad9cfa0adf1f312d42d7d0ec9fb0f30faa278be10116b68d0636e4a70e9ed84c6f2c499e4247df48419205e9bbfbbb58e55f6de0f4925a9960a495b1d5e51102')
-sha512sums=('57afec9da71cf99b299b533ebc0f81a1ecc4b6c175e254e5c11b226240ec06e45fe876ec802936cfba97834a9d080bd472b49a058425885a632c990953390578'
-
'323d4d6f1980178249aab30f5207cae79311f978cc9c28f2157da1d9d3c0aea0e1cdf7996af50ba32d4aa84c39566e3aaa49d0c4e805ab4a5a7d1a71c9e14c4e'
-
'e1543099d2156326b32c6e76613c2f81e6370a78a30e20ece8435e99dbcdb7ac53698ff7f43a50f1e69e6aa4d4ec3da5a0157668e49dba5ea11b3b2e7274a52f'
-
'daf06569279c62925e0438547a932c4a461b95c3b7d14c155c228c3a3642bba4c6556929cfa19aca1b7a072251c655a28f1ff204019ba8e906d8c94d71b167ff')
+sha512sums=('18bb370b9dfd8a9fbdabaf3663441e0c795eca529e943c3749ca3d4cd3ca1bb4c8594c8dbad8a557e297725d5db6e8d9ef44eb3df7298a24e19d6d2f357b6a9c'
+
'b78b3978afa7f7063445ac49b707f119e56d9db75a8050700bb63d3b5460fbd3a86ab999502c2433a9e48294174383789806ffbc6d60158046dfb1c7f451871b'
+
'c963d32caa3cc640c745b1f96d800bf3a01e6ec1d6d60db34e5f5cb5ba1833c4f49de31002bdc142e7d88bf6d1f79117b8a30b96086d3d9fba3ff170b55a427c'
+
'3f5aac30a6897023151a88048102299b5770df1d79f2fa8297a3d5622219b3b126d02394e9ae2eeb872a3861cc85268faad867cdc3e131671e65ff3576a5aa1e')


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

2018-06-08 Thread Evgeniy Alekseev via arch-commits
Date: Friday, June 8, 2018 @ 14:45:11
  Author: arcanis
Revision: 342044

archrelease: copy trunk to community-any

Added:
  eric-i18n/repos/community-any/ChangeLog
(from rev 342043, eric-i18n/trunk/ChangeLog)
  eric-i18n/repos/community-any/PKGBUILD
(from rev 342043, eric-i18n/trunk/PKGBUILD)
Deleted:
  eric-i18n/repos/community-any/ChangeLog
  eric-i18n/repos/community-any/PKGBUILD

---+
 ChangeLog |  319 ++--
 PKGBUILD  |  100 +-
 2 files changed, 209 insertions(+), 210 deletions(-)

Deleted: ChangeLog
===
--- ChangeLog   2018-06-08 14:45:02 UTC (rev 342043)
+++ ChangeLog   2018-06-08 14:45:11 UTC (rev 342044)
@@ -1,158 +0,0 @@
-18.05-1:
-upstream update
-
-18.04-1:
-upstream update
-
-18.03-1:
-upstream update
-
-18.01-1:
-* upstream update
-* drop cs, fr, it pt, tr and zh_CN translations since they are no longer 
supported by upstream
-
-17.12-1:
-upstream update
-
-17.11.1-1:
-upstream update
-
-17.11-1:
-upstream update
-
-17.10-1:
-upstream update
-
-17.09-1:
-upstream update
-
-17.08-1:
-upstream update
-
-17.07-1:
-upstream update
-
-17.06-1:
-upstream update
-
-17.05-1:
-upstream update
-
-17.04.1-1:
-upstream update
-
-17.03.1-1:
-upstream update
-
-17.03-1:
-upstream update
-
-17.02-1:
-* upstream update
-* drop qt4 versions as soon as they depend on qtwebkit
-
-17.01-1:
-upstream update
-
-16.12-1:
-upstream update
-
-16.11-1:
-upstream update
-
-6.1.11-1:
-upstream update
-
-6.1.10-1:
-upstream update
-
-6.1.9-1:
-upstream update
-
-6.1.8-1:
-upstream update
-
-6.1.7-1:
-upstream update
-
-6.1.6-1:
-upstream update
-
-6.1.5-2:
-fix broken Qt4 translations
-
-6.1.5-1:
-upstream update
-
-6.1.4-1:
-upstream update
-
-6.1.3-1:
-upstream update
-
-6.1.2-3:
-* rename zh_CN package to zh_cn
-* fix description
-
-6.1.2-2:
-rebuild in clean chroot for .BUILDINFO
-
-6.1.2-1:
-upstream update
-
-6.1.1-2:
-fix FS#47677
-
-6.1.1-1:
-upstream update
-
-6.1.0-1:
-upsream update
-
-6.0.11-1:
-upstream update
-
-6.0.10-1:
-upstream update
-
-6.0.9-1:
-upstream update
-
-6.0.8-1:
-upstream update
-
-6.0.7-1:
-upstream update
-
-6.0.6-1:
-upstream update
-
-6.0.5-1:
-upstream update
-
-6.0.4-1:
-upstream update
-
-6.0.3-1:
-upstream update
-
-6.0.2-1:
-upstream update
-
-6.0.0-1:
-upstream update
-
-6.0.0-2:
-rename qt4 packages to more pretty name
-
-6.0.0-1:
-upstream update
-
-5.5.2-1:
-upstream update
-
-5.5.1-1:
-upstream update
-
-5.5.0-1:
-upstream update. Create package

Copied: eric-i18n/repos/community-any/ChangeLog (from rev 342043, 
eric-i18n/trunk/ChangeLog)
===
--- ChangeLog   (rev 0)
+++ ChangeLog   2018-06-08 14:45:11 UTC (rev 342044)
@@ -0,0 +1,161 @@
+18.06-1:
+upstream update
+
+18.05-1:
+upstream update
+
+18.04-1:
+upstream update
+
+18.03-1:
+upstream update
+
+18.01-1:
+* upstream update
+* drop cs, fr, it pt, tr and zh_CN translations since they are no longer 
supported by upstream
+
+17.12-1:
+upstream update
+
+17.11.1-1:
+upstream update
+
+17.11-1:
+upstream update
+
+17.10-1:
+upstream update
+
+17.09-1:
+upstream update
+
+17.08-1:
+upstream update
+
+17.07-1:
+upstream update
+
+17.06-1:
+upstream update
+
+17.05-1:
+upstream update
+
+17.04.1-1:
+upstream update
+
+17.03.1-1:
+upstream update
+
+17.03-1:
+upstream update
+
+17.02-1:
+* upstream update
+* drop qt4 versions as soon as they depend on qtwebkit
+
+17.01-1:
+upstream update
+
+16.12-1:
+upstream update
+
+16.11-1:
+upstream update
+
+6.1.11-1:
+upstream update
+
+6.1.10-1:
+upstream update
+
+6.1.9-1:
+upstream update
+
+6.1.8-1:
+upstream update
+
+6.1.7-1:
+upstream update
+
+6.1.6-1:
+upstream update
+
+6.1.5-2:
+fix broken Qt4 translations
+
+6.1.5-1:
+upstream update
+
+6.1.4-1:
+upstream update
+
+6.1.3-1:
+upstream update
+
+6.1.2-3:
+* rename zh_CN package to zh_cn
+* fix description
+
+6.1.2-2:
+rebuild in clean chroot for .BUILDINFO
+
+6.1.2-1:
+upstream update
+
+6.1.1-2:
+fix FS#47677
+
+6.1.1-1:
+upstream update
+
+6.1.0-1:
+upsream update
+
+6.0.11-1:
+upstream update
+
+6.0.10-1:
+upstream update
+
+6.0.9-1:
+upstream update
+
+6.0.8-1:
+upstream update
+
+6.0.7-1:
+upstream update
+
+6.0.6-1:
+upstream update
+
+6.0.5-1:
+upstream update
+
+6.0.4-1:
+upstream update
+
+6.0.3-1:
+upstream update
+
+6.0.2-1:
+upstream update
+
+6.0.0-1:
+upstream update
+
+6.0.0-2:
+rename qt4 packages to more pretty name
+
+6.0.0-1:
+upstream update
+
+5.5.2-1:
+upstream update
+
+5.5.1-1:
+upstream update
+
+5.5.0-1:
+upstream update. Create package

Deleted: PKGBUILD
===
--- PKGBUILD2018-06-08 14:45:02 UTC (rev 342043)
+++ PKGBUILD2018-06-08 14:45:11 UTC (rev 342044)
@@ -1,52 +0,0 @@
-# $Id$
-# Maintainer: Evgeniy Alekseev 
-# Contributor: M0Rf30
-
-pkgbase=eric-i18n
-pkgver=18.05
-pkgrel=1

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

2018-06-08 Thread Evgeniy Alekseev via arch-commits
Date: Friday, June 8, 2018 @ 14:40:42
  Author: arcanis
Revision: 342042

archrelease: copy trunk to community-any

Added:
  eric/repos/community-any/.contrib
(from rev 342041, eric/trunk/.contrib)
  eric/repos/community-any/ChangeLog
(from rev 342041, eric/trunk/ChangeLog)
  eric/repos/community-any/PKGBUILD
(from rev 342041, eric/trunk/PKGBUILD)
Deleted:
  eric/repos/community-any/.contrib
  eric/repos/community-any/ChangeLog
  eric/repos/community-any/PKGBUILD

---+
 .contrib  |   14 +-
 ChangeLog |  321 ++--
 PKGBUILD  |  180 -
 3 files changed, 259 insertions(+), 256 deletions(-)

Deleted: .contrib
===
--- .contrib2018-06-08 14:40:20 UTC (rev 342041)
+++ .contrib2018-06-08 14:40:42 UTC (rev 342042)
@@ -1,7 +0,0 @@
-This is a list of (past) contributors not already credited in the PKGBUILD:
-
-Eric Belanger 
-riai 
-Ben 
-Daniel J Griffiths 
-Felix Rohrbach 

Copied: eric/repos/community-any/.contrib (from rev 342041, eric/trunk/.contrib)
===
--- .contrib(rev 0)
+++ .contrib2018-06-08 14:40:42 UTC (rev 342042)
@@ -0,0 +1,7 @@
+This is a list of (past) contributors not already credited in the PKGBUILD:
+
+Eric Belanger 
+riai 
+Ben 
+Daniel J Griffiths 
+Felix Rohrbach 

Deleted: ChangeLog
===
--- ChangeLog   2018-06-08 14:40:20 UTC (rev 342041)
+++ ChangeLog   2018-06-08 14:40:42 UTC (rev 342042)
@@ -1,159 +0,0 @@
-18.05-1:
-upstream update
-
-18.04-1:
-upstream update
-
-18.03-1:
-upstream update
-
-18.02-1:
-upstream update
-
-18.01-1:
-upstream update
-
-17.12-1:
-upstream update
-
-17.11.1-1:
-upstream update
-
-17.11-1:
-upstream update
-
-17.10-1:
-upstream update
-
-17.09-1:
-upstream update
-
-17.08-1:
-upstream update
-
-17.07-1:
-upstream update
-
-17.06-1:
-upstream update
-
-17.05-1:
-upstream update
-
-17.04.1:
-upstream update
-
-17.03.1:
-upstream update
-
-17.03:
-upstream update
-
-17.02-1:
-* upstream update
-* drop qt4 versions as soon as they depend on qtwebkit
-
-17.01-1:
-upstream update
-
-16.12-1:
-upstream update
-
-16.11-1:
-upstream update
-
-6.1.11-1:
-upstream update
-
-6.1.10-1:
-upstream update
-
-6.1.9-1:
-upstream update
-
-6.1.8-1:
-upstream update
-
-6.1.7-1:
-upstream update
-
-6.1.6-1:
-upstream update
-
-6.1.5-1:
-upstream update
-
-6.1.4-2:
-drop install file, move to pacman hooks
-
-6.1.4-1:
-upstream update
-
-6.1.3-1:
-upstream update
-
-6.1.2-1:
-upstream update
-
-6.1.1-1:
-upstream update
-
-6.1.0-1:
-upstream update
-
-6.0.11-1:
-upstream update
-
-6.0.10-1:
-upstream update
-
-6.0.9-2:
-python3.5 rebuild
-
-6.0.9-1:
-upstream update
-
-6.0.8-1:
-upstream update
-
-6.0.7-1:
-upstream update
-
-6.0.6-1:
-upstream update
-
-6.0.5-1:
-upstream update
-
-6.0.4-1:
-upstream update
-
-6.0.3-1:
-upstream update
-
-6.0.2-1:
-upstream update
-
-6.0.1-2:
-* fix FS#43573
-* fix API path
-
-6.0.1-1:
-upstream update
-
-6.0.0-1:
-* upstream update
-* split to qt5 and qt4 packages
-
-5.5.2-1:
-upstream update
-
-5.5.1-1:
-upstream update
-
-5.5.0-1:
-* upstream update
-* create python2-eric package
-
-5.4.7-1:
-upstream update. Create eric-common package

Copied: eric/repos/community-any/ChangeLog (from rev 342041, 
eric/trunk/ChangeLog)
===
--- ChangeLog   (rev 0)
+++ ChangeLog   2018-06-08 14:40:42 UTC (rev 342042)
@@ -0,0 +1,162 @@
+18.06-1:
+upstream update
+
+18.05-1:
+upstream update
+
+18.04-1:
+upstream update
+
+18.03-1:
+upstream update
+
+18.02-1:
+upstream update
+
+18.01-1:
+upstream update
+
+17.12-1:
+upstream update
+
+17.11.1-1:
+upstream update
+
+17.11-1:
+upstream update
+
+17.10-1:
+upstream update
+
+17.09-1:
+upstream update
+
+17.08-1:
+upstream update
+
+17.07-1:
+upstream update
+
+17.06-1:
+upstream update
+
+17.05-1:
+upstream update
+
+17.04.1:
+upstream update
+
+17.03.1:
+upstream update
+
+17.03:
+upstream update
+
+17.02-1:
+* upstream update
+* drop qt4 versions as soon as they depend on qtwebkit
+
+17.01-1:
+upstream update
+
+16.12-1:
+upstream update
+
+16.11-1:
+upstream update
+
+6.1.11-1:
+upstream update
+
+6.1.10-1:
+upstream update
+
+6.1.9-1:
+upstream update
+
+6.1.8-1:
+upstream update
+
+6.1.7-1:
+upstream update
+
+6.1.6-1:
+upstream update
+
+6.1.5-1:
+upstream update
+
+6.1.4-2:
+drop install file, move to pacman hooks
+
+6.1.4-1:
+upstream update
+
+6.1.3-1:
+upstream update
+
+6.1.2-1:
+upstream update
+
+6.1.1-1:
+upstream update
+
+6.1.0-1:
+upstream update
+
+6.0.11-1:
+upstream update
+
+6.0.10-1:
+upstream update
+
+6.0.9-2:
+python3.5 rebuild
+
+6.0.9-1:
+upstream update
+
+6.0.8-1:
+upstream update
+
+6.0.7-1:
+upstream update
+
+6.0.6-1:
+upstream update
+
+6.0.5-1:
+upstream update
+

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

2018-06-08 Thread Evgeniy Alekseev via arch-commits
Date: Friday, June 8, 2018 @ 14:40:20
  Author: arcanis
Revision: 342041

upgpkg: eric 18.06-1

Modified:
  eric/trunk/ChangeLog
  eric/trunk/PKGBUILD

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

Modified: ChangeLog
===
--- ChangeLog   2018-06-08 14:17:45 UTC (rev 342040)
+++ ChangeLog   2018-06-08 14:40:20 UTC (rev 342041)
@@ -1,3 +1,6 @@
+18.06-1:
+upstream update
+
 18.05-1:
 upstream update
 

Modified: PKGBUILD
===
--- PKGBUILD2018-06-08 14:17:45 UTC (rev 342040)
+++ PKGBUILD2018-06-08 14:40:20 UTC (rev 342041)
@@ -6,7 +6,7 @@
 
 pkgbase=eric
 pkgname=('eric-common' 'eric' 'python2-eric')
-pkgver=18.05
+pkgver=18.06
 pkgrel=1
 pkgdesc="A full-featured Python and Ruby IDE in PyQt"
 arch=('any')
@@ -16,7 +16,7 @@
  'python-qscintilla-qt5' 'python2-qscintilla-qt5'
  'qt5-svg' 'qt5-webkit')
 source=("https://downloads.sourceforge.net/eric-ide/eric6-${pkgver}.tar.gz;)
-sha512sums=('5485385a65ab5bafcb2a1a2decd1e14d5502b0f4ce3486e62769a9185effc6bfaac224d8d8867897a77811ae63bed6d9a3ca5d738c8919eae5c6cee19db647f0')
+sha512sums=('0d7ab76157abca5f9276c9e3d73349a82e49d890bd75f4141f75e3d787ec2752014606b37171876d348afd7810d23e439b834168eeec4ee58e48ec701d42e49a')
 changelog=ChangeLog
 
 prepare() {


[arch-commits] Commit in (adobe-source-fonts adobe-source-variable-fonts)

2018-06-08 Thread Jan Steffens via arch-commits
Date: Friday, June 8, 2018 @ 14:24:04
  Author: heftig
Revision: 326487

move

Added:
  adobe-source-variable-fonts/
Deleted:
  adobe-source-fonts/


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

2018-06-08 Thread Evgeniy Alekseev via arch-commits
Date: Friday, June 8, 2018 @ 14:17:45
  Author: arcanis
Revision: 342040

archrelease: copy trunk to community-x86_64

Added:
  purple-skypeweb/repos/community-x86_64/PKGBUILD
(from rev 342039, purple-skypeweb/trunk/PKGBUILD)
Deleted:
  purple-skypeweb/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-06-08 14:17:31 UTC (rev 342039)
+++ PKGBUILD2018-06-08 14:17:45 UTC (rev 342040)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli 
-# Contributor: Colin Arnott
-
-pkgname=purple-skypeweb
-_pkgname=skypeweb
-_parentname=skype4pidgin
-pkgver=1.4
-pkgrel=2
-arch=('x86_64' 'i686')
-license=('GPL3')
-pkgdesc="SkypeWeb Plugin for Pidgin"
-url="https://github.com/EionRobb/skype4pidgin/tree/master/skypeweb;
-depends=('libpurple' 'json-glib')
-makedepends=('pkg-config')
-conflicts=('skype4pidgin')
-
-source=("$pkgname-$pkgver.tar.gz"::"https://github.com/EionRobb/$_parentname/archive/$pkgver.tar.gz;)
-sha256sums=('026962ed818df7f2e54409d78e0d6f1fb64c2ef4f4264a489d2c04c2bae0da82')
-
-build() {
-cd "$srcdir/$_parentname-$pkgver/$_pkgname"
-make
-}
-
-package() {
-cd "$srcdir/$_parentname-$pkgver/$_pkgname"
-make DESTDIR="$pkgdir" install
-}

Copied: purple-skypeweb/repos/community-x86_64/PKGBUILD (from rev 342039, 
purple-skypeweb/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-06-08 14:17:45 UTC (rev 342040)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Evgeniy Alekseev 
+# Contributor: Timothy Redaelli 
+# Contributor: Colin Arnott
+
+pkgname=purple-skypeweb
+_pkgname=skypeweb
+_parentname=skype4pidgin
+pkgver=1.5
+pkgrel=1
+arch=('x86_64')
+license=('GPL3')
+pkgdesc="SkypeWeb Plugin for Pidgin"
+url="https://github.com/EionRobb/skype4pidgin/tree/master/skypeweb;
+depends=('libpurple' 'json-glib')
+makedepends=('pkg-config')
+conflicts=('skype4pidgin')
+
+source=("$pkgname-$pkgver.tar.gz"::"https://github.com/EionRobb/$_parentname/archive/$pkgver.tar.gz;)
+sha256sums=('bb5fc550bff8f66f90a9ffacfc6bc2ed50fee86f4f500942aebc315d073f6e9d')
+
+build() {
+cd "$srcdir/$_parentname-$pkgver/$_pkgname"
+make
+}
+
+package() {
+cd "$srcdir/$_parentname-$pkgver/$_pkgname"
+make DESTDIR="$pkgdir" install
+}


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

2018-06-08 Thread Evgeniy Alekseev via arch-commits
Date: Friday, June 8, 2018 @ 14:17:31
  Author: arcanis
Revision: 342039

upgpkg: purple-skypeweb 1.5-1

Modified:
  purple-skypeweb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-06-08 14:12:17 UTC (rev 342038)
+++ PKGBUILD2018-06-08 14:17:31 UTC (rev 342039)
@@ -1,12 +1,13 @@
 # $Id$
-# Maintainer: Timothy Redaelli 
+# Maintainer: Evgeniy Alekseev 
+# Contributor: Timothy Redaelli 
 # Contributor: Colin Arnott
 
 pkgname=purple-skypeweb
 _pkgname=skypeweb
 _parentname=skype4pidgin
-pkgver=1.4
-pkgrel=2
+pkgver=1.5
+pkgrel=1
 arch=('x86_64')
 license=('GPL3')
 pkgdesc="SkypeWeb Plugin for Pidgin"
@@ -16,7 +17,7 @@
 conflicts=('skype4pidgin')
 
 
source=("$pkgname-$pkgver.tar.gz"::"https://github.com/EionRobb/$_parentname/archive/$pkgver.tar.gz;)
-sha256sums=('026962ed818df7f2e54409d78e0d6f1fb64c2ef4f4264a489d2c04c2bae0da82')
+sha256sums=('bb5fc550bff8f66f90a9ffacfc6bc2ed50fee86f4f500942aebc315d073f6e9d')
 
 build() {
 cd "$srcdir/$_parentname-$pkgver/$_pkgname"


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

2018-06-08 Thread Evgeniy Alekseev via arch-commits
Date: Friday, June 8, 2018 @ 14:12:17
  Author: arcanis
Revision: 342038

archrelease: copy trunk to community-x86_64

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

---+
 ChangeLog |   52 +-
 PKGBUILD  |   62 ++--
 2 files changed, 57 insertions(+), 57 deletions(-)

Deleted: ChangeLog
===
--- ChangeLog   2018-06-08 14:12:01 UTC (rev 342037)
+++ ChangeLog   2018-06-08 14:12:17 UTC (rev 342038)
@@ -1,26 +0,0 @@
-1.5.12-1:
-upstream update
-
-1.5.11-1:
-upstream update
-
-1.5.10-2:
-hdf5 rebuild
-
-1.5.10-1:
-upstream update
-
-1.5.9-1:
-upstream update
-
-1.5.8-1:
-upstream update
-
-1.5.6-2:
-rebuild against the newest hdf5
-
-1.5.6-1:
-upstream update
-
-1.5.2-3:
-move from AUR to [community]

Copied: libmatio/repos/community-x86_64/ChangeLog (from rev 342037, 
libmatio/trunk/ChangeLog)
===
--- ChangeLog   (rev 0)
+++ ChangeLog   2018-06-08 14:12:17 UTC (rev 342038)
@@ -0,0 +1,26 @@
+1.5.12-1:
+upstream update
+
+1.5.11-1:
+upstream update
+
+1.5.10-2:
+hdf5 rebuild
+
+1.5.10-1:
+upstream update
+
+1.5.9-1:
+upstream update
+
+1.5.8-1:
+upstream update
+
+1.5.6-2:
+rebuild against the newest hdf5
+
+1.5.6-1:
+upstream update
+
+1.5.2-3:
+move from AUR to [community]

Deleted: PKGBUILD
===
--- PKGBUILD2018-06-08 14:12:01 UTC (rev 342037)
+++ PKGBUILD2018-06-08 14:12:17 UTC (rev 342038)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Evgeniy Alekseev 
-# Contributor: Stefan Husmann 
-# Contributor: Alexander Rødseth 
-# Contributor: William Rea 
-
-pkgname=libmatio
-pkgver=1.5.12
-pkgrel=1
-pkgdesc='C library with a fortran 90/95 module interface for reading/writing 
MATLAB MAT-files'
-arch=('x86_64')
-license=('custom:BSD')
-url='http://sourceforge.net/projects/matio'
-depends=('zlib' 'hdf5')
-options=('!emptydirs')
-source=("https://downloads.sourceforge.net/matio/matio-${pkgver}.tar.gz;)
-changelog=ChangeLog
-sha512sums=('d777d4b9d76bd0c10378c1fe6c59b723490975b18dc894def578183b704e1c4b7389688370478b3aa37c1ff9a275109850f8e23d8f162042b32c82f0f35a3c29')
-
-build() {
-  cd "matio-${pkgver}"
-  ./configure --prefix=/usr --enable-shared --with-hdf5
-  make
-}
-
-package() {
-  cd "matio-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
-}
-

Copied: libmatio/repos/community-x86_64/PKGBUILD (from rev 342037, 
libmatio/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-06-08 14:12:17 UTC (rev 342038)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Evgeniy Alekseev 
+# Contributor: Stefan Husmann 
+# Contributor: Alexander Rødseth 
+# Contributor: William Rea 
+
+pkgname=libmatio
+pkgver=1.5.12
+pkgrel=2
+pkgdesc='C library with a fortran 90/95 module interface for reading/writing 
MATLAB MAT-files'
+arch=('x86_64')
+license=('custom:BSD')
+url='http://sourceforge.net/projects/matio'
+depends=('zlib' 'hdf5')
+options=('!emptydirs')
+source=("https://downloads.sourceforge.net/matio/matio-${pkgver}.tar.gz;)
+changelog=ChangeLog
+sha512sums=('d777d4b9d76bd0c10378c1fe6c59b723490975b18dc894def578183b704e1c4b7389688370478b3aa37c1ff9a275109850f8e23d8f162042b32c82f0f35a3c29')
+
+build() {
+  cd "matio-${pkgver}"
+  ./configure --prefix=/usr --enable-shared --with-hdf5
+  make
+}
+
+package() {
+  cd "matio-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+}
+


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

2018-06-08 Thread Evgeniy Alekseev via arch-commits
Date: Friday, June 8, 2018 @ 14:12:01
  Author: arcanis
Revision: 342037

upgpkg: libmatio 1.5.12-2

HDF5 rebuild

Modified:
  libmatio/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-06-08 13:57:36 UTC (rev 342036)
+++ PKGBUILD2018-06-08 14:12:01 UTC (rev 342037)
@@ -6,7 +6,7 @@
 
 pkgname=libmatio
 pkgver=1.5.12
-pkgrel=1
+pkgrel=2
 pkgdesc='C library with a fortran 90/95 module interface for reading/writing 
MATLAB MAT-files'
 arch=('x86_64')
 license=('custom:BSD')


[arch-commits] Commit in (3 files)

2018-06-08 Thread Jan Steffens via arch-commits
Date: Friday, June 8, 2018 @ 14:09:32
  Author: heftig
Revision: 326486

Add adobe-source-fonts

Added:
  adobe-source-fonts/
  adobe-source-fonts/repos/
  adobe-source-fonts/trunk/


[arch-commits] Commit in vault/repos/community-x86_64 (12 files)

2018-06-08 Thread Christian Rebischke via arch-commits
Date: Friday, June 8, 2018 @ 13:57:36
  Author: shibumi
Revision: 342036

archrelease: copy trunk to community-x86_64

Added:
  vault/repos/community-x86_64/PKGBUILD
(from rev 342035, vault/trunk/PKGBUILD)
  vault/repos/community-x86_64/vault.hcl
(from rev 342035, vault/trunk/vault.hcl)
  vault/repos/community-x86_64/vault.install
(from rev 342035, vault/trunk/vault.install)
  vault/repos/community-x86_64/vault.service
(from rev 342035, vault/trunk/vault.service)
  vault/repos/community-x86_64/vault.sysusers
(from rev 342035, vault/trunk/vault.sysusers)
  vault/repos/community-x86_64/vault.tmpfiles
(from rev 342035, vault/trunk/vault.tmpfiles)
Deleted:
  vault/repos/community-x86_64/PKGBUILD
  vault/repos/community-x86_64/vault.hcl
  vault/repos/community-x86_64/vault.install
  vault/repos/community-x86_64/vault.service
  vault/repos/community-x86_64/vault.sysusers
  vault/repos/community-x86_64/vault.tmpfiles

+
 PKGBUILD   |  146 +++
 vault.hcl  |   38 +++---
 vault.install  |   18 +++---
 vault.service  |   44 
 vault.sysusers |2 
 vault.tmpfiles |2 
 6 files changed, 125 insertions(+), 125 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-06-08 13:57:24 UTC (rev 342035)
+++ PKGBUILD2018-06-08 13:57:36 UTC (rev 342036)
@@ -1,73 +0,0 @@
-# Maintainer : Christian Rebischke 
-# Contributor: Tim Meusel 
-# Contributor: Sebastian Rakel sebast...@devunit.eu
-
-pkgname='vault'
-pkgdesc='A tool for managing secrets'
-pkgver='0.10.1'
-pkgrel='1'
-url="https://vaultproject.io/;
-license=('MPL')
-arch=('x86_64')
-makedepends=('nodejs-lts-carbon' 'go-pie' 'git' 'yarn' 'python2' 'bower' 'npm' 
'zip')
-depends=('glibc')
-install='vault.install'
-backup=('etc/vault.hcl')
-_vault_commit='756fdc4587350daf1c65b93647b2cc31a6f119cd'
-source=("git+https://github.com/hashicorp/vault#commit=${_vault_commit};
-'vault.service'
-'vault.sysusers'
-'vault.tmpfiles'
-'vault.hcl')
-sha512sums=('SKIP'
-
'6619cf57668e995cddb29fb6c388c18c21b251052a53832415e415bb4fe538361ef77b74536f5b082b9cda6cd71b598fc50d8b7f51092c4d60262052c5725af2'
-
'92616ccf83fa5ca9f8b0d022cf8ceb1f3549e12b66bf21d9f77f3eb26bd75ec1dc36c155948ec987c642067b85fbfc30a9217d6c503d952a402aa5ef63e50928'
-
'073f0f400cba78521cd2709ce86d88fbb14125117f9f3beca657f625d04eab8e00f7a01b5d9a1cfc03e9038844f5732bdbb1a85dd65a803d3f0b90f8bf87880e'
-
'46106cc76151eef2dd5e4b2caa6a96aae4d6ce1ecbf977dcc8667a3f6c829cbea95133622adafcb15cdfaa066ecc94c73c983e7613ee2f6573694981569729fe')
-
-prepare () {
-  export GOPATH="${srcdir}"
-  export PATH="$PATH:$GOPATH/bin"
-  mkdir -p src/github.com/hashicorp/
-  mv "${pkgname}" "src/github.com/hashicorp/${pkgname}"
-  # this is temporary
-  go get github.com/kardianos/govendor
-  export PACKAGE_ROOT="${GOPATH}/src/github.com/hashicorp/${pkgname}"
-}
-
-build () {
-  cd $PACKAGE_ROOT
-
-  # We will provide these packages in the future ourself
-  govendor fetch github.com/mitchellh/gox
-  govendor fetch github.com/elazarl/go-bindata-assetfs/go-bindata-assetfs
-  govendor fetch github.com/hashicorp/go-bindata/go-bindata
-
-  cd $PACKAGE_ROOT/vendor/github.com/hashicorp/go-bindata/go-bindata
-  go build
-  go install
-
-  cd 
$PACKAGE_ROOT/vendor/github.com/elazarl/go-bindata-assetfs/go-bindata-assetfs
-  go build
-  go install
-
-  cd $PACKAGE_ROOT/vendor/github.com/mitchellh/gox
-  go build
-  go install
-
-  cd $PACKAGE_ROOT
-  XC_OSARCH='linux/amd64' make static-dist bin
-}
-
-package () {
-  cd ${PACKAGE_ROOT}
-  install -Dm755 bin/vault "${pkgdir}/usr/bin/vault"
-  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  install -Dm644 "${srcdir}/vault.hcl" "${pkgdir}/etc/vault.hcl"
-  install -Dm644 "${srcdir}/vault.service" 
"${pkgdir}/usr/lib/systemd/system/vault.service"
-  install -Dm644 "${srcdir}/vault.sysusers" 
"${pkgdir}/usr/lib/sysusers.d/vault.conf"
-  install -Dm644 "${srcdir}/vault.tmpfiles" 
"${pkgdir}/usr/lib/tmpfiles.d/vault.conf"
-  for file in README.md CHANGELOG.md ; do
-install -Dm644 "${file}" "${pkgdir}/usr/share/doc/${pkgname}/${file}"
-  done
-}

Copied: vault/repos/community-x86_64/PKGBUILD (from rev 342035, 
vault/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-06-08 13:57:36 UTC (rev 342036)
@@ -0,0 +1,73 @@
+# Maintainer : Christian Rebischke 
+# Contributor: Tim Meusel 
+# Contributor: Sebastian Rakel sebast...@devunit.eu
+
+pkgname='vault'
+pkgdesc='A tool for managing secrets'
+pkgver='0.10.2'
+pkgrel='1'
+url="https://vaultproject.io/;
+license=('MPL')
+arch=('x86_64')
+makedepends=('go-pie' 'git' 'yarn' 'python2' 'bower' 'npm' 'zip')
+depends=('glibc')
+install='vault.install'
+backup=('etc/vault.hcl')

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

2018-06-08 Thread Christian Rebischke via arch-commits
Date: Friday, June 8, 2018 @ 13:57:24
  Author: shibumi
Revision: 342035

upgpkg: vault 0.10.2-1

Modified:
  vault/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-06-08 13:22:18 UTC (rev 342034)
+++ PKGBUILD2018-06-08 13:57:24 UTC (rev 342035)
@@ -4,16 +4,16 @@
 
 pkgname='vault'
 pkgdesc='A tool for managing secrets'
-pkgver='0.10.1'
+pkgver='0.10.2'
 pkgrel='1'
 url="https://vaultproject.io/;
 license=('MPL')
 arch=('x86_64')
-makedepends=('nodejs-lts-carbon' 'go-pie' 'git' 'yarn' 'python2' 'bower' 'npm' 
'zip')
+makedepends=('go-pie' 'git' 'yarn' 'python2' 'bower' 'npm' 'zip')
 depends=('glibc')
 install='vault.install'
 backup=('etc/vault.hcl')
-_vault_commit='756fdc4587350daf1c65b93647b2cc31a6f119cd'
+_vault_commit='3ee0802ed08cb7f4046c2151ec4671a076b76166'
 source=("git+https://github.com/hashicorp/vault#commit=${_vault_commit};
 'vault.service'
 'vault.sysusers'


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

2018-06-08 Thread Eli Schwartz via arch-commits
Date: Friday, June 8, 2018 @ 13:22:01
  Author: eschwartz
Revision: 342033

upgpkg: cinnamon-screensaver 3.8.2-1

upstream release

Modified:
  cinnamon-screensaver/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-06-08 13:21:12 UTC (rev 342032)
+++ PKGBUILD2018-06-08 13:22:01 UTC (rev 342033)
@@ -6,7 +6,7 @@
 # Jan de Groot 
 
 pkgname=cinnamon-screensaver
-pkgver=3.8.1
+pkgver=3.8.2
 pkgrel=1
 pkgdesc="Screensaver designed to integrate well with the Cinnamon desktop."
 arch=('x86_64')
@@ -19,7 +19,7 @@
 backup=('etc/pam.d/cinnamon-screensaver')
 source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz"
 "cinnamon-screensaver.pam")
-sha256sums=('6abbfe650a031f4b47fac4776856d1cd2ef24f41050f1098e577b21ebb1bc3f1'
+sha256sums=('6f07d2a13d81794d4654d04a9cb9c80ed02fccf7031747a2dfe4bf3f455ac2ca'
 'c34925177c883dc4935408a4679e984855b14ef18a208bb5c7c3e5be3817619a')
 
 prepare() {


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

2018-06-08 Thread Eli Schwartz via arch-commits
Date: Friday, June 8, 2018 @ 13:22:18
  Author: eschwartz
Revision: 342034

archrelease: copy trunk to community-x86_64

Added:
  cinnamon-screensaver/repos/community-x86_64/PKGBUILD
(from rev 342033, cinnamon-screensaver/trunk/PKGBUILD)
  cinnamon-screensaver/repos/community-x86_64/cinnamon-screensaver.pam
(from rev 342033, cinnamon-screensaver/trunk/cinnamon-screensaver.pam)
Deleted:
  cinnamon-screensaver/repos/community-x86_64/PKGBUILD
  cinnamon-screensaver/repos/community-x86_64/cinnamon-screensaver.pam

--+
 PKGBUILD |   92 ++---
 cinnamon-screensaver.pam |   12 ++---
 2 files changed, 52 insertions(+), 52 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-06-08 13:22:01 UTC (rev 342033)
+++ PKGBUILD2018-06-08 13:22:18 UTC (rev 342034)
@@ -1,46 +0,0 @@
-# $Id$
-# Maintainer: Eli Schwartz 
-# Contributor: Alexandre Filgueira 
-# Based on gnome-screensaver package:
-# Jan Alexander Steffens (heftig) 
-# Jan de Groot 
-
-pkgname=cinnamon-screensaver
-pkgver=3.8.1
-pkgrel=1
-pkgdesc="Screensaver designed to integrate well with the Cinnamon desktop."
-arch=('x86_64')
-url="https://github.com/linuxmint/${pkgname};
-license=('GPL')
-depends=('accountsservice' 'cinnamon-desktop' 'dbus-glib' 'libgnomekbd'
- 'python-cairo' 'python-gobject' 'python-setproctitle' 'python-xapp' 
'xapps' 'webkit2gtk')
-optdepends=('cinnamon-translations: i18n')
-makedepends=('gobject-introspection' 'intltool')
-backup=('etc/pam.d/cinnamon-screensaver')
-source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz"
-"cinnamon-screensaver.pam")
-sha256sums=('6abbfe650a031f4b47fac4776856d1cd2ef24f41050f1098e577b21ebb1bc3f1'
-'c34925177c883dc4935408a4679e984855b14ef18a208bb5c7c3e5be3817619a')
-
-prepare() {
-cd "${srcdir}"/${pkgname}-${pkgver}
-
-autoreconf -fi
-}
-
-build() {
-cd "${srcdir}"/${pkgname}-${pkgver}
-
-./configure --prefix=/usr \
---sysconfdir=/etc \
---libexecdir=/usr/lib/cinnamon-screensaver \
---localstatedir=/var
-make
-}
-
-package() {
-cd "${srcdir}"/${pkgname}-${pkgver}
-
-make DESTDIR="${pkgdir}" install
-install -Dm644 ../cinnamon-screensaver.pam 
"${pkgdir}"/etc/pam.d/cinnamon-screensaver
-}

Copied: cinnamon-screensaver/repos/community-x86_64/PKGBUILD (from rev 342033, 
cinnamon-screensaver/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-06-08 13:22:18 UTC (rev 342034)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Eli Schwartz 
+# Contributor: Alexandre Filgueira 
+# Based on gnome-screensaver package:
+# Jan Alexander Steffens (heftig) 
+# Jan de Groot 
+
+pkgname=cinnamon-screensaver
+pkgver=3.8.2
+pkgrel=1
+pkgdesc="Screensaver designed to integrate well with the Cinnamon desktop."
+arch=('x86_64')
+url="https://github.com/linuxmint/${pkgname};
+license=('GPL')
+depends=('accountsservice' 'cinnamon-desktop' 'dbus-glib' 'libgnomekbd'
+ 'python-cairo' 'python-gobject' 'python-setproctitle' 'python-xapp' 
'xapps' 'webkit2gtk')
+optdepends=('cinnamon-translations: i18n')
+makedepends=('gobject-introspection' 'intltool')
+backup=('etc/pam.d/cinnamon-screensaver')
+source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz"
+"cinnamon-screensaver.pam")
+sha256sums=('6f07d2a13d81794d4654d04a9cb9c80ed02fccf7031747a2dfe4bf3f455ac2ca'
+'c34925177c883dc4935408a4679e984855b14ef18a208bb5c7c3e5be3817619a')
+
+prepare() {
+cd "${srcdir}"/${pkgname}-${pkgver}
+
+autoreconf -fi
+}
+
+build() {
+cd "${srcdir}"/${pkgname}-${pkgver}
+
+./configure --prefix=/usr \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib/cinnamon-screensaver \
+--localstatedir=/var
+make
+}
+
+package() {
+cd "${srcdir}"/${pkgname}-${pkgver}
+
+make DESTDIR="${pkgdir}" install
+install -Dm644 ../cinnamon-screensaver.pam 
"${pkgdir}"/etc/pam.d/cinnamon-screensaver
+}

Deleted: cinnamon-screensaver.pam
===
--- cinnamon-screensaver.pam2018-06-08 13:22:01 UTC (rev 342033)
+++ cinnamon-screensaver.pam2018-06-08 13:22:18 UTC (rev 342034)
@@ -1,6 +0,0 @@
-#%PAM-1.0
-auth   include system-auth
-auth   optional pam_gnome_keyring.so
-accountinclude system-auth
-password   include system-auth
-sessioninclude system-auth
\ No newline at end of file

Copied: cinnamon-screensaver/repos/community-x86_64/cinnamon-screensaver.pam 
(from rev 342033, cinnamon-screensaver/trunk/cinnamon-screensaver.pam)
===
--- cinnamon-screensaver.pam(rev 0)
+++ cinnamon-screensaver.pam2018-06-08 

[arch-commits] Commit in cinnamon-settings-daemon/repos/community-x86_64 (2 files)

2018-06-08 Thread Eli Schwartz via arch-commits
Date: Friday, June 8, 2018 @ 13:21:12
  Author: eschwartz
Revision: 342032

archrelease: copy trunk to community-x86_64

Added:
  cinnamon-settings-daemon/repos/community-x86_64/PKGBUILD
(from rev 342031, cinnamon-settings-daemon/trunk/PKGBUILD)
Deleted:
  cinnamon-settings-daemon/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-06-08 13:20:56 UTC (rev 342031)
+++ PKGBUILD2018-06-08 13:21:12 UTC (rev 342032)
@@ -1,48 +0,0 @@
-# $Id$
-# Maintainer: Eli Schwartz 
-# Contributor: Alexandre Filgueira (faidoc) 
-# Contributor: Jan Alexander Steffens (heftig) 
-
-pkgname=cinnamon-settings-daemon
-pkgver=3.8.2
-pkgrel=1
-pkgdesc="The Cinnamon Settings daemon"
-arch=('x86_64')
-url="https://github.com/linuxmint/${pkgname};
-license=('GPL')
-depends=('cinnamon-desktop' 'colord' 'dbus-glib' 'libcanberra-pulse' 'libcups'
- 'libgnomekbd' 'libgudev' 'libnotify' 'librsvg' 'libwacom' 'nss' 
'polkit'
- 'pulseaudio-alsa' 'upower')
-optdepends=('cinnamon-translations: i18n')
-makedepends=('autoconf-archive' 'intltool' 'python' 'xf86-input-wacom')
-options=('!emptydirs')
-source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
-sha256sums=('2a9dca17270d67ceade8ff9aba503b9be30b0980fb479a92a473dcce666a3709')
-
-prepare() {
-cd "${srcdir}"/${pkgname}-${pkgver}
-
-autoreconf -fi
-}
-
-build() {
-cd "${srcdir}"/${pkgname}-${pkgver}
-
-./configure --prefix=/usr \
---sysconfdir=/etc \
---localstatedir=/var \
---libexecdir="/usr/lib/${pkgname}" \
---enable-systemd \
---enable-polkit
-
-#https://bugzilla.gnome.org/show_bug.cgi?id=656231
-sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-make
-}
-
-package() {
-cd "${srcdir}"/${pkgname}-${pkgver}
-
-make DESTDIR="$pkgdir" install
-}

Copied: cinnamon-settings-daemon/repos/community-x86_64/PKGBUILD (from rev 
342031, cinnamon-settings-daemon/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-06-08 13:21:12 UTC (rev 342032)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Eli Schwartz 
+# Contributor: Alexandre Filgueira (faidoc) 
+# Contributor: Jan Alexander Steffens (heftig) 
+
+pkgname=cinnamon-settings-daemon
+pkgver=3.8.3
+pkgrel=1
+pkgdesc="The Cinnamon Settings daemon"
+arch=('x86_64')
+url="https://github.com/linuxmint/${pkgname};
+license=('GPL')
+depends=('cinnamon-desktop' 'colord' 'dbus-glib' 'libcanberra-pulse' 'libcups'
+ 'libgnomekbd' 'libgudev' 'libnotify' 'librsvg' 'libwacom' 'nss' 
'polkit'
+ 'pulseaudio-alsa' 'upower')
+optdepends=('cinnamon-translations: i18n')
+makedepends=('autoconf-archive' 'intltool' 'python' 'xf86-input-wacom')
+options=('!emptydirs')
+source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
+sha256sums=('4bfa74892e97e0a9b847f4711807c1e5fe3f1ab9d20b1bd0d9c8ee3821b98fa1')
+
+prepare() {
+cd "${srcdir}"/${pkgname}-${pkgver}
+
+autoreconf -fi
+}
+
+build() {
+cd "${srcdir}"/${pkgname}-${pkgver}
+
+./configure --prefix=/usr \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--libexecdir="/usr/lib/${pkgname}" \
+--enable-systemd \
+--enable-polkit
+
+#https://bugzilla.gnome.org/show_bug.cgi?id=656231
+sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+make
+}
+
+package() {
+cd "${srcdir}"/${pkgname}-${pkgver}
+
+make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in cinnamon-settings-daemon/trunk (PKGBUILD)

2018-06-08 Thread Eli Schwartz via arch-commits
Date: Friday, June 8, 2018 @ 13:20:56
  Author: eschwartz
Revision: 342031

upgpkg: cinnamon-settings-daemon 3.8.3-1

upstream release

Modified:
  cinnamon-settings-daemon/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-06-08 13:20:52 UTC (rev 342030)
+++ PKGBUILD2018-06-08 13:20:56 UTC (rev 342031)
@@ -4,7 +4,7 @@
 # Contributor: Jan Alexander Steffens (heftig) 
 
 pkgname=cinnamon-settings-daemon
-pkgver=3.8.2
+pkgver=3.8.3
 pkgrel=1
 pkgdesc="The Cinnamon Settings daemon"
 arch=('x86_64')
@@ -17,7 +17,7 @@
 makedepends=('autoconf-archive' 'intltool' 'python' 'xf86-input-wacom')
 options=('!emptydirs')
 source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
-sha256sums=('2a9dca17270d67ceade8ff9aba503b9be30b0980fb479a92a473dcce666a3709')
+sha256sums=('4bfa74892e97e0a9b847f4711807c1e5fe3f1ab9d20b1bd0d9c8ee3821b98fa1')
 
 prepare() {
 cd "${srcdir}"/${pkgname}-${pkgver}


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

2018-06-08 Thread Eli Schwartz via arch-commits
Date: Friday, June 8, 2018 @ 13:20:52
  Author: eschwartz
Revision: 342030

archrelease: copy trunk to community-x86_64

Added:
  muffin/repos/community-x86_64/PKGBUILD
(from rev 342029, muffin/trunk/PKGBUILD)
Deleted:
  muffin/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-06-08 13:19:54 UTC (rev 342029)
+++ PKGBUILD2018-06-08 13:20:52 UTC (rev 342030)
@@ -1,54 +0,0 @@
-# $Id$
-# Maintainer: Eli Schwartz 
-# Contributor: Alexandre Filgueira 
-# Contributor: Adam Hani Schakaki 
-# Contributor: Ner0
-
-pkgname=muffin
-pkgver=3.8.1
-pkgrel=1
-pkgdesc="Cinnamon window manager based on Mutter"
-arch=('x86_64')
-url="https://github.com/linuxmint/${pkgname};
-license=('GPL')
-depends=('cinnamon-desktop' 'clutter' 'gobject-introspection-runtime' 
'libcanberra' 'libsm'
- 'startup-notification' 'zenity')
-makedepends=('intltool' 'gobject-introspection' 'gtk-doc' 'gnome-doc-utils')
-options=('!emptydirs')
-source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
-sha256sums=('0de4e566b64a30af94689bc716145039e2f5f20c182de47bb120fb579825d681')
-
-prepare() {
-cd "${srcdir}"/${pkgname}-${pkgver}
-
-NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-cd "${srcdir}"/${pkgname}-${pkgver}
-
-PYTHON=python2 ./configure --prefix=/usr \
-   --sysconfdir=/etc \
-   --libexecdir=/usr/lib/muffin \
-   --localstatedir=/var \
-   --disable-static \
-   --disable-schemas-compile \
-   --enable-compile-warnings=minimum
-
-#https://bugzilla.gnome.org/show_bug.cgi?id=656231
-sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-make
-}
-
-package() {
-cd "${srcdir}"/${pkgname}-${pkgver}
-
-make DESTDIR="${pkgdir}" install
-
-# Remove unused stuff
-make -C src DESTDIR="${pkgdir}" uninstall-binPROGRAMS 
uninstall-desktopfilesDATA
-make -C src/tools DESTDIR="${pkgdir}" uninstall
-make -C src/compositor/plugins DESTDIR="${pkgdir}" uninstall
-make -C doc/man DESTDIR="${pkgdir}" uninstall
-}

Copied: muffin/repos/community-x86_64/PKGBUILD (from rev 342029, 
muffin/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-06-08 13:20:52 UTC (rev 342030)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Eli Schwartz 
+# Contributor: Alexandre Filgueira 
+# Contributor: Adam Hani Schakaki 
+# Contributor: Ner0
+
+pkgname=muffin
+pkgver=3.8.2
+pkgrel=1
+pkgdesc="Cinnamon window manager based on Mutter"
+arch=('x86_64')
+url="https://github.com/linuxmint/${pkgname};
+license=('GPL')
+depends=('cinnamon-desktop' 'clutter' 'gobject-introspection-runtime' 
'libcanberra' 'libsm'
+ 'startup-notification' 'zenity')
+makedepends=('intltool' 'gobject-introspection' 'gtk-doc' 'gnome-doc-utils')
+options=('!emptydirs')
+source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
+sha256sums=('b567c96022698f6fdc81118e5ffa5f14d4c95fd20c4ad228eee8c0d1b8cbc902')
+
+prepare() {
+cd "${srcdir}"/${pkgname}-${pkgver}
+
+NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+cd "${srcdir}"/${pkgname}-${pkgver}
+
+./configure --prefix=/usr \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib/muffin \
+--localstatedir=/var \
+--disable-static \
+--disable-schemas-compile \
+--enable-compile-warnings=minimum
+
+#https://bugzilla.gnome.org/show_bug.cgi?id=656231
+sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+make
+}
+
+package() {
+cd "${srcdir}"/${pkgname}-${pkgver}
+
+make DESTDIR="${pkgdir}" install
+
+# Remove unused stuff
+make -C src DESTDIR="${pkgdir}" uninstall-binPROGRAMS 
uninstall-desktopfilesDATA
+make -C src/tools DESTDIR="${pkgdir}" uninstall
+make -C src/compositor/plugins DESTDIR="${pkgdir}" uninstall
+make -C doc/man DESTDIR="${pkgdir}" uninstall
+}


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

2018-06-08 Thread Eli Schwartz via arch-commits
Date: Friday, June 8, 2018 @ 13:19:54
  Author: eschwartz
Revision: 342029

archrelease: copy trunk to community-x86_64

Added:
  nemo/repos/community-x86_64/PKGBUILD
(from rev 342028, nemo/trunk/PKGBUILD)
Deleted:
  nemo/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-06-08 13:19:38 UTC (rev 342028)
+++ PKGBUILD2018-06-08 13:19:54 UTC (rev 342029)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Eli Schwartz 
-# Contributor: Alexandre Filgueira 
-# Contributor: Ner0
-
-pkgname=nemo
-pkgver=3.8.2
-pkgrel=1
-pkgdesc="Cinnamon file manager (Nautilus fork)"
-arch=('x86_64')
-url="https://github.com/linuxmint/${pkgname};
-license=('GPL')
-depends=('cinnamon-desktop' 'dconf' 'gvfs' 'exempi' 'libexif' 'libnotify' 
'libxml2' 'python' 'xapps')
-optdepends=('cinnamon-translations: i18n'
-'ffmpegthumbnailer: support for video thumbnails')
-makedepends=('meson' 'gobject-introspection' 'intltool')
-source=("$pkgname-$pkgver.tar.gz::${url}/archive/${pkgver}.tar.gz")
-sha512sums=('d0a1ba1c9cab5e3e922d82d896e4b2abfb7b82185d8ae8748ddeb9b3f5ce4de688c0e774757ec8fa1f57e7dff92351f7a0d257088704a9e7121b951f92042add')
-
-prepare() {
-cd "${srcdir}"/${pkgname}-${pkgver}
-
-# Rename 'Files' app name to avoid having the same as nautilus
-sed -i '/^\[Desktop Entry/,/^\[Desktop Action/ 
s/^Name\(.*\)=.*/Name\1=Nemo/' data/nemo.desktop.in
-}
-
-build() {
-mkdir -p "${srcdir}"/${pkgname}-${pkgver}/build
-cd "${srcdir}"/${pkgname}-${pkgver}/build
-
-meson --prefix=/usr \
-  --libexecdir=lib/${pkgname} \
-  --buildtype=plain \
-  ..
-ninja
-}
-
-package() {
-cd "${srcdir}"/${pkgname}-${pkgver}/build
-
-DESTDIR="${pkgdir}" ninja install
-}

Copied: nemo/repos/community-x86_64/PKGBUILD (from rev 342028, 
nemo/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-06-08 13:19:54 UTC (rev 342029)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Eli Schwartz 
+# Contributor: Alexandre Filgueira 
+# Contributor: Ner0
+
+pkgname=nemo
+pkgver=3.8.3
+pkgrel=1
+pkgdesc="Cinnamon file manager (Nautilus fork)"
+arch=('x86_64')
+url="https://github.com/linuxmint/${pkgname};
+license=('GPL')
+depends=('cinnamon-desktop' 'dconf' 'gvfs' 'exempi' 'libexif' 'libnotify' 
'libxml2' 'python' 'xapps')
+optdepends=('cinnamon-translations: i18n'
+'ffmpegthumbnailer: support for video thumbnails')
+makedepends=('meson' 'gobject-introspection' 'intltool')
+source=("$pkgname-$pkgver.tar.gz::${url}/archive/${pkgver}.tar.gz")
+sha512sums=('21dabc0cfeb88c33929671cfcc41a8b00d097380e9cc3276f790d74df61f2b25b1988a0efd5fa538d376e20e3034833d7eb7c6c2169694e6741f42711666c92a')
+
+prepare() {
+cd "${srcdir}"/${pkgname}-${pkgver}
+
+# Rename 'Files' app name to avoid having the same as nautilus
+sed -i '/^\[Desktop Entry/,/^\[Desktop Action/ 
s/^Name\(.*\)=.*/Name\1=Nemo/' data/nemo.desktop.in
+}
+
+build() {
+mkdir -p "${srcdir}"/${pkgname}-${pkgver}/build
+cd "${srcdir}"/${pkgname}-${pkgver}/build
+
+meson --prefix=/usr \
+  --libexecdir=lib/${pkgname} \
+  --buildtype=plain \
+  ..
+ninja
+}
+
+package() {
+cd "${srcdir}"/${pkgname}-${pkgver}/build
+
+DESTDIR="${pkgdir}" ninja install
+}


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

2018-06-08 Thread Eli Schwartz via arch-commits
Date: Friday, June 8, 2018 @ 13:19:38
  Author: eschwartz
Revision: 342028

upgpkg: nemo 3.8.3-1

upstream release

Modified:
  nemo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-06-08 13:19:23 UTC (rev 342027)
+++ PKGBUILD2018-06-08 13:19:38 UTC (rev 342028)
@@ -4,7 +4,7 @@
 # Contributor: Ner0
 
 pkgname=nemo
-pkgver=3.8.2
+pkgver=3.8.3
 pkgrel=1
 pkgdesc="Cinnamon file manager (Nautilus fork)"
 arch=('x86_64')
@@ -15,7 +15,7 @@
 'ffmpegthumbnailer: support for video thumbnails')
 makedepends=('meson' 'gobject-introspection' 'intltool')
 source=("$pkgname-$pkgver.tar.gz::${url}/archive/${pkgver}.tar.gz")
-sha512sums=('d0a1ba1c9cab5e3e922d82d896e4b2abfb7b82185d8ae8748ddeb9b3f5ce4de688c0e774757ec8fa1f57e7dff92351f7a0d257088704a9e7121b951f92042add')
+sha512sums=('21dabc0cfeb88c33929671cfcc41a8b00d097380e9cc3276f790d74df61f2b25b1988a0efd5fa538d376e20e3034833d7eb7c6c2169694e6741f42711666c92a')
 
 prepare() {
 cd "${srcdir}"/${pkgname}-${pkgver}


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

2018-06-08 Thread Eli Schwartz via arch-commits
Date: Friday, June 8, 2018 @ 13:19:23
  Author: eschwartz
Revision: 342027

archrelease: copy trunk to community-x86_64

Added:
  cinnamon-menus/repos/community-x86_64/PKGBUILD
(from rev 342026, cinnamon-menus/trunk/PKGBUILD)
Deleted:
  cinnamon-menus/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-06-08 13:19:06 UTC (rev 342026)
+++ PKGBUILD2018-06-08 13:19:23 UTC (rev 342027)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Eli Schwartz 
-# Contributor: Alexandre Filgueira 
-
-pkgname=cinnamon-menus
-pkgver=3.8.1
-pkgrel=1
-pkgdesc="Cinnamon menu specifications"
-arch=('x86_64')
-url="https://github.com/linuxmint/${pkgname};
-license=('GPL' 'LGPL')
-depends=('glib2')
-makedepends=('gobject-introspection')
-source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
-sha256sums=('a4692ed6f9ee443dbc5a3fcffd430c7e92821d675073032472dc299fadc0b598')
-
-prepare() {
-cd "${srcdir}"/${pkgname}-${pkgver}
-
-autoreconf -fi
-}
-
-build() {
-cd "${srcdir}"/${pkgname}-${pkgver}
-
-./configure --prefix=/usr \
---disable-static
-make
-}
-
-package(){
-cd "${srcdir}"/${pkgname}-${pkgver}
-
-make DESTDIR="${pkgdir}" install
-}

Copied: cinnamon-menus/repos/community-x86_64/PKGBUILD (from rev 342026, 
cinnamon-menus/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-06-08 13:19:23 UTC (rev 342027)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Eli Schwartz 
+# Contributor: Alexandre Filgueira 
+
+pkgname=cinnamon-menus
+pkgver=3.8.2
+pkgrel=1
+pkgdesc="Cinnamon menu specifications"
+arch=('x86_64')
+url="https://github.com/linuxmint/${pkgname};
+license=('GPL' 'LGPL')
+depends=('glib2')
+makedepends=('gobject-introspection')
+source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
+sha256sums=('21de1b1b7367afcd7ccf9bc54633f495f30c26819da459de78b4a79fe4134725')
+
+prepare() {
+cd "${srcdir}"/${pkgname}-${pkgver}
+
+autoreconf -fi
+}
+
+build() {
+cd "${srcdir}"/${pkgname}-${pkgver}
+
+./configure --prefix=/usr \
+--disable-static
+make
+}
+
+package(){
+cd "${srcdir}"/${pkgname}-${pkgver}
+
+make DESTDIR="${pkgdir}" install
+}


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

2018-06-08 Thread Eli Schwartz via arch-commits
Date: Friday, June 8, 2018 @ 13:19:06
  Author: eschwartz
Revision: 342026

upgpkg: cinnamon-menus 3.8.2-1

upstream release

Modified:
  cinnamon-menus/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-06-08 13:17:44 UTC (rev 342025)
+++ PKGBUILD2018-06-08 13:19:06 UTC (rev 342026)
@@ -3,7 +3,7 @@
 # Contributor: Alexandre Filgueira 
 
 pkgname=cinnamon-menus
-pkgver=3.8.1
+pkgver=3.8.2
 pkgrel=1
 pkgdesc="Cinnamon menu specifications"
 arch=('x86_64')
@@ -12,7 +12,7 @@
 depends=('glib2')
 makedepends=('gobject-introspection')
 source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
-sha256sums=('a4692ed6f9ee443dbc5a3fcffd430c7e92821d675073032472dc299fadc0b598')
+sha256sums=('21de1b1b7367afcd7ccf9bc54633f495f30c26819da459de78b4a79fe4134725')
 
 prepare() {
 cd "${srcdir}"/${pkgname}-${pkgver}


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

2018-06-08 Thread Eli Schwartz via arch-commits
Date: Friday, June 8, 2018 @ 13:17:44
  Author: eschwartz
Revision: 342025

upgpkg: muffin 3.8.2-1

upstream release

Modified:
  muffin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-06-08 13:17:01 UTC (rev 342024)
+++ PKGBUILD2018-06-08 13:17:44 UTC (rev 342025)
@@ -5,7 +5,7 @@
 # Contributor: Ner0
 
 pkgname=muffin
-pkgver=3.8.1
+pkgver=3.8.2
 pkgrel=1
 pkgdesc="Cinnamon window manager based on Mutter"
 arch=('x86_64')
@@ -16,7 +16,7 @@
 makedepends=('intltool' 'gobject-introspection' 'gtk-doc' 'gnome-doc-utils')
 options=('!emptydirs')
 source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
-sha256sums=('0de4e566b64a30af94689bc716145039e2f5f20c182de47bb120fb579825d681')
+sha256sums=('b567c96022698f6fdc81118e5ffa5f14d4c95fd20c4ad228eee8c0d1b8cbc902')
 
 prepare() {
 cd "${srcdir}"/${pkgname}-${pkgver}


  1   2   >