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

2019-12-05 Thread Laurent Carlier via arch-commits
Date: Friday, December 6, 2019 @ 07:56:32
  Author: lcarlier
Revision: 535775

archrelease: copy trunk to multilib-testing-x86_64

Added:
  lib32-libglvnd/repos/multilib-testing-x86_64/
  lib32-libglvnd/repos/multilib-testing-x86_64/LICENSE
(from rev 535774, lib32-libglvnd/trunk/LICENSE)
  lib32-libglvnd/repos/multilib-testing-x86_64/PKGBUILD
(from rev 535774, lib32-libglvnd/trunk/PKGBUILD)

--+
 LICENSE  |   26 ++
 PKGBUILD |   38 ++
 2 files changed, 64 insertions(+)

Copied: lib32-libglvnd/repos/multilib-testing-x86_64/LICENSE (from rev 535774, 
lib32-libglvnd/trunk/LICENSE)
===
--- multilib-testing-x86_64/LICENSE (rev 0)
+++ multilib-testing-x86_64/LICENSE 2019-12-06 07:56:32 UTC (rev 535775)
@@ -0,0 +1,26 @@
+Copyright (c) 2013, NVIDIA CORPORATION.
+
+Permission is hereby granted, free of charge, to any person obtaining a
+copy of this software and/or associated documentation files (the
+"Materials"), to deal in the Materials without restriction, including
+without limitation the rights to use, copy, modify, merge, publish,
+distribute, sublicense, and/or sell copies of the Materials, and to
+permit persons to whom the Materials are furnished to do so, subject to
+the following conditions:
+
+The above copyright notice and this permission notice shall be included
+unaltered in all copies or substantial portions of the Materials.
+Any additions, deletions, or changes to the original source files
+must be clearly indicated in accompanying documentation.
+
+If only executable code is distributed, then the accompanying
+documentation must state that "this software is based in part on the
+work of the Khronos Group."
+
+THE MATERIALS ARE 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 THE AUTHORS OR COPYRIGHT HOLDERS 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
+MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS.
\ No newline at end of file

Copied: lib32-libglvnd/repos/multilib-testing-x86_64/PKGBUILD (from rev 535774, 
lib32-libglvnd/trunk/PKGBUILD)
===
--- multilib-testing-x86_64/PKGBUILD(rev 0)
+++ multilib-testing-x86_64/PKGBUILD2019-12-06 07:56:32 UTC (rev 535775)
@@ -0,0 +1,38 @@
+# Maintainer: Felix Yan 
+
+pkgname=lib32-libglvnd
+pkgver=1.3.0
+pkgrel=1
+pkgdesc="The GL Vendor-Neutral Dispatch library"
+arch=('x86_64')
+url="https://github.com/NVIDIA/libglvnd;
+license=('custom:BSD-like')
+makedepends=('lib32-libx11' 'lib32-libxext' 'glproto' 'python' 'meson')
+provides=('lib32-libgl' 'lib32-libegl' 'lib32-libgles')
+source=("$pkgname-$pkgver.tar.gz::https://gitlab.freedesktop.org/glvnd/libglvnd/-/archive/v${pkgver}/libglvnd-v${pkgver}.tar.gz;)
+sha512sums=('277d0951596fee654fa90b6c644ccde781d83732bb6caa13ad57103198caa9702732922efd9c84cfbe1689ff40b9d710d9d375f5b4a2f0c86c88c8b3e2b3f732')
+
+build() {
+  export CC='gcc -m32'
+  export CXX='g++ -m32'
+  export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
+
+  arch-meson libglvnd-v$pkgver build \
+--libdir=/usr/lib32 \
+-D headers=false \
+-D gles1=false
+
+  ninja -C build
+}
+
+package() {
+  # lib32-libglvnd needs lib32-mesa for indirect rendering
+  depends=('lib32-libxext' 'libglvnd' 'lib32-mesa' 'lib32-opengl-driver')
+
+  DESTDIR="$pkgdir" ninja -C build install
+
+  rm -r "$pkgdir"/usr/include
+
+  mkdir -p "$pkgdir"/usr/share/licenses
+  ln -s libglvnd "$pkgdir"/usr/share/licenses/$pkgname
+}


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

2019-12-05 Thread Laurent Carlier via arch-commits
Date: Friday, December 6, 2019 @ 07:56:28
  Author: lcarlier
Revision: 535774

upgpkg: lib32-libglvnd 1.3.0-1: upstream update 1.3.0

Modified:
  lib32-libglvnd/trunk/PKGBUILD
Deleted:
  
lib32-libglvnd/trunk/0001-Add-a-configure-option-to-disable-glesv1-or-glesv2.patch

---+
 0001-Add-a-configure-option-to-disable-glesv1-or-glesv2.patch |  122 --
 PKGBUILD  |   36 --
 2 files changed, 12 insertions(+), 146 deletions(-)

Deleted: 0001-Add-a-configure-option-to-disable-glesv1-or-glesv2.patch
===
--- 0001-Add-a-configure-option-to-disable-glesv1-or-glesv2.patch   
2019-12-06 06:58:24 UTC (rev 535773)
+++ 0001-Add-a-configure-option-to-disable-glesv1-or-glesv2.patch   
2019-12-06 07:56:28 UTC (rev 535774)
@@ -1,122 +0,0 @@
-From 3a1fb32c3b2ba0bc28952759c33dc98bb5260125 Mon Sep 17 00:00:00 2001
-From: Laurent Carlier 
-Date: Tue, 8 Oct 2019 16:34:16 +
-Subject: [PATCH] Add a configure option to disable glesv1 or glesv2
-
-Because mesa can be built without glesv1 so it breaks autodetection.
-
-Fixes: https://bugs.archlinux.org/task/64032 ('mesa-demos doesn't build, 
unable to find GLES/gl.h')

- configure.ac| 23 +++
- include/Makefile.am | 24 ++--
- src/Makefile.am |  4 +++-
- 3 files changed, 36 insertions(+), 15 deletions(-)
-
-diff --git a/configure.ac b/configure.ac
-index faa0379..eb68d3b 100644
 a/configure.ac
-+++ b/configure.ac
-@@ -70,13 +70,19 @@ if test "x$enable_x11" != "xyes" -a "x$enable_glx" = 
"xyes" ; then
- AC_MSG_ERROR([Can't build GLX without X11.])
- fi
- 
--AC_ARG_ENABLE([gles],
--[AS_HELP_STRING([--disable-gles],
--[Do not build the libGLES*.so libraries @<:@default=enabled@:>@])],
--[enable_gles="$enableval"],
--[enable_gles=yes]
--)
--AM_CONDITIONAL([ENABLE_GLES], [test "x$enable_gles" = "xyes"])
-+AC_ARG_ENABLE([gles1],
-+[AS_HELP_STRING([--disable-gles1],
-+[disable support for OpenGL ES 1.x API @<:@default=enabled@:>@])],
-+[enable_gles1="$enableval"],
-+[enable_gles1=yes])
-+AM_CONDITIONAL([ENABLE_GLES1], [test "x$enable_gles1" = "xyes"])
-+
-+AC_ARG_ENABLE([gles2],
-+[AS_HELP_STRING([--disable-gles2],
-+[disable support for OpenGL ES 2.x and 3.x API 
@<:@default=enabled@:>@])],
-+[enable_gles2="$enableval"],
-+[enable_gles2=yes])
-+AM_CONDITIONAL([ENABLE_GLES2], [test "x$enable_gles2" = "xyes"])
- 
- AC_ARG_ENABLE([headers],
- [AS_HELP_STRING([--disable-headers],
-@@ -87,7 +93,8 @@ AC_ARG_ENABLE([headers],
- AM_CONDITIONAL([ENABLE_GL_HEADERS], [test "x$enable_headers" = "xyes"])
- AM_CONDITIONAL([ENABLE_EGL_HEADERS], [test "x$enable_headers" = "xyes" -a 
"x$enable_egl" = "xyes"])
- AM_CONDITIONAL([ENABLE_GLX_HEADERS], [test "x$enable_headers" = "xyes" -a 
"x$enable_glx" = "xyes"])
--AM_CONDITIONAL([ENABLE_GLES_HEADERS], [test "x$enable_headers" = "xyes" -a 
"x$enable_gles" = "xyes"])
-+AM_CONDITIONAL([ENABLE_GLES1_HEADERS], [test "x$enable_headers" = "xyes" -a 
"x$enable_gles1" = "xyes"])
-+AM_CONDITIONAL([ENABLE_GLES2_HEADERS], [test "x$enable_headers" = "xyes" -a 
"x$enable_gles2" = "xyes"])
- 
- dnl
- dnl Arch/platform-specific settings. Copied from mesa
-diff --git a/include/Makefile.am b/include/Makefile.am
-index 3d81d17..0c41dc7 100644
 a/include/Makefile.am
-+++ b/include/Makefile.am
-@@ -17,14 +17,18 @@ GL_HEADER_FILES = \
-   GL/glext.h \
-   KHR/khrplatform.h
- 
--GLES_HEADER_FILES = \
-+GLES1_HEADER_FILES = \
-   GLES/egl.h \
-   GLES/gl.h \
-   GLES/glext.h \
--  GLES/glplatform.h \
-+  GLES/glplatform.h
-+
-+GLES2_HEADER_FILES = \
-   GLES2/gl2ext.h \
-   GLES2/gl2.h \
--  GLES2/gl2platform.h \
-+  GLES2/gl2platform.h
-+
-+GLES3_HEADER_FILES = \
-   GLES3/gl31.h \
-   GLES3/gl32.h \
-   GLES3/gl3.h \
-@@ -45,10 +49,18 @@ else
- noinst_HEADERS += $(GL_HEADER_FILES)
- endif
- 
--if ENABLE_GLES_HEADERS
--nobase_include_HEADERS += $(GLES_HEADER_FILES)
-+if ENABLE_GLES1_HEADERS
-+nobase_include_HEADERS += $(GLES1_HEADER_FILES)
-+else
-+noinst_HEADERS += $(GLES1_HEADER_FILES)
-+endif
-+
-+if ENABLE_GLES2_HEADERS
-+nobase_include_HEADERS += $(GLES2_HEADER_FILES)
-+nobase_include_HEADERS += $(GLES3_HEADER_FILES)
- else
--noinst_HEADERS += $(GLES_HEADER_FILES)
-+noinst_HEADERS += $(GLES2_HEADER_FILES)
-+noinst_HEADERS += $(GLES3_HEADER_FILES)
- endif
- 
- if ENABLE_GLX_HEADERS
-diff --git a/src/Makefile.am b/src/Makefile.am
-index 5f7ce79..821346f 100644
 a/src/Makefile.am
-+++ b/src/Makefile.am
-@@ -12,8 +12,10 @@ SUBDIRS += GLX
- SUBDIRS += GL
- endif
- 
--if ENABLE_GLES
-+if ENABLE_GLES1
- SUBDIRS += GLESv1
-+endif
-+if ENABLE_GLES2
- SUBDIRS += GLESv2
- endif
- 
--- 
-2.23.0
-

Modified: PKGBUILD
===
--- PKGBUILD

[arch-commits] Commit in libglvnd/trunk (5 files)

2019-12-05 Thread Laurent Carlier via arch-commits
Date: Friday, December 6, 2019 @ 07:45:35
  Author: lcarlier
Revision: 370453

upgpkg: libglvnd 1.3.0-1: upstream update 1.3.0

Modified:
  libglvnd/trunk/PKGBUILD
Deleted:
  libglvnd/trunk/0001-Add-a-configure-option-to-disable-glesv1-or-glesv2.patch
  libglvnd/trunk/EGL-Set-EGL_NO_X11-macro.patch
  libglvnd/trunk/egl-sync-with-khronos.patch
  libglvnd/trunk/update-gl-h-to-match-mesa.patch

---+
 0001-Add-a-configure-option-to-disable-glesv1-or-glesv2.patch |  122 
 EGL-Set-EGL_NO_X11-macro.patch|  100 
 PKGBUILD  |   47 -
 egl-sync-with-khronos.patch   |   42 -
 update-gl-h-to-match-mesa.patch   |  245 --
 5 files changed, 11 insertions(+), 545 deletions(-)

Deleted: 0001-Add-a-configure-option-to-disable-glesv1-or-glesv2.patch
===
--- 0001-Add-a-configure-option-to-disable-glesv1-or-glesv2.patch   
2019-12-06 00:34:24 UTC (rev 370452)
+++ 0001-Add-a-configure-option-to-disable-glesv1-or-glesv2.patch   
2019-12-06 07:45:35 UTC (rev 370453)
@@ -1,122 +0,0 @@
-From 3a1fb32c3b2ba0bc28952759c33dc98bb5260125 Mon Sep 17 00:00:00 2001
-From: Laurent Carlier 
-Date: Tue, 8 Oct 2019 16:34:16 +
-Subject: [PATCH] Add a configure option to disable glesv1 or glesv2
-
-Because mesa can be built without glesv1 so it breaks autodetection.
-
-Fixes: https://bugs.archlinux.org/task/64032 ('mesa-demos doesn't build, 
unable to find GLES/gl.h')

- configure.ac| 23 +++
- include/Makefile.am | 24 ++--
- src/Makefile.am |  4 +++-
- 3 files changed, 36 insertions(+), 15 deletions(-)
-
-diff --git a/configure.ac b/configure.ac
-index faa0379..eb68d3b 100644
 a/configure.ac
-+++ b/configure.ac
-@@ -70,13 +70,19 @@ if test "x$enable_x11" != "xyes" -a "x$enable_glx" = 
"xyes" ; then
- AC_MSG_ERROR([Can't build GLX without X11.])
- fi
- 
--AC_ARG_ENABLE([gles],
--[AS_HELP_STRING([--disable-gles],
--[Do not build the libGLES*.so libraries @<:@default=enabled@:>@])],
--[enable_gles="$enableval"],
--[enable_gles=yes]
--)
--AM_CONDITIONAL([ENABLE_GLES], [test "x$enable_gles" = "xyes"])
-+AC_ARG_ENABLE([gles1],
-+[AS_HELP_STRING([--disable-gles1],
-+[disable support for OpenGL ES 1.x API @<:@default=enabled@:>@])],
-+[enable_gles1="$enableval"],
-+[enable_gles1=yes])
-+AM_CONDITIONAL([ENABLE_GLES1], [test "x$enable_gles1" = "xyes"])
-+
-+AC_ARG_ENABLE([gles2],
-+[AS_HELP_STRING([--disable-gles2],
-+[disable support for OpenGL ES 2.x and 3.x API 
@<:@default=enabled@:>@])],
-+[enable_gles2="$enableval"],
-+[enable_gles2=yes])
-+AM_CONDITIONAL([ENABLE_GLES2], [test "x$enable_gles2" = "xyes"])
- 
- AC_ARG_ENABLE([headers],
- [AS_HELP_STRING([--disable-headers],
-@@ -87,7 +93,8 @@ AC_ARG_ENABLE([headers],
- AM_CONDITIONAL([ENABLE_GL_HEADERS], [test "x$enable_headers" = "xyes"])
- AM_CONDITIONAL([ENABLE_EGL_HEADERS], [test "x$enable_headers" = "xyes" -a 
"x$enable_egl" = "xyes"])
- AM_CONDITIONAL([ENABLE_GLX_HEADERS], [test "x$enable_headers" = "xyes" -a 
"x$enable_glx" = "xyes"])
--AM_CONDITIONAL([ENABLE_GLES_HEADERS], [test "x$enable_headers" = "xyes" -a 
"x$enable_gles" = "xyes"])
-+AM_CONDITIONAL([ENABLE_GLES1_HEADERS], [test "x$enable_headers" = "xyes" -a 
"x$enable_gles1" = "xyes"])
-+AM_CONDITIONAL([ENABLE_GLES2_HEADERS], [test "x$enable_headers" = "xyes" -a 
"x$enable_gles2" = "xyes"])
- 
- dnl
- dnl Arch/platform-specific settings. Copied from mesa
-diff --git a/include/Makefile.am b/include/Makefile.am
-index 3d81d17..0c41dc7 100644
 a/include/Makefile.am
-+++ b/include/Makefile.am
-@@ -17,14 +17,18 @@ GL_HEADER_FILES = \
-   GL/glext.h \
-   KHR/khrplatform.h
- 
--GLES_HEADER_FILES = \
-+GLES1_HEADER_FILES = \
-   GLES/egl.h \
-   GLES/gl.h \
-   GLES/glext.h \
--  GLES/glplatform.h \
-+  GLES/glplatform.h
-+
-+GLES2_HEADER_FILES = \
-   GLES2/gl2ext.h \
-   GLES2/gl2.h \
--  GLES2/gl2platform.h \
-+  GLES2/gl2platform.h
-+
-+GLES3_HEADER_FILES = \
-   GLES3/gl31.h \
-   GLES3/gl32.h \
-   GLES3/gl3.h \
-@@ -45,10 +49,18 @@ else
- noinst_HEADERS += $(GL_HEADER_FILES)
- endif
- 
--if ENABLE_GLES_HEADERS
--nobase_include_HEADERS += $(GLES_HEADER_FILES)
-+if ENABLE_GLES1_HEADERS
-+nobase_include_HEADERS += $(GLES1_HEADER_FILES)
-+else
-+noinst_HEADERS += $(GLES1_HEADER_FILES)
-+endif
-+
-+if ENABLE_GLES2_HEADERS
-+nobase_include_HEADERS += $(GLES2_HEADER_FILES)
-+nobase_include_HEADERS += $(GLES3_HEADER_FILES)
- else
--noinst_HEADERS += $(GLES_HEADER_FILES)
-+noinst_HEADERS += $(GLES2_HEADER_FILES)
-+noinst_HEADERS += $(GLES3_HEADER_FILES)
- endif
- 
- if ENABLE_GLX_HEADERS
-diff --git a/src/Makefile.am b/src/Makefile.am
-index 5f7ce79..821346f 100644

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

2019-12-05 Thread Laurent Carlier via arch-commits
Date: Friday, December 6, 2019 @ 07:45:40
  Author: lcarlier
Revision: 370454

archrelease: copy trunk to testing-x86_64

Added:
  libglvnd/repos/testing-x86_64/
  libglvnd/repos/testing-x86_64/LICENSE
(from rev 370453, libglvnd/trunk/LICENSE)
  libglvnd/repos/testing-x86_64/PKGBUILD
(from rev 370453, libglvnd/trunk/PKGBUILD)

--+
 LICENSE  |   26 ++
 PKGBUILD |   31 +++
 2 files changed, 57 insertions(+)

Copied: libglvnd/repos/testing-x86_64/LICENSE (from rev 370453, 
libglvnd/trunk/LICENSE)
===
--- testing-x86_64/LICENSE  (rev 0)
+++ testing-x86_64/LICENSE  2019-12-06 07:45:40 UTC (rev 370454)
@@ -0,0 +1,26 @@
+Copyright (c) 2013, NVIDIA CORPORATION.
+
+Permission is hereby granted, free of charge, to any person obtaining a
+copy of this software and/or associated documentation files (the
+"Materials"), to deal in the Materials without restriction, including
+without limitation the rights to use, copy, modify, merge, publish,
+distribute, sublicense, and/or sell copies of the Materials, and to
+permit persons to whom the Materials are furnished to do so, subject to
+the following conditions:
+
+The above copyright notice and this permission notice shall be included
+unaltered in all copies or substantial portions of the Materials.
+Any additions, deletions, or changes to the original source files
+must be clearly indicated in accompanying documentation.
+
+If only executable code is distributed, then the accompanying
+documentation must state that "this software is based in part on the
+work of the Khronos Group."
+
+THE MATERIALS ARE 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 THE AUTHORS OR COPYRIGHT HOLDERS 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
+MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS.
\ No newline at end of file

Copied: libglvnd/repos/testing-x86_64/PKGBUILD (from rev 370453, 
libglvnd/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-12-06 07:45:40 UTC (rev 370454)
@@ -0,0 +1,31 @@
+# Maintainer: Felix Yan 
+
+pkgname=libglvnd
+pkgver=1.3.0
+pkgrel=1
+pkgdesc="The GL Vendor-Neutral Dispatch library"
+arch=('x86_64')
+url="https://github.com/NVIDIA/libglvnd;
+license=('custom:BSD-like')
+makedepends=('libxext' 'libx11' 'glproto' 'python' 'meson')
+provides=('libgl' 'libegl' 'libgles')
+source=("$pkgname-$pkgver.tar.gz::https://gitlab.freedesktop.org/glvnd/libglvnd/-/archive/v${pkgver}/libglvnd-v${pkgver}.tar.gz;
+LICENSE)
+sha512sums=('277d0951596fee654fa90b6c644ccde781d83732bb6caa13ad57103198caa9702732922efd9c84cfbe1689ff40b9d710d9d375f5b4a2f0c86c88c8b3e2b3f732'
+
'bf0f4a7e04220a407400f89226ecc1f798cc43035f2538cc8860e5088e1f84140baf0d4b0b28f66e4b802d4d6925769a1297c24e1ba39c1c093902b2931781a5')
+
+build() {
+  arch-meson $pkgname-v$pkgver build \
+-D gles1=false
+
+  ninja -C build
+}
+
+package() {
+  # libglvnd needs mesa for indirect rendering
+  depends=('libxext' 'mesa' 'opengl-driver')
+
+  DESTDIR="$pkgdir" ninja -C build install
+  
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2019-12-05 Thread Ike Devolder via arch-commits
Date: Friday, December 6, 2019 @ 06:58:24
  Author: idevolder
Revision: 535773

archrelease: copy trunk to community-x86_64

Added:
  qcad/repos/community-x86_64/PKGBUILD
(from rev 535772, qcad/trunk/PKGBUILD)
Deleted:
  qcad/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |  182 ++---
 1 file changed, 91 insertions(+), 91 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-12-06 06:58:18 UTC (rev 535772)
+++ PKGBUILD2019-12-06 06:58:24 UTC (rev 535773)
@@ -1,91 +0,0 @@
-# Maintainer: BlackIkeEagle 
-# Contributor: Sergej Pupykin 
-# Contributor: Stefan Husmann 
-# Contributor: Giovanni Scafora 
-# Contributor: Daniel J Griffiths 
-
-pkgname=qcad
-pkgver=3.23.0.8
-pkgrel=1
-pkgdesc='A 2D CAD package based upon Qt'
-arch=('x86_64')
-url="https://www.qcad.org;
-license=('GPL3')
-depends=('qt5-script' 'qt5-svg' 'gcc-libs' 'qt5-xmlpatterns' 'qt5-tools')
-makedepends=('glu')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/qcad/qcad/archive/v${pkgver}.tar.gz;)
-sha512sums=('52679d0a8635181600ca52ec7dd8561eeb7f65fb8805e55c82bc51987c15aff3e02b3d1e36d43c6345ff6055f1936bdbb6b2544855f5b7828811744bb5305f13')
-
-prepare() {
-  rm *.tar.gz
-  cd qcad-$pkgver
-  sed -e 's|$${QT_VERSION}|5.5.0|g' \
-  -i src/3rdparty/3rdparty.pro # Don't require specific Qt version
-}
-
-build() {
-  cd qcad-$pkgver
-  qmake-qt5 qcad.pro
-  make
-}
-
-package() {
-  cd qcad-$pkgver
-
-  # remove project files
-  find . \( -name '*.pri' -or -name '.pro' -or -name '*.ts' \) -delete
-  find . \( -name 'Makefile' -name '.gitignore' \) -delete
-
-  install -dm755 "$pkgdir"/usr/lib/qcad
-  cp -r examples fonts libraries linetypes patterns scripts themes ts \
-  "$pkgdir"/usr/lib/qcad
-  cp release/{*.so,qcad-bin} "$pkgdir"/usr/lib/qcad
-
-  # install man
-  install -Dm644 qcad.1 "$pkgdir"/usr/share/man/man1/qcad.1
-
-  # readme
-  install -Dm644 readme.txt "$pkgdir"/usr/lib/qcad/readme.txt
-
-  # qt
-  cp -r plugins platforminputcontexts platforms xcbglintegrations \
-  "$pkgdir"/usr/lib/qcad
-  #install -dm755 
"$pkgdir"/usr/lib/qcad/plugins/{designer,imageformats,printsupport,sqldrivers}
-  #for sofiles in /usr/lib/qt/plugins/designer/*.so
-  #do
-#ln -sf ${sofiles} "$pkgdir"/usr/lib/qcad/plugins/designer/${sofiles##/*/}
-  #done
-  #for sofiles in /usr/lib/qt/plugins/imageformats/*.so
-  #do
-#ln -sf ${sofiles} 
"$pkgdir"/usr/lib/qcad/plugins/imageformats/${sofiles##/*/}
-  #done
-  #for sofiles in /usr/lib/qt/plugins/printsupport/*.so
-  #do
-#ln -sf ${sofiles} 
"$pkgdir"/usr/lib/qcad/plugins/printsupport/${sofiles##/*/}
-  #done
-  #for sofiles in /usr/lib/qt/plugins/sqldrivers/*.so
-  #do
-#ln -sf ${sofiles} 
"$pkgdir"/usr/lib/qcad/plugins/sqldrivers/${sofiles##/*/}
-  #done
-  #install -dm755 
"$pkgdir"/usr/lib/qcad/{platforminputcontexts,platforms,xcbglintegrations}
-  #for sofiles in /usr/lib/qt/plugins/platforminputcontexts/*.so
-  #do
-#ln -sf ${sofiles} 
"$pkgdir"/usr/lib/qcad/platforminputcontexts/${sofiles##/*/}
-  #done
-  #for sofiles in /usr/lib/qt/plugins/platforms/*.so
-  #do
-#ln -sf ${sofiles} "$pkgdir"/usr/lib/qcad/platforms/${sofiles##/*/}
-  #done
-  #for sofiles in /usr/lib/qt/plugins/xcbglintegrations/*.so
-  #do
-#ln -sf ${sofiles} "$pkgdir"/usr/lib/qcad/xcbglintegrations/${sofiles##/*/}
-  #done
-
-  install -Dm644 scripts/qcad_icon.png 
"$pkgdir"/usr/share/pixmaps/qcad_icon.png
-  install -Dm644 qcad.desktop "$pkgdir"/usr/share/applications/qcad.desktop
-
-  install -dm755 "$pkgdir"/usr/bin
-  echo -e 
'#!/bin/sh\nLD_LIBRARY_PATH=${LD_LIBRARY_PATH:+$LD_LIBRARY_PATH:}"/usr/lib/qcad"
 exec /usr/lib/qcad/qcad-bin "$@"' >"$pkgdir"/usr/bin/qcad
-
-  chmod 0755 "$pkgdir"/usr/bin/qcad
-}

Copied: qcad/repos/community-x86_64/PKGBUILD (from rev 535772, 
qcad/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-12-06 06:58:24 UTC (rev 535773)
@@ -0,0 +1,91 @@
+# Maintainer: BlackIkeEagle 
+# Contributor: Sergej Pupykin 
+# Contributor: Stefan Husmann 
+# Contributor: Giovanni Scafora 
+# Contributor: Daniel J Griffiths 
+
+pkgname=qcad
+pkgver=3.23.0.9
+pkgrel=1
+pkgdesc='A 2D CAD package based upon Qt'
+arch=('x86_64')
+url="https://www.qcad.org;
+license=('GPL3')
+depends=('qt5-script' 'qt5-svg' 'gcc-libs' 'qt5-xmlpatterns' 'qt5-tools')
+makedepends=('glu')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/qcad/qcad/archive/v${pkgver}.tar.gz;)
+sha512sums=('87d07e47d3f5ec9923681a06139f4f1f2d8324b2a06b3537d3ec2ec15ddab781a2b23614a2a170c084baa81d6600cc0884aa3dc3a745fda6e2dfb52dfe378a7b')
+
+prepare() {
+  rm *.tar.gz
+  cd qcad-$pkgver
+  sed -e 's|$${QT_VERSION}|5.5.0|g' \
+  -i src/3rdparty/3rdparty.pro # Don't require specific Qt version
+}
+
+build() {
+  cd qcad-$pkgver
+  qmake-qt5 qcad.pro
+  make
+}
+
+package() {
+  cd 

[arch-commits] Commit in opera-ffmpeg-codecs/repos/community-x86_64 (12 files)

2019-12-05 Thread Ike Devolder via arch-commits
Date: Friday, December 6, 2019 @ 06:58:05
  Author: idevolder
Revision: 535771

archrelease: copy trunk to community-x86_64

Added:
  opera-ffmpeg-codecs/repos/community-x86_64/PKGBUILD
(from rev 535770, opera-ffmpeg-codecs/trunk/PKGBUILD)
  opera-ffmpeg-codecs/repos/community-x86_64/chromium-73-gcc-0.patch
(from rev 535770, opera-ffmpeg-codecs/trunk/chromium-73-gcc-0.patch)
  opera-ffmpeg-codecs/repos/community-x86_64/chromium-73-gcc-2.patch
(from rev 535770, opera-ffmpeg-codecs/trunk/chromium-73-gcc-2.patch)
  opera-ffmpeg-codecs/repos/community-x86_64/chromium-73-gcc-3.patch
(from rev 535770, opera-ffmpeg-codecs/trunk/chromium-73-gcc-3.patch)
  opera-ffmpeg-codecs/repos/community-x86_64/chromium-FORTIFY_SOURCE-r2.patch
(from rev 535770, 
opera-ffmpeg-codecs/trunk/chromium-FORTIFY_SOURCE-r2.patch)
  
opera-ffmpeg-codecs/repos/community-x86_64/chromium-last-commit-position-r1.patch
(from rev 535770, 
opera-ffmpeg-codecs/trunk/chromium-last-commit-position-r1.patch)
Deleted:
  opera-ffmpeg-codecs/repos/community-x86_64/PKGBUILD
  opera-ffmpeg-codecs/repos/community-x86_64/chromium-73-gcc-0.patch
  opera-ffmpeg-codecs/repos/community-x86_64/chromium-73-gcc-2.patch
  opera-ffmpeg-codecs/repos/community-x86_64/chromium-73-gcc-3.patch
  opera-ffmpeg-codecs/repos/community-x86_64/chromium-FORTIFY_SOURCE-r2.patch
  
opera-ffmpeg-codecs/repos/community-x86_64/chromium-last-commit-position-r1.patch

+
 PKGBUILD   |  132 +-
 chromium-73-gcc-0.patch|  216 +++
 chromium-73-gcc-2.patch|  102 +++---
 chromium-73-gcc-3.patch|  138 +--
 chromium-FORTIFY_SOURCE-r2.patch   |   60 
 chromium-last-commit-position-r1.patch |   52 +++
 6 files changed, 350 insertions(+), 350 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-12-06 06:57:55 UTC (rev 535770)
+++ PKGBUILD2019-12-06 06:58:05 UTC (rev 535771)
@@ -1,66 +0,0 @@
-# vim:set ft=sh:
-# Maintainer: BlackEagle < ike DOT devolder AT gmail DOT com >
-
-pkgname=opera-ffmpeg-codecs
-pkgver=78.0.3895.5
-pkgrel=1
-pkgdesc="additional support for proprietary codecs for opera"
-arch=('x86_64')
-url="https://ffmpeg.org/;
-license=('LGPL2.1')
-depends=('glibc')
-makedepends=(
-  'gtk3' 'libexif' 'libxss' 'ninja' 'nss' 'pciutils' 'python2'
-  'xdg-utils' 'gn'
-)
-options=('!strip')
-source=(
-  
"https://commondatastorage.googleapis.com/chromium-browser-official/chromium-$pkgver.tar.xz;
-)
-sha512sums=('890a19ee61a7e5cb867f6fbf56a202ae028ba8ccf86c291b144a28b7b131a7375ae2ced49f226f16f3d8f348da8277e24c766d837aac297ebc5fbe81489d99f8')
-
-prepare() {
-  cd "$srcdir/chromium-$pkgver"
-
-  # Use Python 2
-  find -name '*.py' | xargs sed -e 's|env python|&2|g' -e 's|bin/python|&2|g' 
-i
-
-  # force some 'older' binaries in the path
-  [[ -d "$srcdir/path" ]] && rm -rf "$srcdir/path"
-  mkdir "$srcdir/path"
-  ln -s /usr/bin/python2 "$srcdir/path/python"
-
-}
-
-build() {
-  cd "$srcdir/chromium-$pkgver"
-
-  python2 tools/clang/scripts/update.py
-
-  export 
PATH="${srcdir}/chromium-${pkgver}/third_party/llvm-build/Release+Asserts/bin:$srcdir/path:$PATH"
-
-  export CC="clang"
-  export CXX="clang++"
-
-  local args="ffmpeg_branding=\"ChromeOS\" proprietary_codecs=true 
enable_hevc_demuxing=true enable_ac3_eac3_audio_demuxing=true 
use_gnome_keyring=false use_sysroot=false use_gold=false use_allocator=\"none\" 
linux_use_bundled_binutils=false fatal_linker_warnings=false 
treat_warnings_as_errors=false enable_nacl=false enable_nacl_nonsfi=false 
is_clang=true clang_use_chrome_plugins=true is_component_build=true 
is_debug=false symbol_level=0 use_custom_libcxx=false use_lld=false 
use_jumbo_build=false"
-
-  #(
-#cd third_party/ffmpeg
-#chromium/scripts/build_ffmpeg.py linux x64 --branding ChromeOS
-#chromium/scripts/copy_config.sh
-#chromium/scripts/generate_gn.py
-  #)
-
-  gn gen out/Release -v --args="$args" --script-executable=/usr/bin/python2
-
-  ninja -C out/Release -v media/ffmpeg
-}
-
-package() {
-  cd "$srcdir/chromium-$pkgver"
-
-  install -Dm644 out/Release/libffmpeg.so \
-"$pkgdir/usr/lib/opera/lib_extra/libffmpeg.so"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: opera-ffmpeg-codecs/repos/community-x86_64/PKGBUILD (from rev 535770, 
opera-ffmpeg-codecs/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-12-06 06:58:05 UTC (rev 535771)
@@ -0,0 +1,66 @@
+# vim:set ft=sh:
+# Maintainer: BlackEagle < ike DOT devolder AT gmail DOT com >
+
+pkgname=opera-ffmpeg-codecs
+pkgver=78.0.3904.108
+pkgrel=1
+pkgdesc="additional support for proprietary codecs for opera"
+arch=('x86_64')
+url="https://ffmpeg.org/;
+license=('LGPL2.1')
+depends=('glibc')
+makedepends=(
+  'gtk3' 

[arch-commits] Commit in opera-ffmpeg-codecs/trunk (PKGBUILD)

2019-12-05 Thread Ike Devolder via arch-commits
Date: Friday, December 6, 2019 @ 06:57:55
  Author: idevolder
Revision: 535770

upgpkg: opera-ffmpeg-codecs 78.0.3904.108-1

Modified:
  opera-ffmpeg-codecs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-06 06:47:44 UTC (rev 535769)
+++ PKGBUILD2019-12-06 06:57:55 UTC (rev 535770)
@@ -2,7 +2,7 @@
 # Maintainer: BlackEagle < ike DOT devolder AT gmail DOT com >
 
 pkgname=opera-ffmpeg-codecs
-pkgver=78.0.3895.5
+pkgver=78.0.3904.108
 pkgrel=1
 pkgdesc="additional support for proprietary codecs for opera"
 arch=('x86_64')
@@ -17,7 +17,7 @@
 source=(
   
"https://commondatastorage.googleapis.com/chromium-browser-official/chromium-$pkgver.tar.xz;
 )
-sha512sums=('890a19ee61a7e5cb867f6fbf56a202ae028ba8ccf86c291b144a28b7b131a7375ae2ced49f226f16f3d8f348da8277e24c766d837aac297ebc5fbe81489d99f8')
+sha512sums=('9801634358974dbe61484963599719b7c5571d32c70d7568287ab6b72054ed82afa146a0470c53129266a9fbc4a24dc50a43d552b8f1756776907c2760f15589')
 
 prepare() {
   cd "$srcdir/chromium-$pkgver"
@@ -42,7 +42,7 @@
   export CC="clang"
   export CXX="clang++"
 
-  local args="ffmpeg_branding=\"ChromeOS\" proprietary_codecs=true 
enable_hevc_demuxing=true enable_ac3_eac3_audio_demuxing=true 
use_gnome_keyring=false use_sysroot=false use_gold=false use_allocator=\"none\" 
linux_use_bundled_binutils=false fatal_linker_warnings=false 
treat_warnings_as_errors=false enable_nacl=false enable_nacl_nonsfi=false 
is_clang=true clang_use_chrome_plugins=true is_component_build=true 
is_debug=false symbol_level=0 use_custom_libcxx=false use_lld=false 
use_jumbo_build=false"
+  local args="ffmpeg_branding=\"ChromeOS\" proprietary_codecs=true 
enable_platform_hevc=true enable_platform_ac3_eac3_audio=true 
enable_platform_mpeg_h_audio=true enable_platform_dolby_vision=true 
enable_mse_mpeg2ts_stream_parser=true use_gnome_keyring=false use_sysroot=false 
use_gold=false linux_use_bundled_binutils=false treat_warnings_as_errors=false 
enable_nacl=false enable_nacl_nonsfi=false clang_use_chrome_plugins=true 
is_component_build=true is_debug=false symbol_level=0 use_custom_libcxx=true"
 
   #(
 #cd third_party/ffmpeg


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

2019-12-05 Thread Ike Devolder via arch-commits
Date: Friday, December 6, 2019 @ 06:58:18
  Author: idevolder
Revision: 535772

upgpkg: qcad 3.23.0.9-1

Modified:
  qcad/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-06 06:58:05 UTC (rev 535771)
+++ PKGBUILD2019-12-06 06:58:18 UTC (rev 535772)
@@ -5,7 +5,7 @@
 # Contributor: Daniel J Griffiths 
 
 pkgname=qcad
-pkgver=3.23.0.8
+pkgver=3.23.0.9
 pkgrel=1
 pkgdesc='A 2D CAD package based upon Qt'
 arch=('x86_64')
@@ -14,7 +14,7 @@
 depends=('qt5-script' 'qt5-svg' 'gcc-libs' 'qt5-xmlpatterns' 'qt5-tools')
 makedepends=('glu')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/qcad/qcad/archive/v${pkgver}.tar.gz;)
-sha512sums=('52679d0a8635181600ca52ec7dd8561eeb7f65fb8805e55c82bc51987c15aff3e02b3d1e36d43c6345ff6055f1936bdbb6b2544855f5b7828811744bb5305f13')
+sha512sums=('87d07e47d3f5ec9923681a06139f4f1f2d8324b2a06b3537d3ec2ec15ddab781a2b23614a2a170c084baa81d6600cc0884aa3dc3a745fda6e2dfb52dfe378a7b')
 
 prepare() {
   rm *.tar.gz


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

2019-12-05 Thread Ike Devolder via arch-commits
Date: Friday, December 6, 2019 @ 06:47:32
  Author: idevolder
Revision: 535768

upgpkg: opera 65.0.3467.62-1

Modified:
  opera/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-06 02:12:51 UTC (rev 535767)
+++ PKGBUILD2019-12-06 06:47:32 UTC (rev 535768)
@@ -9,7 +9,7 @@
 # Contributor: eworm
 
 pkgname=opera
-pkgver=65.0.3467.48
+pkgver=65.0.3467.62
 pkgrel=1
 pkgdesc="A fast and secure web browser"
 url="https://www.opera.com/;
@@ -31,7 +31,7 @@
 'terms.html'
 'privacy.html'
 )
-sha512sums=('cffb5fe2a42e4dc6e854fc316b70a2d90fb55f1a4137b71dde219d39ea4d9068ef34baebafd4bd1d829c1bad27af1b24aded2c46ba26304b637c7ad121e0ae33'
+sha512sums=('b00cff4ef6869fa80f4cd1345808dc57bab3a91c0736f3f3f9d6e65541e247ea92b30eb319afd2e9340ef18d72be404b395a9267a3831ef08fa06c26c2e36183'
 
'7e854e4c972785b8941f60117fbe4b88baeb8d7ca845ef2e10e8064043411da73821ba1ab0068df61e902f242a3ce355b51ffa9eab5397ff3ae3b5defd1be496'
 
'ddb1773877fcfd7d9674e63263a80f9dd5a3ba414cda4cc6c411c88d49c1d5175eede66d9362558ddd53c928c723101e4e110479ae88b8aec4d2366ec179297f'
 
'3606926b7a9dc281654a4478b0b43106c80e971b3e4548e313a7e31b56a08d248f552109007b549808bc1b80d51fb9fff8a99b42d6d618e2821779176f3337e2'


[arch-commits] Commit in opera/repos/community-x86_64 (14 files)

2019-12-05 Thread Ike Devolder via arch-commits
Date: Friday, December 6, 2019 @ 06:47:44
  Author: idevolder
Revision: 535769

archrelease: copy trunk to community-x86_64

Added:
  opera/repos/community-x86_64/PKGBUILD
(from rev 535768, opera/trunk/PKGBUILD)
  opera/repos/community-x86_64/default
(from rev 535768, opera/trunk/default)
  opera/repos/community-x86_64/eula.html
(from rev 535768, opera/trunk/eula.html)
  opera/repos/community-x86_64/opera
(from rev 535768, opera/trunk/opera)
  opera/repos/community-x86_64/opera.install
(from rev 535768, opera/trunk/opera.install)
  opera/repos/community-x86_64/privacy.html
(from rev 535768, opera/trunk/privacy.html)
  opera/repos/community-x86_64/terms.html
(from rev 535768, opera/trunk/terms.html)
Deleted:
  opera/repos/community-x86_64/PKGBUILD
  opera/repos/community-x86_64/default
  opera/repos/community-x86_64/eula.html
  opera/repos/community-x86_64/opera
  opera/repos/community-x86_64/opera.install
  opera/repos/community-x86_64/privacy.html
  opera/repos/community-x86_64/terms.html

---+
 PKGBUILD  |  176 ++--
 default   |8 
 eula.html |  716 +--
 opera |   26 -
 opera.install |   78 ++---
 privacy.html  |  772 
 terms.html|  708 +--
 7 files changed, 1242 insertions(+), 1242 deletions(-)

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


[arch-commits] Commit in firefox-dark-reader/repos/community-any (PKGBUILD PKGBUILD)

2019-12-05 Thread Daniel M. Capella via arch-commits
Date: Friday, December 6, 2019 @ 02:12:51
  Author: polyzen
Revision: 535767

archrelease: copy trunk to community-any

Added:
  firefox-dark-reader/repos/community-any/PKGBUILD
(from rev 535766, firefox-dark-reader/trunk/PKGBUILD)
Deleted:
  firefox-dark-reader/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-12-06 02:12:33 UTC (rev 535766)
+++ PKGBUILD2019-12-06 02:12:51 UTC (rev 535767)
@@ -1,22 +0,0 @@
-# Maintainer: Daniel M. Capella 
-# Contributor: Cookie Engineer 
-
-pkgname=firefox-dark-reader
-pkgver=4.8.5
-pkgrel=1
-pkgdesc='Inverts brightness of web pages and aims to reduce eyestrain while 
browsing the web'
-url=https://darkreader.org/
-arch=('any')
-license=('MIT')
-groups=('firefox-addons')
-conflicts=('firefox-extension-dark-reader')
-replaces=('firefox-extension-dark-reader')
-source=("https://addons.cdn.mozilla.net/user-media/addons/855413/dark_reader-$pkgver-an+fx.xpi;)
-noextract=("${source##*/}")
-sha256sums=('cad415f9952fa01aaf9fb9687d14e4840bfaf4a94d87b22f9f98bd2e57fd2f95')
-
-package() {
-  install -Dm644 "${source##*/}" 
"$pkgdir"/usr/lib/firefox/browser/extensions/ad...@darkreader.org.xpi
-}
-
-# vim:set ts=2 sw=2 et:

Copied: firefox-dark-reader/repos/community-any/PKGBUILD (from rev 535766, 
firefox-dark-reader/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-12-06 02:12:51 UTC (rev 535767)
@@ -0,0 +1,22 @@
+# Maintainer: Daniel M. Capella 
+# Contributor: Cookie Engineer 
+
+pkgname=firefox-dark-reader
+pkgver=4.8.6
+pkgrel=1
+pkgdesc='Inverts brightness of web pages and aims to reduce eyestrain while 
browsing the web'
+url=https://darkreader.org/
+arch=('any')
+license=('MIT')
+groups=('firefox-addons')
+conflicts=('firefox-extension-dark-reader')
+replaces=('firefox-extension-dark-reader')
+source=("https://addons.cdn.mozilla.net/user-media/addons/855413/dark_reader-$pkgver-an+fx.xpi;)
+noextract=("${source##*/}")
+sha256sums=('243aa83be02765b5468b54de53e42f246da93211d25d66f5fad67740a1f3b516')
+
+package() {
+  install -Dm644 "${source##*/}" 
"$pkgdir"/usr/lib/firefox/browser/extensions/ad...@darkreader.org.xpi
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in firefox-dark-reader/trunk (PKGBUILD)

2019-12-05 Thread Daniel M. Capella via arch-commits
Date: Friday, December 6, 2019 @ 02:12:33
  Author: polyzen
Revision: 535766

upgpkg: firefox-dark-reader 4.8.6-1

Modified:
  firefox-dark-reader/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-06 01:43:57 UTC (rev 535765)
+++ PKGBUILD2019-12-06 02:12:33 UTC (rev 535766)
@@ -2,7 +2,7 @@
 # Contributor: Cookie Engineer 
 
 pkgname=firefox-dark-reader
-pkgver=4.8.5
+pkgver=4.8.6
 pkgrel=1
 pkgdesc='Inverts brightness of web pages and aims to reduce eyestrain while 
browsing the web'
 url=https://darkreader.org/
@@ -13,7 +13,7 @@
 replaces=('firefox-extension-dark-reader')
 
source=("https://addons.cdn.mozilla.net/user-media/addons/855413/dark_reader-$pkgver-an+fx.xpi;)
 noextract=("${source##*/}")
-sha256sums=('cad415f9952fa01aaf9fb9687d14e4840bfaf4a94d87b22f9f98bd2e57fd2f95')
+sha256sums=('243aa83be02765b5468b54de53e42f246da93211d25d66f5fad67740a1f3b516')
 
 package() {
   install -Dm644 "${source##*/}" 
"$pkgdir"/usr/lib/firefox/browser/extensions/ad...@darkreader.org.xpi


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

2019-12-05 Thread Santiago Torres-Arias via arch-commits
Date: Friday, December 6, 2019 @ 01:43:57
  Author: sangy
Revision: 535765

archrelease: copy trunk to community-x86_64

Added:
  diffoscope/repos/community-x86_64/PKGBUILD
(from rev 535764, diffoscope/trunk/PKGBUILD)
Deleted:
  diffoscope/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |  190 ++---
 1 file changed, 95 insertions(+), 95 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-12-06 01:43:36 UTC (rev 535764)
+++ PKGBUILD2019-12-06 01:43:57 UTC (rev 535765)
@@ -1,95 +0,0 @@
-# Maintainer: Levente Polyak 
-
-pkgname=diffoscope
-pkgver=131
-pkgrel=1
-pkgdesc='Tool for in-depth comparison of files, archives, and directories'
-url='https://diffoscope.org/'
-arch=('x86_64')
-license=('GPL3')
-depends=('python-magic' 'python-libarchive-c' 'python-setuptools' 
'python-distro' 'python-defusedxml')
-optdepends=(
-  'acl: access control list utilities support'
-  'binutils: binary utilities support'
-  'binwalk: binwalk support'
-  'bzip2: bzip2 utilities support'
-  'cdrtools: ISO utilities support'
-  'colord: ICC profiles support'
-  'cpio: cpio archive support'
-  'diffutils: diff utilities support'
-  'docx2txt: docx comparing support'
-  'dtc: device tree comparing support'
-  'e2fsprogs: Ext2/3/4 filesystem utilities support'
-  'enjarify: Android dex file support'
-  'imagemagick: ImageMagick identify support'
-  'fpc: Free Pascal utilities support'
-  'java-environment: java utilities support'
-  'libcaca: image compare support'
-  'llvm: LLVM bitcode files support'
-  'lz4: lz4 compression support'
-  'odt2txt: odt comparing support'
-  'fontforge: bitmap font utilities support'
-  'gettext: GNU internationalization utilities support'
-  'ghc: haskell utilities support'
-  'giflib: gifbuild utilities support'
-  'gnupg: GNU privacy guard support'
-  'gnumeric: GNOME Spreadsheet support'
-  'mono: mono support'
-  'openssh: OpenSSH key comparing support'
-  'poppler: PDF utilities support'
-  'r: R language support'
-  'sqlite: SQLite support'
-  'squashfs-tools: squashfs filesystem support'
-  #'python-guestfs: guestfs filesystem support'
-  'python-argcomplete: completion support'
-  'python-jsbeautifier: javascript beautifier support'
-  'python-progressbar: show progressbar support'
-  'tcpdump: pcap matching support'
-  'python-tlsh: fuzzy matching supprt'
-  'unzip: zip utilities support'
-  'gzip: gzip utilities support'
-  'tar: tar utilities support'
-# 'wabt: webassembly support' unittest fails
-  'xxd: xxd utilities support'
-  'xz: XZ and LZMA utilities support'
-  'zstd: zst compression'
-)
-makedepends=('help2man' 'python-docutils' 'git')
-checkdepends=(
-  'python-pytest' 'python-jsbeautifier' 'acl' 'binutils' 'bzip2' 'cdrtools' 
'cpio' 'diffutils' 'e2fsprogs' 'enjarify' 'imagemagick'
-  'java-environment=10' 'fontforge' 'gettext' 'ghc' 'gnupg' 'mono' 
'mono-tools' 'poppler' 'sqlite' 'squashfs-tools' 'lz4'
-  'java-environment>=8' 'fontforge' 'gettext' 'ghc' 'gnupg' 'mono' 
'mono-tools' 'poppler' 'sqlite' 'squashfs-tools' 'lz4'
-  'java-environment<=10' 'fontforge' 'gettext' 'ghc' 'gnupg' 'mono' 
'mono-tools' 'poppler' 'sqlite' 'squashfs-tools' 'lz4'
-  'python-tlsh' 'unzip' 'gzip' 'tar' 'tcpdump' 'vim' 'xz' 'llvm' 'colord' 
'fpc' 'openssh' 'odt2txt' 'docx2txt' 'r' 'dtc' 'giflib'
-  'gnumeric' 'python-progressbar' 'binwalk' 'python-argcomplete' 'zstd')
-source=(${pkgname}-${pkgver}::git+https://salsa.debian.org/reproducible-builds/${pkgname}.git?signed#tag=${pkgver})
-sha512sums=('SKIP')
-validpgpkeys=("C2FE4BD271C139B86C533E461E953E27D4311E58") # "Chris Lamb 
"
-
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-  sed '/python-magic/d' -i setup.py
-}
-
-build() {
-  cd ${pkgname}-${pkgver}
-  python setup.py build
-  make -C doc
-}
-
-check() {
-  cd ${pkgname}-${pkgver}
-  PYTHONPATH=".:${PYTHONPATH}" py.test \
--k 'not test_ppu and not test_superblock' # unsquashfs output differs from 
fixture.
-# ppu bug https://salsa.debian.org/reproducible-builds/diffoscope/issues/9
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  python setup.py install --skip-build -O1 --root="${pkgdir}"
-  install -Dm 644 README.rst -t "${pkgdir}/usr/share/doc/${pkgname}"
-  install -Dm 644 doc/diffoscope.1 -t "${pkgdir}/usr/share/man/man1"
-}
-
-# vim: ts=2 sw=2 et:

Copied: diffoscope/repos/community-x86_64/PKGBUILD (from rev 535764, 
diffoscope/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-12-06 01:43:57 UTC (rev 535765)
@@ -0,0 +1,95 @@
+# Maintainer: Levente Polyak 
+
+pkgname=diffoscope
+pkgver=133
+pkgrel=1
+pkgdesc='Tool for in-depth comparison of files, archives, and directories'
+url='https://diffoscope.org/'
+arch=('x86_64')
+license=('GPL3')
+depends=('python-magic' 'python-libarchive-c' 'python-setuptools' 
'python-distro' 'python-defusedxml')

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

2019-12-05 Thread Santiago Torres-Arias via arch-commits
Date: Friday, December 6, 2019 @ 01:43:36
  Author: sangy
Revision: 535764

upgpkg: diffoscope 133-1

Modified:
  diffoscope/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-05 23:09:31 UTC (rev 535763)
+++ PKGBUILD2019-12-06 01:43:36 UTC (rev 535764)
@@ -1,7 +1,7 @@
 # Maintainer: Levente Polyak 
 
 pkgname=diffoscope
-pkgver=131
+pkgver=133
 pkgrel=1
 pkgdesc='Tool for in-depth comparison of files, archives, and directories'
 url='https://diffoscope.org/'


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

2019-12-05 Thread Levente Polyak via arch-commits
Date: Friday, December 6, 2019 @ 00:34:24
  Author: anthraxx
Revision: 370452

archrelease: copy trunk to extra-any

Added:
  thunderbird-i18n/repos/extra-any/PKGBUILD
(from rev 370451, thunderbird-i18n/trunk/PKGBUILD)
Deleted:
  thunderbird-i18n/repos/extra-any/PKGBUILD

--+
 PKGBUILD |  306 ++---
 1 file changed, 153 insertions(+), 153 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-12-06 00:34:09 UTC (rev 370451)
+++ PKGBUILD2019-12-06 00:34:24 UTC (rev 370452)
@@ -1,153 +0,0 @@
-# Maintainer: Levente Polyak 
-# Maintainer: Jan de Groot 
-# Contributor: Andrea Scarpino 
-# Contributor: Thomas Baechler 
-
-pkgbase=thunderbird-i18n
-pkgver=68.2.2
-pkgrel=1
-pkgdesc='Language pack for Thunderbird'
-url='https://www.mozilla.org/thunderbird'
-arch=('any')
-license=('MPL' 'GPL')
-
-_languages=(
-  'ar "Arabic"'
-  'ast"Asturian"'
-  'be "Belarusian"'
-  'bg "Bulgarian"'
-  'br "Breton"'
-  'ca "Catalan"'
-  'cs "Czech"'
-  'cy "Welsh"'
-  'da "Danish"'
-  'de "German"'
-  'dsb"Lower Sorbian"'
-  'el "Greek"'
-  'en-GB  "English (British)"'
-  'en-US  "English (US)"'
-  'es-AR  "Spanish (Argentina)"'
-  'es-ES  "Spanish (Spain)"'
-  'et "Estonian"'
-  'eu "Basque"'
-  'fi "Finnish"'
-  'fr "French"'
-  'fy-NL  "Frisian"'
-  'ga-IE  "Irish"'
-  'gd "Gaelic (Scotland)"'
-  'gl "Galician"'
-  'he "Hebrew"'
-  'hr "Croatian"'
-  'hsb"Upper Sorbian"'
-  'hu "Hungarian"'
-  'hy-AM  "Armenian"'
-  'id "Indonesian"'
-  'is "Icelandic"'
-  'it "Italian"'
-  'ja "Japanese"'
-  'ko "Korean"'
-  'lt "Lithuanian"'
-  'nb-NO  "Norwegian (Bokmål)"'
-  'nl "Dutch"'
-  'nn-NO  "Norwegian (Nynorsk)"'
-  'pl "Polish"'
-  'pt-BR  "Portuguese (Brazilian)"'
-  'pt-PT  "Portuguese (Portugal)"'
-  'rm "Romansh"'
-  'ro "Romanian"'
-  'ru "Russian"'
-  'si "Sinhala"'
-  'sk "Slovak"'
-  'sl "Slovenian"'
-  'sq "Albanian"'
-  'sr "Serbian"'
-  'sv-SE  "Swedish"'
-  'tr "Turkish"'
-  'uk "Ukrainian"'
-  'vi "Vietnamese"'
-  'zh-CN  "Chinese (Simplified)"'
-  'zh-TW  "Chinese (Traditional)"'
-)
-
-pkgname=()
-source=()
-_url=https://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases/$pkgver/linux-x86_64/xpi
-
-for _lang in "${_languages[@]}"; do
-  _locale=${_lang%% *}
-  _pkgname=thunderbird-i18n-${_locale,,}
-
-  pkgname+=($_pkgname)
-  source+=("thunderbird-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 Thunderbird"
-  depends=("thunderbird>=$pkgver")
-  install -Dm644 thunderbird-i18n-$pkgver-$1.xpi \
-
"$pkgdir/usr/lib/thunderbird/extensions/langpack-$1...@thunderbird.mozilla.org.xpi"
-}
-
-sha256sums=('2acdff0cbaf14a5a3c9ffa81b685e83799534f9cec16f8f9bc4d8833c3fa5520'
-'d1996bd2d303e99797502598e27d06e30398f4a4dad71456e2397dd86d4ba468'
-'bbf537bfb6e311d2d51a76ed1f39b19b660e9ac489329ac811c5ae6fd4898fb4'
-'47b4801e9e429e6df548a8c71694e53b7cbadf9028a234e60d9ce911ad66cb89'
-'1816ed38297d4eac411e87d9b9f8d6f3f2ca5350350d78275e2d1e4a0d44405a'
-'a019e3d620853bb7ab2aa810076d2c59a899ab9db7003b4236d83c9ad557243a'
-'5cb5c731576e27c461da63be77438e08dd234304c3d40f5bc4d83a46b0233f4c'
-'2b4c276544328e7e65ab83bcdd682c5b045a7c9abd1c6f674992491ce4e78d72'
-'de467261a287708351e37a30066d1a822972984ba63f664e384c1b3d07837125'
-'9bf4d0a3a1168054741547d4bb6c3a5d9c4731967f9e2a5da715d12aff2a59a8'
-'5780e1b4d8e0aaf7a7747ee2e2d84971360c51cba28275c345aa327104299594'
-'c35993609894be6b9f476fd0a0306b3ead5c465533bb5700197bf05cbe1dc897'
-'b2b5f3fc1cbb6929b1ab39f32978ed225fd6980c77b454f1224bf6a29f7b5f3b'
-'1119a68ed2fcb4a1fc800147f0a19fc1ab9c9198487f56b553c521ad6368eeb2'
-'9c3402f9f3d3560510baecced305bf7daf7825f3647a41164ce4250acb550a39'
-'678eef4bc2c85929445f4f9e8abc5a911d14bfa3006c926483e88b490b10a99c'
-'4354263e2a1d5f020cb7b07026f6c1de298d82ede934453762772b314f3ccbbf'
-'40b262811c33e2089cffec486ad2467ce60010a6578393447e00403fac1922b6'
-'81100e9c6c9f255bd7370ad55d614aa5da02b5a8ebcb22893836e6e31155e583'
-'029ef0e9300a8e3ee03b7def66008834386f760eda957734a97c84b716f87763'
-'3b7d8c41d9c905ad4d6548e32f61a60e10a4276be76f75974338b7d0a4b30c5a'
-'d988db0ad5b830de542b53aca39240d9273c7fd194979a45f6909b6dc72e81d6'
-'81387349250110510e3bef754669508e55f0e8d97120f1824569cb4cef34dae9'
-'c84421de6b80244266435c13897cfe589b5033532496dd170c15d54e9786c176'
-

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

2019-12-05 Thread Levente Polyak via arch-commits
Date: Friday, December 6, 2019 @ 00:34:09
  Author: anthraxx
Revision: 370451

upgpkg: thunderbird-i18n 68.3.0-1

Modified:
  thunderbird-i18n/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-06 00:06:02 UTC (rev 370450)
+++ PKGBUILD2019-12-06 00:34:09 UTC (rev 370451)
@@ -4,7 +4,7 @@
 # Contributor: Thomas Baechler 
 
 pkgbase=thunderbird-i18n
-pkgver=68.2.2
+pkgver=68.3.0
 pkgrel=1
 pkgdesc='Language pack for Thunderbird'
 url='https://www.mozilla.org/thunderbird'
@@ -94,60 +94,60 @@
 
"$pkgdir/usr/lib/thunderbird/extensions/langpack-$1...@thunderbird.mozilla.org.xpi"
 }
 
-sha256sums=('2acdff0cbaf14a5a3c9ffa81b685e83799534f9cec16f8f9bc4d8833c3fa5520'
-'d1996bd2d303e99797502598e27d06e30398f4a4dad71456e2397dd86d4ba468'
-'bbf537bfb6e311d2d51a76ed1f39b19b660e9ac489329ac811c5ae6fd4898fb4'
-'47b4801e9e429e6df548a8c71694e53b7cbadf9028a234e60d9ce911ad66cb89'
-'1816ed38297d4eac411e87d9b9f8d6f3f2ca5350350d78275e2d1e4a0d44405a'
-'a019e3d620853bb7ab2aa810076d2c59a899ab9db7003b4236d83c9ad557243a'
-'5cb5c731576e27c461da63be77438e08dd234304c3d40f5bc4d83a46b0233f4c'
-'2b4c276544328e7e65ab83bcdd682c5b045a7c9abd1c6f674992491ce4e78d72'
-'de467261a287708351e37a30066d1a822972984ba63f664e384c1b3d07837125'
-'9bf4d0a3a1168054741547d4bb6c3a5d9c4731967f9e2a5da715d12aff2a59a8'
-'5780e1b4d8e0aaf7a7747ee2e2d84971360c51cba28275c345aa327104299594'
-'c35993609894be6b9f476fd0a0306b3ead5c465533bb5700197bf05cbe1dc897'
-'b2b5f3fc1cbb6929b1ab39f32978ed225fd6980c77b454f1224bf6a29f7b5f3b'
-'1119a68ed2fcb4a1fc800147f0a19fc1ab9c9198487f56b553c521ad6368eeb2'
-'9c3402f9f3d3560510baecced305bf7daf7825f3647a41164ce4250acb550a39'
-'678eef4bc2c85929445f4f9e8abc5a911d14bfa3006c926483e88b490b10a99c'
-'4354263e2a1d5f020cb7b07026f6c1de298d82ede934453762772b314f3ccbbf'
-'40b262811c33e2089cffec486ad2467ce60010a6578393447e00403fac1922b6'
-'81100e9c6c9f255bd7370ad55d614aa5da02b5a8ebcb22893836e6e31155e583'
-'029ef0e9300a8e3ee03b7def66008834386f760eda957734a97c84b716f87763'
-'3b7d8c41d9c905ad4d6548e32f61a60e10a4276be76f75974338b7d0a4b30c5a'
-'d988db0ad5b830de542b53aca39240d9273c7fd194979a45f6909b6dc72e81d6'
-'81387349250110510e3bef754669508e55f0e8d97120f1824569cb4cef34dae9'
-'c84421de6b80244266435c13897cfe589b5033532496dd170c15d54e9786c176'
-'529bc6f119676f24f5c6f07ebc90cedf47f171bd5d3be283fe1f05619692dcf8'
-'7c6faeb4d6d31f8d63888743efc0e022a33aa4fe7b3723e2be9761ae93350143'
-'5c3656d28a02f0ab8fad7bf77f6e91f73e1b5ff974cc694f902e205c4f4c9e4e'
-'d93076d473740c8d026c6a4f257638ea6ad142f0006c18ebc9009da6e58d7cee'
-'f2771abceca082cfbef42892681c985e152ece1862f6a00d61f0ce5721f50c30'
-'93d1c3b1c46eae7da2fad7ab87835466576c7c570f3d791d61a132c3f2b26761'
-'ec7d6e3f80dd995a9b4579264a8158cd7d806e6f9507dffe1ba9fd51ef0721a5'
-'9185f37fc9937d5fcdef097927dbbace6a4381dadbade8d25775a1146f327d90'
-'ebf95de59e1b75d318142b79d9bb991de5965cc8381963806c545f8a50319396'
-'13ca0c4ae33c6b648bd1be7873ab5a8dbd7d18798088130b2f28f27997c04165'
-'f893529c2829a41ea10f90466263b925e58095e0f1c12b249fdc37c21d7a7237'
-'980a0ad5b85fdbe1a71c2ff62d9aa15006aeaf5eb4740f6a86173a8c04cf2b3c'
-'007d7d8a464805809815bbc5b22127a907af5eb4249d243815540e6e6595c3fe'
-'358e6d7148875b20b3174a4370e206ddf9bc49fcadcbbfed95eb995235bfa36e'
-'483578617e505e35d281670cda5209d90c8ae57311c871eb5c7fbbd6669c28e9'
-'a3f0ba8dbcb6c8f3f93230ac4623f61b37a2dfab6849973075b6d679f4da2e1e'
-'5eab0eed85cd54820d5233c2424dde6c0c17051b3233dda2c3b6deb6c5ef4ac2'
-'0768bcd4aea17a3cee81c24c470bcdbc33aef2234dd0246abc34a9a1c302bfa2'
-'f1e5ff6a29c86be385a3cf7d43b0e81d558f649d37a8bf05a6ded86d017dbea3'
-'5828e2e8f6e698f720420dc80c25fe1a8fa8682dd1ec2b8e90b92976dd695b4a'
-'1be00b33917f48ffb42793c519387adb37344db92bc68b929883ce05f500e552'
-'a54774f51ba5d589a7e34f5a70363e853b72ad9d73d4789d9582949e77cda9b6'
-'edb3e82ca73329095c527bfa8242c7b7f8225d5ac13bb3236b5751e98dcdb8df'
-'ab1fc24e27076c94b5d1a12b952cf63f8be7da6ecafdb1d694d89502b49013ca'
-'8892fbf5a9927eb2f27180e0d393c862d4f8650544e6fd6f6d9199f3beb36c50'
-'f7e4458723e142011b3ac0a11548f284d99b4539ae4cc5e3d44b2d5dc8b9f5c0'
-'efb32887d7179f421a26ba00489edaa117c6d60a3e840f7cdcaf3937146aedaa'
-'5f0790bef02d6b89dedb3e3620104e3f8a83d0ec7faa6912b81f25f8cb2dc002'
-

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

2019-12-05 Thread Gaëtan Bisson via arch-commits
Date: Friday, December 6, 2019 @ 00:06:02
  Author: bisson
Revision: 370450

archrelease: copy trunk to extra-x86_64

Added:
  
djvulibre/repos/extra-x86_64/0001-always-assume-that-cpuid-works-on-x86_64.patch
(from rev 370449, 
djvulibre/trunk/0001-always-assume-that-cpuid-works-on-x86_64.patch)
  djvulibre/repos/extra-x86_64/PKGBUILD
(from rev 370449, djvulibre/trunk/PKGBUILD)
Deleted:
  djvulibre/repos/extra-x86_64/PKGBUILD

-+
 0001-always-assume-that-cpuid-works-on-x86_64.patch |   36 
 PKGBUILD|   75 +-
 2 files changed, 77 insertions(+), 34 deletions(-)

Copied: 
djvulibre/repos/extra-x86_64/0001-always-assume-that-cpuid-works-on-x86_64.patch
 (from rev 370449, 
djvulibre/trunk/0001-always-assume-that-cpuid-works-on-x86_64.patch)
===
--- 0001-always-assume-that-cpuid-works-on-x86_64.patch 
(rev 0)
+++ 0001-always-assume-that-cpuid-works-on-x86_64.patch 2019-12-06 00:06:02 UTC 
(rev 370450)
@@ -0,0 +1,36 @@
+From 8407dd3421f720ab2e1a61e3f1e60e08967f98db Mon Sep 17 00:00:00 2001
+From: Leon Bottou 
+Date: Sun, 7 Oct 2018 18:04:48 -0400
+Subject: [PATCH] always assume that cpuid works on x86_64
+
+---
+ libdjvu/MMX.cpp | 12 +++-
+ 1 file changed, 3 insertions(+), 9 deletions(-)
+
+diff --git a/libdjvu/MMX.cpp b/libdjvu/MMX.cpp
+index e70fdd8..c0d1a34 100644
+--- a/libdjvu/MMX.cpp
 b/libdjvu/MMX.cpp
+@@ -169,16 +169,10 @@ MMXControl::enable_mmx()
+ #endif
+ #if defined(MMX) && defined(__GNUC__) && defined(__x86_64__)
+   // Detection of MMX for GCC
+-  __asm__ volatile (// Check that CR0:EM is clear
+-"xorl %%edx,%%edx\n\t"
+-"smsw %%ax\n\t"
+-"andl $4,%%eax\n\t"
+-"jnz 1f\n\t"
+-// Execute CPUID
++  __asm__ volatile (// Execute CPUID
+ "movl $1,%%eax\n\t"
+-"cpuid\n"
+-// Finish
+-  "1:\tmovl %%edx, %0"
++"cpuid\n\t"
++  "movl %%edx, %0"
+ : "=m" (cpuflags) :
+ : "eax","ebx","ecx","edx");
+ #endif
+-- 
+2.24.0
+

Deleted: PKGBUILD
===
--- PKGBUILD2019-12-06 00:05:40 UTC (rev 370449)
+++ PKGBUILD2019-12-06 00:06:02 UTC (rev 370450)
@@ -1,34 +0,0 @@
-# Maintainer: Gaetan Bisson 
-# Maintainer: Jan de Groot 
-# Contributor: mgushee
-
-pkgname=djvulibre
-pkgver=3.5.27
-pkgrel=4
-pkgdesc="Suite to create, manipulate and view DjVu ('déjà vu') documents"
-url='http://djvu.sourceforge.net/'
-arch=('x86_64')
-license=('GPL2')
-makedepends=('librsvg')
-depends=('libtiff' 'hicolor-icon-theme')
-source=("https://downloads.sourceforge.net/project/djvu/DjVuLibre/${pkgver}/djvulibre-${pkgver}.tar.gz;)
-sha256sums=('e69668252565603875fb88500cde02bf93d12d48a3884e472696c896e81f505f')
-
-conflicts=('libdjvu')
-provides=("libdjvu=${pkgver}")
-replaces=('libdjvu')
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   ./autogen.sh
-   ./configure --prefix=/usr --disable-desktopfiles
-   make
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   make DESTDIR="${pkgdir}" install
-   for sz in 22 32 48 64; do
-   install -Dm644 desktopfiles/prebuilt-hi${sz}-djvu.png 
"${pkgdir}/usr/share/icons/hicolor/${sz}x${sz}/mimetypes/image-vnd.djvu.mime.png"
-   done
-}

Copied: djvulibre/repos/extra-x86_64/PKGBUILD (from rev 370449, 
djvulibre/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-12-06 00:06:02 UTC (rev 370450)
@@ -0,0 +1,41 @@
+# Maintainer: Gaetan Bisson 
+# Maintainer: Jan de Groot 
+# Contributor: mgushee
+
+pkgname=djvulibre
+pkgver=3.5.27
+pkgrel=5
+pkgdesc="Suite to create, manipulate and view DjVu ('déjà vu') documents"
+url='http://djvu.sourceforge.net/'
+arch=('x86_64')
+license=('GPL2')
+makedepends=('librsvg')
+depends=('libtiff' 'hicolor-icon-theme')
+source=("https://downloads.sourceforge.net/project/djvu/DjVuLibre/${pkgver}/djvulibre-${pkgver}.tar.gz;
+'0001-always-assume-that-cpuid-works-on-x86_64.patch')
+sha256sums=('e69668252565603875fb88500cde02bf93d12d48a3884e472696c896e81f505f'
+'35654b433a7bbf0bf7e039385a80034776d5134bc59ff82ef74170ef4bbc86ce')
+
+conflicts=('libdjvu')
+provides=("libdjvu=${pkgver}")
+replaces=('libdjvu')
+
+prepare() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   patch -p1 -i ../0001-always-assume-that-cpuid-works-on-x86_64.patch
+}
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./autogen.sh
+   ./configure --prefix=/usr --disable-desktopfiles
+   make
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make 

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

2019-12-05 Thread Gaëtan Bisson via arch-commits
Date: Friday, December 6, 2019 @ 00:05:40
  Author: bisson
Revision: 370449

fix https://sourceforge.net/p/djvu/bugs/293

Added:
  djvulibre/trunk/0001-always-assume-that-cpuid-works-on-x86_64.patch
Modified:
  djvulibre/trunk/PKGBUILD

-+
 0001-always-assume-that-cpuid-works-on-x86_64.patch |   36 ++
 PKGBUILD|   13 +-
 2 files changed, 46 insertions(+), 3 deletions(-)

Added: 0001-always-assume-that-cpuid-works-on-x86_64.patch
===
--- 0001-always-assume-that-cpuid-works-on-x86_64.patch 
(rev 0)
+++ 0001-always-assume-that-cpuid-works-on-x86_64.patch 2019-12-06 00:05:40 UTC 
(rev 370449)
@@ -0,0 +1,36 @@
+From 8407dd3421f720ab2e1a61e3f1e60e08967f98db Mon Sep 17 00:00:00 2001
+From: Leon Bottou 
+Date: Sun, 7 Oct 2018 18:04:48 -0400
+Subject: [PATCH] always assume that cpuid works on x86_64
+
+---
+ libdjvu/MMX.cpp | 12 +++-
+ 1 file changed, 3 insertions(+), 9 deletions(-)
+
+diff --git a/libdjvu/MMX.cpp b/libdjvu/MMX.cpp
+index e70fdd8..c0d1a34 100644
+--- a/libdjvu/MMX.cpp
 b/libdjvu/MMX.cpp
+@@ -169,16 +169,10 @@ MMXControl::enable_mmx()
+ #endif
+ #if defined(MMX) && defined(__GNUC__) && defined(__x86_64__)
+   // Detection of MMX for GCC
+-  __asm__ volatile (// Check that CR0:EM is clear
+-"xorl %%edx,%%edx\n\t"
+-"smsw %%ax\n\t"
+-"andl $4,%%eax\n\t"
+-"jnz 1f\n\t"
+-// Execute CPUID
++  __asm__ volatile (// Execute CPUID
+ "movl $1,%%eax\n\t"
+-"cpuid\n"
+-// Finish
+-  "1:\tmovl %%edx, %0"
++"cpuid\n\t"
++  "movl %%edx, %0"
+ : "=m" (cpuflags) :
+ : "eax","ebx","ecx","edx");
+ #endif
+-- 
+2.24.0
+

Modified: PKGBUILD
===
--- PKGBUILD2019-12-05 23:26:10 UTC (rev 370448)
+++ PKGBUILD2019-12-06 00:05:40 UTC (rev 370449)
@@ -4,7 +4,7 @@
 
 pkgname=djvulibre
 pkgver=3.5.27
-pkgrel=4
+pkgrel=5
 pkgdesc="Suite to create, manipulate and view DjVu ('déjà vu') documents"
 url='http://djvu.sourceforge.net/'
 arch=('x86_64')
@@ -11,13 +11,20 @@
 license=('GPL2')
 makedepends=('librsvg')
 depends=('libtiff' 'hicolor-icon-theme')
-source=("https://downloads.sourceforge.net/project/djvu/DjVuLibre/${pkgver}/djvulibre-${pkgver}.tar.gz;)
-sha256sums=('e69668252565603875fb88500cde02bf93d12d48a3884e472696c896e81f505f')
+source=("https://downloads.sourceforge.net/project/djvu/DjVuLibre/${pkgver}/djvulibre-${pkgver}.tar.gz;
+'0001-always-assume-that-cpuid-works-on-x86_64.patch')
+sha256sums=('e69668252565603875fb88500cde02bf93d12d48a3884e472696c896e81f505f'
+'35654b433a7bbf0bf7e039385a80034776d5134bc59ff82ef74170ef4bbc86ce')
 
 conflicts=('libdjvu')
 provides=("libdjvu=${pkgver}")
 replaces=('libdjvu')
 
+prepare() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   patch -p1 -i ../0001-always-assume-that-cpuid-works-on-x86_64.patch
+}
+
 build() {
cd "${srcdir}/${pkgname}-${pkgver}"
./autogen.sh


[arch-commits] Commit in thunderbird/repos/extra-x86_64 (6 files)

2019-12-05 Thread Levente Polyak via arch-commits
Date: Thursday, December 5, 2019 @ 23:26:10
  Author: anthraxx
Revision: 370448

archrelease: copy trunk to extra-x86_64

Added:
  thunderbird/repos/extra-x86_64/PKGBUILD
(from rev 370447, thunderbird/trunk/PKGBUILD)
  thunderbird/repos/extra-x86_64/thunderbird-rust-1.39.patch
(from rev 370447, thunderbird/trunk/thunderbird-rust-1.39.patch)
  thunderbird/repos/extra-x86_64/thunderbird.desktop
(from rev 370447, thunderbird/trunk/thunderbird.desktop)
Deleted:
  thunderbird/repos/extra-x86_64/PKGBUILD
  thunderbird/repos/extra-x86_64/thunderbird-rust-1.39.patch
  thunderbird/repos/extra-x86_64/thunderbird.desktop

-+
 PKGBUILD|  320 +++---
 thunderbird-rust-1.39.patch |  340 -
 thunderbird.desktop |  346 +-
 3 files changed, 503 insertions(+), 503 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-12-05 23:26:04 UTC (rev 370447)
+++ PKGBUILD2019-12-05 23:26:10 UTC (rev 370448)
@@ -1,160 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Jan Alexander Steffens (heftig) 
-# Contributor: Ionut Biru 
-# Contributor: Alexander Baldeck 
-# Contributor: Dale Blount 
-# Contributor: Anders Bostrom 
-
-pkgname=thunderbird
-pkgver=68.2.2
-pkgrel=2
-pkgdesc='Standalone mail and news reader from mozilla.org'
-url='https://www.mozilla.org/thunderbird/'
-arch=(x86_64)
-license=(MPL GPL LGPL)
-depends=(gtk3 mozilla-common libxt startup-notification mime-types dbus-glib 
alsa-lib
- nss hunspell sqlite ttf-font icu)  # libvpx
-makedepends=(unzip zip diffutils python python2 yasm nasm mesa imake libpulse 
inetutils xorg-server-xvfb
- autoconf2.13 rust clang llvm gtk2 cbindgen nodejs)
-optdepends=('libcanberra: sound support')
-options=(!emptydirs !makeflags)
-source=(https://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases/$pkgver/source/thunderbird-$pkgver.source.tar.xz{,.asc}
-$pkgname.desktop
-thunderbird-rust-1.39.patch)
-sha256sums=('c17edbcde0e9e7599cda16b69b130039f69113b498ea394057cedfae153f0dd3'
-'SKIP'
-'e44c55501f650a4e80b9c353b81f33e07ca65808db831eff6ca616aded233827'
-'08834ef1c2dd685edd40dea20dfa9d4b889f5c387385ac329a162eeff6cf90be')
-validpgpkeys=(14F26682D0916CDD81E37B6D61B7B526D98F0353) # Mozilla Software 
Releases 
-
-# 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() {
-  cd $pkgname-$pkgver
-
-  patch -p1 -i ../thunderbird-rust-1.39.patch # Fix build with rust 1.39 
(Gentoo)
-
-  echo -n "$_google_api_key" >google-api-key
-  echo -n "$_mozilla_api_key" >mozilla-api-key
-
-  cat >.mozconfig 

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

2019-12-05 Thread Levente Polyak via arch-commits
Date: Thursday, December 5, 2019 @ 23:26:04
  Author: anthraxx
Revision: 370447

upgpkg: thunderbird 68.3.0-1

Modified:
  thunderbird/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-05 22:59:02 UTC (rev 370446)
+++ PKGBUILD2019-12-05 23:26:04 UTC (rev 370447)
@@ -6,8 +6,8 @@
 # Contributor: Anders Bostrom 
 
 pkgname=thunderbird
-pkgver=68.2.2
-pkgrel=2
+pkgver=68.3.0
+pkgrel=1
 pkgdesc='Standalone mail and news reader from mozilla.org'
 url='https://www.mozilla.org/thunderbird/'
 arch=(x86_64)
@@ -21,7 +21,7 @@
 
source=(https://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases/$pkgver/source/thunderbird-$pkgver.source.tar.xz{,.asc}
 $pkgname.desktop
 thunderbird-rust-1.39.patch)
-sha256sums=('c17edbcde0e9e7599cda16b69b130039f69113b498ea394057cedfae153f0dd3'
+sha256sums=('f68cb53deb6c1840cc3f2b1e842bac8ebaf090e9cd89afb376ba0e1ba62820aa'
 'SKIP'
 'e44c55501f650a4e80b9c353b81f33e07ca65808db831eff6ca616aded233827'
 '08834ef1c2dd685edd40dea20dfa9d4b889f5c387385ac329a162eeff6cf90be')


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

2019-12-05 Thread Levente Polyak via arch-commits
Date: Thursday, December 5, 2019 @ 23:09:26
  Author: anthraxx
Revision: 535762

upgpkg: clamtk 6.02-1

Modified:
  clamtk/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-05 23:04:31 UTC (rev 535761)
+++ PKGBUILD2019-12-05 23:09:26 UTC (rev 535762)
@@ -2,7 +2,7 @@
 # Contributor: Blaž Tomažič 
 
 pkgname=clamtk
-pkgver=6.00
+pkgver=6.02
 pkgrel=1
 pkgdesc='Easy to use, light-weight, on-demand virus scanner for Linux systems'
 url='https://dave-theunsub.github.io/clamtk/'
@@ -12,7 +12,7 @@
  'perl-lwp-protocol-https' 'perl-text-csv' 'perl-json' 'python' 
'zenity' 'desktop-file-utils'
  'gnome-icon-theme' 'cron')
 
source=(https://bitbucket.org/davem_/clamtk-gtk3/downloads/clamtk-${pkgver}.tar.xz{,.asc})
-sha512sums=('5b8434532142f340caf5b16f95da0f5d0f3910c3c834ef963c1c8a9d7c1d032555c38fcb3f6195ad5f6cacde796824b68432bc1d16460a34976f0608eee47fdc'
+sha512sums=('df619da28ebadb218bb2f9ab2c9be1804f2df5e7e444762f2b1eb3ce0e830b07ebfd05b8cb9c7d79a9e3523c9837b00b52d0e06265c62d782487546f15b0349f'
 'SKIP')
 validpgpkeys=('5DD47B3B121EE5C354A20305F51D19546ADA59DE') # Dave Mauroni 

 


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

2019-12-05 Thread Levente Polyak via arch-commits
Date: Thursday, December 5, 2019 @ 23:09:31
  Author: anthraxx
Revision: 535763

archrelease: copy trunk to community-any

Added:
  clamtk/repos/community-any/PKGBUILD
(from rev 535762, clamtk/trunk/PKGBUILD)
Deleted:
  clamtk/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-12-05 23:09:26 UTC (rev 535762)
+++ PKGBUILD2019-12-05 23:09:31 UTC (rev 535763)
@@ -1,39 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Blaž Tomažič 
-
-pkgname=clamtk
-pkgver=6.00
-pkgrel=1
-pkgdesc='Easy to use, light-weight, on-demand virus scanner for Linux systems'
-url='https://dave-theunsub.github.io/clamtk/'
-arch=('any')
-license=('GPL')
-depends=('clamav' 'perl' 'perl-gtk3' 'perl-locale-gettext' 'perl-libwww' 
'perl-http-message'
- 'perl-lwp-protocol-https' 'perl-text-csv' 'perl-json' 'python' 
'zenity' 'desktop-file-utils'
- 'gnome-icon-theme' 'cron')
-source=(https://bitbucket.org/davem_/clamtk-gtk3/downloads/clamtk-${pkgver}.tar.xz{,.asc})
-sha512sums=('5b8434532142f340caf5b16f95da0f5d0f3910c3c834ef963c1c8a9d7c1d032555c38fcb3f6195ad5f6cacde796824b68432bc1d16460a34976f0608eee47fdc'
-'SKIP')
-validpgpkeys=('5DD47B3B121EE5C354A20305F51D19546ADA59DE') # Dave Mauroni 

-
-package() {
-  cd ${pkgname}-${pkgver}
-
-  install -Dm 755 clamtk -t "${pkgdir}/usr/bin"
-  for f in lib/* ; do
-install -Dm 644 "${f}" 
"${pkgdir}/usr/share/perl5/vendor_perl/ClamTk/$(basename "${f}")"
-  done
-
-  for f in po/*.mo ; do
-install -Dm 644 "${f}" "${pkgdir}/usr/share/locale/$(basename "${f}" 
.mo)/LC_MESSAGES/clamtk.mo"
-  done
-
-  install -Dm 644 clamtk.1.gz -t "${pkgdir}/usr/share/man/man1"
-  install -Dm 644 CHANGES DISCLAIMER README.md -t 
"${pkgdir}/usr/share/doc/${pkgname}"
-  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
-
-  install -Dm 644 images/clamtk.{xpm,png} -t "${pkgdir}/usr/share/pixmaps"
-  install -Dm 644 clamtk.desktop -t "${pkgdir}/usr/share/applications"
-}
-
-# vim: ts=2 sw=2 et:

Copied: clamtk/repos/community-any/PKGBUILD (from rev 535762, 
clamtk/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-12-05 23:09:31 UTC (rev 535763)
@@ -0,0 +1,39 @@
+# Maintainer: Levente Polyak 
+# Contributor: Blaž Tomažič 
+
+pkgname=clamtk
+pkgver=6.02
+pkgrel=1
+pkgdesc='Easy to use, light-weight, on-demand virus scanner for Linux systems'
+url='https://dave-theunsub.github.io/clamtk/'
+arch=('any')
+license=('GPL')
+depends=('clamav' 'perl' 'perl-gtk3' 'perl-locale-gettext' 'perl-libwww' 
'perl-http-message'
+ 'perl-lwp-protocol-https' 'perl-text-csv' 'perl-json' 'python' 
'zenity' 'desktop-file-utils'
+ 'gnome-icon-theme' 'cron')
+source=(https://bitbucket.org/davem_/clamtk-gtk3/downloads/clamtk-${pkgver}.tar.xz{,.asc})
+sha512sums=('df619da28ebadb218bb2f9ab2c9be1804f2df5e7e444762f2b1eb3ce0e830b07ebfd05b8cb9c7d79a9e3523c9837b00b52d0e06265c62d782487546f15b0349f'
+'SKIP')
+validpgpkeys=('5DD47B3B121EE5C354A20305F51D19546ADA59DE') # Dave Mauroni 

+
+package() {
+  cd ${pkgname}-${pkgver}
+
+  install -Dm 755 clamtk -t "${pkgdir}/usr/bin"
+  for f in lib/* ; do
+install -Dm 644 "${f}" 
"${pkgdir}/usr/share/perl5/vendor_perl/ClamTk/$(basename "${f}")"
+  done
+
+  for f in po/*.mo ; do
+install -Dm 644 "${f}" "${pkgdir}/usr/share/locale/$(basename "${f}" 
.mo)/LC_MESSAGES/clamtk.mo"
+  done
+
+  install -Dm 644 clamtk.1.gz -t "${pkgdir}/usr/share/man/man1"
+  install -Dm 644 CHANGES DISCLAIMER README.md -t 
"${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+
+  install -Dm 644 images/clamtk.{xpm,png} -t "${pkgdir}/usr/share/pixmaps"
+  install -Dm 644 clamtk.desktop -t "${pkgdir}/usr/share/applications"
+}
+
+# vim: ts=2 sw=2 et:


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

2019-12-05 Thread Levente Polyak via arch-commits
Date: Thursday, December 5, 2019 @ 23:04:25
  Author: anthraxx
Revision: 535760

upgpkg: python-scrypt 0.8.13-1

Modified:
  python-scrypt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-05 22:48:40 UTC (rev 535759)
+++ PKGBUILD2019-12-05 23:04:25 UTC (rev 535760)
@@ -2,17 +2,17 @@
 # Contributor: Daniel Micay 
 
 pkgname=python-scrypt
-pkgver=0.8.7
-pkgrel=3
+pkgver=0.8.13
+pkgrel=1
 pkgdesc='Bindings for the scrypt key derivation function library'
 arch=('x86_64')
 url='https://pypi.python.org/pypi/scrypt/'
 license=('BSD')
-depends=('python' 'glibc')
+depends=('python' 'glibc' 'openssl')
 makedepends=('python-setuptools')
 options=('!emptydirs')
 source=(https://pypi.io/packages/source/s/scrypt/scrypt-${pkgver}.tar.gz)
-sha512sums=('2919ceed50888bdfdad846db1ef5ec6ac8769ef00a6c44bbe2837318a4809854c2f4c957e7035593aa6cc47a42f431bb3a86004f9e21c1f33ade8a6f8f90be84')
+sha512sums=('a65e24b0a7dbe02e16c0b38b52c66549f36370e267aacf348a107cb980221806ca783cee0caa95ab6af978dd2b0d8efdb6b06798bb43742d4623bd8f6535e9a5')
 
 build() {
   cd scrypt-${pkgver}


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

2019-12-05 Thread Levente Polyak via arch-commits
Date: Thursday, December 5, 2019 @ 23:04:31
  Author: anthraxx
Revision: 535761

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-12-05 23:04:25 UTC (rev 535760)
+++ PKGBUILD2019-12-05 23:04:31 UTC (rev 535761)
@@ -1,34 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Daniel Micay 
-
-pkgname=python-scrypt
-pkgver=0.8.7
-pkgrel=3
-pkgdesc='Bindings for the scrypt key derivation function library'
-arch=('x86_64')
-url='https://pypi.python.org/pypi/scrypt/'
-license=('BSD')
-depends=('python' 'glibc')
-makedepends=('python-setuptools')
-options=('!emptydirs')
-source=(https://pypi.io/packages/source/s/scrypt/scrypt-${pkgver}.tar.gz)
-sha512sums=('2919ceed50888bdfdad846db1ef5ec6ac8769ef00a6c44bbe2837318a4809854c2f4c957e7035593aa6cc47a42f431bb3a86004f9e21c1f33ade8a6f8f90be84')
-
-build() {
-  cd scrypt-${pkgver}
-  python setup.py build
-}
-
-check() {
-  cd scrypt-${pkgver}
-  python setup.py test
-}
-
-package() {
-  cd scrypt-${pkgver}
-  python setup.py install --root="${pkgdir}" -O1 --skip-build
-  install -Dm 644 README.rst -t "${pkgdir}/usr/share/doc/${pkgname}"
-  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
-}
-
-# vim: ts=2 sw=2 et:

Copied: python-scrypt/repos/community-x86_64/PKGBUILD (from rev 535760, 
python-scrypt/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-12-05 23:04:31 UTC (rev 535761)
@@ -0,0 +1,34 @@
+# Maintainer: Levente Polyak 
+# Contributor: Daniel Micay 
+
+pkgname=python-scrypt
+pkgver=0.8.13
+pkgrel=1
+pkgdesc='Bindings for the scrypt key derivation function library'
+arch=('x86_64')
+url='https://pypi.python.org/pypi/scrypt/'
+license=('BSD')
+depends=('python' 'glibc' 'openssl')
+makedepends=('python-setuptools')
+options=('!emptydirs')
+source=(https://pypi.io/packages/source/s/scrypt/scrypt-${pkgver}.tar.gz)
+sha512sums=('a65e24b0a7dbe02e16c0b38b52c66549f36370e267aacf348a107cb980221806ca783cee0caa95ab6af978dd2b0d8efdb6b06798bb43742d4623bd8f6535e9a5')
+
+build() {
+  cd scrypt-${pkgver}
+  python setup.py build
+}
+
+check() {
+  cd scrypt-${pkgver}
+  python setup.py test
+}
+
+package() {
+  cd scrypt-${pkgver}
+  python setup.py install --root="${pkgdir}" -O1 --skip-build
+  install -Dm 644 README.rst -t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:


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

2019-12-05 Thread Levente Polyak via arch-commits
Date: Thursday, December 5, 2019 @ 22:58:54
  Author: anthraxx
Revision: 370445

upgpkg: clamav 0.102.1-1

Modified:
  clamav/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-05 22:40:57 UTC (rev 370444)
+++ PKGBUILD2019-12-05 22:58:54 UTC (rev 370445)
@@ -4,7 +4,7 @@
 # Contributor: Gaetan Bisson 
 
 pkgname=clamav
-pkgver=0.101.4
+pkgver=0.102.1
 pkgrel=1
 pkgdesc='Anti-virus toolkit for Unix'
 url='https://www.clamav.net/'
@@ -22,7 +22,7 @@
 clamav.logrotate
 clamav.tmpfiles
 clamav.sysusers)
-sha512sums=('fae914a95b674fa6bdea044abec702401146590ca0aaaea1245deb1c4770641a794f60ff7b448b24d8c1923150cb7ba230848974837257c3a8ab20ea1e2f86d3'
+sha512sums=('2d0cd2dece771ab8228771f9a95eb0342e756083a0107b2bef31bd2f5f46c36aa692e15d7eb2ea321f535ea4e18c8df043c8663ae350d40fbe1bdb4d073dcb90'
 'SKIP'
 
'9cb168c1c16bb43c99900d7ef34456e3f3b593d4d1943c875a0306bc86fd3872cb78e9e1413dcba93579e01b96d466c9eea1975e24190193663b7986c4525d48'
 
'c5443634399bd87fe0d0192518538ffdb7296a8437b5b0160a0fbd58696b01285de3237e3feb552c0095c49e576832dec2e2b2107eef2be42424ed7edd13cd19'
@@ -73,7 +73,8 @@
 
 check() {
   cd ${pkgname}-${pkgver}
-  make quick-check
+  # TODO: re-enable tests once they are compatible with latest check
+  #make quick-check
 }
 
 package() {


[arch-commits] Commit in clamav/repos/extra-x86_64 (8 files)

2019-12-05 Thread Levente Polyak via arch-commits
Date: Thursday, December 5, 2019 @ 22:59:02
  Author: anthraxx
Revision: 370446

archrelease: copy trunk to extra-x86_64

Added:
  clamav/repos/extra-x86_64/PKGBUILD
(from rev 370445, clamav/trunk/PKGBUILD)
  clamav/repos/extra-x86_64/clamav.logrotate
(from rev 370445, clamav/trunk/clamav.logrotate)
  clamav/repos/extra-x86_64/clamav.sysusers
(from rev 370445, clamav/trunk/clamav.sysusers)
  clamav/repos/extra-x86_64/clamav.tmpfiles
(from rev 370445, clamav/trunk/clamav.tmpfiles)
Deleted:
  clamav/repos/extra-x86_64/PKGBUILD
  clamav/repos/extra-x86_64/clamav.logrotate
  clamav/repos/extra-x86_64/clamav.sysusers
  clamav/repos/extra-x86_64/clamav.tmpfiles

--+
 PKGBUILD |  185 ++---
 clamav.logrotate |   22 +++---
 clamav.sysusers  |2 
 clamav.tmpfiles  |6 -
 4 files changed, 108 insertions(+), 107 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-12-05 22:58:54 UTC (rev 370445)
+++ PKGBUILD2019-12-05 22:59:02 UTC (rev 370446)
@@ -1,92 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Dale Blount 
-# Contributor: Gregor Ibic 
-# Contributor: Gaetan Bisson 
-
-pkgname=clamav
-pkgver=0.101.4
-pkgrel=1
-pkgdesc='Anti-virus toolkit for Unix'
-url='https://www.clamav.net/'
-license=('GPL')
-arch=('x86_64')
-depends=('bzip2' 'libltdl' 'libxml2' 'curl' 'systemd-libs' 'pcre2' 'json-c' 
'libmspack')
-makedepends=('libmilter' 'systemd')
-checkdepends=('check')
-backup=('etc/clamav/clamd.conf'
-'etc/clamav/freshclam.conf'
-'etc/clamav/clamav-milter.conf'
-'etc/logrotate.d/clamav')
-provides=(libclamav.so libclamunrar.so libclamunrar_iface.so)
-source=(https://www.clamav.net/downloads/production/${pkgname}-${pkgver}.tar.gz{,.sig}
-clamav.logrotate
-clamav.tmpfiles
-clamav.sysusers)
-sha512sums=('fae914a95b674fa6bdea044abec702401146590ca0aaaea1245deb1c4770641a794f60ff7b448b24d8c1923150cb7ba230848974837257c3a8ab20ea1e2f86d3'
-'SKIP'
-
'9cb168c1c16bb43c99900d7ef34456e3f3b593d4d1943c875a0306bc86fd3872cb78e9e1413dcba93579e01b96d466c9eea1975e24190193663b7986c4525d48'
-
'c5443634399bd87fe0d0192518538ffdb7296a8437b5b0160a0fbd58696b01285de3237e3feb552c0095c49e576832dec2e2b2107eef2be42424ed7edd13cd19'
-
'b984836f6c34d97b90d81fa5d17361a2e3f8c0cc709e3350a4d25cf088dc04f7bf2504359980c8be489c96b1b8798c60e6da533069d3378d49d4f50f929a2c90')
-validpgpkeys=('65ED513993F08DA06F9639A6F13F9E16BCA5BFAD') # Talos (Talos, 
Cisco Systems Inc.) 
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-  sed -E 's|^(Example)$|#\1|' -i 
etc/{clamd,freshclam,clamav-milter}.conf.sample
-  sed -E 's|#(User) .+|\1 clamav|' -i 
etc/{clamd,freshclam,clamav-milter}.conf.sample
-  sed -E 's|#(LogFile) .+|\1 /var/log/clamav/clamd.log|' -i 
etc/clamd.conf.sample
-  sed -E 's|#(LogTime) .+|\1 yes|' -i etc/clamd.conf.sample 
etc/clamav-milter.conf.sample
-  sed -E 's|#(PidFile) .+|\1 /run/clamav/clamd.pid|' -i etc/clamd.conf.sample
-  sed -E 's|#(TemporaryDirectory) .+|\1 /tmp|' -i 
etc/{clamd,clamav-milter}.conf.sample
-  sed -E 's|#(LocalSocket) .+|\1 /run/clamav/clamd.ctl|' -i 
etc/clamd.conf.sample
-  sed -E 's|#(UpdateLogFile) .+|\1 /var/log/clamav/freshclam.log|' -i 
etc/freshclam.conf.sample
-  sed -E 's|#(DatabaseMirror) .+|\1 database.clamav.net|' -i 
etc/freshclam.conf.sample
-  sed -E 's|#(NotifyClamd) .+|\1 /etc/clamav/clamd.conf|' -i 
etc/freshclam.conf.sample
-  sed -E 's|#(PidFile) .+|\1 /run/clamav/freshclam.pid|' -i 
etc/freshclam.conf.sample
-  sed -E 's|#(LogFile) .+|\1 /var/log/clamav/clamav-milter.log|' -i 
etc/clamav-milter.conf.sample
-  sed -E 's|#(PidFile) .+|\1 /run/clamav/clamav-milter.pid|' -i 
etc/clamav-milter.conf.sample
-  sed -E 
"s|(\\[Unit\\])|\\1\\nWants=network-online.target\\nAfter=network-online.target|"
 -i freshclam/clamav-freshclam.service.in
-  autoreconf -fiv
-}
-
-build() {
-  cd ${pkgname}-${pkgver}
-  # --disable-zlib-vcheck because the configure script thinks that
-  # zlib 1.2.11 is older than 1.2.2
-  ./configure \
---prefix=/usr \
---sbindir=/usr/bin \
---sysconfdir=/etc/clamav \
---with-dbdir=/var/lib/clamav \
---with-user=clamav \
---with-group=clamav \
---with-system-libmspack \
---disable-rpath \
---disable-clamav \
---disable-llvm \
---enable-zlib-vcheck \
---enable-milter \
---enable-clamdtop
-
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-check() {
-  cd ${pkgname}-${pkgver}
-  make quick-check
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-
-  mv "${pkgdir}"/etc/clamav/freshclam.conf{.sample,}
-  mv "${pkgdir}"/etc/clamav/clamd.conf{.sample,}
-  mv "${pkgdir}"/etc/clamav/clamav-milter.conf{.sample,}
-
-  install -Dm 644 ../clamav.sysusers "${pkgdir}"/usr/lib/sysusers.d/clamav.conf
-  install -Dm 644 ../clamav.tmpfiles 

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

2019-12-05 Thread Levente Polyak via arch-commits
Date: Thursday, December 5, 2019 @ 22:48:32
  Author: anthraxx
Revision: 535758

upgpkg: teamspeak3-server 3.10.2-1

Modified:
  teamspeak3-server/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-05 22:31:44 UTC (rev 535757)
+++ PKGBUILD2019-12-05 22:48:32 UTC (rev 535758)
@@ -4,13 +4,13 @@
 # Contributor: EnteEnteEnte 
 
 pkgname=teamspeak3-server
-pkgver=3.10.0
+pkgver=3.10.2
 pkgrel=1
 pkgdesc='TeamSpeak is software for quality voice communication via the 
Internet (server)'
 url='https://www.teamspeak.com/en/'
 arch=('x86_64')
 license=('custom')
-depends=('glibc')
+depends=('glibc' 'gcc-libs')
 optdepends=('mariadb-connector-c: for MariaDB backend')
 backup=(etc/teamspeak3-server.ini
 etc/tsdns_settings.ini)
@@ -23,7 +23,7 @@
 sha256sums=('3739925771a878ded7b4e30c70fa47ea9aa20c2e10a222612e33128637534537'
 '73c38a5e70caf042a5997ae831e33be7ba83e5c31ccca01c257c929569149acd'
 '98e3331a803ce0ff85500a3908a61fe105d47ea3c31affc2f605d8385315ca5b')
-sha256sums_x86_64=('5d0ade1cc3802cae75cf2b1d22b14163154a0d1d77d5aded7e56c826d023d6dd')
+sha256sums_x86_64=('d4262f0d51e682c0c645b36c196ad32dae99a1345420cfad00d52f2af109870d')
 
 if [ "${CARCH}" == "x86_64" ]; then
   _TSARCH='amd64'


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

2019-12-05 Thread Levente Polyak via arch-commits
Date: Thursday, December 5, 2019 @ 22:48:40
  Author: anthraxx
Revision: 535759

archrelease: copy trunk to community-x86_64

Added:
  teamspeak3-server/repos/community-x86_64/PERMISSION.eml
(from rev 535758, teamspeak3-server/trunk/PERMISSION.eml)
  teamspeak3-server/repos/community-x86_64/PKGBUILD
(from rev 535758, teamspeak3-server/trunk/PKGBUILD)
  teamspeak3-server/repos/community-x86_64/teamspeak3-server.ini
(from rev 535758, teamspeak3-server/trunk/teamspeak3-server.ini)
  teamspeak3-server/repos/community-x86_64/teamspeak3-server.install
(from rev 535758, teamspeak3-server/trunk/teamspeak3-server.install)
  teamspeak3-server/repos/community-x86_64/teamspeak3-server.service
(from rev 535758, teamspeak3-server/trunk/teamspeak3-server.service)
Deleted:
  teamspeak3-server/repos/community-x86_64/PERMISSION.eml
  teamspeak3-server/repos/community-x86_64/PKGBUILD
  teamspeak3-server/repos/community-x86_64/teamspeak3-server.ini
  teamspeak3-server/repos/community-x86_64/teamspeak3-server.install
  teamspeak3-server/repos/community-x86_64/teamspeak3-server.service

---+
 PKGBUILD  |  114 ++--
 teamspeak3-server.ini |   56 ++---
 teamspeak3-server.install |   12 ++--
 teamspeak3-server.service |   62 +++
 4 files changed, 122 insertions(+), 122 deletions(-)

Deleted: PERMISSION.eml
===
(Binary files differ)

Copied: teamspeak3-server/repos/community-x86_64/PERMISSION.eml (from rev 
535758, teamspeak3-server/trunk/PERMISSION.eml)
===
(Binary files differ)

Deleted: PKGBUILD
===
--- PKGBUILD2019-12-05 22:48:32 UTC (rev 535758)
+++ PKGBUILD2019-12-05 22:48:40 UTC (rev 535759)
@@ -1,57 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: nyyu 
-# Contributor: Malte Rabenseifner 
-# Contributor: EnteEnteEnte 
-
-pkgname=teamspeak3-server
-pkgver=3.10.0
-pkgrel=1
-pkgdesc='TeamSpeak is software for quality voice communication via the 
Internet (server)'
-url='https://www.teamspeak.com/en/'
-arch=('x86_64')
-license=('custom')
-depends=('glibc')
-optdepends=('mariadb-connector-c: for MariaDB backend')
-backup=(etc/teamspeak3-server.ini
-etc/tsdns_settings.ini)
-install=teamspeak3-server.install
-source=(teamspeak3-server.ini
-teamspeak3-server.service
-PERMISSION.eml)
-source_i686=(https://files.teamspeak-services.com/releases/server/${pkgver}/teamspeak3-server_linux_x86-${pkgver}.tar.bz2)
-source_x86_64=(https://files.teamspeak-services.com/releases/server/${pkgver}/teamspeak3-server_linux_amd64-${pkgver}.tar.bz2)
-sha256sums=('3739925771a878ded7b4e30c70fa47ea9aa20c2e10a222612e33128637534537'
-'73c38a5e70caf042a5997ae831e33be7ba83e5c31ccca01c257c929569149acd'
-'98e3331a803ce0ff85500a3908a61fe105d47ea3c31affc2f605d8385315ca5b')
-sha256sums_x86_64=('5d0ade1cc3802cae75cf2b1d22b14163154a0d1d77d5aded7e56c826d023d6dd')
-
-if [ "${CARCH}" == "x86_64" ]; then
-  _TSARCH='amd64'
-elif [ "${CARCH}" == "i686" ]; then
-  _TSARCH='x86'
-fi
-
-package() {
-  install -Dm 644 teamspeak3-server.ini -t "${pkgdir}/etc"
-  install -Dm 644 
teamspeak3-server_linux_${_TSARCH}/tsdns/tsdns_settings.ini.sample 
"${pkgdir}/etc/tsdns_settings.ini"
-  install -Dm 644 teamspeak3-server.service -t 
"${pkgdir}/usr/lib/systemd/system"
-
-  install -Dm 755 teamspeak3-server_linux_${_TSARCH}/ts3server -t 
"${pkgdir}/usr/bin"
-  install -Dm 755 teamspeak3-server_linux_${_TSARCH}/tsdns/tsdnsserver -t 
"${pkgdir}/usr/bin"
-  install -Dm 644 teamspeak3-server_linux_${_TSARCH}/*.so -t 
"${pkgdir}/usr/lib"
-  install -Dm 644 teamspeak3-server_linux_${_TSARCH}/LICENSE -t 
"${pkgdir}/usr/share/licenses/${pkgname}"
-
-  install -d "${pkgdir}/usr/share/doc/teamspeak3-server" \
-"${pkgdir}/usr/share/teamspeak3-server"
-
-  cp -a teamspeak3-server_linux_${_TSARCH}/doc 
"${pkgdir}/usr/share/doc/teamspeak3-server"
-  cp -a teamspeak3-server_linux_${_TSARCH}/serverquerydocs 
"${pkgdir}/usr/share/doc/teamspeak3-server"
-  cp -a teamspeak3-server_linux_${_TSARCH}/sql 
"${pkgdir}/usr/share/teamspeak3-server"
-
-  find "${pkgdir}/usr/share/teamspeak3-server" -type d -exec chmod 755 {} \;
-  find "${pkgdir}/usr/share/teamspeak3-server" -type f -exec chmod 644 {} \;
-  find "${pkgdir}/usr/share/doc/teamspeak3-server" -type d -exec chmod 755 {} 
\;
-  find "${pkgdir}/usr/share/doc/teamspeak3-server" -type f -exec chmod 644 {} 
\;
-}
-
-# vim: ts=2 sw=2 et:

Copied: teamspeak3-server/repos/community-x86_64/PKGBUILD (from rev 535758, 
teamspeak3-server/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-12-05 22:48:40 UTC (rev 535759)
@@ -0,0 +1,57 @@
+# Maintainer: Levente 

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

2019-12-05 Thread Levente Polyak via arch-commits
Date: Thursday, December 5, 2019 @ 22:40:39
  Author: anthraxx
Revision: 370443

siwtch to HTTPS urls

Modified:
  java8-openjdk/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-05 22:40:18 UTC (rev 370442)
+++ PKGBUILD2019-12-05 22:40:39 UTC (rev 370443)
@@ -11,11 +11,11 @@
 _repo_ver=jdk${_java_ver}u${_jdk_update}-b${_jdk_build}
 pkgrel=1
 arch=('x86_64')
-url='http://openjdk.java.net/'
+url='https://openjdk.java.net/'
 license=('custom')
 makedepends=('java-environment=8' 'ccache' 'cpio' 'unzip' 'zip'
  'libxrender' 'libxtst' 'fontconfig' 'libcups' 'alsa-lib')
-_url_src=http://hg.openjdk.java.net/jdk8u/jdk8u
+_url_src=https://hg.openjdk.java.net/jdk8u/jdk8u
 source=(jdk8u-${_repo_ver}.tar.gz::${_url_src}/archive/${_repo_ver}.tar.gz
 
corba-${_repo_ver}.tar.gz::${_url_src}/corba/archive/${_repo_ver}.tar.gz
 
hotspot-${_repo_ver}.tar.gz::${_url_src}/hotspot/archive/${_repo_ver}.tar.gz


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

2019-12-05 Thread Levente Polyak via arch-commits
Date: Thursday, December 5, 2019 @ 22:40:57
  Author: anthraxx
Revision: 370444

siwtch to HTTPS urls

Modified:
  java-openjdk/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-05 22:40:39 UTC (rev 370443)
+++ PKGBUILD2019-12-05 22:40:57 UTC (rev 370444)
@@ -19,7 +19,7 @@
  'libxrender' 'libxtst' 'libxt' 'libxext' 'libxrandr' 'alsa-lib' 
'pandoc'
  'graphviz' 'freetype2' 'libjpeg-turbo' 'giflib' 'libpng' 'lcms2'
  'libnet' 'bash')
-source=(http://hg.openjdk.java.net/jdk-updates/jdk${_majorver}u/archive/${_hg_tag}.tar.gz
+source=(https://hg.openjdk.java.net/jdk-updates/jdk${_majorver}u/archive/${_hg_tag}.tar.gz
 freedesktop-java.desktop
 freedesktop-jconsole.desktop
 freedesktop-jshell.desktop)


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

2019-12-05 Thread Levente Polyak via arch-commits
Date: Thursday, December 5, 2019 @ 22:40:18
  Author: anthraxx
Revision: 370442

siwtch to HTTPS urls

Modified:
  java11-openjdk/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-05 22:40:02 UTC (rev 370441)
+++ PKGBUILD2019-12-05 22:40:18 UTC (rev 370442)
@@ -27,7 +27,7 @@
  'libxrender' 'libxtst' 'libxt' 'libxext' 'libxrandr' 'alsa-lib' 
'pandoc'
  'graphviz' 'freetype2' 'libjpeg-turbo' 'giflib' 'libpng' 'lcms2'
  'libnet' 'bash')
-source=(http://hg.openjdk.java.net/jdk-updates/jdk${_majorver}u/archive/${_hg_tag}.tar.gz
+source=(https://hg.openjdk.java.net/jdk-updates/jdk${_majorver}u/archive/${_hg_tag}.tar.gz
 freedesktop-java.desktop
 freedesktop-jconsole.desktop
 freedesktop-jshell.desktop)


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

2019-12-05 Thread Levente Polyak via arch-commits
Date: Thursday, December 5, 2019 @ 22:40:02
  Author: anthraxx
Revision: 370441

switch to HTTPS urls

Modified:
  java10-openjdk/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-05 22:27:19 UTC (rev 370440)
+++ PKGBUILD2019-12-05 22:40:02 UTC (rev 370441)
@@ -13,13 +13,13 @@
 pkgver=${_majorver}.${_minorver}.${_securityver}.u${_updatever}
 _hg_tag=jdk-${_majorver}.${_minorver}.${_securityver}+${_updatever}
 arch=('x86_64')
-url='http://openjdk.java.net/'
+url='https://openjdk.java.net/'
 license=('custom')
 makedepends=('jdk10-openjdk' 'cpio' 'unzip' 'zip' 'libelf' 'libcups' 'libx11'
  'libxrender' 'libxtst' 'libxt' 'libxext' 'alsa-lib' 'pandoc'
  'graphviz' 'freetype2' 'libjpeg-turbo' 'giflib' 'libpng' 'lcms2'
  'libnet' 'bash')
-source=(http://hg.openjdk.java.net/jdk-updates/jdk${_majorver}u/archive/${_hg_tag}.tar.gz
+source=(https://hg.openjdk.java.net/jdk-updates/jdk${_majorver}u/archive/${_hg_tag}.tar.gz
 freedesktop-java.desktop
 freedesktop-jconsole.desktop
 freedesktop-jshell.desktop)


[arch-commits] Commit in crypto++/repos/community-x86_64 (7 files)

2019-12-05 Thread Baptiste Jonglez via arch-commits
Date: Thursday, December 5, 2019 @ 22:31:44
  Author: zorun
Revision: 535757

archrelease: copy trunk to community-x86_64

Added:
  crypto++/repos/community-x86_64/PKGBUILD
(from rev 535756, crypto++/trunk/PKGBUILD)
  crypto++/repos/community-x86_64/crypto++.install
(from rev 535756, crypto++/trunk/crypto++.install)
  crypto++/repos/community-x86_64/cve-2019-14318.patch
(from rev 535756, crypto++/trunk/cve-2019-14318.patch)
  crypto++/repos/community-x86_64/libcrypto++.pc
(from rev 535756, crypto++/trunk/libcrypto++.pc)
Deleted:
  crypto++/repos/community-x86_64/PKGBUILD
  crypto++/repos/community-x86_64/crypto++.install
  crypto++/repos/community-x86_64/libcrypto++.pc

--+
 PKGBUILD |  116 
 crypto++.install |8 
 cve-2019-14318.patch |  640 +
 libcrypto++.pc   |   22 -
 4 files changed, 717 insertions(+), 69 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-12-05 22:31:19 UTC (rev 535756)
+++ PKGBUILD2019-12-05 22:31:44 UTC (rev 535757)
@@ -1,54 +0,0 @@
-# Maintainer: Baptiste Jonglez 
-# Contributor: Giovanni Scafora 
-# Contributor: Alexander Rødseth 
-# Contributor: Andrea Scarpino 
-# Contributor: Kritoke 
-# Contributor: jlvsimoes 
-
-pkgname=crypto++
-pkgver=8.2.0
-_srcver=${pkgver//./}
-pkgrel=1
-pkgdesc="A free C++ class library of cryptographic schemes"
-arch=('x86_64')
-url="https://www.cryptopp.com/;
-license=('custom')
-depends=('gcc-libs')
-makedepends=('unzip')
-# Fix https://bugs.archlinux.org/task/56689
-install="crypto++.install"
-source=("https://www.cryptopp.com/cryptopp${_srcver}.zip"{,.sig}
-'libcrypto++.pc')
-# Checksums from https://www.cryptopp.com/release600.html
-sha1sums=('b042d2f0c93410abdec7c12bcd92787d019f8da1'
-  'SKIP'
-  'ef530175d27101dcb23a3f92d3c80a529f1d7b02')
-sha256sums=('03f0e2242e11b9d19b28d0ec5a3fa8ed5cc7b27640e6bed365744f593e858058'
-'SKIP'
-'8722862336f9fe0181734619c197bf4248f0e07b93bdcd693709f57b2f6aa9e6')
-sha512sums=('753513a4ec8dd0fff2f551853ce6bd265d82219c28b033565b565b5e567fbee17adb419f4cde58a97e62b7d6533f4099aa4996cd0ba4775c6a2e7ae63a879da5'
-'SKIP'
-
'3be1569e81af1f9b35e944faae3e9962ee2e492fb38e94fe7f847b85da033a79bbfeff193e0edb2d69f2d893f6e8279be144b9395653db67374300f7feb23276')
-validpgpkeys=('B8CC19802062211A508B2F5CCE0586AF1F8E37BD') # Jeffrey Walton 
(Crypto++ Release) 
-
-build() {
-  CXXFLAGS+=" -DNDEBUG -fPIC" make dynamic cryptest.exe
-}
-
-check() {
-  make test
-}
-
-package() {
-  make install DESTDIR="$pkgdir" PREFIX="/usr"
-  # Install pkgconfig file
-  install -d "${pkgdir}/usr/lib/pkgconfig"
-  install -m644 "${srcdir}/libcrypto++.pc" 
"${pkgdir}/usr/lib/pkgconfig/libcrypto++.pc"
-  # Remove cryptest.exe and test files, only needed for check() and bloats the 
package
-  # because cryptest.exe is linked statically.
-  rm "${pkgdir}/usr/bin/cryptest.exe"
-  rmdir "${pkgdir}/usr/bin/"
-  rm -r "${pkgdir}/usr/share/cryptopp/"
-  # Install license
-  install -D -m644 License.txt 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: crypto++/repos/community-x86_64/PKGBUILD (from rev 535756, 
crypto++/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-12-05 22:31:44 UTC (rev 535757)
@@ -0,0 +1,62 @@
+# Maintainer: Baptiste Jonglez 
+# Contributor: Giovanni Scafora 
+# Contributor: Alexander Rødseth 
+# Contributor: Andrea Scarpino 
+# Contributor: Kritoke 
+# Contributor: jlvsimoes 
+
+pkgname=crypto++
+pkgver=8.2.0
+_srcver=${pkgver//./}
+pkgrel=2
+pkgdesc="A free C++ class library of cryptographic schemes"
+arch=('x86_64')
+url="https://www.cryptopp.com/;
+license=('custom')
+depends=('gcc-libs')
+makedepends=('unzip')
+# Fix https://bugs.archlinux.org/task/56689
+install="crypto++.install"
+source=("https://www.cryptopp.com/cryptopp${_srcver}.zip"{,.sig}
+'libcrypto++.pc'
+'cve-2019-14318.patch')
+# Checksums from https://www.cryptopp.com/release600.html
+sha1sums=('b042d2f0c93410abdec7c12bcd92787d019f8da1'
+  'SKIP'
+  'ef530175d27101dcb23a3f92d3c80a529f1d7b02'
+  '4788135c92536cac42a98e59d219a9e859b759e3')
+sha256sums=('03f0e2242e11b9d19b28d0ec5a3fa8ed5cc7b27640e6bed365744f593e858058'
+'SKIP'
+'8722862336f9fe0181734619c197bf4248f0e07b93bdcd693709f57b2f6aa9e6'
+'d9cabc1eab0dfbab1d4bfff75fa99766995089e52b83a175918e738516efbb41')
+sha512sums=('753513a4ec8dd0fff2f551853ce6bd265d82219c28b033565b565b5e567fbee17adb419f4cde58a97e62b7d6533f4099aa4996cd0ba4775c6a2e7ae63a879da5'
+'SKIP'
+
'3be1569e81af1f9b35e944faae3e9962ee2e492fb38e94fe7f847b85da033a79bbfeff193e0edb2d69f2d893f6e8279be144b9395653db67374300f7feb23276'
+

[arch-commits] Commit in crypto++/trunk (PKGBUILD cve-2019-14318.patch)

2019-12-05 Thread Baptiste Jonglez via arch-commits
Date: Thursday, December 5, 2019 @ 22:31:19
  Author: zorun
Revision: 535756

upgpkg: crypto++ 8.2.0-2

Patch for CVE-2019-14318

Added:
  crypto++/trunk/cve-2019-14318.patch
Modified:
  crypto++/trunk/PKGBUILD

--+
 PKGBUILD |   18 -
 cve-2019-14318.patch |  640 +
 2 files changed, 653 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-12-05 20:55:37 UTC (rev 535755)
+++ PKGBUILD2019-12-05 22:31:19 UTC (rev 535756)
@@ -8,7 +8,7 @@
 pkgname=crypto++
 pkgver=8.2.0
 _srcver=${pkgver//./}
-pkgrel=1
+pkgrel=2
 pkgdesc="A free C++ class library of cryptographic schemes"
 arch=('x86_64')
 url="https://www.cryptopp.com/;
@@ -18,19 +18,27 @@
 # Fix https://bugs.archlinux.org/task/56689
 install="crypto++.install"
 source=("https://www.cryptopp.com/cryptopp${_srcver}.zip"{,.sig}
-'libcrypto++.pc')
+'libcrypto++.pc'
+'cve-2019-14318.patch')
 # Checksums from https://www.cryptopp.com/release600.html
 sha1sums=('b042d2f0c93410abdec7c12bcd92787d019f8da1'
   'SKIP'
-  'ef530175d27101dcb23a3f92d3c80a529f1d7b02')
+  'ef530175d27101dcb23a3f92d3c80a529f1d7b02'
+  '4788135c92536cac42a98e59d219a9e859b759e3')
 sha256sums=('03f0e2242e11b9d19b28d0ec5a3fa8ed5cc7b27640e6bed365744f593e858058'
 'SKIP'
-'8722862336f9fe0181734619c197bf4248f0e07b93bdcd693709f57b2f6aa9e6')
+'8722862336f9fe0181734619c197bf4248f0e07b93bdcd693709f57b2f6aa9e6'
+'d9cabc1eab0dfbab1d4bfff75fa99766995089e52b83a175918e738516efbb41')
 
sha512sums=('753513a4ec8dd0fff2f551853ce6bd265d82219c28b033565b565b5e567fbee17adb419f4cde58a97e62b7d6533f4099aa4996cd0ba4775c6a2e7ae63a879da5'
 'SKIP'
-
'3be1569e81af1f9b35e944faae3e9962ee2e492fb38e94fe7f847b85da033a79bbfeff193e0edb2d69f2d893f6e8279be144b9395653db67374300f7feb23276')
+
'3be1569e81af1f9b35e944faae3e9962ee2e492fb38e94fe7f847b85da033a79bbfeff193e0edb2d69f2d893f6e8279be144b9395653db67374300f7feb23276'
+
'c5075963acc0f8f5bac38306bac324e0ca5aa74abed417cf5f626267c4c409f84c31a89e351b07a1880cfd30c1451e0f1e3dd8721050df74c1d3d080097a84d9')
 validpgpkeys=('B8CC19802062211A508B2F5CCE0586AF1F8E37BD') # Jeffrey Walton 
(Crypto++ Release) 
 
+prepare() {
+  patch -p0 < "$srcdir"/cve-2019-14318.patch
+}
+
 build() {
   CXXFLAGS+=" -DNDEBUG -fPIC" make dynamic cryptest.exe
 }

Added: cve-2019-14318.patch
===
--- cve-2019-14318.patch(rev 0)
+++ cve-2019-14318.patch2019-12-05 22:31:19 UTC (rev 535756)
@@ -0,0 +1,640 @@
+# Patch for Crypto++ timing leaks in EC gear (GH #869)
+# diff of Crypto++ 8.2 and Master 04b2a20c5da5
+--- pubkey.h
 pubkey.h
+@@ -886,7 +886,7 @@
+   /// \brief Retrieves the encoded element's size
+   /// \param reversible flag indicating the encoding format
+   /// \return encoded element's size, in bytes
+-  /// \details The format of the encoded element varies by the 
underlyinhg type of the element and the
++  /// \details The format of the encoded element varies by the underlying 
type of the element and the
+   ///   reversible flag. GetEncodedElementSize() must be implemented in a 
derived class.
+   /// \sa GetEncodedElementSize(), EncodeElement(), DecodeElement()
+   virtual unsigned int GetEncodedElementSize(bool reversible) const =0;
+@@ -1604,10 +1604,10 @@
+   if (rng.CanIncorporateEntropy())
+   rng.IncorporateEntropy(representative, 
representative.size());
+ 
+-  Integer k;
++  Integer k, ks;
++  const Integer& q = params.GetSubgroupOrder();
+   if (alg.IsDeterministic())
+   {
+-  const Integer& q = params.GetSubgroupOrder();
+   const Integer& x = key.GetPrivateExponent();
+   const DeterministicSignatureAlgorithm& det = 
dynamic_cast(alg);
+   k = det.GenerateRandom(x, q, e);
+@@ -1617,8 +1617,15 @@
+   k.Randomize(rng, 1, params.GetSubgroupOrder()-1);
+   }
+ 
++  // Due to timing attack on nonce length by Jancar
++  // https://github.com/weidai11/cryptopp/issues/869
++  ks = k + q;
++  if (ks.BitCount() == q.BitCount()) {
++  ks += q;
++  }
++
+   Integer r, s;
+-  r = params.ConvertElementToInteger(params.ExponentiateBase(k));
++  r = params.ConvertElementToInteger(params.ExponentiateBase(ks));
+   alg.Sign(params, key.GetPrivateExponent(), k, e, r, s);
+ 
+   /*
+@@ -1630,7 +1637,7 @@
+   alg.Sign(params, key.GetPrivateExponent(), ma.m_k, e, r, s);
+   */
+ 
+- 

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

2019-12-05 Thread Levente Polyak via arch-commits
Date: Thursday, December 5, 2019 @ 22:27:19
  Author: anthraxx
Revision: 370440

archrelease: copy trunk to extra-x86_64

Added:
  linux-hardened/repos/extra-x86_64/PKGBUILD
(from rev 370439, linux-hardened/trunk/PKGBUILD)
  linux-hardened/repos/extra-x86_64/config
(from rev 370439, linux-hardened/trunk/config)
Deleted:
  linux-hardened/repos/extra-x86_64/PKGBUILD
  linux-hardened/repos/extra-x86_64/config

--+
 PKGBUILD |  421 -
 config   |20958 ++---
 2 files changed, 10687 insertions(+), 10692 deletions(-)

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


[arch-commits] Commit in linux-hardened/trunk (PKGBUILD config)

2019-12-05 Thread Levente Polyak via arch-commits
Date: Thursday, December 5, 2019 @ 22:27:13
  Author: anthraxx
Revision: 370439

upgpkg: linux-hardened 5.3.15.a-1

Modified:
  linux-hardened/trunk/PKGBUILD
  linux-hardened/trunk/config

--+
 PKGBUILD |   11 +++
 config   |2 +-
 2 files changed, 8 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-12-05 22:12:52 UTC (rev 370438)
+++ PKGBUILD2019-12-05 22:27:13 UTC (rev 370439)
@@ -1,7 +1,10 @@
 # Maintainer: Levente Polyak 
+# Contributor: Daniel Micay 
+# Contributor: Tobias Powalowski 
+# Contributor: Thomas Baechler 
 
 pkgbase=linux-hardened
-pkgver=5.3.13.a
+pkgver=5.3.15.a
 pkgrel=1
 pkgdesc='Security-Hardened Linux'
 url='https://github.com/anthraxx/linux-hardened'
@@ -24,11 +27,11 @@
   '65EEFE022108E2B708CBFCF7F9E712E59AF5F22A'  # Daniel Micay
   'E240B57E2C4630BA768E2F26FC1B547C8D8172C8'  # Levente Polyak
 )
-sha256sums=('9f04e53f03d0ead6561195fb71aac18cbee419112ed54f9d4fc1515a5fa5c92f'
+sha256sums=('cec8aaea89feac4a3555f1e4b9244ff7c5e7640db242a7de796a006d1197'
 'SKIP'
-'a76dff621a8477d2fbbed372ba0956d04546695d187975deb0a790962191bec1'
+'ec8cec2000c5a040f178f5bc4fecad088f2b2327bcb6726e45e357810ffbec32'
 'SKIP'
-'73b7a2766ba5df0bcbb5aef2ddef4a7ae3fbefef8f73369503cae13fdfdedb4a')
+'74dd770958c888dd5922a579b2b61f475f8d235e4180476dd2d3b81354fdd4c3')
 
 export KBUILD_BUILD_HOST=archlinux
 export KBUILD_BUILD_USER=$pkgbase

Modified: config
===
--- config  2019-12-05 22:12:52 UTC (rev 370438)
+++ config  2019-12-05 22:27:13 UTC (rev 370439)
@@ -1,6 +1,6 @@
 #
 # Automatically generated file; DO NOT EDIT.
-# Linux/x86 5.3.13 Kernel Configuration
+# Linux/x86 5.3.15 Kernel Configuration
 #
 
 #


[arch-commits] Commit in java-common/repos/extra-any (13 files)

2019-12-05 Thread Levente Polyak via arch-commits
Date: Thursday, December 5, 2019 @ 22:12:52
  Author: anthraxx
Revision: 370438

archrelease: copy trunk to extra-any

Added:
  java-common/repos/extra-any/PKGBUILD
(from rev 370437, java-common/trunk/PKGBUILD)
  java-common/repos/extra-any/bin_archlinux-java
(from rev 370437, java-common/trunk/bin_archlinux-java)
  java-common/repos/extra-any/install_java-runtime-common.sh
(from rev 370437, java-common/trunk/install_java-runtime-common.sh)
  java-common/repos/extra-any/profile_jre.csh
(from rev 370437, java-common/trunk/profile_jre.csh)
  java-common/repos/extra-any/profile_jre.sh
(from rev 370437, java-common/trunk/profile_jre.sh)
  java-common/repos/extra-any/test_archlinux-java
(from rev 370437, java-common/trunk/test_archlinux-java)
Deleted:
  java-common/repos/extra-any/PKGBUILD
  java-common/repos/extra-any/bin_archlinux-java
  java-common/repos/extra-any/bin_java-common-wrapper
  java-common/repos/extra-any/install_java-runtime-common.sh
  java-common/repos/extra-any/profile_jre.csh
  java-common/repos/extra-any/profile_jre.sh
  java-common/repos/extra-any/test_archlinux-java

+
 PKGBUILD   |  143 ++---
 bin_archlinux-java |  368 +++
 bin_java-common-wrapper|2 
 install_java-runtime-common.sh |   32 -
 profile_jre.csh|6 
 profile_jre.sh |6 
 test_archlinux-java|  930 +++
 7 files changed, 742 insertions(+), 745 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-12-05 22:12:44 UTC (rev 370437)
+++ PKGBUILD2019-12-05 22:12:52 UTC (rev 370438)
@@ -1,72 +0,0 @@
-# Maintainer: Guillaume ALAUX 
-pkgname=('java-runtime-common' 'java-environment-common')
-pkgbase=java-common
-pkgver=3
-pkgrel=1
-arch=('any')
-url='www.archlinux.org'
-license=('GPL')
-checkdepends=('wget')
-_shunitver=2.1.6
-source=(profile_jre.csh
-profile_jre.sh
-bin_archlinux-java
-test_archlinux-java
-
shunit2-${_shunitver}.tar.gz::https://github.com/kward/shunit2/archive/source.tar.gz)
-
-sha256sums=('9d25638cafc2fabd1ba6f2f26aa01233eccf3d31db003d956b571f0ab655dd23'
-'519e9881a2a9f4fc3d581ea0ef0da594eedbfdfcf734f9fdc0bb595e8ac77e4c'
-'5101f9d3d42cd545843a537826451c1b2e0bf2b16aba4e36ac797d9ace16dc63'
-'721b225f6eb420f7b173ba2db8c65688f50ffd5dad0960ecce4cfefdb57b26a2'
-'6beca93d20b72b46083c8271c4cf1da21b45f250a92b401c2565c65e1d75138f')
-
-check() {
-  cd "${srcdir}"
-  ln -s shunit2-source/${_shunitver} shunit2
-  ./test_archlinux-java
-}
-
-package_java-runtime-common() {
-  pkgdesc='Common files for Java Runtime Environments'
-  conflicts=('java-common')
-  replaces=('java-common')
-  backup=(etc/profile.d/jre.sh
-  etc/profile.d/jre.csh)
-  install=install_java-runtime-common.sh
-
-  cd "${srcdir}"
-
-  install -d -m 755 "${pkgdir}/usr/lib/jvm/"
-  ln -s /dev/null "${pkgdir}/usr/lib/jvm/default"
-  ln -s /dev/null "${pkgdir}/usr/lib/jvm/default-runtime"
-
-  install -D -m 644 profile_jre.sh  "${pkgdir}/etc/profile.d/jre.sh"
-  install -D -m 644 profile_jre.csh "${pkgdir}/etc/profile.d/jre.csh"
-  install -D -m 755 bin_archlinux-java "${pkgdir}/usr/bin/archlinux-java"
-
-  install -d -m 755 "${pkgdir}/usr/bin/"
-  # Official list of binaries that Java headless runtime packages MUST provide
-  # This list is based on Arch Linux' default Java implementation: "OpenJDK 7 
Icedtea"
-  for b in \
-java keytool orbd pack200 rmid rmiregistry servertool tnameserv unpack200;
-  do
-ln -s /usr/lib/jvm/default-runtime/bin/${b} "${pkgdir}/usr/bin/${b}"
-  done
-}
-
-package_java-environment-common() {
-  pkgdesc='Common files for Java Development Kits'
-
-  cd "${srcdir}"
-
-  install -d -m 755 "${pkgdir}/usr/bin/"
-  # Official list of supplementary binaries that Java environment packages 
MUST provide
-  # This list is based on Arch Linux' default Java implementation: "OpenJDK 7 
Icedtea"
-  for b in \
-jar jarsigner javac javadoc javah javap jcmd \
-jconsole jdb jinfo jmap jps jstack jstat \
-jstatd rmic schemagen serialver wsgen wsimport xjc;
-  do
-ln -s /usr/lib/jvm/default/bin/${b} "${pkgdir}/usr/bin/${b}"
-  done
-}

Copied: java-common/repos/extra-any/PKGBUILD (from rev 370437, 
java-common/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-12-05 22:12:52 UTC (rev 370438)
@@ -0,0 +1,71 @@
+# Maintainer: Levente Polyak 
+# Contributor: Guillaume ALAUX 
+
+pkgbase=java-common
+pkgname=('java-runtime-common' 'java-environment-common')
+pkgver=3
+pkgrel=2
+pkgdesc='Common files for Java Runtime Environments'
+url='https://www.archlinux.org/packages/extra/any/java-common/'
+arch=('any')
+license=('GPL')
+makedepends=('bash' 'findutils' 'coreutils')

[arch-commits] Commit in java-common/trunk (bin_java-common-wrapper)

2019-12-05 Thread Levente Polyak via arch-commits
Date: Thursday, December 5, 2019 @ 22:12:44
  Author: anthraxx
Revision: 370437

upgpkg: java-common 3-2 packager rebuild with small style adjustments

Deleted:
  java-common/trunk/bin_java-common-wrapper

-+
 bin_java-common-wrapper |2 --
 1 file changed, 2 deletions(-)

Deleted: bin_java-common-wrapper
===
--- bin_java-common-wrapper 2019-12-05 22:09:42 UTC (rev 370436)
+++ bin_java-common-wrapper 2019-12-05 22:12:44 UTC (rev 370437)
@@ -1,2 +0,0 @@
-#!/bin/bash
-exec "${JAVA_HOME:-/usr/lib/jvm/default}/bin/${0##*/}" "$@"


[arch-commits] Commit in java-common/trunk (PKGBUILD test_archlinux-java)

2019-12-05 Thread Levente Polyak via arch-commits
Date: Thursday, December 5, 2019 @ 22:09:42
  Author: anthraxx
Revision: 370436

upgpkg: java-common 3-2: packager rebuild with small style adjustments

Modified:
  java-common/trunk/PKGBUILD
  java-common/trunk/test_archlinux-java

-+
 PKGBUILD|   35 +--
 test_archlinux-java |2 +-
 2 files changed, 18 insertions(+), 19 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-12-05 20:53:29 UTC (rev 370435)
+++ PKGBUILD2019-12-05 22:09:42 UTC (rev 370436)
@@ -1,41 +1,40 @@
-# Maintainer: Guillaume ALAUX 
+# Maintainer: Levente Polyak 
+# Contributor: Guillaume ALAUX 
+
+pkgbase=java-common
 pkgname=('java-runtime-common' 'java-environment-common')
-pkgbase=java-common
 pkgver=3
-pkgrel=1
+pkgrel=2
+pkgdesc='Common files for Java Runtime Environments'
+url='https://www.archlinux.org/packages/extra/any/java-common/'
 arch=('any')
-url='https://www.archlinux.org/packages/extra/any/java-common/'
 license=('GPL')
+makedepends=('bash' 'findutils' 'coreutils')
 checkdepends=('wget')
-_shunitver=2.1.6
+_shunitver=2.1.7
 source=(profile_jre.csh
 profile_jre.sh
 bin_archlinux-java
 test_archlinux-java
-
shunit2-${_shunitver}.tar.gz::https://github.com/kward/shunit2/archive/source.tar.gz)
-
+
https://github.com/kward/shunit2/archive/v${_shunitver}/shunit2-${_shunitver}.tar.gz)
 sha256sums=('9d25638cafc2fabd1ba6f2f26aa01233eccf3d31db003d956b571f0ab655dd23'
 '519e9881a2a9f4fc3d581ea0ef0da594eedbfdfcf734f9fdc0bb595e8ac77e4c'
 '5101f9d3d42cd545843a537826451c1b2e0bf2b16aba4e36ac797d9ace16dc63'
-'721b225f6eb420f7b173ba2db8c65688f50ffd5dad0960ecce4cfefdb57b26a2'
-'6beca93d20b72b46083c8271c4cf1da21b45f250a92b401c2565c65e1d75138f')
+'f4c3fc55568fbbd298c1bf617bdd7f45db600b47c9991b072e409876e8cdd341'
+'41a103aa984bfdeea3fec426edb0b3dda19153a5ce448d4b4bbe52a85c4d7fee')
 
 check() {
-  cd "${srcdir}"
-  ln -s shunit2-source/${_shunitver} shunit2
+  ln -s shunit2-${_shunitver} shunit2
   ./test_archlinux-java
 }
 
 package_java-runtime-common() {
   pkgdesc='Common files for Java Runtime Environments'
-  conflicts=('java-common')
-  replaces=('java-common')
   backup=(etc/profile.d/jre.sh
   etc/profile.d/jre.csh)
+  depends=('bash' 'findutils' 'coreutils')
   install=install_java-runtime-common.sh
 
-  cd "${srcdir}"
-
   install -d -m 755 "${pkgdir}/usr/lib/jvm/"
   ln -s /dev/null "${pkgdir}/usr/lib/jvm/default"
   ln -s /dev/null "${pkgdir}/usr/lib/jvm/default-runtime"
@@ -57,9 +56,7 @@
 package_java-environment-common() {
   pkgdesc='Common files for Java Development Kits'
 
-  cd "${srcdir}"
-
-  install -d -m 755 "${pkgdir}/usr/bin/"
+  install -d "${pkgdir}/usr/bin"
   # Official list of supplementary binaries that Java environment packages 
MUST provide
   # This list is based on Arch Linux' default Java implementation: "OpenJDK 7 
Icedtea"
   for b in \
@@ -70,3 +67,5 @@
 ln -s /usr/lib/jvm/default/bin/${b} "${pkgdir}/usr/bin/${b}"
   done
 }
+
+# vim: ts=2 sw=2 et:

Modified: test_archlinux-java
===
--- test_archlinux-java 2019-12-05 20:53:29 UTC (rev 370435)
+++ test_archlinux-java 2019-12-05 22:09:42 UTC (rev 370436)
@@ -462,4 +462,4 @@
 }
 
 # load shunit2
-. shunit2/src/shunit2
+. shunit2/shunit2


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

2019-12-05 Thread Ivy Foster via arch-commits
Date: Thursday, December 5, 2019 @ 20:17:30
  Author: escondida
Revision: 535671

archrelease: copy trunk to community-x86_64

Added:
  hitch/repos/community-x86_64/PKGBUILD
(from rev 535670, hitch/trunk/PKGBUILD)
Deleted:
  hitch/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-12-05 20:16:11 UTC (rev 535670)
+++ PKGBUILD2019-12-05 20:17:30 UTC (rev 535671)
@@ -1,30 +0,0 @@
-# Maintainer: Ivy Foster 
-# Reference: PKGBUILD(5)
-
-pkgname=hitch
-pkgver=1.5.0
-pkgrel=1
-pkgdesc='libev-based high performance SSL/TLS proxy'
-url='https://hitch-tls.org/'
-license=(BSD)
-
-depends=(libev openssl)
-makedepends=(python-docutils)
-
-arch=(x86_64)
-source=("https://hitch-tls.org/source/hitch-$pkgver.tar.gz;)
-# sha256sums source: https://hitch-tls.org/source/SHA256SUM
-sha256sums=(0ec254699292f73e419ff279d2834db31026192ef373a91badd82e2dc7154d0b)
-validpgpkeys=(584A3EBFE705CDCD)
-
-build() {
-   cd "hitch-$pkgver"
-   ./configure --prefix=/usr --sysconfdir=/etc --sbindir=/usr/bin
-   make
-}
-
-package() {
-   cd "hitch-$pkgver"
-   make DESTDIR="$pkgdir" install
-   install -D -m 644 LICENSE "$pkgdir/usr/share/licenses/hitch/LICENSE"
-}

Copied: hitch/repos/community-x86_64/PKGBUILD (from rev 535670, 
hitch/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-12-05 20:17:30 UTC (rev 535671)
@@ -0,0 +1,36 @@
+# Maintainer: Ivy Foster 
+# Reference: PKGBUILD(5)
+
+pkgname=hitch
+pkgver=1.5.2
+pkgrel=1
+pkgdesc='libev-based high performance SSL/TLS proxy'
+url='https://hitch-tls.org/'
+license=(BSD)
+
+depends=(libev openssl)
+checkdepends=(lsof)
+makedepends=(python-docutils)
+
+arch=(x86_64)
+source=("https://hitch-tls.org/source/hitch-$pkgver.tar.gz;)
+# sha256sums source: https://hitch-tls.org/source/SHA256SUM
+sha256sums=(b1a4fd64584cd4ff816b8513ee5522db34a4431747057421b6e870f722c6dfda)
+validpgpkeys=(584A3EBFE705CDCD)
+
+build() {
+   cd "hitch-$pkgver"
+   ./configure --prefix=/usr --sysconfdir=/etc --sbindir=/usr/bin
+   make
+}
+
+check() {
+   cd "hitch-$pkgver"
+   make check
+}
+
+package() {
+   cd "hitch-$pkgver"
+   make DESTDIR="$pkgdir" install
+   install -D -m 644 LICENSE "$pkgdir/usr/share/licenses/hitch/LICENSE"
+}


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

2019-12-05 Thread Ivy Foster via arch-commits
Date: Thursday, December 5, 2019 @ 20:16:11
  Author: escondida
Revision: 535670

hitch: update to 1.5.2, add check() and checkdepends

Modified:
  hitch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-05 19:22:31 UTC (rev 535669)
+++ PKGBUILD2019-12-05 20:16:11 UTC (rev 535670)
@@ -1,8 +1,8 @@
-# Maintainer: Ivy Foster 
+# Maintainer: Ivy Foster 
 # Reference: PKGBUILD(5)
 
 pkgname=hitch
-pkgver=1.5.0
+pkgver=1.5.2
 pkgrel=1
 pkgdesc='libev-based high performance SSL/TLS proxy'
 url='https://hitch-tls.org/'
@@ -9,12 +9,13 @@
 license=(BSD)
 
 depends=(libev openssl)
+checkdepends=(lsof)
 makedepends=(python-docutils)
 
 arch=(x86_64)
 source=("https://hitch-tls.org/source/hitch-$pkgver.tar.gz;)
 # sha256sums source: https://hitch-tls.org/source/SHA256SUM
-sha256sums=(0ec254699292f73e419ff279d2834db31026192ef373a91badd82e2dc7154d0b)
+sha256sums=(b1a4fd64584cd4ff816b8513ee5522db34a4431747057421b6e870f722c6dfda)
 validpgpkeys=(584A3EBFE705CDCD)
 
 build() {
@@ -23,6 +24,11 @@
make
 }
 
+check() {
+   cd "hitch-$pkgver"
+   make check
+}
+
 package() {
cd "hitch-$pkgver"
make DESTDIR="$pkgdir" install


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

2019-12-05 Thread Filipe Laíns via arch-commits
Date: Thursday, December 5, 2019 @ 19:22:31
  Author: ffy00
Revision: 535669

archrelease: copy trunk to community-any

Added:
  wine-mono/repos/community-any/PKGBUILD
(from rev 535668, wine-mono/trunk/PKGBUILD)
Deleted:
  wine-mono/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-12-05 19:22:26 UTC (rev 535668)
+++ PKGBUILD2019-12-05 19:22:31 UTC (rev 535669)
@@ -1,18 +0,0 @@
-# Maintainer: Felix Yan 
-# Maintainer: Filipe Laíns (FFY00) 
-# Contributor: Jan Alexander Steffens (heftig) 
-
-pkgname=wine-mono
-pkgver=4.9.3
-pkgrel=1
-pkgdesc="Wine's built-in replacement for Microsoft's .NET Framework"
-arch=('any')
-url="https://wiki.winehq.org/Mono;
-license=('GPL' 'LGPL2.1' 'MPL')
-depends=('wine')
-source=("https://dl.winehq.org/wine/$pkgname/$pkgver/$pkgname-$pkgver.msi;)
-sha512sums=('4631d4e3b5118eb726f614e2f58f9e95f44bb97a1285fa726d3542d44e2a77ce818997ecb4de42e0d318d364d7c929f10d7c5176b59732e8b468e7695633706c')
-
-package() {
-  install -Dm644 $pkgname-$pkgver.msi 
"$pkgdir"/usr/share/wine/mono/$pkgname-$pkgver.msi
-}

Copied: wine-mono/repos/community-any/PKGBUILD (from rev 535668, 
wine-mono/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-12-05 19:22:31 UTC (rev 535669)
@@ -0,0 +1,18 @@
+# Maintainer: Felix Yan 
+# Maintainer: Filipe Laíns (FFY00) 
+# Contributor: Jan Alexander Steffens (heftig) 
+
+pkgname=wine-mono
+pkgver=4.9.4
+pkgrel=1
+pkgdesc="Wine's built-in replacement for Microsoft's .NET Framework"
+arch=('any')
+url="https://wiki.winehq.org/Mono;
+license=('GPL' 'LGPL2.1' 'MPL')
+depends=('wine')
+source=("https://dl.winehq.org/wine/$pkgname/$pkgver/$pkgname-$pkgver.msi;)
+sha512sums=('d52a2cc1137eac87acdaecbb7a81b3d618cad9ad3d7bca5b29940b7432923bfc1497ec21501a05797ef52c6588bb9c5e312df5c02ede8448d1fe1f2880557fc9')
+
+package() {
+  install -Dm644 $pkgname-$pkgver.msi 
"$pkgdir"/usr/share/wine/mono/$pkgname-$pkgver.msi
+}


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

2019-12-05 Thread Filipe Laíns via arch-commits
Date: Thursday, December 5, 2019 @ 19:22:26
  Author: ffy00
Revision: 535668

upgpkg: wine-mono 4.9.4-1

Modified:
  wine-mono/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-05 19:17:58 UTC (rev 535667)
+++ PKGBUILD2019-12-05 19:22:26 UTC (rev 535668)
@@ -3,7 +3,7 @@
 # Contributor: Jan Alexander Steffens (heftig) 
 
 pkgname=wine-mono
-pkgver=4.9.3
+pkgver=4.9.4
 pkgrel=1
 pkgdesc="Wine's built-in replacement for Microsoft's .NET Framework"
 arch=('any')
@@ -11,7 +11,7 @@
 license=('GPL' 'LGPL2.1' 'MPL')
 depends=('wine')
 source=("https://dl.winehq.org/wine/$pkgname/$pkgver/$pkgname-$pkgver.msi;)
-sha512sums=('4631d4e3b5118eb726f614e2f58f9e95f44bb97a1285fa726d3542d44e2a77ce818997ecb4de42e0d318d364d7c929f10d7c5176b59732e8b468e7695633706c')
+sha512sums=('d52a2cc1137eac87acdaecbb7a81b3d618cad9ad3d7bca5b29940b7432923bfc1497ec21501a05797ef52c6588bb9c5e312df5c02ede8448d1fe1f2880557fc9')
 
 package() {
   install -Dm644 $pkgname-$pkgver.msi 
"$pkgdir"/usr/share/wine/mono/$pkgname-$pkgver.msi


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

2019-12-05 Thread Filipe Laíns via arch-commits
Date: Thursday, December 5, 2019 @ 19:17:58
  Author: ffy00
Revision: 535667

archrelease: copy trunk to community-any

Added:
  java-batik/repos/community-any/PKGBUILD
(from rev 535666, java-batik/trunk/PKGBUILD)
Deleted:
  java-batik/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-12-05 19:17:54 UTC (rev 535666)
+++ PKGBUILD2019-12-05 19:17:58 UTC (rev 535667)
@@ -1,35 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-# Contributor: Lukas Fleischer 
-# Contributor: Stefan Husmann 
-# Contributor: Simon Lipp 
-
-pkgname=java-batik
-pkgver=1.11
-pkgrel=1
-pkgdesc='SVG library for Java.'
-arch=('any')
-url='https://xmlgraphics.apache.org/batik/'
-license=('APACHE')
-depends=('java-runtime' 'java-commons-io' 'java-commons-logging' 
'java-xmlgraphics-commons')
-makedepends=('java-environment' 'apache-ant' 'unzip')
-source=("https://www.apache.org/dist/xmlgraphics/batik/source/batik-src-$pkgver.tar.gz"{,.asc})
-sha512sums=('74ab28ab4c152a3bfbbdeae7fdab06092367469a419c7012dd2b91d158f7c167567ee4f39d4767ee437347c7caa70c3818532782cf5c82dde4cedcc0660ed8e2'
-'SKIP')
-validpgpkeys=('9D5F9D9B3E21B585E8F4551082036989D56B5F17'  # Luis Bernardo
-  '5C9A30FF22B2C02F30261C305B93F1DF7CDB6DEA') # Simon Steiner
-
-build() {
-  cd batik-$pkgver
-
-  ant all-jar
-}
-
-package() {
-  install -d "$pkgdir"/usr/share/java/batik
-  install -m 644 
"$srcdir"/batik-$pkgver/batik-$pkgver/lib/batik-all-$pkgver.jar 
"$pkgdir"/usr/share/java/batik/batik-all-$pkgver.jar
-
-  ln -s batik-all-$pkgver.jar "$pkgdir"/usr/share/java/batik/batik-all.jar
-
-  cp --no-preserve=ownership "$srcdir/batik-$pkgver/lib"/*.jar 
"$pkgdir"/usr/share/java/batik/
-}
-

Copied: java-batik/repos/community-any/PKGBUILD (from rev 535666, 
java-batik/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-12-05 19:17:58 UTC (rev 535667)
@@ -0,0 +1,35 @@
+# Maintainer: Filipe Laíns (FFY00) 
+# Contributor: Lukas Fleischer 
+# Contributor: Stefan Husmann 
+# Contributor: Simon Lipp 
+
+pkgname=java-batik
+pkgver=1.12
+pkgrel=1
+pkgdesc='SVG library for Java.'
+arch=('any')
+url='https://xmlgraphics.apache.org/batik/'
+license=('APACHE')
+depends=('java-runtime' 'java-commons-io' 'java-commons-logging' 
'java-xmlgraphics-commons')
+makedepends=('java-environment' 'apache-ant' 'unzip')
+source=("https://www.apache.org/dist/xmlgraphics/batik/source/batik-src-$pkgver.tar.gz"{,.asc})
+sha512sums=('fe8dc52b9ba4fb0d62e9d3cbb2e77b653a8d83d25e0523db907bde075d392586cd70549e7784a4aa1b1a95970eb1852973bb14daaadca570acf8631ce20371d7'
+'SKIP')
+validpgpkeys=('9D5F9D9B3E21B585E8F4551082036989D56B5F17'  # Luis Bernardo
+  '5C9A30FF22B2C02F30261C305B93F1DF7CDB6DEA') # Simon Steiner
+
+build() {
+  cd batik-$pkgver
+
+  ant all-jar
+}
+
+package() {
+  install -d "$pkgdir"/usr/share/java/batik
+  install -m 644 
"$srcdir"/batik-$pkgver/batik-$pkgver/lib/batik-all-$pkgver.jar 
"$pkgdir"/usr/share/java/batik/batik-all-$pkgver.jar
+
+  ln -s batik-all-$pkgver.jar "$pkgdir"/usr/share/java/batik/batik-all.jar
+
+  cp --no-preserve=ownership "$srcdir/batik-$pkgver/lib"/*.jar 
"$pkgdir"/usr/share/java/batik/
+}
+


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

2019-12-05 Thread Filipe Laíns via arch-commits
Date: Thursday, December 5, 2019 @ 19:17:54
  Author: ffy00
Revision: 535666

upgpkg: java-batik 1.12-1

Modified:
  java-batik/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-05 19:10:30 UTC (rev 535665)
+++ PKGBUILD2019-12-05 19:17:54 UTC (rev 535666)
@@ -4,7 +4,7 @@
 # Contributor: Simon Lipp 
 
 pkgname=java-batik
-pkgver=1.11
+pkgver=1.12
 pkgrel=1
 pkgdesc='SVG library for Java.'
 arch=('any')
@@ -13,7 +13,7 @@
 depends=('java-runtime' 'java-commons-io' 'java-commons-logging' 
'java-xmlgraphics-commons')
 makedepends=('java-environment' 'apache-ant' 'unzip')
 
source=("https://www.apache.org/dist/xmlgraphics/batik/source/batik-src-$pkgver.tar.gz"{,.asc})
-sha512sums=('74ab28ab4c152a3bfbbdeae7fdab06092367469a419c7012dd2b91d158f7c167567ee4f39d4767ee437347c7caa70c3818532782cf5c82dde4cedcc0660ed8e2'
+sha512sums=('fe8dc52b9ba4fb0d62e9d3cbb2e77b653a8d83d25e0523db907bde075d392586cd70549e7784a4aa1b1a95970eb1852973bb14daaadca570acf8631ce20371d7'
 'SKIP')
 validpgpkeys=('9D5F9D9B3E21B585E8F4551082036989D56B5F17'  # Luis Bernardo
   '5C9A30FF22B2C02F30261C305B93F1DF7CDB6DEA') # Simon Steiner


[arch-commits] Commit in libpam-google-authenticator/trunk (PKGBUILD)

2019-12-05 Thread Filipe Laíns via arch-commits
Date: Thursday, December 5, 2019 @ 19:10:21
  Author: ffy00
Revision: 535664

upgpkg: libpam-google-authenticator 1.07-1

Modified:
  libpam-google-authenticator/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-05 18:28:06 UTC (rev 535663)
+++ PKGBUILD2019-12-05 19:10:21 UTC (rev 535664)
@@ -2,7 +2,7 @@
 # Contributor: robertfoster
 
 pkgname=libpam-google-authenticator
-pkgver=1.06
+pkgver=1.07
 pkgrel=1
 pkgdesc='PAM module for google authenticator app'
 arch=('x86_64')
@@ -11,7 +11,7 @@
 depends=('pam')
 optdepends=('qrencode: scannable QR codes for google auth phone app')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/google/google-authenticator-libpam/archive/$pkgver.tar.gz;)
-sha512sums=('a278360be1a3c5a03ddb38d40be45dbba16b6f565ee919377a918565bd8c567ce261890dc10d277edea4f469cf1da1d9cf2c9f3ccfeef8c6887d713c785a5440')
+sha512sums=('3e2bc9bfc3759f9004d08b1557868a33b628290b62aa9051d21072a66e18ca4b09cdef0fc8303943cb36ac5b61fe864a9de9fe0a1d8677ee86403cfd4c89c1fb')
 
 build() {
   cd google-authenticator-libpam-$pkgver


[arch-commits] Commit in libpam-google-authenticator/repos/community-x86_64 (2 files)

2019-12-05 Thread Filipe Laíns via arch-commits
Date: Thursday, December 5, 2019 @ 19:10:30
  Author: ffy00
Revision: 535665

archrelease: copy trunk to community-x86_64

Added:
  libpam-google-authenticator/repos/community-x86_64/PKGBUILD
(from rev 535664, libpam-google-authenticator/trunk/PKGBUILD)
Deleted:
  libpam-google-authenticator/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-12-05 19:10:21 UTC (rev 535664)
+++ PKGBUILD2019-12-05 19:10:30 UTC (rev 535665)
@@ -1,27 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: robertfoster
-
-pkgname=libpam-google-authenticator
-pkgver=1.06
-pkgrel=1
-pkgdesc='PAM module for google authenticator app'
-arch=('x86_64')
-url="https://github.com/google/google-authenticator-libpam;
-license=('Apache')
-depends=('pam')
-optdepends=('qrencode: scannable QR codes for google auth phone app')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/google/google-authenticator-libpam/archive/$pkgver.tar.gz;)
-sha512sums=('a278360be1a3c5a03ddb38d40be45dbba16b6f565ee919377a918565bd8c567ce261890dc10d277edea4f469cf1da1d9cf2c9f3ccfeef8c6887d713c785a5440')
-
-build() {
-  cd google-authenticator-libpam-$pkgver
-  ./bootstrap.sh
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd google-authenticator-libpam-$pkgver
-  make DESTDIR="$pkgdir" install
-  libtool --finish "$pkgdir"/usr/lib/security
-}

Copied: libpam-google-authenticator/repos/community-x86_64/PKGBUILD (from rev 
535664, libpam-google-authenticator/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-12-05 19:10:30 UTC (rev 535665)
@@ -0,0 +1,27 @@
+# Maintainer: Felix Yan 
+# Contributor: robertfoster
+
+pkgname=libpam-google-authenticator
+pkgver=1.07
+pkgrel=1
+pkgdesc='PAM module for google authenticator app'
+arch=('x86_64')
+url="https://github.com/google/google-authenticator-libpam;
+license=('Apache')
+depends=('pam')
+optdepends=('qrencode: scannable QR codes for google auth phone app')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/google/google-authenticator-libpam/archive/$pkgver.tar.gz;)
+sha512sums=('3e2bc9bfc3759f9004d08b1557868a33b628290b62aa9051d21072a66e18ca4b09cdef0fc8303943cb36ac5b61fe864a9de9fe0a1d8677ee86403cfd4c89c1fb')
+
+build() {
+  cd google-authenticator-libpam-$pkgver
+  ./bootstrap.sh
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd google-authenticator-libpam-$pkgver
+  make DESTDIR="$pkgdir" install
+  libtool --finish "$pkgdir"/usr/lib/security
+}


[arch-commits] Commit in java-atk-wrapper/trunk (PKGBUILD)

2019-12-05 Thread Levente Polyak via arch-commits
Date: Thursday, December 5, 2019 @ 18:28:06
  Author: anthraxx
Revision: 535663

ensure jvm PATH is set inside package func

Modified:
  java-atk-wrapper/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-05 18:11:10 UTC (rev 535662)
+++ PKGBUILD2019-12-05 18:28:06 UTC (rev 535663)
@@ -25,7 +25,6 @@
   _pkgname="java-atk-wrapper-openjdk${_jvmver}"
   pkgname+=("${_pkgname}")
   eval "package_${_pkgname}() {
-export PATH="/usr/lib/jvm/java-${_jvmver}-openjdk/bin:${PATH}"
 _package ${_jvmver}
   }"
 done
@@ -72,6 +71,7 @@
   provides=("java-atk-wrapper-openjdk=${_jvmver}")
 
   cd ${pkgbase}-${pkgver}-${_jvmver}
+  export PATH="/usr/lib/jvm/java-${_jvmver}-openjdk/bin:${PATH}"
   make -j1 DESTDIR="${pkgdir}" install
   rm "${pkgdir}"/usr/lib/*.so*
   rm -f "${pkgdir}"/usr/lib/jvm/java-${_jvmver}-openjdk/conf/*


[arch-commits] Commit in java-atk-wrapper/trunk (no-werror.patch)

2019-12-05 Thread Levente Polyak via arch-commits
Date: Thursday, December 5, 2019 @ 18:10:58
  Author: anthraxx
Revision: 535661

remove obsolete patch file

Deleted:
  java-atk-wrapper/trunk/no-werror.patch

-+
 no-werror.patch |   25 -
 1 file changed, 25 deletions(-)

Deleted: no-werror.patch
===
--- no-werror.patch 2019-12-05 18:09:30 UTC (rev 535660)
+++ no-werror.patch 2019-12-05 18:10:58 UTC (rev 535661)
@@ -1,25 +0,0 @@
 a/configure.ac
-+++ b/configure.ac
-@@ -129,14 +129,14 @@ else
- fi
- AC_SUBST(JAW_CFLAGS)
- 
--GNOME_COMPILE_WARNINGS([error])
--case "$WARN_CFLAGS" in
--*-Werror*)
--WARN_CFLAGS="$WARN_CFLAGS -Wno-error=deprecated-declarations"
--;;
--esac
--AM_CFLAGS="$AM_CFLAGS $WARN_CFLAGS"
--AC_SUBST(AM_CFLAGS)
-+#GNOME_COMPILE_WARNINGS([error])
-+#case "$WARN_CFLAGS" in
-+#*-Werror*)
-+#WARN_CFLAGS="$WARN_CFLAGS -Wno-error=deprecated-declarations"
-+#;;
-+#esac
-+#AM_CFLAGS="$AM_CFLAGS $WARN_CFLAGS"
-+#AC_SUBST(AM_CFLAGS)
- 
- CHECK_JNI
- 


[arch-commits] Commit in java-atk-wrapper/repos/community-x86_64 (3 files)

2019-12-05 Thread Levente Polyak via arch-commits
Date: Thursday, December 5, 2019 @ 18:11:10
  Author: anthraxx
Revision: 535662

archrelease: copy trunk to community-x86_64

Added:
  java-atk-wrapper/repos/community-x86_64/PKGBUILD
(from rev 535661, java-atk-wrapper/trunk/PKGBUILD)
Deleted:
  java-atk-wrapper/repos/community-x86_64/PKGBUILD
  java-atk-wrapper/repos/community-x86_64/no-werror.patch

-+
 PKGBUILD|  159 +++---
 no-werror.patch |   25 
 2 files changed, 80 insertions(+), 104 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-12-05 18:10:58 UTC (rev 535661)
+++ PKGBUILD2019-12-05 18:11:10 UTC (rev 535662)
@@ -1,79 +0,0 @@
-# $Id$
-# Contributor: Guillaume ALAUX 
-# Contributor: Martin Wimpress 
-# Contributor: Kyle 
-
-pkgbase=java-atk-wrapper
-pkgname=('java-atk-wrapper-common' 'java-atk-wrapper-openjdk7' 
'java-atk-wrapper-openjdk8')
-pkgver=0.33.3
-pkgrel=1
-arch=('x86_64')
-url="https://git.gnome.org/browse/java-atk-wrapper/;
-license=('LGPL')
-makedepends=('java-environment' 'gobject-introspection'
- 'gnome-common' 'gtk2' 'gtk3'
- 'xorg-xprop')
-_pkgbase=$(echo $pkgbase | awk '{print toupper($0)}' | tr '-' '_')
-_pkgver=$(echo $pkgver | tr '.' '_')
-_altnamever="${_pkgbase}_${_pkgver}"
-source=(https://git.gnome.org/browse/$pkgbase/snapshot/$_altnamever.tar.xz
-no-werror.patch)
-sha256sums=('11d4a1c5491b2ba5a24b710d695c3c5fea5047d06eee07171f23ac5707fef4c5'
-'ee22d01cc6282e005cef89456208193d0c9b329a65fc5e1c38304ebb22b95842')
-
-prepare() {
-  cd $_altnamever
-  # 
https://anonscm.debian.org/cgit/pkg-a11y/java-atk-wrapper.git/tree/debian/patches/no-werror
-  patch -p1 -i ../no-werror.patch
-}
-
-build() {
-  cd $_altnamever
-  ./autogen.sh --prefix=/usr
-  make
-  # make install is broken
-  mkdir "build"
-  make DESTDIR="$(pwd)/build" install
-}
-
-package_java-atk-wrapper-common() {
-  pkgdesc='ATK wrapper for screen reader access to Java Swing applications - 
common files'
-  depends=('xorg-xprop' 'atk')
-  conflicts=('java-atk-wrapper')
-
-  cd $_altnamever/build
-
-  mkdir -p $pkgdir/usr/share/java
-  cp build/usr/lib/jvm/java-7-openjdk/jre/lib/ext/java-atk-wrapper.jar \
- $pkgdir/usr/share/java
-  cp -r usr $pkgdir
-}
-
-package_java-atk-wrapper-openjdk7() {
-  pkgdesc='ATK wrapper for screen reader access to Java Swing applications - 
OpenJDK 7'
-  depends=('java-atk-wrapper-common' 'java-runtime-headless-openjdk=7')
-  replaces=('java-atk-wrapper')
-  provides=('java-atk-wrapper-openjdk=7')
-
-  cd $_altnamever/build
-
-  mkdir -p $pkgdir/usr/lib/jvm/java-7-openjdk/jre/lib/ext
-  ln -s /usr/share/java/java-atk-wrapper.jar \
-$pkgdir/usr/lib/jvm/java-7-openjdk/jre/lib/ext
-  cp build/usr/lib/jvm/java-7-openjdk/jre/lib/accessibility.properties \
-$pkgdir/usr/lib/jvm/java-7-openjdk/jre/lib
-}
-
-package_java-atk-wrapper-openjdk8() {
-  pkgdesc='ATK wrapper for screen reader access to Java Swing applications - 
OpenJDK 8'
-  depends=('java-atk-wrapper-common' 'java-runtime-headless-openjdk=8')
-  provides=('java-atk-wrapper-openjdk=8')
-
-  cd $_altnamever/build
-
-  mkdir -p $pkgdir/usr/lib/jvm/java-8-openjdk/jre/lib/ext
-  ln -s /usr/share/java/java-atk-wrapper.jar \
-$pkgdir/usr/lib/jvm/java-8-openjdk/jre/lib/ext
-  cp build/usr/lib/jvm/java-7-openjdk/jre/lib/accessibility.properties \
-$pkgdir/usr/lib/jvm/java-8-openjdk/jre/lib
-}

Copied: java-atk-wrapper/repos/community-x86_64/PKGBUILD (from rev 535661, 
java-atk-wrapper/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-12-05 18:11:10 UTC (rev 535662)
@@ -0,0 +1,80 @@
+# Maintainer: Levente Polyak 
+# Contributor: Guillaume ALAUX 
+# Contributor: Martin Wimpress 
+# Contributor: Kyle 
+
+pkgbase=java-atk-wrapper
+pkgname=(java-atk-wrapper-common java-atk-wrapper-openjdk)
+pkgver=0.37.1
+pkgrel=1
+_jvmvers=(8 10 11 13)
+pkgdesc='ATK wrapper for screen reader access to Java Swing applications'
+url='https://gitlab.gnome.org/GNOME/java-atk-wrapper/'
+arch=('x86_64')
+license=('LGPL')
+makedepends=('gobject-introspection' 'gnome-common' 'gtk2' 'gtk3' 'xorg-xprop' 
'at-spi2-atk')
+options=(!emptydirs)
+source=(https://gitlab.gnome.org/GNOME/java-atk-wrapper/-/archive/${pkgver}/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('2d84c276bfe7f702416e299c4b63d8186f18f5e45889077b5086d0d1acca7e5e')
+sha512sums=('ba5c255af5e63f3a9180d30f955bf17b0c93b5559e596f0268105ffdd4c2dc1bdc89d35c426f3fa22c5fd96ae05bbd82d1562e3fe13b0637e3086cc99c8072cb')
+
+for _jvmver in "${_jvmvers[@]}"; do
+  makedepends+=("java-environment=${_jvmver}")
+done
+for _jvmver in "${_jvmvers[@]:0:${#_jvmvers[@]}-1}"; do
+  _pkgname="java-atk-wrapper-openjdk${_jvmver}"
+  pkgname+=("${_pkgname}")
+  eval "package_${_pkgname}() {
+export PATH="/usr/lib/jvm/java-${_jvmver}-openjdk/bin:${PATH}"
+

[arch-commits] Commit in java-atk-wrapper/trunk (PKGBUILD)

2019-12-05 Thread Levente Polyak via arch-commits
Date: Thursday, December 5, 2019 @ 18:09:30
  Author: anthraxx
Revision: 535660

upgpkg: java-atk-wrapper 0.37.1-1

Modified:
  java-atk-wrapper/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-05 18:07:22 UTC (rev 535659)
+++ PKGBUILD2019-12-05 18:09:30 UTC (rev 535660)
@@ -1,78 +1,80 @@
+# Maintainer: Levente Polyak 
 # Contributor: Guillaume ALAUX 
 # Contributor: Martin Wimpress 
 # Contributor: Kyle 
 
 pkgbase=java-atk-wrapper
-pkgname=('java-atk-wrapper-common' 'java-atk-wrapper-openjdk7' 
'java-atk-wrapper-openjdk8')
-pkgver=0.33.3
+pkgname=(java-atk-wrapper-common java-atk-wrapper-openjdk)
+pkgver=0.37.1
 pkgrel=1
+_jvmvers=(8 10 11 13)
+pkgdesc='ATK wrapper for screen reader access to Java Swing applications'
+url='https://gitlab.gnome.org/GNOME/java-atk-wrapper/'
 arch=('x86_64')
-url="https://git.gnome.org/browse/java-atk-wrapper/;
 license=('LGPL')
-makedepends=('java-environment' 'gobject-introspection'
- 'gnome-common' 'gtk2' 'gtk3'
- 'xorg-xprop')
-_pkgbase=$(echo $pkgbase | awk '{print toupper($0)}' | tr '-' '_')
-_pkgver=$(echo $pkgver | tr '.' '_')
-_altnamever="${_pkgbase}_${_pkgver}"
-source=(https://git.gnome.org/browse/$pkgbase/snapshot/$_altnamever.tar.xz
-no-werror.patch)
-sha256sums=('11d4a1c5491b2ba5a24b710d695c3c5fea5047d06eee07171f23ac5707fef4c5'
-'ee22d01cc6282e005cef89456208193d0c9b329a65fc5e1c38304ebb22b95842')
+makedepends=('gobject-introspection' 'gnome-common' 'gtk2' 'gtk3' 'xorg-xprop' 
'at-spi2-atk')
+options=(!emptydirs)
+source=(https://gitlab.gnome.org/GNOME/java-atk-wrapper/-/archive/${pkgver}/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('2d84c276bfe7f702416e299c4b63d8186f18f5e45889077b5086d0d1acca7e5e')
+sha512sums=('ba5c255af5e63f3a9180d30f955bf17b0c93b5559e596f0268105ffdd4c2dc1bdc89d35c426f3fa22c5fd96ae05bbd82d1562e3fe13b0637e3086cc99c8072cb')
 
+for _jvmver in "${_jvmvers[@]}"; do
+  makedepends+=("java-environment=${_jvmver}")
+done
+for _jvmver in "${_jvmvers[@]:0:${#_jvmvers[@]}-1}"; do
+  _pkgname="java-atk-wrapper-openjdk${_jvmver}"
+  pkgname+=("${_pkgname}")
+  eval "package_${_pkgname}() {
+export PATH="/usr/lib/jvm/java-${_jvmver}-openjdk/bin:${PATH}"
+_package ${_jvmver}
+  }"
+done
+
+package_java-atk-wrapper-openjdk() {
+  _package "${_jvmvers[-1]}"
+}
+
 prepare() {
-  cd $_altnamever
-  # 
https://anonscm.debian.org/cgit/pkg-a11y/java-atk-wrapper.git/tree/debian/patches/no-werror
-  patch -p1 -i ../no-werror.patch
+  cd ${pkgbase}-${pkgver}-*
+  autoreconf -fiv
+  for _jvmver in "${_jvmvers[@]}" ${_jvmvers}; do
+cp -r . ../${pkgbase}-${pkgver}-${_jvmver}
+  done
 }
 
 build() {
-  cd $_altnamever
-  ./autogen.sh --prefix=/usr
-  make
-  # make install is broken
-  mkdir "build"
-  make DESTDIR="$(pwd)/build" install
+  for _jvmver in "${_jvmvers[@]}"; do
+cd "${srcdir}/${pkgbase}-${pkgver}-${_jvmver}"
+export PATH="/usr/lib/jvm/java-${_jvmver}-openjdk/bin:${PATH}"
+./configure \
+  --prefix=/usr
+make
+  done
 }
 
 package_java-atk-wrapper-common() {
-  pkgdesc='ATK wrapper for screen reader access to Java Swing applications - 
common files'
-  depends=('xorg-xprop' 'atk')
-  conflicts=('java-atk-wrapper')
+  pkgdesc+=' - common files'
+  depends=('xorg-xprop' 'atk' 'at-spi2-atk')
 
-  cd $_altnamever/build
+  _jvmver=${_jvmvers[-1]}
+  cd ${pkgbase}-${pkgver}-${_jvmver}
 
-  mkdir -p $pkgdir/usr/share/java
-  cp build/usr/lib/jvm/java-7-openjdk/jre/lib/ext/java-atk-wrapper.jar \
- $pkgdir/usr/share/java
-  cp -r usr $pkgdir
+  make -j1 DESTDIR="${pkgdir}" install
+  install -d "${pkgdir}/etc/java-openjdk"
+  mv "${pkgdir}"/usr/lib/jvm/java-${_jvmver}-openjdk/conf/* 
"${pkgdir}/etc/java-openjdk"
+  rm -rf "${pkgdir}"/usr/lib/jvm
 }
 
-package_java-atk-wrapper-openjdk7() {
-  pkgdesc='ATK wrapper for screen reader access to Java Swing applications - 
OpenJDK 7'
-  depends=('java-atk-wrapper-common' 'java-runtime-headless-openjdk=7')
-  replaces=('java-atk-wrapper')
-  provides=('java-atk-wrapper-openjdk=7')
+_package() {
+  local _jvmver=${1}
+  pkgdesc+=" - OpenJDK ${_jvmver}"
+  depends=('java-atk-wrapper-common' "java-runtime=${_jvmver}")
+  provides=("java-atk-wrapper-openjdk=${_jvmver}")
 
-  cd $_altnamever/build
-
-  mkdir -p $pkgdir/usr/lib/jvm/java-7-openjdk/jre/lib/ext
-  ln -s /usr/share/java/java-atk-wrapper.jar \
-$pkgdir/usr/lib/jvm/java-7-openjdk/jre/lib/ext
-  cp build/usr/lib/jvm/java-7-openjdk/jre/lib/accessibility.properties \
-$pkgdir/usr/lib/jvm/java-7-openjdk/jre/lib
+  cd ${pkgbase}-${pkgver}-${_jvmver}
+  make -j1 DESTDIR="${pkgdir}" install
+  rm "${pkgdir}"/usr/lib/*.so*
+  rm -f "${pkgdir}"/usr/lib/jvm/java-${_jvmver}-openjdk/conf/*
 }
 
-package_java-atk-wrapper-openjdk8() {
-  pkgdesc='ATK wrapper for screen 

[arch-commits] Commit in emby-server/repos/community-any (14 files)

2019-12-05 Thread Maxime Gauduin via arch-commits
Date: Thursday, December 5, 2019 @ 18:07:22
  Author: alucryd
Revision: 535659

archrelease: copy trunk to community-any

Added:
  emby-server/repos/community-any/PKGBUILD
(from rev 535658, emby-server/trunk/PKGBUILD)
  emby-server/repos/community-any/emby-server
(from rev 535658, emby-server/trunk/emby-server)
  emby-server/repos/community-any/emby-server.conf
(from rev 535658, emby-server/trunk/emby-server.conf)
  emby-server/repos/community-any/emby-server.service
(from rev 535658, emby-server/trunk/emby-server.service)
  emby-server/repos/community-any/emby-server.sysusers
(from rev 535658, emby-server/trunk/emby-server.sysusers)
  emby-server/repos/community-any/emby-server.tmpfiles
(from rev 535658, emby-server/trunk/emby-server.tmpfiles)
  emby-server/repos/community-any/license.docx
(from rev 535658, emby-server/trunk/license.docx)
Deleted:
  emby-server/repos/community-any/PKGBUILD
  emby-server/repos/community-any/emby-server
  emby-server/repos/community-any/emby-server.conf
  emby-server/repos/community-any/emby-server.service
  emby-server/repos/community-any/emby-server.sysusers
  emby-server/repos/community-any/emby-server.tmpfiles
  emby-server/repos/community-any/license.docx

--+
 PKGBUILD |  256 -
 emby-server  |   20 +--
 emby-server.conf |   10 -
 emby-server.service  |   32 +++---
 emby-server.sysusers |2 
 emby-server.tmpfiles |2 
 6 files changed, 161 insertions(+), 161 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-12-05 18:07:12 UTC (rev 535658)
+++ PKGBUILD2019-12-05 18:07:22 UTC (rev 535659)
@@ -1,128 +0,0 @@
-# Maintainer: Maxime Gauduin 
-# Contributor: Daniel Seymour 
-
-pkgname=emby-server
-pkgver=4.3.0.26
-_ffmpeg_ver=2019_11_09
-pkgrel=1
-pkgdesc='Bring together your videos, music, photos, and live television'
-arch=(any)
-url=https://emby.media
-license=(custom)
-depends=(
-  alsa-lib
-  aom
-  bzip2
-  dotnet-runtime
-  expat
-  fontconfig
-  fribidi
-  glibc
-  gmp
-  gnutls
-  lame
-  libass.so
-  libdrm
-  libfreetype.so
-  libjpeg-turbo
-  libmfx.so
-  libpng
-  libtheora
-  libva-drm.so
-  libva.so
-  libvorbisenc.so
-  libvorbis.so
-  libwebp
-  libx264.so
-  opus
-  skia-sharp
-  sqlite
-  zlib
-  zvbi
-)
-makedepends=(
-  ffnvcodec-headers8.1
-  nasm
-)
-source=(
-  
https://github.com/MediaBrowser/Emby.Releases/releases/download/${pkgver}/embyserver-netcore_${pkgver}.zip
-  https://mediabrowser.github.io/embytools/ffmpeg-${_ffmpeg_ver}.tar.gz
-  https://mediabrowser.github.io/embytools/ffdetect-${_ffmpeg_ver}-x64.tar.xz
-  emby-server
-  emby-server.conf
-  emby-server.service
-  emby-server.sysusers
-  emby-server.tmpfiles
-  license.docx
-)
-noextract=(license.docx)
-backup=(etc/conf.d/emby-server)
-sha256sums=('2efe6c768ce968c5d1e6e43768a6802bc79167bc6eaa5d0995c78e8d520c032d'
-'4afade7a1870d1f3a90de688b8706718e2592cbb281b24ba569982aac667266f'
-'3fbee0c712c01e37953293da6d3aa4ae7a608fb5801a3eb3d9f99c1274da44db'
-'ee6ed36a13fcd8fd0b2b818eac742cc2cc2513d7f8f6cd867fa8d1c45ef3dd22'
-'d1a805284d8a1329f6f6e736423be747d8951c5a9600fbb79c13a6f9be7149c0'
-'efdaabd3002fee13a6831e90fd700dea4d7c6c954ede00da6f28c1eada33ad8c'
-'f7fa33949757ffc587ecf82496dc35ebc8c8e5c98b882b31dc40a24263d3921a'
-'a13a844a1bdc679356698e3fd7f3946d07bdfe021ed857d944ead011ad338056'
-'a6d7ea65dcb06392479a85e1a10a7aeb872d803da6f784f6935fcd4ee63008c6')
-
-prepare() {
-  rm -rf system/{electron,runtimes/{osx,tizen*,win*}}
-}
-
-build() {
-  cd ffmpeg-${_ffmpeg_ver}_public_fixed
-
-  export PKG_CONFIG_PATH=/usr/lib/ffnvcodec8.1/pkgconfig
-
-  ./configure \
---disable-doc \
---disable-ffplay \
---disable-shared \
---disable-vdpau \
---disable-libxcb \
---disable-lzma \
---disable-sdl2 \
---disable-xlib \
---enable-fontconfig \
---enable-gmp \
---enable-gnutls \
---enable-gpl \
---enable-libaom \
---enable-libass \
---enable-libdrm \
---enable-libfreetype \
---enable-libfribidi \
---enable-libmfx \
---enable-libmp3lame \
---enable-libopus \
---enable-libtheora \
---enable-libvorbis \
---enable-libwebp \
---enable-libx264 \
---enable-libzvbi \
---enable-version3 \
---enable-nvdec \
---enable-nvenc \
---enable-static \
---enable-vaapi
-  make
-}
-
-package() {
-  install -dm 755 "${pkgdir}"/usr/lib
-  cp -dr --no-preserve='ownership' system "${pkgdir}"/usr/lib/emby-server
-  ln -s ../libSkiaSharp.so.68.0.0 
"${pkgdir}"/usr/lib/emby-server/libSkiaSharp.so
-  install -Dm 755 emby-server -t "${pkgdir}"/usr/bin/
-  install -Dm 755 bin/ffdetect "${pkgdir}"/usr/bin/ffdetect-emby
-  install -Dm 755 ffmpeg-${_ffmpeg_ver}_public_fixed/ffmpeg 
"${pkgdir}"/usr/bin/ffmpeg-emby
-  install -Dm 755 

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

2019-12-05 Thread Maxime Gauduin via arch-commits
Date: Thursday, December 5, 2019 @ 18:07:12
  Author: alucryd
Revision: 535658

upgpkg: emby-server 4.3.0.30-1

Modified:
  emby-server/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-05 18:06:15 UTC (rev 535657)
+++ PKGBUILD2019-12-05 18:07:12 UTC (rev 535658)
@@ -2,7 +2,7 @@
 # Contributor: Daniel Seymour 
 
 pkgname=emby-server
-pkgver=4.3.0.26
+pkgver=4.3.0.30
 _ffmpeg_ver=2019_11_09
 pkgrel=1
 pkgdesc='Bring together your videos, music, photos, and live television'
@@ -57,7 +57,7 @@
 )
 noextract=(license.docx)
 backup=(etc/conf.d/emby-server)
-sha256sums=('2efe6c768ce968c5d1e6e43768a6802bc79167bc6eaa5d0995c78e8d520c032d'
+sha256sums=('28d2a3d7d36c298d083675f18adb7c55c8fcc738a2611a89a5ed028cfe1b8aa2'
 '4afade7a1870d1f3a90de688b8706718e2592cbb281b24ba569982aac667266f'
 '3fbee0c712c01e37953293da6d3aa4ae7a608fb5801a3eb3d9f99c1274da44db'
 'ee6ed36a13fcd8fd0b2b818eac742cc2cc2513d7f8f6cd867fa8d1c45ef3dd22'


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

2019-12-05 Thread Thore Bödecker via arch-commits
Date: Thursday, December 5, 2019 @ 18:06:10
  Author: foxxx0
Revision: 535656

upgpkg: python-cherrypy 18.5.0-1

update to 18.5.0

Modified:
  python-cherrypy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-05 18:05:59 UTC (rev 535655)
+++ PKGBUILD2019-12-05 18:06:10 UTC (rev 535656)
@@ -8,7 +8,7 @@
 
 pkgname='python-cherrypy'
 _pkgname="${pkgname#python-}"
-pkgver=18.4.0
+pkgver=18.5.0
 pkgrel=1
 pkgdesc='A pythonic, object-oriented web development framework'
 arch=('any')
@@ -23,7 +23,7 @@
   
"${pkgname}-${pkgver}.tar.gz::https://github.com/${_pkgname}/${_pkgname}/archive/v$pkgver.tar.gz;
   'disable-sessiontest-file_concurrency.patch'
 )
-sha512sums=('8ebfcdf00d488f475e33aa2cd36c46b717a37ada80042067a5ef3ee472f42cf2043743aff12802214eabd3e7ea24ccbb51fc665ebe4c0fbed023698955ea88a8'
+sha512sums=('22b3ca20cc38bbbeb87facf139824b6dda0ef1fe26aaf5a829685a660e26a559b34e32a2f665b4c2221696b366e0b190e2f6218c5f6355269b076a6de84a'
 
'e8abb7e3f8a064a0da529fcaf393dff305541bc273b539f3129b119d506be3be8cd67894dd4223e067b4dd8b55df8adc5d4feddb8d87188c9e528670c39e252f')
 
 prepare() {


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

2019-12-05 Thread Thore Bödecker via arch-commits
Date: Thursday, December 5, 2019 @ 18:06:15
  Author: foxxx0
Revision: 535657

archrelease: copy trunk to community-any

Added:
  python-cherrypy/repos/community-any/PKGBUILD
(from rev 535656, python-cherrypy/trunk/PKGBUILD)
  python-cherrypy/repos/community-any/disable-sessiontest-file_concurrency.patch
(from rev 535656, 
python-cherrypy/trunk/disable-sessiontest-file_concurrency.patch)
Deleted:
  python-cherrypy/repos/community-any/PKGBUILD
  python-cherrypy/repos/community-any/disable-sessiontest-file_concurrency.patch

+
 PKGBUILD   |  120 +--
 disable-sessiontest-file_concurrency.patch |   20 ++--
 2 files changed, 70 insertions(+), 70 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-12-05 18:06:10 UTC (rev 535656)
+++ PKGBUILD2019-12-05 18:06:15 UTC (rev 535657)
@@ -1,60 +0,0 @@
-# Maintainer:  Thore Bödecker 
-# Contributor: Laurent Soest 
-# Contributor: Angel Velasquez 
-# Contributor: Kaiting Chen 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: Armando M. Baratti 
-# Contributor: Florian Richter 
-
-pkgname='python-cherrypy'
-_pkgname="${pkgname#python-}"
-pkgver=18.4.0
-pkgrel=1
-pkgdesc='A pythonic, object-oriented web development framework'
-arch=('any')
-url='https://cherrypy.org'
-license=('BSD')
-depends=('python' 'python-six' 'python-cheroot' 'python-portend' 
'python-jaraco'
-  'python-more-itertools' 'python-zc.lockfile')
-makedepends=('python-setuptools' 'python-setuptools-scm' 'python-six'
-  'python-cheroot' 'python-portend' 'python-more-itertools' 
'python-zc.lockfile')
-checkdepends=('python-tox')
-source=(
-  
"${pkgname}-${pkgver}.tar.gz::https://github.com/${_pkgname}/${_pkgname}/archive/v$pkgver.tar.gz;
-  'disable-sessiontest-file_concurrency.patch'
-)
-sha512sums=('8ebfcdf00d488f475e33aa2cd36c46b717a37ada80042067a5ef3ee472f42cf2043743aff12802214eabd3e7ea24ccbb51fc665ebe4c0fbed023698955ea88a8'
-
'e8abb7e3f8a064a0da529fcaf393dff305541bc273b539f3129b119d506be3be8cd67894dd4223e067b4dd8b55df8adc5d4feddb8d87188c9e528670c39e252f')
-
-prepare() {
-  cd "${srcdir}/${_pkgname}-${pkgver}"
-  # apply patch from the source array (should be a pacman feature)
-  local filename
-  for filename in "${source[@]}"; do
-if [[ "$filename" =~ \.patch$ ]]; then
-  msg2 "Applying patch ${filename##*/}"
-  patch -p1 -N -i "$srcdir/${filename##*/}"
-fi
-  done
-}
-
-build() {
-  # setuptools wont find version from git tag
-  export SETUPTOOLS_SCM_PRETEND_VERSION="${pkgver}"
-  cd "${srcdir}/${_pkgname}-${pkgver}"
-  python ./setup.py build
-}
-
-check() {
-  cd "${srcdir}/${_pkgname}-${pkgver}"
-  tox
-}
-
-package() {
-  cd "${srcdir}/${_pkgname}-${pkgver}"
-
-  python ./setup.py install --root="${pkgdir}" --optimize=1
-
-  install -Dm644 LICENSE.md \
-"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.md"
-}

Copied: python-cherrypy/repos/community-any/PKGBUILD (from rev 535656, 
python-cherrypy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-12-05 18:06:15 UTC (rev 535657)
@@ -0,0 +1,60 @@
+# Maintainer:  Thore Bödecker 
+# Contributor: Laurent Soest 
+# Contributor: Angel Velasquez 
+# Contributor: Kaiting Chen 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: Armando M. Baratti 
+# Contributor: Florian Richter 
+
+pkgname='python-cherrypy'
+_pkgname="${pkgname#python-}"
+pkgver=18.5.0
+pkgrel=1
+pkgdesc='A pythonic, object-oriented web development framework'
+arch=('any')
+url='https://cherrypy.org'
+license=('BSD')
+depends=('python' 'python-six' 'python-cheroot' 'python-portend' 
'python-jaraco'
+  'python-more-itertools' 'python-zc.lockfile')
+makedepends=('python-setuptools' 'python-setuptools-scm' 'python-six'
+  'python-cheroot' 'python-portend' 'python-more-itertools' 
'python-zc.lockfile')
+checkdepends=('python-tox')
+source=(
+  
"${pkgname}-${pkgver}.tar.gz::https://github.com/${_pkgname}/${_pkgname}/archive/v$pkgver.tar.gz;
+  'disable-sessiontest-file_concurrency.patch'
+)
+sha512sums=('22b3ca20cc38bbbeb87facf139824b6dda0ef1fe26aaf5a829685a660e26a559b34e32a2f665b4c2221696b366e0b190e2f6218c5f6355269b076a6de84a'
+
'e8abb7e3f8a064a0da529fcaf393dff305541bc273b539f3129b119d506be3be8cd67894dd4223e067b4dd8b55df8adc5d4feddb8d87188c9e528670c39e252f')
+
+prepare() {
+  cd "${srcdir}/${_pkgname}-${pkgver}"
+  # apply patch from the source array (should be a pacman feature)
+  local filename
+  for filename in "${source[@]}"; do
+if [[ "$filename" =~ \.patch$ ]]; then
+  msg2 "Applying patch ${filename##*/}"
+  patch -p1 -N -i "$srcdir/${filename##*/}"
+fi
+  done
+}
+
+build() {
+  # setuptools wont find version from git tag
+  export SETUPTOOLS_SCM_PRETEND_VERSION="${pkgver}"
+  cd "${srcdir}/${_pkgname}-${pkgver}"
+  

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

2019-12-05 Thread Thore Bödecker via arch-commits
Date: Thursday, December 5, 2019 @ 18:05:55
  Author: foxxx0
Revision: 535654

upgpkg: clipmenu 5.6.0-2

fix incorrect executable bit, fixes FS#64737

Modified:
  clipmenu/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-05 18:00:27 UTC (rev 535653)
+++ PKGBUILD2019-12-05 18:05:55 UTC (rev 535654)
@@ -3,7 +3,7 @@
 
 pkgname=clipmenu
 pkgver=5.6.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Clipboard management using dmenu'
 url='https://github.com/cdown/clipmenu'
 arch=('any')
@@ -23,6 +23,6 @@
   install -D -m755 clipmenu "${pkgdir}/usr/bin/clipmenu"
   install -D -m755 clipmenud "${pkgdir}/usr/bin/clipmenud"
   install -D -m755 clipdel "${pkgdir}/usr/bin/clipdel"
-  install -D -m755 init/clipmenud.service 
"${pkgdir}/usr/lib/systemd/user/clipmenud.service"
+  install -D -m644 init/clipmenud.service 
"${pkgdir}/usr/lib/systemd/user/clipmenud.service"
   install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
 }


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

2019-12-05 Thread Thore Bödecker via arch-commits
Date: Thursday, December 5, 2019 @ 18:05:59
  Author: foxxx0
Revision: 535655

archrelease: copy trunk to community-any

Added:
  clipmenu/repos/community-any/PKGBUILD
(from rev 535654, clipmenu/trunk/PKGBUILD)
Deleted:
  clipmenu/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-12-05 18:05:55 UTC (rev 535654)
+++ PKGBUILD2019-12-05 18:05:59 UTC (rev 535655)
@@ -1,28 +0,0 @@
-# Maintainer: Thore Bödecker 
-# Contributor: Chris Down 
-
-pkgname=clipmenu
-pkgver=5.6.0
-pkgrel=1
-pkgdesc='Clipboard management using dmenu'
-url='https://github.com/cdown/clipmenu'
-arch=('any')
-license=('custom:Public Domain')
-depends=('dmenu' 'xsel')
-optdepends=(
-  'rofi: dmenu replacement (use with "export CM_LAUNCHER=rofi")'
-  'clipnotify: polling-free clipboard notifier'
-)
-
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/cdown/clipmenu/archive/${pkgver}.tar.gz;)
-sha512sums=('e2a74f71d4bb7b3a19847c58915cdc2e71dde926ae17e13b170de3f5af827d74140909a1fce6a3013ba7fdedbf34ff0a5272d2915a05b54e752146e7ebee752d')
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  install -D -m755 clipmenu "${pkgdir}/usr/bin/clipmenu"
-  install -D -m755 clipmenud "${pkgdir}/usr/bin/clipmenud"
-  install -D -m755 clipdel "${pkgdir}/usr/bin/clipdel"
-  install -D -m755 init/clipmenud.service 
"${pkgdir}/usr/lib/systemd/user/clipmenud.service"
-  install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: clipmenu/repos/community-any/PKGBUILD (from rev 535654, 
clipmenu/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-12-05 18:05:59 UTC (rev 535655)
@@ -0,0 +1,28 @@
+# Maintainer: Thore Bödecker 
+# Contributor: Chris Down 
+
+pkgname=clipmenu
+pkgver=5.6.0
+pkgrel=2
+pkgdesc='Clipboard management using dmenu'
+url='https://github.com/cdown/clipmenu'
+arch=('any')
+license=('custom:Public Domain')
+depends=('dmenu' 'xsel')
+optdepends=(
+  'rofi: dmenu replacement (use with "export CM_LAUNCHER=rofi")'
+  'clipnotify: polling-free clipboard notifier'
+)
+
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/cdown/clipmenu/archive/${pkgver}.tar.gz;)
+sha512sums=('e2a74f71d4bb7b3a19847c58915cdc2e71dde926ae17e13b170de3f5af827d74140909a1fce6a3013ba7fdedbf34ff0a5272d2915a05b54e752146e7ebee752d')
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  install -D -m755 clipmenu "${pkgdir}/usr/bin/clipmenu"
+  install -D -m755 clipmenud "${pkgdir}/usr/bin/clipmenud"
+  install -D -m755 clipdel "${pkgdir}/usr/bin/clipdel"
+  install -D -m644 init/clipmenud.service 
"${pkgdir}/usr/lib/systemd/user/clipmenud.service"
+  install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}


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

2019-12-05 Thread Thore Bödecker via arch-commits
Date: Thursday, December 5, 2019 @ 18:00:27
  Author: foxxx0
Revision: 535653

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-12-05 18:00:22 UTC (rev 535652)
+++ PKGBUILD2019-12-05 18:00:27 UTC (rev 535653)
@@ -1,41 +0,0 @@
-# Maintainer: Thore Bödecker 
-pkgbase='python-kajiki'
-_pkgbase="${pkgbase#python-}"
-pkgname=("python-${_pkgbase}" "python2-${_pkgbase}")
-pkgver=0.8.1
-pkgrel=2
-pkgdesc='Python XML-based template engine with Genshi-like syntax and 
Jinja-style blocks'
-arch=('any')
-url='https://github.com/nandoflorestan/kajiki'
-license=('LGPL')
-makedepends=('python-setuptools' 'python2-setuptools')
-checkdepends=('python-babel' 'python2-babel' 'python-nose' 'python2-nose' 
'python-nine' 'python2-nine')
-source=("${_pkgbase}-${pkgver}.tar.gz::https://github.com/nandoflorestan/kajiki/archive/v${pkgver}.tar.gz;)
-sha512sums=('016338f2f585b4af774f25925b111bc82654589f222a273eb7bd785e8ce6383bf847cec99ab0e7b8925a4b9b080a47fb202398f1abdb9089b645bdcfb78fbfeb')
-
-prepare(){
-  cp -r "${srcdir}/${_pkgbase}-${pkgver}" "${srcdir}/${_pkgbase}-${pkgver}-py2"
-
-  # fix python interpreter for python2 stuff
-  find "${srcdir}/${_pkgbase}-${pkgver}-py2" -type f -name '*.py' \
--exec sed -i 's|^#!/usr/bin/env python$|#!/usr/bin/env python2|1' {} +
-}
-
-check() {
-  cd "${srcdir}/${_pkgbase}-${pkgver}"
-  python ./setup.py test
-  cd "${srcdir}/${_pkgbase}-${pkgver}-py2"
-  python2 ./setup.py test
-}
-
-package_python-kajiki() {
-  depends=('python')
-  cd "${srcdir}/${_pkgbase}-${pkgver}"
-  python ./setup.py install --root="$pkgdir/" --optimize=1
-}
-
-package_python2-kajiki() {
-  depends=('python2')
-  cd "${srcdir}/${_pkgbase}-${pkgver}-py2"
-  python2 ./setup.py install --root="$pkgdir/" --optimize=1
-}

Copied: python-kajiki/repos/community-any/PKGBUILD (from rev 535652, 
python-kajiki/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-12-05 18:00:27 UTC (rev 535653)
@@ -0,0 +1,41 @@
+# Maintainer: Thore Bödecker 
+pkgbase='python-kajiki'
+_pkgbase="${pkgbase#python-}"
+pkgname=("python-${_pkgbase}" "python2-${_pkgbase}")
+pkgver=0.8.2
+pkgrel=1
+pkgdesc='Python XML-based template engine with Genshi-like syntax and 
Jinja-style blocks'
+arch=('any')
+url='https://github.com/nandoflorestan/kajiki'
+license=('LGPL')
+makedepends=('python-setuptools' 'python2-setuptools')
+checkdepends=('python-babel' 'python2-babel' 'python-nose' 'python2-nose' 
'python-nine' 'python2-nine')
+source=("${_pkgbase}-${pkgver}.tar.gz::https://github.com/nandoflorestan/kajiki/archive/v${pkgver}.tar.gz;)
+sha512sums=('c6d4a7ed0b0a66af744d622a113f0fdccd3b13aa7ea75e0eda4d42c5f9234341367a5bcc92a98ecd394d824e1b0949d85d7fe384c88aaa05500a298e5101dc7a')
+
+prepare(){
+  cp -r "${srcdir}/${_pkgbase}-${pkgver}" "${srcdir}/${_pkgbase}-${pkgver}-py2"
+
+  # fix python interpreter for python2 stuff
+  find "${srcdir}/${_pkgbase}-${pkgver}-py2" -type f -name '*.py' \
+-exec sed -i 's|^#!/usr/bin/env python$|#!/usr/bin/env python2|1' {} +
+}
+
+check() {
+  cd "${srcdir}/${_pkgbase}-${pkgver}"
+  python ./setup.py test
+  cd "${srcdir}/${_pkgbase}-${pkgver}-py2"
+  python2 ./setup.py test
+}
+
+package_python-kajiki() {
+  depends=('python')
+  cd "${srcdir}/${_pkgbase}-${pkgver}"
+  python ./setup.py install --root="$pkgdir/" --optimize=1
+}
+
+package_python2-kajiki() {
+  depends=('python2')
+  cd "${srcdir}/${_pkgbase}-${pkgver}-py2"
+  python2 ./setup.py install --root="$pkgdir/" --optimize=1
+}


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

2019-12-05 Thread Thore Bödecker via arch-commits
Date: Thursday, December 5, 2019 @ 18:00:22
  Author: foxxx0
Revision: 535652

upgpkg: python-kajiki 0.8.2-1

update to 0.8.2

Modified:
  python-kajiki/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-05 17:59:13 UTC (rev 535651)
+++ PKGBUILD2019-12-05 18:00:22 UTC (rev 535652)
@@ -2,8 +2,8 @@
 pkgbase='python-kajiki'
 _pkgbase="${pkgbase#python-}"
 pkgname=("python-${_pkgbase}" "python2-${_pkgbase}")
-pkgver=0.8.1
-pkgrel=2
+pkgver=0.8.2
+pkgrel=1
 pkgdesc='Python XML-based template engine with Genshi-like syntax and 
Jinja-style blocks'
 arch=('any')
 url='https://github.com/nandoflorestan/kajiki'
@@ -11,7 +11,7 @@
 makedepends=('python-setuptools' 'python2-setuptools')
 checkdepends=('python-babel' 'python2-babel' 'python-nose' 'python2-nose' 
'python-nine' 'python2-nine')
 
source=("${_pkgbase}-${pkgver}.tar.gz::https://github.com/nandoflorestan/kajiki/archive/v${pkgver}.tar.gz;)
-sha512sums=('016338f2f585b4af774f25925b111bc82654589f222a273eb7bd785e8ce6383bf847cec99ab0e7b8925a4b9b080a47fb202398f1abdb9089b645bdcfb78fbfeb')
+sha512sums=('c6d4a7ed0b0a66af744d622a113f0fdccd3b13aa7ea75e0eda4d42c5f9234341367a5bcc92a98ecd394d824e1b0949d85d7fe384c88aaa05500a298e5101dc7a')
 
 prepare(){
   cp -r "${srcdir}/${_pkgbase}-${pkgver}" "${srcdir}/${_pkgbase}-${pkgver}-py2"


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

2019-12-05 Thread Thore Bödecker via arch-commits
Date: Thursday, December 5, 2019 @ 17:59:03
  Author: foxxx0
Revision: 535649

archrelease: copy trunk to community-x86_64

Added:
  dovecot/repos/community-x86_64/PKGBUILD
(from rev 535648, dovecot/trunk/PKGBUILD)
  dovecot/repos/community-x86_64/dovecot.ld.so.conf
(from rev 535648, dovecot/trunk/dovecot.ld.so.conf)
  dovecot/repos/community-x86_64/dovecot.pam
(from rev 535648, dovecot/trunk/dovecot.pam)
  dovecot/repos/community-x86_64/dovecot.sysusersd
(from rev 535648, dovecot/trunk/dovecot.sysusersd)
  dovecot/repos/community-x86_64/dovecot.tmpfilesd
(from rev 535648, dovecot/trunk/dovecot.tmpfilesd)
  dovecot/repos/community-x86_64/fix-mysql-double-free.patch
(from rev 535648, dovecot/trunk/fix-mysql-double-free.patch)
Deleted:
  dovecot/repos/community-x86_64/PKGBUILD
  dovecot/repos/community-x86_64/dovecot.ld.so.conf
  dovecot/repos/community-x86_64/dovecot.pam
  dovecot/repos/community-x86_64/dovecot.sysusersd
  dovecot/repos/community-x86_64/dovecot.tmpfilesd
  dovecot/repos/community-x86_64/fix-mysql-double-free.patch

-+
 PKGBUILD|  252 +-
 dovecot.ld.so.conf  |2 
 dovecot.pam |   10 -
 dovecot.sysusersd   |4 
 dovecot.tmpfilesd   |2 
 fix-mysql-double-free.patch |   72 ++--
 6 files changed, 171 insertions(+), 171 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-12-05 17:58:53 UTC (rev 535648)
+++ PKGBUILD2019-12-05 17:59:03 UTC (rev 535649)
@@ -1,126 +0,0 @@
-# Maintainer: Johannes Löthberg 
-# Maintainer: Thore Bödecker 
-# Contributor:  Bartłomiej Piotrowski 
-# Contributor: Andreas Radke 
-# Contributor: Paul Mattal 
-# Contributor: Federico Quagliata (quaqo) 
-# Contributor: GARETTE Emmanuel 
-# Contributor: Phillip Schichtel 
-
-# --->>> remember to rebuild/bump pigeonhole in one step <<<---
-
-pkgname=dovecot
-pkgver=2.3.8
-pkgrel=3
-
-pkgdesc="An IMAP and POP3 server written with security primarily in mind"
-url="https://dovecot.org/;
-arch=('x86_64')
-license=("LGPL")
-
-depends=('krb5' 'openssl' 'sqlite' 'mariadb-libs' 'libsodium'
- 'postgresql-libs' 'bzip2' 'lz4' 'expat' 'curl' 'pam')
-makedepends=('libcap' 'libldap' 'clucene' 'libsodium' 'lua')
-optdepends=('libldap: ldap plugin'
-'xz: imap zlib  plugin'
-'clucene: alternative FTS indexer'
-'lua: LUA auth and push support')
-
-provides=('imap-server' 'pop3-server')
-
-backup=('etc/pam.d/dovecot')
-
-source=("https://dovecot.org/releases/2.3/${pkgname}-${pkgver}.tar.gz"{,.sig}
-'dovecot.sysusersd'
-'dovecot.tmpfilesd'
-'dovecot.ld.so.conf'
-'dovecot.pam')
-
-sha256sums=('c5778d03bf26ab34a605854098035badec455d07adfab38d974f610c8f78b649'
-'SKIP'
-'c5e3a8ffe23e5deb4f7893d9877d972347c2ee45c4ebf713de85c537e47cfcaf'
-'0b0625b1e66ca6a95d506fd00d6a68e70620c8ea28606e2528953ffb1806b08e'
-'a457a1691cfa82495fc0503bfa4b61e54b149e63400fe0f568dff2c24a3f7858'
-'ad9245f5e916480edd67139603cbe52e7a868233075f900ab63a0ce58f03741a')
-
-validpgpkeys=(
-  'E643F0BDFDCD04D9FFCB6279C948525140558AC9' # Timo Sirainen 
-  '2BE74AAB3EE754DFB9C80D3318A348AEED409DA1' # Dovecot Community Edition
-)
-
-prepare() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  local filename
-  for filename in "${source[@]}"; do
-if [[ "$filename" =~ \.patch$ ]]; then
-  msg2 "Applying patch ${filename##*/}"
-  patch -p1 -N -l -i "$srcdir/${filename##*/}"
-fi
-  done
-
-  # fix path in helper script
-  sed -i 
's:OPENSSLCONFIG=${OPENSSLCONFIG-dovecot-openssl.cnf}:OPENSSLCONFIG=${OPENSSLCONFIG-
 /etc/ssl/dovecot-openssl.cnf}:' doc/mkcert.sh
-}
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  ./configure --prefix=/usr --sysconfdir=/etc \
---sbindir=/usr/bin \
---localstatedir=/var \
---libexecdir=/usr/lib \
---with-rundir=/run/dovecot \
---with-moduledir=/usr/lib/dovecot/modules \
---with-systemdsystemunitdir=/usr/lib/systemd/system \
---disable-static \
---with-nss \
---with-pam \
---with-mysql \
---with-pgsql \
---with-sqlite \
---with-ssl=openssl \
---with-ssldir=/etc/ssl \
---with-gssapi \
---with-ldap=plugin \
---with-lua=plugin \
---with-zlib \
---with-bzlib \
---with-lzma \
---with-lz4 \
---with-libcap \
---with-solr \
---with-lucene \
---with-sodium \
---with-docs
-
-  make
-}
-
-check() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make check
-}
-
-package() {
-  # system user/group dovenull - 74
-  # system user/group dovecot  - 76
-
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="$pkgdir" install
-  install -Dm644 "${srcdir}/dovecot.sysusersd" \
-"${pkgdir}/usr/lib/sysusers.d/dovecot.conf"
-  install -Dm644 "${srcdir}/dovecot.tmpfilesd" \
-

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

2019-12-05 Thread Thore Bödecker via arch-commits
Date: Thursday, December 5, 2019 @ 17:59:13
  Author: foxxx0
Revision: 535651

archrelease: copy trunk to community-x86_64

Added:
  pigeonhole/repos/community-x86_64/PKGBUILD
(from rev 535650, pigeonhole/trunk/PKGBUILD)
Deleted:
  pigeonhole/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |  138 ++---
 1 file changed, 69 insertions(+), 69 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-12-05 17:59:09 UTC (rev 535650)
+++ PKGBUILD2019-12-05 17:59:13 UTC (rev 535651)
@@ -1,69 +0,0 @@
-# Maintainer: Johannes Löthberg 
-# Maintainer: Thore Bödecker 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Andreas Radke 
-# Contributor: Peter Lewis 
-# Contributor: Sebastian Köhler 
-
-# This must be built against the version of dovecot being used,
-# else mail delivery will fail.
-# Specify the version of dovecot to be used here:
-_dcpkgver=2.3.8
-# Make sure to bump pkgrel if changing this.
-
-pkgname=pigeonhole
-pkgver=0.5.8
-pkgrel=1
-
-pkgdesc='Sieve implementation for Dovecot'
-url='https://pigeonhole.dovecot.org/'
-arch=('x86_64')
-license=('LGPL')
-
-depends=("dovecot=${_dcpkgver}")
-
-conflicts=('dovecot-sieve' 'pigeonhole-hg')
-
-source=("https://pigeonhole.dovecot.org/releases/2.3/dovecot-2.3-pigeonhole-${pkgver}.tar.gz"{,.sig})
-
-sha256sums=('8fb860d50c1b1a09aea9e25f8ee89c22e34ecedfb0e11a1c48a7f67310759022'
-'SKIP')
-validpgpkeys=(
-  '42F3CD50D4F25A41833BEE3704D62B1E3DFBB4F4' # Stephan Bosch 

-  '2BE74AAB3EE754DFB9C80D3318A348AEED409DA1'
-)
-
-
-prepare() {
-  cd "dovecot-2.3-pigeonhole-${pkgver}"
-
-  local filename
-  for filename in "${source[@]}"; do
-if [[ "$filename" =~ \.patch$ ]]; then
-  msg2 "Applying patch ${filename##*/}"
-  patch -p1 -N -l -i "$srcdir/${filename##*/}"
-fi
-  done
-}
-
-build() {
-  cd "dovecot-2.3-pigeonhole-${pkgver}"
-
-  ./configure \
---prefix=/usr \
---with-dovecot=/usr/lib/dovecot \
---with-moduledir=/usr/lib/dovecot/modules \
---disable-static
-  make
-}
-
-check() {
-  cd "dovecot-2.3-pigeonhole-${pkgver}"
-  make check
-}
-
-package() {
-  cd "dovecot-2.3-pigeonhole-${pkgver}"
-
-  make DESTDIR="$pkgdir" install
-}

Copied: pigeonhole/repos/community-x86_64/PKGBUILD (from rev 535650, 
pigeonhole/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-12-05 17:59:13 UTC (rev 535651)
@@ -0,0 +1,69 @@
+# Maintainer: Johannes Löthberg 
+# Maintainer: Thore Bödecker 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Andreas Radke 
+# Contributor: Peter Lewis 
+# Contributor: Sebastian Köhler 
+
+# This must be built against the version of dovecot being used,
+# else mail delivery will fail.
+# Specify the version of dovecot to be used here:
+_dcpkgver=2.3.9
+# Make sure to bump pkgrel if changing this.
+
+pkgname=pigeonhole
+pkgver=0.5.9
+pkgrel=1
+
+pkgdesc='Sieve implementation for Dovecot'
+url='https://pigeonhole.dovecot.org/'
+arch=('x86_64')
+license=('LGPL')
+
+depends=("dovecot=${_dcpkgver}")
+
+conflicts=('dovecot-sieve' 'pigeonhole-hg')
+
+source=("https://pigeonhole.dovecot.org/releases/2.3/dovecot-2.3-pigeonhole-${pkgver}.tar.gz"{,.sig})
+
+sha256sums=('36da68aae5157b83e21383f711b8977e5b6f5477f369f71e7e22e76a738bbd05'
+'SKIP')
+validpgpkeys=(
+  '42F3CD50D4F25A41833BEE3704D62B1E3DFBB4F4' # Stephan Bosch 

+  '2BE74AAB3EE754DFB9C80D3318A348AEED409DA1'
+)
+
+
+prepare() {
+  cd "dovecot-2.3-pigeonhole-${pkgver}"
+
+  local filename
+  for filename in "${source[@]}"; do
+if [[ "$filename" =~ \.patch$ ]]; then
+  msg2 "Applying patch ${filename##*/}"
+  patch -p1 -N -l -i "$srcdir/${filename##*/}"
+fi
+  done
+}
+
+build() {
+  cd "dovecot-2.3-pigeonhole-${pkgver}"
+
+  ./configure \
+--prefix=/usr \
+--with-dovecot=/usr/lib/dovecot \
+--with-moduledir=/usr/lib/dovecot/modules \
+--disable-static
+  make
+}
+
+check() {
+  cd "dovecot-2.3-pigeonhole-${pkgver}"
+  make check
+}
+
+package() {
+  cd "dovecot-2.3-pigeonhole-${pkgver}"
+
+  make DESTDIR="$pkgdir" install
+}


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

2019-12-05 Thread Thore Bödecker via arch-commits
Date: Thursday, December 5, 2019 @ 17:59:09
  Author: foxxx0
Revision: 535650

upgpkg: pigeonhole 0.5.9-1

update to 0.5.9 for dovecot 2.3.9

Modified:
  pigeonhole/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-05 17:59:03 UTC (rev 535649)
+++ PKGBUILD2019-12-05 17:59:09 UTC (rev 535650)
@@ -8,11 +8,11 @@
 # This must be built against the version of dovecot being used,
 # else mail delivery will fail.
 # Specify the version of dovecot to be used here:
-_dcpkgver=2.3.8
+_dcpkgver=2.3.9
 # Make sure to bump pkgrel if changing this.
 
 pkgname=pigeonhole
-pkgver=0.5.8
+pkgver=0.5.9
 pkgrel=1
 
 pkgdesc='Sieve implementation for Dovecot'
@@ -26,7 +26,7 @@
 
 
source=("https://pigeonhole.dovecot.org/releases/2.3/dovecot-2.3-pigeonhole-${pkgver}.tar.gz"{,.sig})
 
-sha256sums=('8fb860d50c1b1a09aea9e25f8ee89c22e34ecedfb0e11a1c48a7f67310759022'
+sha256sums=('36da68aae5157b83e21383f711b8977e5b6f5477f369f71e7e22e76a738bbd05'
 'SKIP')
 validpgpkeys=(
   '42F3CD50D4F25A41833BEE3704D62B1E3DFBB4F4' # Stephan Bosch 



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

2019-12-05 Thread Thore Bödecker via arch-commits
Date: Thursday, December 5, 2019 @ 17:58:53
  Author: foxxx0
Revision: 535648

upgpkg: dovecot 2.3.9-1

update to 2.3.9

Modified:
  dovecot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-05 17:34:02 UTC (rev 535647)
+++ PKGBUILD2019-12-05 17:58:53 UTC (rev 535648)
@@ -10,8 +10,8 @@
 # --->>> remember to rebuild/bump pigeonhole in one step <<<---
 
 pkgname=dovecot
-pkgver=2.3.8
-pkgrel=3
+pkgver=2.3.9
+pkgrel=1
 
 pkgdesc="An IMAP and POP3 server written with security primarily in mind"
 url="https://dovecot.org/;
@@ -36,7 +36,7 @@
 'dovecot.ld.so.conf'
 'dovecot.pam')
 
-sha256sums=('c5778d03bf26ab34a605854098035badec455d07adfab38d974f610c8f78b649'
+sha256sums=('df2c53e5a0463c5c52af682fb11c17eb7f79115d95a861a63cd09329fd7daa9f'
 'SKIP'
 'c5e3a8ffe23e5deb4f7893d9877d972347c2ee45c4ebf713de85c537e47cfcaf'
 '0b0625b1e66ca6a95d506fd00d6a68e70620c8ea28606e2528953ffb1806b08e'


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

2019-12-05 Thread Jelle van der Waa via arch-commits
Date: Thursday, December 5, 2019 @ 17:47:46
  Author: jelle
Revision: 370434

Run test suite!

Modified:
  mescc-tools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-05 15:08:09 UTC (rev 370433)
+++ PKGBUILD2019-12-05 17:47:46 UTC (rev 370434)
@@ -16,6 +16,11 @@
   make
 }
 
+check() {
+  cd mescc-tools-Release_$pkgver
+  make test
+}
+
 package() {
   cd mescc-tools-Release_$pkgver
   make PREFIX=/usr DESTDIR=$pkgdir install


[arch-commits] Commit in emby-server/repos/community-any (14 files)

2019-12-05 Thread Maxime Gauduin via arch-commits
Date: Thursday, December 5, 2019 @ 17:34:02
  Author: alucryd
Revision: 535647

archrelease: copy trunk to community-any

Added:
  emby-server/repos/community-any/PKGBUILD
(from rev 535646, emby-server/trunk/PKGBUILD)
  emby-server/repos/community-any/emby-server
(from rev 535646, emby-server/trunk/emby-server)
  emby-server/repos/community-any/emby-server.conf
(from rev 535646, emby-server/trunk/emby-server.conf)
  emby-server/repos/community-any/emby-server.service
(from rev 535646, emby-server/trunk/emby-server.service)
  emby-server/repos/community-any/emby-server.sysusers
(from rev 535646, emby-server/trunk/emby-server.sysusers)
  emby-server/repos/community-any/emby-server.tmpfiles
(from rev 535646, emby-server/trunk/emby-server.tmpfiles)
  emby-server/repos/community-any/license.docx
(from rev 535646, emby-server/trunk/license.docx)
Deleted:
  emby-server/repos/community-any/PKGBUILD
  emby-server/repos/community-any/emby-server
  emby-server/repos/community-any/emby-server.conf
  emby-server/repos/community-any/emby-server.service
  emby-server/repos/community-any/emby-server.sysusers
  emby-server/repos/community-any/emby-server.tmpfiles
  emby-server/repos/community-any/license.docx

--+
 PKGBUILD |  256 -
 emby-server  |   20 +--
 emby-server.conf |   10 -
 emby-server.service  |   32 +++---
 emby-server.sysusers |2 
 emby-server.tmpfiles |2 
 6 files changed, 161 insertions(+), 161 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-12-05 17:33:50 UTC (rev 535646)
+++ PKGBUILD2019-12-05 17:34:02 UTC (rev 535647)
@@ -1,128 +0,0 @@
-# Maintainer: Maxime Gauduin 
-# Contributor: Daniel Seymour 
-
-pkgname=emby-server
-pkgver=4.2.1.0
-_ffmpeg_ver=2019_04_09
-_ffdetect_ver=4.0.3
-pkgrel=1
-pkgdesc='Bring together your videos, music, photos, and live television'
-arch=(any)
-url=https://emby.media
-license=(custom)
-depends=(
-  alsa-lib
-  aom
-  dotnet-runtime
-  fontconfig
-  fribidi
-  gmp
-  gnutls
-  lame
-  libass.so
-  libdrm
-  libfreetype.so
-  libjpeg-turbo
-  libmfx.so
-  libpng
-  libtheora
-  libva-drm.so
-  libva.so
-  libva-x11.so
-  libvorbisenc.so
-  libvorbis.so
-  libwebp
-  libx11
-  libx264.so
-  opus
-  skia-sharp
-  sqlite
-  zlib
-  zvbi
-)
-makedepends=(
-  ffnvcodec-headers8.1
-  nasm
-)
-source=(
-  
https://github.com/MediaBrowser/Emby.Releases/releases/download/${pkgver}/embyserver-netcore_${pkgver}.zip
-  https://mediabrowser.github.io/embytools/ffmpeg-${_ffmpeg_ver}.tar.gz
-  https://mediabrowser.github.io/embytools/ffdetect_${_ffdetect_ver}_x64.tar.xz
-  emby-server
-  emby-server.conf
-  emby-server.service
-  emby-server.sysusers
-  emby-server.tmpfiles
-  license.docx
-)
-noextract=(license.docx)
-backup=(etc/conf.d/emby-server)
-sha256sums=('684a47c36700063141257c6325bbb2519ba11a7c7711e54e128d96f30adecdff'
-'d2081fd92e92ee90561c91edbd28ccba4beb1d72bdd38cd94c338726020e2e62'
-'85697071cb6412d244fc6dd76f3561b6a42d7556ef20f26a702542b58198f0c7'
-'ee6ed36a13fcd8fd0b2b818eac742cc2cc2513d7f8f6cd867fa8d1c45ef3dd22'
-'d1a805284d8a1329f6f6e736423be747d8951c5a9600fbb79c13a6f9be7149c0'
-'efdaabd3002fee13a6831e90fd700dea4d7c6c954ede00da6f28c1eada33ad8c'
-'f7fa33949757ffc587ecf82496dc35ebc8c8e5c98b882b31dc40a24263d3921a'
-'a13a844a1bdc679356698e3fd7f3946d07bdfe021ed857d944ead011ad338056'
-'a6d7ea65dcb06392479a85e1a10a7aeb872d803da6f784f6935fcd4ee63008c6')
-
-prepare() {
-  rm -rf system/{electron,runtimes}
-}
-
-build() {
-  cd ffmpeg-${_ffmpeg_ver}
-
-  export PKG_CONFIG_PATH=/usr/lib/ffnvcodec8.1/pkgconfig
-
-  ./configure \
---disable-doc \
---disable-ffplay \
---disable-shared \
---disable-vdpau \
---disable-libxcb \
---disable-lzma \
---disable-sdl2 \
---disable-xlib \
---enable-fontconfig \
---enable-gmp \
---enable-gnutls \
---enable-gpl \
---enable-libaom \
---enable-libass \
---enable-libdrm \
---enable-libfreetype \
---enable-libfribidi \
---enable-libmfx \
---enable-libmp3lame \
---enable-libopus \
---enable-libtheora \
---enable-libvorbis \
---enable-libwebp \
---enable-libx264 \
---enable-libzvbi \
---enable-version3 \
---enable-nvdec \
---enable-nvenc \
---enable-static \
---enable-vaapi
-  make
-}
-
-package() {
-  install -dm 755 "${pkgdir}"/usr/lib
-  cp -dr --no-preserve='ownership' system "${pkgdir}"/usr/lib/emby-server
-  ln -s ../libSkiaSharp.so.68.0.0 
"${pkgdir}"/usr/lib/emby-server/libSkiaSharp.so
-  install -Dm 755 emby-server -t "${pkgdir}"/usr/bin/
-  install -Dm 755 bin/ffdetect "${pkgdir}"/usr/bin/ffdetect-emby
-  install -Dm 755 ffmpeg-${_ffmpeg_ver}/ffmpeg "${pkgdir}"/usr/bin/ffmpeg-emby
-  install -Dm 755 

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

2019-12-05 Thread Maxime Gauduin via arch-commits
Date: Thursday, December 5, 2019 @ 17:33:50
  Author: alucryd
Revision: 535646

upgpkg: emby-server 4.3.0.26-1

Modified:
  emby-server/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-05 16:54:20 UTC (rev 535645)
+++ PKGBUILD2019-12-05 17:33:50 UTC (rev 535646)
@@ -2,9 +2,8 @@
 # Contributor: Daniel Seymour 
 
 pkgname=emby-server
-pkgver=4.2.1.0
-_ffmpeg_ver=2019_04_09
-_ffdetect_ver=4.0.3
+pkgver=4.3.0.26
+_ffmpeg_ver=2019_11_09
 pkgrel=1
 pkgdesc='Bring together your videos, music, photos, and live television'
 arch=(any)
@@ -13,9 +12,12 @@
 depends=(
   alsa-lib
   aom
+  bzip2
   dotnet-runtime
+  expat
   fontconfig
   fribidi
+  glibc
   gmp
   gnutls
   lame
@@ -28,11 +30,9 @@
   libtheora
   libva-drm.so
   libva.so
-  libva-x11.so
   libvorbisenc.so
   libvorbis.so
   libwebp
-  libx11
   libx264.so
   opus
   skia-sharp
@@ -47,7 +47,7 @@
 source=(
   
https://github.com/MediaBrowser/Emby.Releases/releases/download/${pkgver}/embyserver-netcore_${pkgver}.zip
   https://mediabrowser.github.io/embytools/ffmpeg-${_ffmpeg_ver}.tar.gz
-  https://mediabrowser.github.io/embytools/ffdetect_${_ffdetect_ver}_x64.tar.xz
+  https://mediabrowser.github.io/embytools/ffdetect-${_ffmpeg_ver}-x64.tar.xz
   emby-server
   emby-server.conf
   emby-server.service
@@ -57,9 +57,9 @@
 )
 noextract=(license.docx)
 backup=(etc/conf.d/emby-server)
-sha256sums=('684a47c36700063141257c6325bbb2519ba11a7c7711e54e128d96f30adecdff'
-'d2081fd92e92ee90561c91edbd28ccba4beb1d72bdd38cd94c338726020e2e62'
-'85697071cb6412d244fc6dd76f3561b6a42d7556ef20f26a702542b58198f0c7'
+sha256sums=('2efe6c768ce968c5d1e6e43768a6802bc79167bc6eaa5d0995c78e8d520c032d'
+'4afade7a1870d1f3a90de688b8706718e2592cbb281b24ba569982aac667266f'
+'3fbee0c712c01e37953293da6d3aa4ae7a608fb5801a3eb3d9f99c1274da44db'
 'ee6ed36a13fcd8fd0b2b818eac742cc2cc2513d7f8f6cd867fa8d1c45ef3dd22'
 'd1a805284d8a1329f6f6e736423be747d8951c5a9600fbb79c13a6f9be7149c0'
 'efdaabd3002fee13a6831e90fd700dea4d7c6c954ede00da6f28c1eada33ad8c'
@@ -68,11 +68,11 @@
 'a6d7ea65dcb06392479a85e1a10a7aeb872d803da6f784f6935fcd4ee63008c6')
 
 prepare() {
-  rm -rf system/{electron,runtimes}
+  rm -rf system/{electron,runtimes/{osx,tizen*,win*}}
 }
 
 build() {
-  cd ffmpeg-${_ffmpeg_ver}
+  cd ffmpeg-${_ffmpeg_ver}_public_fixed
 
   export PKG_CONFIG_PATH=/usr/lib/ffnvcodec8.1/pkgconfig
 
@@ -116,8 +116,8 @@
   ln -s ../libSkiaSharp.so.68.0.0 
"${pkgdir}"/usr/lib/emby-server/libSkiaSharp.so
   install -Dm 755 emby-server -t "${pkgdir}"/usr/bin/
   install -Dm 755 bin/ffdetect "${pkgdir}"/usr/bin/ffdetect-emby
-  install -Dm 755 ffmpeg-${_ffmpeg_ver}/ffmpeg "${pkgdir}"/usr/bin/ffmpeg-emby
-  install -Dm 755 ffmpeg-${_ffmpeg_ver}/ffprobe 
"${pkgdir}"/usr/bin/ffprobe-emby
+  install -Dm 755 ffmpeg-${_ffmpeg_ver}_public_fixed/ffmpeg 
"${pkgdir}"/usr/bin/ffmpeg-emby
+  install -Dm 755 ffmpeg-${_ffmpeg_ver}_public_fixed/ffprobe 
"${pkgdir}"/usr/bin/ffprobe-emby
   install -Dm 644 emby-server.service -t "${pkgdir}"/usr/lib/systemd/system/
   install -Dm 644 emby-server.sysusers 
"${pkgdir}"/usr/lib/sysusers.d/emby-server.conf
   install -Dm 644 emby-server.tmpfiles 
"${pkgdir}"/usr/lib/tmpfiles.d/emby-server.conf


[arch-commits] Commit in nextcloud-app-mail/trunk (PKGBUILD)

2019-12-05 Thread Sergej Pupykin via arch-commits
Date: Thursday, December 5, 2019 @ 16:54:09
  Author: spupykin
Revision: 535644

upgpkg: nextcloud-app-mail 0.20.0-1

Modified:
  nextcloud-app-mail/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-05 16:10:10 UTC (rev 535643)
+++ PKGBUILD2019-12-05 16:54:09 UTC (rev 535644)
@@ -3,7 +3,7 @@
 # Contributor: Jonas Heinrich 
 
 pkgname=nextcloud-app-mail
-pkgver=0.19.1
+pkgver=0.20.0
 pkgrel=1
 pkgdesc="An email app for NextCloud"
 arch=('any')
@@ -12,7 +12,7 @@
 depends=('nextcloud')
 options=('!strip')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/nextcloud/mail/releases/download/v${pkgver}/mail.tar.gz;)
-sha512sums=('636508fd1305aaee0ad761f3fc7d96b8a99b7393249c3fb0e1bdc098daa1038dbbd036522ab95456f2bef3fac20975a4c7701b3c8287c61bec1b20077151a375')
+sha512sums=('17ef9275044a0f4396b6d6064c2a33a33ef64ad3b7ccbf60fbfedf346669dd7f0a1f7e39e904e84175b1e5f943f1a9ea851294d505c9e5ec6c111644e1066943')
 
 prepare() {
   sed -i 's|max-version="7.0"|max-version="7.1"|' 
"${srcdir}/mail/appinfo/info.xml"


[arch-commits] Commit in nextcloud-app-mail/repos/community-any (PKGBUILD PKGBUILD)

2019-12-05 Thread Sergej Pupykin via arch-commits
Date: Thursday, December 5, 2019 @ 16:54:20
  Author: spupykin
Revision: 535645

archrelease: copy trunk to community-any

Added:
  nextcloud-app-mail/repos/community-any/PKGBUILD
(from rev 535644, nextcloud-app-mail/trunk/PKGBUILD)
Deleted:
  nextcloud-app-mail/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-12-05 16:54:09 UTC (rev 535644)
+++ PKGBUILD2019-12-05 16:54:20 UTC (rev 535645)
@@ -1,24 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Maintainer: Jonas Heinrich 
-# Contributor: Jonas Heinrich 
-
-pkgname=nextcloud-app-mail
-pkgver=0.19.1
-pkgrel=1
-pkgdesc="An email app for NextCloud"
-arch=('any')
-url="https://github.com/nextcloud/mail;
-license=('AGPL')
-depends=('nextcloud')
-options=('!strip')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/nextcloud/mail/releases/download/v${pkgver}/mail.tar.gz;)
-sha512sums=('636508fd1305aaee0ad761f3fc7d96b8a99b7393249c3fb0e1bdc098daa1038dbbd036522ab95456f2bef3fac20975a4c7701b3c8287c61bec1b20077151a375')
-
-prepare() {
-  sed -i 's|max-version="7.0"|max-version="7.1"|' 
"${srcdir}/mail/appinfo/info.xml"
-}
-
-package() {
-  install -d "${pkgdir}/usr/share/webapps/nextcloud/apps"
-  cp -a "${srcdir}/mail" "${pkgdir}/usr/share/webapps/nextcloud/apps/mail"
-}

Copied: nextcloud-app-mail/repos/community-any/PKGBUILD (from rev 535644, 
nextcloud-app-mail/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-12-05 16:54:20 UTC (rev 535645)
@@ -0,0 +1,24 @@
+# Maintainer: Sergej Pupykin 
+# Maintainer: Jonas Heinrich 
+# Contributor: Jonas Heinrich 
+
+pkgname=nextcloud-app-mail
+pkgver=0.20.0
+pkgrel=1
+pkgdesc="An email app for NextCloud"
+arch=('any')
+url="https://github.com/nextcloud/mail;
+license=('AGPL')
+depends=('nextcloud')
+options=('!strip')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/nextcloud/mail/releases/download/v${pkgver}/mail.tar.gz;)
+sha512sums=('17ef9275044a0f4396b6d6064c2a33a33ef64ad3b7ccbf60fbfedf346669dd7f0a1f7e39e904e84175b1e5f943f1a9ea851294d505c9e5ec6c111644e1066943')
+
+prepare() {
+  sed -i 's|max-version="7.0"|max-version="7.1"|' 
"${srcdir}/mail/appinfo/info.xml"
+}
+
+package() {
+  install -d "${pkgdir}/usr/share/webapps/nextcloud/apps"
+  cp -a "${srcdir}/mail" "${pkgdir}/usr/share/webapps/nextcloud/apps/mail"
+}


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

2019-12-05 Thread Sergej Pupykin via arch-commits
Date: Thursday, December 5, 2019 @ 16:10:10
  Author: spupykin
Revision: 535643

archrelease: copy trunk to community-any

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

+
 PKGBUILD   |   94 +++
 drupal.install |   14 
 2 files changed, 54 insertions(+), 54 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-12-05 16:09:56 UTC (rev 535642)
+++ PKGBUILD2019-12-05 16:10:10 UTC (rev 535643)
@@ -1,47 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Contributor: Corrado Primier 
-
-pkgname=drupal
-pkgver=8.7.10
-pkgrel=1
-pkgdesc="A PHP-based content management platform"
-arch=('any')
-url="https://www.drupal.org/;
-license=('GPL')
-depends=()
-install='drupal.install'
-backup=('etc/webapps/drupal/.htaccess')
-options=(!strip)
-source=(https://ftp.drupal.org/files/projects/$pkgname-$pkgver.tar.gz)
-sha256sums=('728257e82b76d0d1bfe606827d4ff3d13fdf81cec5e1f2ca43aa0e2e034ad558')
-
-package() {
-  depends=('php' 'php-gd')
-
-  _instdir="$pkgdir"/usr/share/webapps/drupal
-  mkdir -p ${_instdir}
-  cd ${_instdir}
-  cp -r "$srcdir"/$pkgname-$pkgver/{*,.htaccess} ${_instdir}
-
-  # move .htaccess
-  mkdir -p "$pkgdir"/etc/webapps/drupal
-  sed -i '1,1iRequire all denied' ${_instdir}/.htaccess
-  mv ${_instdir}/.htaccess "$pkgdir"/etc/webapps/drupal/.htaccess
-  ln -s /etc/webapps/drupal/.htaccess ${_instdir}/.htaccess
-
-  # move sites/
-  mkdir -p "$pkgdir"/var/lib/drupal/
-  mv ${_instdir}/sites "$pkgdir"/var/lib/drupal/sites
-  ln -s /var/lib/drupal/sites ${_instdir}/sites
-
-  # apache config example
-  cat >"$pkgdir"/etc/webapps/drupal/apache.example.conf <
-   AllowOverride All
-   Options FollowSymlinks
-   Require all granted
-   php_admin_value open_basedir 
"/srv/:/tmp/:/usr/share/webapps/:/etc/webapps:/usr/share/pear/:/var/lib/drupal"
-   
-EOF
-}

Copied: drupal/repos/community-any/PKGBUILD (from rev 535642, 
drupal/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-12-05 16:10:10 UTC (rev 535643)
@@ -0,0 +1,47 @@
+# Maintainer: Sergej Pupykin 
+# Contributor: Corrado Primier 
+
+pkgname=drupal
+pkgver=8.8.0
+pkgrel=1
+pkgdesc="A PHP-based content management platform"
+arch=('any')
+url="https://www.drupal.org/;
+license=('GPL')
+depends=()
+install='drupal.install'
+backup=('etc/webapps/drupal/.htaccess')
+options=(!strip)
+source=(https://ftp.drupal.org/files/projects/$pkgname-$pkgver.tar.gz)
+sha256sums=('5924759f1a997e1d30fe2165ea53f9ef44d3f4a5739f580e08a4c6c76245a607')
+
+package() {
+  depends=('php' 'php-gd')
+
+  _instdir="$pkgdir"/usr/share/webapps/drupal
+  mkdir -p ${_instdir}
+  cd ${_instdir}
+  cp -r "$srcdir"/$pkgname-$pkgver/{*,.htaccess} ${_instdir}
+
+  # move .htaccess
+  mkdir -p "$pkgdir"/etc/webapps/drupal
+  sed -i '1,1iRequire all denied' ${_instdir}/.htaccess
+  mv ${_instdir}/.htaccess "$pkgdir"/etc/webapps/drupal/.htaccess
+  ln -s /etc/webapps/drupal/.htaccess ${_instdir}/.htaccess
+
+  # move sites/
+  mkdir -p "$pkgdir"/var/lib/drupal/
+  mv ${_instdir}/sites "$pkgdir"/var/lib/drupal/sites
+  ln -s /var/lib/drupal/sites ${_instdir}/sites
+
+  # apache config example
+  cat >"$pkgdir"/etc/webapps/drupal/apache.example.conf <
+   AllowOverride All
+   Options FollowSymlinks
+   Require all granted
+   php_admin_value open_basedir 
"/srv/:/tmp/:/usr/share/webapps/:/etc/webapps:/usr/share/pear/:/var/lib/drupal"
+   
+EOF
+}

Deleted: drupal.install
===
--- drupal.install  2019-12-05 16:09:56 UTC (rev 535642)
+++ drupal.install  2019-12-05 16:10:10 UTC (rev 535643)
@@ -1,7 +0,0 @@
-post_install() {
-  chown -R http:http var/lib/drupal
-}
-
-post_upgrade() {
-  chown -R http:http var/lib/drupal
-}

Copied: drupal/repos/community-any/drupal.install (from rev 535642, 
drupal/trunk/drupal.install)
===
--- drupal.install  (rev 0)
+++ drupal.install  2019-12-05 16:10:10 UTC (rev 535643)
@@ -0,0 +1,7 @@
+post_install() {
+  chown -R http:http var/lib/drupal
+}
+
+post_upgrade() {
+  chown -R http:http var/lib/drupal
+}


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

2019-12-05 Thread Sergej Pupykin via arch-commits
Date: Thursday, December 5, 2019 @ 16:09:56
  Author: spupykin
Revision: 535642

upgpkg: drupal 8.8.0-1

Modified:
  drupal/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-05 15:25:13 UTC (rev 535641)
+++ PKGBUILD2019-12-05 16:09:56 UTC (rev 535642)
@@ -2,7 +2,7 @@
 # Contributor: Corrado Primier 
 
 pkgname=drupal
-pkgver=8.7.10
+pkgver=8.8.0
 pkgrel=1
 pkgdesc="A PHP-based content management platform"
 arch=('any')
@@ -13,7 +13,7 @@
 backup=('etc/webapps/drupal/.htaccess')
 options=(!strip)
 source=(https://ftp.drupal.org/files/projects/$pkgname-$pkgver.tar.gz)
-sha256sums=('728257e82b76d0d1bfe606827d4ff3d13fdf81cec5e1f2ca43aa0e2e034ad558')
+sha256sums=('5924759f1a997e1d30fe2165ea53f9ef44d3f4a5739f580e08a4c6c76245a607')
 
 package() {
   depends=('php' 'php-gd')


[arch-commits] Commit in openshadinglanguage/repos/community-x86_64 (2 files)

2019-12-05 Thread Sven-Hendrik Haase via arch-commits
Date: Thursday, December 5, 2019 @ 15:25:13
  Author: svenstaro
Revision: 535641

archrelease: copy trunk to community-x86_64

Added:
  openshadinglanguage/repos/community-x86_64/PKGBUILD
(from rev 535640, openshadinglanguage/trunk/PKGBUILD)
Deleted:
  openshadinglanguage/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-12-05 15:25:07 UTC (rev 535640)
+++ PKGBUILD2019-12-05 15:25:13 UTC (rev 535641)
@@ -1,41 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-pkgname=openshadinglanguage
-pkgver=1.10.7
-pkgrel=2
-pkgdesc="Advanced shading language for production GI renderers"
-arch=(x86_64)
-url="https://github.com/imageworks/OpenShadingLanguage;
-license=('custom')
-depends=('boost-libs' 'openimageio' 'openexr' 'intel-tbb' 'freetype2' 'libpng'
- 'libtiff' 'zlib' 'ncurses')
-makedepends=('boost' 'cmake' 'python' 'llvm' 'clang')
-source=(https://github.com/imageworks/OpenShadingLanguage/archive/Release-${pkgver}.tar.gz)
-sha512sums=('3d6e2f6f6c04bd70f347b37c0d0f56291a9c03222c3418e0f87e87112e2ac05c50b65e772835709491c750093d693a6ba834cd0fafe3d80017051a51511ecd68')
-
-prepare() {
-  mkdir OpenShadingLanguage-Release-$pkgver/src/build
-}
-
-build() {
-  cd OpenShadingLanguage-Release-$pkgver/src/build
-
-  cmake ../.. \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DLLVM_STATIC=0 \
--DENABLERTTI=ON \
--DSTOP_ON_WARNING=OFF
-  make
-}
-
-package() {
-  cd OpenShadingLanguage-Release-$pkgver/src/build
-
-  make DESTDIR="$pkgdir/" install
-  mkdir "$pkgdir"/usr/share/OSL
-  mv "$pkgdir"/usr/shaders "$pkgdir"/usr/share/OSL/shaders
-
-  install -Dm644 "$pkgdir"/usr/share/doc/OSL/LICENSE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: openshadinglanguage/repos/community-x86_64/PKGBUILD (from rev 535640, 
openshadinglanguage/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-12-05 15:25:13 UTC (rev 535641)
@@ -0,0 +1,41 @@
+# Maintainer: Sven-Hendrik Haase 
+pkgname=openshadinglanguage
+pkgver=1.10.8
+pkgrel=1
+pkgdesc="Advanced shading language for production GI renderers"
+arch=(x86_64)
+url="https://github.com/imageworks/OpenShadingLanguage;
+license=('custom')
+depends=('boost-libs' 'openimageio' 'openexr' 'intel-tbb' 'freetype2' 'libpng'
+ 'libtiff' 'zlib' 'ncurses')
+makedepends=('boost' 'cmake' 'python' 'llvm' 'clang')
+source=(https://github.com/imageworks/OpenShadingLanguage/archive/Release-${pkgver}.tar.gz)
+sha512sums=('f3b0650fa746fd4cebfbb95dd4c45a621e01040d3f90e10c21a569259cb8c7340fd00fb319195f91e51a67b016fa5c2c14c869fc6aea09893d3c8cdd42cc9ea0')
+
+prepare() {
+  mkdir OpenShadingLanguage-Release-$pkgver/src/build
+}
+
+build() {
+  cd OpenShadingLanguage-Release-$pkgver/src/build
+
+  cmake ../.. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DLLVM_STATIC=0 \
+-DENABLERTTI=ON \
+-DSTOP_ON_WARNING=OFF
+  make
+}
+
+package() {
+  cd OpenShadingLanguage-Release-$pkgver/src/build
+
+  make DESTDIR="$pkgdir/" install
+  mkdir "$pkgdir"/usr/share/OSL
+  mv "$pkgdir"/usr/shaders "$pkgdir"/usr/share/OSL/shaders
+
+  install -Dm644 "$pkgdir"/usr/share/doc/OSL/LICENSE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:


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

2019-12-05 Thread Sven-Hendrik Haase via arch-commits
Date: Thursday, December 5, 2019 @ 15:25:07
  Author: svenstaro
Revision: 535640

upgpkg: openshadinglanguage 1.10.8-1

Modified:
  openshadinglanguage/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-05 15:16:51 UTC (rev 535639)
+++ PKGBUILD2019-12-05 15:25:07 UTC (rev 535640)
@@ -1,7 +1,7 @@
 # Maintainer: Sven-Hendrik Haase 
 pkgname=openshadinglanguage
-pkgver=1.10.7
-pkgrel=2
+pkgver=1.10.8
+pkgrel=1
 pkgdesc="Advanced shading language for production GI renderers"
 arch=(x86_64)
 url="https://github.com/imageworks/OpenShadingLanguage;
@@ -10,7 +10,7 @@
  'libtiff' 'zlib' 'ncurses')
 makedepends=('boost' 'cmake' 'python' 'llvm' 'clang')
 
source=(https://github.com/imageworks/OpenShadingLanguage/archive/Release-${pkgver}.tar.gz)
-sha512sums=('3d6e2f6f6c04bd70f347b37c0d0f56291a9c03222c3418e0f87e87112e2ac05c50b65e772835709491c750093d693a6ba834cd0fafe3d80017051a51511ecd68')
+sha512sums=('f3b0650fa746fd4cebfbb95dd4c45a621e01040d3f90e10c21a569259cb8c7340fd00fb319195f91e51a67b016fa5c2c14c869fc6aea09893d3c8cdd42cc9ea0')
 
 prepare() {
   mkdir OpenShadingLanguage-Release-$pkgver/src/build


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

2019-12-05 Thread Sven-Hendrik Haase via arch-commits
Date: Thursday, December 5, 2019 @ 15:16:51
  Author: svenstaro
Revision: 535639

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-12-05 15:16:42 UTC (rev 535638)
+++ PKGBUILD2019-12-05 15:16:51 UTC (rev 535639)
@@ -1,51 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Daniel Wallace 
-# Contributor: Chris 
-# Contributor: m0ikz 
-# Contributor: atweiden 
-
-pkgname=ansible
-pkgver=2.9.1
-pkgrel=1
-pkgdesc='Radically simple IT automation platform'
-arch=('any')
-url='https://www.ansible.com'
-license=('GPL3')
-depends=('python' 'python-yaml' 'python-paramiko' 'python-jinja')
-provides=('python-ansible')
-replaces=('python-ansible')
-conflicts=('python-ansible')
-optdepends=('sshpass: for ssh connections with password'
-'python-passlib: crypt values for vars_prompt'
-'python-pyopenssl: openssl modules'
-'python-netaddr: for the ipaddr filter'
-'python-systemd: log to journal'
-'python-pywinrm: connect to Windows machines'
-'python-dnspython: for dig lookup'
-'python-ovirt-engine-sdk: ovirt support'
-'python-boto3: aws_s3 module'
-'python-jmespath: json_query support'
-'acme-tiny: openssl_certificate module')
-makedepends=('asciidoc' 'fakeroot' 'python-setuptools')
-backup=('etc/ansible/ansible.cfg')
-source=("https://releases.ansible.com/ansible/ansible-${pkgver}.tar.gz;)
-sha512sums=('fdb25017b96475a6c182bba2f32050f0eaa6f22d17f166b98ce0f0cb40fd12dbbc5ede9912624fa4c5d4a8de472b28c2eb2b569700537c7d4b4c568d7e38f21b')
-
-build() {
-  cd "${srcdir}"/${pkgname}-${pkgver}
-  python setup.py build
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  python setup.py install -O1 --root="${pkgdir}"
-  install -Dm644 COPYING "${pkgdir}"/usr/share/doc/ansible/COPYING
-
-  install -d "${pkgdir}"/usr/share/ansible/doc
-  cp -dpr --no-preserve=ownership ./examples "${pkgdir}"/usr/share/ansible/doc/
-  install -Dm644 examples/ansible.cfg "${pkgdir}"/etc/ansible/ansible.cfg
-
-  install -d "${pkgdir}"/usr/share/man/man1
-  cp -dpr --no-preserve=ownership docs/man/man1/*.1 
"${pkgdir}"/usr/share/man/man1
-}

Copied: ansible/repos/community-any/PKGBUILD (from rev 535638, 
ansible/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-12-05 15:16:51 UTC (rev 535639)
@@ -0,0 +1,51 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Daniel Wallace 
+# Contributor: Chris 
+# Contributor: m0ikz 
+# Contributor: atweiden 
+
+pkgname=ansible
+pkgver=2.9.2
+pkgrel=1
+pkgdesc='Radically simple IT automation platform'
+arch=('any')
+url='https://www.ansible.com'
+license=('GPL3')
+depends=('python' 'python-yaml' 'python-paramiko' 'python-jinja')
+provides=('python-ansible')
+replaces=('python-ansible')
+conflicts=('python-ansible')
+optdepends=('sshpass: for ssh connections with password'
+'python-passlib: crypt values for vars_prompt'
+'python-pyopenssl: openssl modules'
+'python-netaddr: for the ipaddr filter'
+'python-systemd: log to journal'
+'python-pywinrm: connect to Windows machines'
+'python-dnspython: for dig lookup'
+'python-ovirt-engine-sdk: ovirt support'
+'python-boto3: aws_s3 module'
+'python-jmespath: json_query support'
+'acme-tiny: openssl_certificate module')
+makedepends=('asciidoc' 'fakeroot' 'python-setuptools')
+backup=('etc/ansible/ansible.cfg')
+source=("https://releases.ansible.com/ansible/ansible-${pkgver}.tar.gz;)
+sha512sums=('522dd84af9493ceafd95ff0fc806a671f3d1f10d0ca074ef41875eb966d39e64b834e0b98a35d81d9d9d96efef8069db604c8080ce8cbb1ce2e8b13bf5c30a6a')
+
+build() {
+  cd "${srcdir}"/${pkgname}-${pkgver}
+  python setup.py build
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  python setup.py install -O1 --root="${pkgdir}"
+  install -Dm644 COPYING "${pkgdir}"/usr/share/doc/ansible/COPYING
+
+  install -d "${pkgdir}"/usr/share/ansible/doc
+  cp -dpr --no-preserve=ownership ./examples "${pkgdir}"/usr/share/ansible/doc/
+  install -Dm644 examples/ansible.cfg "${pkgdir}"/etc/ansible/ansible.cfg
+
+  install -d "${pkgdir}"/usr/share/man/man1
+  cp -dpr --no-preserve=ownership docs/man/man1/*.1 
"${pkgdir}"/usr/share/man/man1
+}


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

2019-12-05 Thread Sven-Hendrik Haase via arch-commits
Date: Thursday, December 5, 2019 @ 15:16:42
  Author: svenstaro
Revision: 535638

upgpkg: ansible 2.9.2-1

Modified:
  ansible/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-05 15:08:00 UTC (rev 535637)
+++ PKGBUILD2019-12-05 15:16:42 UTC (rev 535638)
@@ -6,7 +6,7 @@
 # Contributor: atweiden 
 
 pkgname=ansible
-pkgver=2.9.1
+pkgver=2.9.2
 pkgrel=1
 pkgdesc='Radically simple IT automation platform'
 arch=('any')
@@ -30,7 +30,7 @@
 makedepends=('asciidoc' 'fakeroot' 'python-setuptools')
 backup=('etc/ansible/ansible.cfg')
 source=("https://releases.ansible.com/ansible/ansible-${pkgver}.tar.gz;)
-sha512sums=('fdb25017b96475a6c182bba2f32050f0eaa6f22d17f166b98ce0f0cb40fd12dbbc5ede9912624fa4c5d4a8de472b28c2eb2b569700537c7d4b4c568d7e38f21b')
+sha512sums=('522dd84af9493ceafd95ff0fc806a671f3d1f10d0ca074ef41875eb966d39e64b834e0b98a35d81d9d9d96efef8069db604c8080ce8cbb1ce2e8b13bf5c30a6a')
 
 build() {
   cd "${srcdir}"/${pkgname}-${pkgver}


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

2019-12-05 Thread Jan Steffens via arch-commits
Date: Thursday, December 5, 2019 @ 15:08:08
  Author: heftig
Revision: 370432

archrelease: copy trunk to testing-x86_64

Added:
  linux/repos/testing-x86_64/
  linux/repos/testing-x86_64/PKGBUILD
(from rev 370429, linux/trunk/PKGBUILD)
  linux/repos/testing-x86_64/config
(from rev 370429, linux/trunk/config)

--+
 PKGBUILD |  200 +
 config   |10609 +
 2 files changed, 10809 insertions(+)

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


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

2019-12-05 Thread Jan Steffens via arch-commits
Date: Thursday, December 5, 2019 @ 15:08:09
  Author: heftig
Revision: 370433

archrelease: copy trunk to testing-x86_64

Added:
  linux-lts/repos/testing-x86_64/
  
linux-lts/repos/testing-x86_64/0001-ZEN-Add-sysctl-and-CONFIG-to-disallow-unprivileged-C.patch
(from rev 370428, 
linux-lts/trunk/0001-ZEN-Add-sysctl-and-CONFIG-to-disallow-unprivileged-C.patch)
  linux-lts/repos/testing-x86_64/PKGBUILD
(from rev 370428, linux-lts/trunk/PKGBUILD)
  linux-lts/repos/testing-x86_64/config
(from rev 370429, linux-lts/trunk/config)

-+
 0001-ZEN-Add-sysctl-and-CONFIG-to-disallow-unprivileged-C.patch |  132 
 PKGBUILD|  204 
 config  | 9819 
++
 3 files changed, 10155 insertions(+)

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


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

2019-12-05 Thread Jan Steffens via arch-commits
Date: Thursday, December 5, 2019 @ 15:08:06
  Author: heftig
Revision: 370430

archrelease: copy trunk to testing-x86_64

Added:
  nvidia-390xx/repos/testing-x86_64/
  nvidia-390xx/repos/testing-x86_64/PKGBUILD
(from rev 370426, nvidia-390xx/trunk/PKGBUILD)
  nvidia-390xx/repos/testing-x86_64/kernel-4.16.patch
(from rev 370427, nvidia-390xx/trunk/kernel-4.16.patch)
  nvidia-390xx/repos/testing-x86_64/kernel-5.1.patch
(from rev 370427, nvidia-390xx/trunk/kernel-5.1.patch)
  nvidia-390xx/repos/testing-x86_64/kernel-5.2.patch
(from rev 370427, nvidia-390xx/trunk/kernel-5.2.patch)

---+
 PKGBUILD  |   86 ++
 kernel-4.16.patch |   33 +
 kernel-5.1.patch  |  130 
 kernel-5.2.patch  |   18 +++
 4 files changed, 267 insertions(+)

Copied: nvidia-390xx/repos/testing-x86_64/PKGBUILD (from rev 370426, 
nvidia-390xx/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-12-05 15:08:06 UTC (rev 370430)
@@ -0,0 +1,86 @@
+# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Felix Yan 
+# Contributor: Thomas Baechler 
+
+pkgbase=nvidia-390xx
+pkgname=(nvidia-390xx nvidia-390xx-dkms)
+pkgver=390.132
+pkgrel=6
+pkgdesc="NVIDIA drivers for linux, 390xx legacy branch"
+arch=('x86_64')
+url="https://www.nvidia.com/;
+makedepends=("nvidia-390xx-utils=${pkgver}" 'libglvnd' 'linux-headers')
+conflicts=('nvidia')
+license=('custom')
+options=('!strip')
+_pkg="NVIDIA-Linux-x86_64-${pkgver}-no-compat32"
+source=("https://us.download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/${_pkg}.run;
+'kernel-4.16.patch')
+sha256sums=('b6b4b8af37e78e026c9ebdf4a5c64ea412dfcb710931dd028c22dac228de659d'
+'622ac792ec200b2239cb663c0010392118b78c9904973d82cd261165c16d6385')
+
+prepare() {
+sh "${_pkg}.run" --extract-only
+cd "${_pkg}"
+
+# Restore phys_to_dma support (still needed for 396.18)
+# https://bugs.archlinux.org/task/58074
+patch -Np1 -i ../kernel-4.16.patch
+
+cp -a kernel kernel-dkms
+cd kernel-dkms
+sed -i "s/__VERSION_STRING/${pkgver}/" dkms.conf
+sed -i 's/__JOBS/`nproc`/' dkms.conf
+sed -i 's/__DKMS_MODULES//' dkms.conf
+sed -i '$iBUILT_MODULE_NAME[0]="nvidia"\
+DEST_MODULE_LOCATION[0]="/kernel/drivers/video"\
+BUILT_MODULE_NAME[1]="nvidia-uvm"\
+DEST_MODULE_LOCATION[1]="/kernel/drivers/video"\
+BUILT_MODULE_NAME[2]="nvidia-modeset"\
+DEST_MODULE_LOCATION[2]="/kernel/drivers/video"\
+BUILT_MODULE_NAME[3]="nvidia-drm"\
+DEST_MODULE_LOCATION[3]="/kernel/drivers/video"' dkms.conf
+
+# Gift for linux-rt guys
+sed -i 's/NV_EXCLUDE_BUILD_MODULES/IGNORE_PREEMPT_RT_PRESENCE=1 
NV_EXCLUDE_BUILD_MODULES/' dkms.conf
+}
+
+build() {
+cd "${_pkg}"/kernel
+make SYSSRC=/usr/src/linux module
+}
+
+package_nvidia-390xx() {
+pkgdesc="NVIDIA drivers for linux, 390xx legacy branch"
+depends=('linux' "nvidia-390xx-utils=${pkgver}" 'libglvnd')
+
+_extradir="/usr/lib/modules/$(
++#if LINUX_VERSION_CODE < KERNEL_VERSION(4, 16, 0)
+ #include 
++#else
++#include 
++#endif
+ #endif
+ 
+ #if defined(CONFIG_SWIOTLB) && defined(NVCPU_AARCH64)
+diff --git a/kernel/conftest.sh b/kernel/conftest.sh
+index b23dbb4..42dc576 100755
+--- a/kernel/conftest.sh
 b/kernel/conftest.sh
+@@ -1906,7 +1906,12 @@ compile_test() {
+ # Determine if the phys_to_dma function is present.
+ #
+ CODE="
++#include 
++#if LINUX_VERSION_CODE < KERNEL_VERSION(4, 16, 0)
+ #include 
++#else
++#include 
++#endif
+ void conftest_phys_to_dma(void) {
+ phys_to_dma();
+ }"

Copied: nvidia-390xx/repos/testing-x86_64/kernel-5.1.patch (from rev 370427, 
nvidia-390xx/trunk/kernel-5.1.patch)
===
--- testing-x86_64/kernel-5.1.patch (rev 0)
+++ testing-x86_64/kernel-5.1.patch 2019-12-05 15:08:06 UTC (rev 370430)
@@ -0,0 +1,130 @@
+diff --git a/kernel/common/inc/nv-list-helpers.h 
b/kernel/common/inc/nv-list-helpers.h
+index 0aed851..d6304c9 100644
+--- a/kernel/common/inc/nv-list-helpers.h
 b/kernel/common/inc/nv-list-helpers.h
+@@ -26,6 +26,8 @@
+ #include 
+ #include "conftest.h"
+ 
++#include 
++
+ #if !defined (list_for_each)
+ #define list_for_each(pos, head) \
+ for (pos = (head)->next; pos != (head); pos = (pos)->next)
+@@ -91,10 +93,12 @@
+ list_entry((pos)->member.next, typeof(*(pos)), member)
+ #endif
+ 
++#if LINUX_VERSION_CODE < KERNEL_VERSION(5, 1, 0)
+ static inline int list_is_first(const struct list_head *list,
+ const struct list_head *head)
+ {
+ return list->prev == head;
+ }
++#endif
+ 
+ #endif // __NV_LIST_HELPERS_H__
+diff --git 

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

2019-12-05 Thread Jan Steffens via arch-commits
Date: Thursday, December 5, 2019 @ 15:08:00
  Author: heftig
Revision: 535637

archrelease: copy trunk to community-testing-x86_64

Added:
  acpi_call-lts/repos/community-testing-x86_64/
  acpi_call-lts/repos/community-testing-x86_64/PKGBUILD
(from rev 535628, acpi_call-lts/trunk/PKGBUILD)

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

Copied: acpi_call-lts/repos/community-testing-x86_64/PKGBUILD (from rev 535628, 
acpi_call-lts/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2019-12-05 15:08:00 UTC (rev 535637)
@@ -0,0 +1,46 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: mortzu 
+# Contributor: fnord0 
+
+pkgname=acpi_call-lts
+pkgver=1.1.0
+pkgrel=105
+pkgdesc='A linux kernel module that enables calls to ACPI methods through 
/proc/acpi/call'
+url='https://github.com/mkottman/acpi_call'
+arch=('x86_64')
+license=('GPL')
+makedepends=('linux-lts-headers')
+provides=('acpi_call')
+source=("acpi_call-${pkgver}.tar.gz::https://github.com/mkottman/acpi_call/archive/v${pkgver}.tar.gz;)
+sha256sums=('d0d14b42944282724fca76f57d598eed794ef97448f387d1c489d85ad813f2f0')
+
+prepare() {
+  cd acpi_call-$pkgver
+
+  # Fix build with Linux >= 3.17
+  sed -i 's|acpi/acpi.h|linux/acpi.h|' acpi_call.c
+
+  # Fix build with Linux >= 4.12
+  sed -i 's|asm/uaccess.h|linux/uaccess.h|' acpi_call.c
+}
+
+build() {
+  cd acpi_call-$pkgver
+  make KVERSION="$(

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

2019-12-05 Thread Jan Steffens via arch-commits
Date: Thursday, December 5, 2019 @ 15:08:01
  Author: heftig
Revision: 370428

archrelease: copy trunk to testing-x86_64

Added:
  nvidia-390xx-lts/repos/testing-x86_64/
  nvidia-390xx-lts/repos/testing-x86_64/PKGBUILD
(from rev 370427, nvidia-390xx-lts/trunk/PKGBUILD)
  nvidia-390xx-lts/repos/testing-x86_64/kernel-4.16.patch
(from rev 370427, nvidia-390xx-lts/trunk/kernel-4.16.patch)

---+
 PKGBUILD  |   48 
 kernel-4.16.patch |   33 +
 2 files changed, 81 insertions(+)

Copied: nvidia-390xx-lts/repos/testing-x86_64/PKGBUILD (from rev 370427, 
nvidia-390xx-lts/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-12-05 15:08:01 UTC (rev 370428)
@@ -0,0 +1,48 @@
+# Maintainer: Eric Bélanger 
+
+pkgname=nvidia-390xx-lts
+pkgver=390.132
+pkgrel=5
+epoch=1
+pkgdesc="NVIDIA drivers for linux-lts, 390xx legacy branch"
+arch=('x86_64')
+url="https://www.nvidia.com/;
+makedepends=("nvidia-390xx-utils=${pkgver}" 'libglvnd' 'linux-lts-headers')
+provides=('nvidia-390xx')
+conflicts=('nvidia-lts')
+license=('custom')
+options=('!strip')
+_pkg="NVIDIA-Linux-x86_64-${pkgver}-no-compat32"
+source=("https://us.download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/${_pkg}.run;
+'kernel-4.16.patch')
+sha256sums=('b6b4b8af37e78e026c9ebdf4a5c64ea412dfcb710931dd028c22dac228de659d'
+'622ac792ec200b2239cb663c0010392118b78c9904973d82cd261165c16d6385')
+
+prepare() {
+sh "${_pkg}.run" --extract-only
+cd "${_pkg}"
+
+# Restore phys_to_dma support (still needed for 396.18)
+# https://bugs.archlinux.org/task/58074
+patch -Np1 -i ../kernel-4.16.patch
+}
+
+build() {
+cd "${_pkg}"/kernel
+make SYSSRC=/usr/src/linux-lts module
+}
+
+package() {
+depends=('linux-lts' "nvidia-390xx-utils=${pkgver}" 'libglvnd')
+
+_extradir="/usr/lib/modules/$(
++#if LINUX_VERSION_CODE < KERNEL_VERSION(4, 16, 0)
+ #include 
++#else
++#include 
++#endif
+ #endif
+ 
+ #if defined(CONFIG_SWIOTLB) && defined(NVCPU_AARCH64)
+diff --git a/kernel/conftest.sh b/kernel/conftest.sh
+index b23dbb4..42dc576 100755
+--- a/kernel/conftest.sh
 b/kernel/conftest.sh
+@@ -1906,7 +1906,12 @@ compile_test() {
+ # Determine if the phys_to_dma function is present.
+ #
+ CODE="
++#include 
++#if LINUX_VERSION_CODE < KERNEL_VERSION(4, 16, 0)
+ #include 
++#else
++#include 
++#endif
+ void conftest_phys_to_dma(void) {
+ phys_to_dma();
+ }"


[arch-commits] Commit in nvidia/repos (testing-x86_64 testing-x86_64/PKGBUILD)

2019-12-05 Thread Jan Steffens via arch-commits
Date: Thursday, December 5, 2019 @ 15:08:01
  Author: heftig
Revision: 370429

archrelease: copy trunk to testing-x86_64

Added:
  nvidia/repos/testing-x86_64/
  nvidia/repos/testing-x86_64/PKGBUILD
(from rev 370427, nvidia/trunk/PKGBUILD)

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

Copied: nvidia/repos/testing-x86_64/PKGBUILD (from rev 370427, 
nvidia/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-12-05 15:08:01 UTC (rev 370429)
@@ -0,0 +1,79 @@
+# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Felix Yan 
+# Contributor: Thomas Baechler 
+
+pkgbase=nvidia
+pkgname=(nvidia nvidia-dkms)
+pkgver=440.36
+pkgrel=5
+pkgdesc="NVIDIA drivers for linux"
+arch=('x86_64')
+url="https://www.nvidia.com/;
+makedepends=("nvidia-utils=${pkgver}" 'libglvnd' 'linux-headers')
+license=('custom')
+options=('!strip')
+_pkg="NVIDIA-Linux-x86_64-${pkgver}"
+source=("https://us.download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/${_pkg}.run;)
+sha512sums=('445d7f58de418cbee79895469a27afa2186656a961499dfc0e7e62ba1f773f5a011affa563b0fc50c212b9e06b23f63e182c122b36d0d93c39cc3e9ff3641410')
+
+prepare() {
+sh "${_pkg}.run" --extract-only
+cd "${_pkg}"
+
+cp -a kernel kernel-dkms
+cd kernel-dkms
+sed -i "s/__VERSION_STRING/${pkgver}/" dkms.conf
+sed -i 's/__JOBS/`nproc`/' dkms.conf
+sed -i 's/__DKMS_MODULES//' dkms.conf
+sed -i '$iBUILT_MODULE_NAME[0]="nvidia"\
+DEST_MODULE_LOCATION[0]="/kernel/drivers/video"\
+BUILT_MODULE_NAME[1]="nvidia-uvm"\
+DEST_MODULE_LOCATION[1]="/kernel/drivers/video"\
+BUILT_MODULE_NAME[2]="nvidia-modeset"\
+DEST_MODULE_LOCATION[2]="/kernel/drivers/video"\
+BUILT_MODULE_NAME[3]="nvidia-drm"\
+DEST_MODULE_LOCATION[3]="/kernel/drivers/video"' dkms.conf
+
+# Gift for linux-rt guys
+sed -i 's/NV_EXCLUDE_BUILD_MODULES/IGNORE_PREEMPT_RT_PRESENCE=1 
NV_EXCLUDE_BUILD_MODULES/' dkms.conf
+}
+
+build() {
+cd "${_pkg}"/kernel
+make SYSSRC=/usr/src/linux module
+}
+
+package_nvidia() {
+pkgdesc="NVIDIA drivers for linux"
+depends=('linux' "nvidia-utils=${pkgver}" 'libglvnd')
+
+_extradir="/usr/lib/modules/$(

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

2019-12-05 Thread Jan Steffens via arch-commits
Date: Thursday, December 5, 2019 @ 15:07:54
  Author: heftig
Revision: 535630

archrelease: copy trunk to community-testing-x86_64

Added:
  broadcom-wl/repos/community-testing-x86_64/
  broadcom-wl/repos/community-testing-x86_64/PKGBUILD
(from rev 535628, broadcom-wl/trunk/PKGBUILD)

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

Copied: broadcom-wl/repos/community-testing-x86_64/PKGBUILD (from rev 535628, 
broadcom-wl/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2019-12-05 15:07:54 UTC (rev 535630)
@@ -0,0 +1,41 @@
+# Maintainer: Eli Schwartz 
+
+_module=broadcom-wl
+_kernelname=  # Build against stock -ARCH kernel
+#_kernelname=-custom  # Build against kernel with a different name
+pkgname=${_module}${_kernelname}
+pkgver=6.30.223.271
+pkgrel=150
+pkgdesc='Broadcom 802.11 Linux STA wireless driver'
+arch=('x86_64')
+url='https://www.broadcom.com/support/download-search/?pf=Wireless+LAN+Infrastructure'
+license=('custom')
+makedepends=("linux${_kernelname}-headers" "${_module}-dkms=${pkgver}")
+
+build() {
+_kernver=$(

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

2019-12-05 Thread Jan Steffens via arch-commits
Date: Thursday, December 5, 2019 @ 15:07:55
  Author: heftig
Revision: 535631

archrelease: copy trunk to community-testing-x86_64

Added:
  tp_smapi/repos/community-testing-x86_64/
  tp_smapi/repos/community-testing-x86_64/PKGBUILD
(from rev 535628, tp_smapi/trunk/PKGBUILD)

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

Copied: tp_smapi/repos/community-testing-x86_64/PKGBUILD (from rev 535628, 
tp_smapi/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2019-12-05 15:07:55 UTC (rev 535631)
@@ -0,0 +1,50 @@
+# Maintainer: Lukas Fleischer 
+# Contributor: xduugu
+# Contributor: nh2
+# Contributor: Steven Davidovitz 
+# Contributor: Nick B 
+# Contributor: Christof Musik 
+# Contributor: Stefan Rupp 
+# Contributor: Ignas Anikevicius 
+
+pkgname=tp_smapi
+pkgver=0.43
+pkgrel=157
+pkgdesc="Modules for ThinkPad's SMAPI functionality"
+arch=('x86_64')
+url='https://github.com/evgeni/tp_smapi'
+license=('GPL')
+makedepends=('linux-headers' 'git')
+_commit=a63729ab30d85430048f65c37f29188ab484cd52  # tags/tp-smapi/0.43
+source=("git+https://github.com/evgeni/tp_smapi#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^tp-smapi\///;s/-/+/g'
+}
+
+build() {
+  cd $pkgname
+
+  # https://bugs.archlinux.org/task/54975 (kernel has no 
_GLOBAL_OFFSET_TABLE_):
+  # Clear EXTRA_CFLAGS since it defaults to injecting CFLAGS and -fno-plt 
breaks the modules
+
+  make HDAPS=1 KVER="$(

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

2019-12-05 Thread Jan Steffens via arch-commits
Date: Thursday, December 5, 2019 @ 15:08:08
  Author: heftig
Revision: 370431

archrelease: copy trunk to testing-x86_64

Added:
  linux-zen/repos/testing-x86_64/
  linux-zen/repos/testing-x86_64/PKGBUILD
(from rev 370429, linux-zen/trunk/PKGBUILD)
  linux-zen/repos/testing-x86_64/config
(from rev 370429, linux-zen/trunk/config)

--+
 PKGBUILD |  200 +
 config   |10646 +
 2 files changed, 10846 insertions(+)

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


[arch-commits] Commit in nvidia-lts/repos (testing-x86_64 testing-x86_64/PKGBUILD)

2019-12-05 Thread Jan Steffens via arch-commits
Date: Thursday, December 5, 2019 @ 15:07:58
  Author: heftig
Revision: 370427

archrelease: copy trunk to testing-x86_64

Added:
  nvidia-lts/repos/testing-x86_64/
  nvidia-lts/repos/testing-x86_64/PKGBUILD
(from rev 370426, nvidia-lts/trunk/PKGBUILD)

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

Copied: nvidia-lts/repos/testing-x86_64/PKGBUILD (from rev 370426, 
nvidia-lts/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-12-05 15:07:58 UTC (rev 370427)
@@ -0,0 +1,42 @@
+# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Eric Bélanger 
+
+pkgname=nvidia-lts
+pkgver=440.36
+pkgrel=4
+epoch=1
+pkgdesc="NVIDIA drivers for linux-lts"
+arch=('x86_64')
+url="https://www.nvidia.com/;
+makedepends=("nvidia-utils=${pkgver}" 'libglvnd' 'linux-lts-headers')
+provides=('nvidia')
+license=('custom')
+options=('!strip')
+_pkg="NVIDIA-Linux-x86_64-${pkgver}"
+source=("https://us.download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/${_pkg}.run;)
+sha512sums=('445d7f58de418cbee79895469a27afa2186656a961499dfc0e7e62ba1f773f5a011affa563b0fc50c212b9e06b23f63e182c122b36d0d93c39cc3e9ff3641410')
+
+prepare() {
+sh "${_pkg}.run" --extract-only
+cd "${_pkg}"
+}
+
+build() {
+cd "${_pkg}"/kernel
+make SYSSRC=/usr/src/linux-lts module
+}
+
+package() {
+depends=('linux-lts' "nvidia-utils=${pkgver}" 'libglvnd')
+
+_extradir="/usr/lib/modules/$(

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

2019-12-05 Thread Jan Steffens via arch-commits
Date: Thursday, December 5, 2019 @ 15:07:53
  Author: heftig
Revision: 535629

archrelease: copy trunk to community-testing-x86_64

Added:
  wireguard-lts/repos/community-testing-x86_64/
  wireguard-lts/repos/community-testing-x86_64/PKGBUILD
(from rev 535628, wireguard-lts/trunk/PKGBUILD)

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

Copied: wireguard-lts/repos/community-testing-x86_64/PKGBUILD (from rev 535628, 
wireguard-lts/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2019-12-05 15:07:53 UTC (rev 535629)
@@ -0,0 +1,32 @@
+# Maintainer: Christian Hesse 
+
+pkgname=wireguard-lts
+pkgver=0.0.20191205
+pkgrel=2
+pkgdesc='Wireguard module for LTS Kernel'
+url='https://www.wireguard.com/'
+arch=('x86_64')
+license=('GPL')
+makedepends=('linux-lts-headers' "wireguard-dkms>=$pkgver")
+conflicts=('wireguard-dkms')
+provides=('WIREGUARD-MODULE')
+
+build() {
+_kernver=$(

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

2019-12-05 Thread Jan Steffens via arch-commits
Date: Thursday, December 5, 2019 @ 15:07:56
  Author: heftig
Revision: 535633

archrelease: copy trunk to community-testing-x86_64

Added:
  vhba-module/repos/community-testing-x86_64/
  vhba-module/repos/community-testing-x86_64/60-vhba.rules
(from rev 535628, vhba-module/trunk/60-vhba.rules)
  vhba-module/repos/community-testing-x86_64/PKGBUILD
(from rev 535628, vhba-module/trunk/PKGBUILD)
  vhba-module/repos/community-testing-x86_64/dkms.conf
(from rev 535628, vhba-module/trunk/dkms.conf)

---+
 60-vhba.rules |1 +
 PKGBUILD  |   53 +
 dkms.conf |9 +
 3 files changed, 63 insertions(+)

Copied: vhba-module/repos/community-testing-x86_64/60-vhba.rules (from rev 
535628, vhba-module/trunk/60-vhba.rules)
===
--- community-testing-x86_64/60-vhba.rules  (rev 0)
+++ community-testing-x86_64/60-vhba.rules  2019-12-05 15:07:56 UTC (rev 
535633)
@@ -0,0 +1 @@
+ACTION=="add", KERNEL=="vhba_ctl", NAME="vhba_ctl", MODE="0660", OWNER="root", 
GROUP="cdemu", TAG+="uaccess"

Copied: vhba-module/repos/community-testing-x86_64/PKGBUILD (from rev 535628, 
vhba-module/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2019-12-05 15:07:56 UTC (rev 535633)
@@ -0,0 +1,53 @@
+# Maintainer: Ray Rashif 
+# Contributor: Mateusz Herych 
+# Contributor: Charles Lindsay 
+
+pkgbase=vhba-module
+pkgname=(vhba-module vhba-module-dkms)
+pkgver=20190831
+pkgrel=24
+pkgdesc="Kernel module that emulates SCSI devices"
+url="https://cdemu.sourceforge.io/;
+arch=(x86_64)
+license=(GPL)
+makedepends=('linux-headers')
+source=("https://downloads.sourceforge.net/cdemu/$pkgbase-$pkgver.tar.bz2;
+60-vhba.rules dkms.conf)
+sha256sums=('9a83772cf8bec15723f7a8105a0aae3faa057edbd5595e6c081e5803a8996bf9'
+'3052cb1cadbdf4bfb0b588bb8ed80691940d8dd63dc5502943d597eaf9f40c3b'
+'8cab0ebb4fee72069d63616b0983f105b98d1261e72e9bef5509a6e60bc382a7')
+
+prepare() {
+  cd $pkgbase-$pkgver
+  sed -i 's/20190302/20190410/' Makefile  # Fixup VHBA_VERSION
+}
+
+build() {
+  cd $pkgbase-$pkgver
+  make KERNELRELEASE="$(

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

2019-12-05 Thread Jan Steffens via arch-commits
Date: Thursday, December 5, 2019 @ 15:07:59
  Author: heftig
Revision: 535636

archrelease: copy trunk to community-testing-x86_64

Added:
  tp_smapi-lts/repos/community-testing-x86_64/
  tp_smapi-lts/repos/community-testing-x86_64/PKGBUILD
(from rev 535631, tp_smapi-lts/trunk/PKGBUILD)

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

Copied: tp_smapi-lts/repos/community-testing-x86_64/PKGBUILD (from rev 535631, 
tp_smapi-lts/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2019-12-05 15:07:59 UTC (rev 535636)
@@ -0,0 +1,50 @@
+# Maintainer: Lukas Fleischer 
+# Contributor: xduugu
+# Contributor: nh2
+# Contributor: Steven Davidovitz 
+# Contributor: Nick B 
+# Contributor: Christof Musik 
+# Contributor: Stefan Rupp 
+# Contributor: Ignas Anikevicius 
+
+pkgname=tp_smapi-lts
+pkgver=0.43
+pkgrel=24
+pkgdesc="Modules for ThinkPad's SMAPI functionality"
+arch=('x86_64')
+url='https://github.com/evgeni/tp_smapi'
+license=('GPL')
+makedepends=('linux-lts-headers' 'git')
+_commit=a63729ab30d85430048f65c37f29188ab484cd52  # tags/tp-smapi/0.43
+source=("git+https://github.com/evgeni/tp_smapi#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd tp_smapi
+  git describe --tags | sed 's/^tp-smapi\///;s/-/+/g'
+}
+
+build() {
+  cd tp_smapi
+
+  # https://bugs.archlinux.org/task/54975 (kernel has no 
_GLOBAL_OFFSET_TABLE_):
+  # Clear EXTRA_CFLAGS since it defaults to injecting CFLAGS and -fno-plt 
breaks the modules
+
+  make HDAPS=1 KVER="$(

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

2019-12-05 Thread Jan Steffens via arch-commits
Date: Thursday, December 5, 2019 @ 15:07:57
  Author: heftig
Revision: 535634

archrelease: copy trunk to community-testing-x86_64

Added:
  wireguard-arch/repos/community-testing-x86_64/
  wireguard-arch/repos/community-testing-x86_64/PKGBUILD
(from rev 535628, wireguard-arch/trunk/PKGBUILD)

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

Copied: wireguard-arch/repos/community-testing-x86_64/PKGBUILD (from rev 
535628, wireguard-arch/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2019-12-05 15:07:57 UTC (rev 535634)
@@ -0,0 +1,32 @@
+# Maintainer: Christian Hesse 
+
+pkgname=wireguard-arch
+pkgver=0.0.20191205
+pkgrel=2
+pkgdesc='Wireguard module for Arch Kernel'
+url='https://www.wireguard.com/'
+arch=('x86_64')
+license=('GPL')
+makedepends=('linux-headers' "wireguard-dkms>=$pkgver")
+conflicts=('wireguard-dkms')
+provides=('WIREGUARD-MODULE')
+
+build() {
+_kernver=$(

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

2019-12-05 Thread Jan Steffens via arch-commits
Date: Thursday, December 5, 2019 @ 15:07:58
  Author: heftig
Revision: 535635

archrelease: copy trunk to community-testing-x86_64

Added:
  bbswitch/repos/community-testing-x86_64/
  bbswitch/repos/community-testing-x86_64/PKGBUILD
(from rev 535628, bbswitch/trunk/PKGBUILD)

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

Copied: bbswitch/repos/community-testing-x86_64/PKGBUILD (from rev 535628, 
bbswitch/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2019-12-05 15:07:58 UTC (rev 535635)
@@ -0,0 +1,38 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: M0Rf30
+# Contributor: Samsagax 
+
+pkgbase=bbswitch
+pkgname=(bbswitch bbswitch-dkms)
+pkgver=0.8
+pkgrel=269
+pkgdesc="Kernel module allowing to switch dedicated graphics card on Optimus 
laptops"
+arch=('x86_64')
+url="http://github.com/Bumblebee-Project/bbswitch;
+license=('GPL')
+makedepends=('linux-headers')
+source=("${pkgbase}-${pkgver}.tar.gz::https://github.com/Bumblebee-Project/bbswitch/archive/v${pkgver}.tar.gz;)
+md5sums=('5b116b31ace3604ddf9d1fc1f4bc5807')
+
+build() {
+  cd ${pkgbase}-${pkgver}
+  make KDIR=/usr/src/linux
+}
+
+package_bbswitch() {
+  depends=('linux')
+
+  cd ${pkgbase}-${pkgver}
+  _extradir="/usr/lib/modules/$(

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

2019-12-05 Thread Jan Steffens via arch-commits
Date: Thursday, December 5, 2019 @ 15:07:49
  Author: heftig
Revision: 535626

archrelease: copy trunk to community-testing-x86_64

Added:
  deepin-anything-arch/repos/community-testing-x86_64/
  deepin-anything-arch/repos/community-testing-x86_64/PKGBUILD
(from rev 535623, deepin-anything-arch/trunk/PKGBUILD)

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

Copied: deepin-anything-arch/repos/community-testing-x86_64/PKGBUILD (from rev 
535623, deepin-anything-arch/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2019-12-05 15:07:49 UTC (rev 535626)
@@ -0,0 +1,28 @@
+# Maintainer: Felix Yan 
+
+pkgname=deepin-anything-arch
+pkgver=5.0.1
+pkgrel=30
+pkgdesc="Deepin Anything file search tool, kernel module for Arch kernel"
+arch=('x86_64')
+url="https://github.com/linuxdeepin/deepin-anything;
+license=('GPL3')
+makedepends=('linux-headers')
+provides=('DEEPIN-ANYTHING-MODULE')
+replaces=('deepin-anything-module')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/deepin-anything/archive/$pkgver.tar.gz;)
+sha512sums=('f79b4db917cce2611bd6964d00ae0e162fc500fa7ca76a987145456a9ee81296c776d2b83cf6492a4224c4e4fd95df3ad95a25c1c14d2d4e6865f5bbd639be14')
+
+build() {
+  cd deepin-anything-$pkgver
+  make -C kernelmod kdir=/usr/src/linux
+}
+
+package() {
+  depends=('linux')
+
+  cd deepin-anything-$pkgver
+  local extradir=/usr/lib/modules/$(

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

2019-12-05 Thread Jan Steffens via arch-commits
Date: Thursday, December 5, 2019 @ 15:07:55
  Author: heftig
Revision: 535632

archrelease: copy trunk to community-testing-x86_64

Added:
  ndiswrapper-arch/repos/community-testing-x86_64/
  ndiswrapper-arch/repos/community-testing-x86_64/PKGBUILD
(from rev 535628, ndiswrapper-arch/trunk/PKGBUILD)
  ndiswrapper-arch/repos/community-testing-x86_64/kernel-5.3.patch
(from rev 535629, ndiswrapper-arch/trunk/kernel-5.3.patch)
  ndiswrapper-arch/repos/community-testing-x86_64/kernel-5.4.patch
(from rev 535629, ndiswrapper-arch/trunk/kernel-5.4.patch)

--+
 PKGBUILD |   40 ++
 kernel-5.3.patch |   69 +
 kernel-5.4.patch |   22 
 3 files changed, 131 insertions(+)

Copied: ndiswrapper-arch/repos/community-testing-x86_64/PKGBUILD (from rev 
535628, ndiswrapper-arch/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2019-12-05 15:07:55 UTC (rev 535632)
@@ -0,0 +1,40 @@
+# Maintainer: Felix Yan 
+# Contributor: maz-1 
+
+pkgname=ndiswrapper-arch
+pkgver=1.62
+pkgrel=9
+pkgdesc="Module for NDIS (Windows Network Drivers) drivers supplied by 
vendors, kernel module for Arch kernel"
+arch=('x86_64')
+url="https://sourceforge.net/projects/ndiswrapper/;
+license=('GPL')
+makedepends=('linux-headers')
+provides=('NDISWRAPPER-MODULE')
+replaces=('ndiswrapper-module')
+source=("https://sourceforge.net/projects/ndiswrapper/files/stable/ndiswrapper-$pkgver.tar.gz;
+'kernel-5.3.patch' 'kernel-5.4.patch')
+sha512sums=('a6e111bc699572642e44d6d31cc2f06374648a01b8dd7dd4e74d6ad5e187e39f99faee38f792c83a94d4618ae4d8866914fb3f60b1d80e838a753285ea7cf783'
+
'c404f35280534b172235c5c578657d7a30ac2253c7c2abedd65a183d09390e95e7c3030cb409accb4d198ff0411482f8029f8664418c99d5672f92e9c733801d'
+
'36450042db79ed4545030276bff9db1bc9895259f38c1c0bf4dc238ad76ec61c2e08d437997dafd327f2a8fd1694d61e418941555e92144e3ec86c8066561429')
+
+prepare() {
+  cd ndiswrapper-$pkgver
+  patch --no-backup-if-mismatch -p2 -i "$srcdir"/kernel-5.3.patch
+  patch --no-backup-if-mismatch -p1 -i "$srcdir"/kernel-5.4.patch
+}
+
+build() {
+  _kernver="$(task = NULL;
+   info->count = 0;
+ #ifdef CONFIG_SMP
++#if LINUX_VERSION_CODE < KERNEL_VERSION(5,3,0)
+   cpumask_setall(>cpus_allowed);
++#else
++  cpumask_setall(>cpus_mask);
++#endif
+ #endif
+   }
+   } while (0);
+diff --git a/ndiswrapper/driver/ntoskernel.h b/ndiswrapper/driver/ntoskernel.h
+index 3c4c6ff..8a71ae3 100644
+--- a/ndiswrapper/driver/ntoskernel.h
 b/ndiswrapper/driver/ntoskernel.h
+@@ -107,7 +107,11 @@ static cpumask_t cpumasks[NR_CPUS];
+ #endif /* CONFIG_SMP */
+ 
+ #ifndef tsk_cpus_allowed
++#if LINUX_VERSION_CODE < KERNEL_VERSION(5,3,0)
+ #define tsk_cpus_allowed(tsk) (&(tsk)->cpus_allowed)
++#else
++#define tsk_cpus_allowed(tsk) (&(tsk)->cpus_mask)
++#endif
+ #endif
+ 
+ #ifndef __packed
+@@ -631,7 +635,12 @@ struct irql_info {
+   int count;
+   struct mutex lock;
+ #ifdef CONFIG_SMP
++#if LINUX_VERSION_CODE < KERNEL_VERSION(5,3,0)
+   cpumask_t cpus_allowed;
++#else
++  const cpumask_t *cpus_ptr;
++  cpumask_t   cpus_mask;
++#endif
+ #endif
+   struct task_struct *task;
+ };
+@@ -658,7 +667,11 @@ static inline KIRQL raise_irql(KIRQL newirql)
+   /* TODO: is this enough to pin down to current cpu? */
+ #ifdef CONFIG_SMP
+   assert(task_cpu(current) == smp_processor_id());
++#if LINUX_VERSION_CODE < KERNEL_VERSION(5,3,0)
+   cpumask_copy(>cpus_allowed, tsk_cpus_allowed(current));
++#else
++  cpumask_copy(>cpus_mask, tsk_cpus_allowed(current));
++#endif
+   set_cpus_allowed_ptr(current, cpumask_of(smp_processor_id()));
+ #endif
+   put_cpu_var(irql_info);
+@@ -682,7 +695,11 @@ static inline void lower_irql(KIRQL oldirql)
+   if (--info->count == 0) {
+   info->task = NULL;
+ #ifdef CONFIG_SMP
++#if LINUX_VERSION_CODE < KERNEL_VERSION(5,3,0)
+   set_cpus_allowed_ptr(current, >cpus_allowed);
++#else
++  set_cpus_allowed_ptr(current, >cpus_mask);
++#endif
+ #endif
+   mutex_unlock(>lock);
+   }

Copied: ndiswrapper-arch/repos/community-testing-x86_64/kernel-5.4.patch (from 
rev 535629, ndiswrapper-arch/trunk/kernel-5.4.patch)
===
--- community-testing-x86_64/kernel-5.4.patch   (rev 0)
+++ community-testing-x86_64/kernel-5.4.patch   2019-12-05 15:07:55 UTC (rev 
535632)
@@ -0,0 +1,22 @@
+diff -u -r ndiswrapper-1.62/driver/wrapndis.c 
ndiswrapper-1.62-5.4/driver/wrapndis.c
+--- ndiswrapper-1.62/driver/wrapndis.c 2019-02-11 04:11:14.0 +
 ndiswrapper-1.62-5.4/driver/wrapndis.c 2019-11-26 00:02:39.035464963 

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

2019-12-05 Thread Jan Steffens via arch-commits
Date: Thursday, December 5, 2019 @ 15:07:48
  Author: heftig
Revision: 535624

archrelease: copy trunk to community-testing-x86_64

Added:
  virtualbox-modules-arch/repos/community-testing-x86_64/
  virtualbox-modules-arch/repos/community-testing-x86_64/PKGBUILD
(from rev 535623, virtualbox-modules-arch/trunk/PKGBUILD)

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

Copied: virtualbox-modules-arch/repos/community-testing-x86_64/PKGBUILD (from 
rev 535623, virtualbox-modules-arch/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2019-12-05 15:07:48 UTC (rev 535624)
@@ -0,0 +1,58 @@
+# Maintainer: Sébastien Luttringer
+# Contributor: Ionut Biru 
+
+pkgbase=virtualbox-modules-arch
+pkgname=('virtualbox-host-modules-arch' 'virtualbox-guest-modules-arch')
+pkgver=6.0.14
+pkgrel=12
+arch=('x86_64')
+url='http://virtualbox.org'
+license=('GPL')
+makedepends=('linux-headers'
+ "virtualbox-host-dkms>=$pkgver"
+ "virtualbox-guest-dkms>=$pkgver")
+
+build() {
+_kernver=$(

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

2019-12-05 Thread Jan Steffens via arch-commits
Date: Thursday, December 5, 2019 @ 15:07:51
  Author: heftig
Revision: 535628

archrelease: copy trunk to community-testing-x86_64

Added:
  r8168/repos/community-testing-x86_64/
  r8168/repos/community-testing-x86_64/PKGBUILD
(from rev 535623, r8168/trunk/PKGBUILD)
  r8168/repos/community-testing-x86_64/kernel-5.4.patch
(from rev 535625, r8168/trunk/kernel-5.4.patch)

--+
 PKGBUILD |   47 +++
 kernel-5.4.patch |   12 
 2 files changed, 59 insertions(+)

Copied: r8168/repos/community-testing-x86_64/PKGBUILD (from rev 535623, 
r8168/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2019-12-05 15:07:51 UTC (rev 535628)
@@ -0,0 +1,47 @@
+# Maintainer: Massimiliano Torromeo 
+# Contributor: Bob Fanger < bfanger(at)gmail >
+# Contributor: Filip , Det < nimetonmaili(at)gmail >
+
+pkgname=r8168
+pkgver=8.047.05
+pkgrel=4
+pkgdesc="A kernel module for Realtek 8168 network cards"
+url="http://www.realtek.com.tw;
+license=("GPL")
+arch=('x86_64')
+makedepends=('linux-headers')
+source=(https://github.com/mtorromeo/r8168/archive/$pkgver/$pkgname-$pkgver.tar.gz
+   kernel-5.4.patch)
+sha256sums=('1344bf3d8a1d01a1be8805b48940be1b946b5e694ca75bd14ed1c76fd4c3d67b'
+'be79c151c6323bb4d340e31e44fae25a36a93d317812fe5d75c54649ed2508b0')
+
+prepare() {
+   cd "$pkgname-$pkgver"
+   patch -Np1 -i ../kernel-5.4.patch
+}
+
+build() {
+   local KERNEL_VERSION=$(
+ #include 
+ 
+-#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,26)
++#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,26) && LINUX_VERSION_CODE < 
KERNEL_VERSION(5,4,0)
+ #include 
+ #endif
+ #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,4,37)


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

2019-12-05 Thread Jan Steffens via arch-commits
Date: Thursday, December 5, 2019 @ 15:07:50
  Author: heftig
Revision: 535627

archrelease: copy trunk to community-testing-x86_64

Added:
  acpi_call/repos/community-testing-x86_64/
  acpi_call/repos/community-testing-x86_64/PKGBUILD
(from rev 535623, acpi_call/trunk/PKGBUILD)
  acpi_call/repos/community-testing-x86_64/dkms.conf
(from rev 535623, acpi_call/trunk/dkms.conf)

---+
 PKGBUILD  |   62 
 dkms.conf |9 
 2 files changed, 71 insertions(+)

Copied: acpi_call/repos/community-testing-x86_64/PKGBUILD (from rev 535623, 
acpi_call/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2019-12-05 15:07:50 UTC (rev 535627)
@@ -0,0 +1,62 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: mortzu 
+# Contributor: fnord0 
+
+pkgbase=acpi_call
+pkgname=(acpi_call acpi_call-dkms)
+pkgver=1.1.0
+pkgrel=264
+pkgdesc='A linux kernel module that enables calls to ACPI methods through 
/proc/acpi/call'
+url='https://github.com/mkottman/acpi_call'
+arch=('x86_64')
+license=('GPL')
+makedepends=('linux-headers')
+source=("acpi_call-${pkgver}.tar.gz::https://github.com/mkottman/acpi_call/archive/v${pkgver}.tar.gz;
+dkms.conf)
+sha256sums=('d0d14b42944282724fca76f57d598eed794ef97448f387d1c489d85ad813f2f0'
+'32e6ea6523b13132c6c7838bba7fbf3d040ba2d35a892c2c356245612720df8a')
+
+prepare() {
+  cd $pkgbase-$pkgver
+
+  # Fix build with Linux >= 3.17
+  sed -i 's|acpi/acpi.h|linux/acpi.h|' acpi_call.c
+
+  # Fix build with Linux >= 4.12
+  sed -i 's|asm/uaccess.h|linux/uaccess.h|' acpi_call.c
+}
+
+build() {
+  cd $pkgbase-$pkgver
+  make KVERSION="$(

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

2019-12-05 Thread Jan Steffens via arch-commits
Date: Thursday, December 5, 2019 @ 15:06:59
  Author: heftig
Revision: 535622

0.0.20191205-2: linux 5.4.2.arch1-1

Modified:
  wireguard-arch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-05 15:06:57 UTC (rev 535621)
+++ PKGBUILD2019-12-05 15:06:59 UTC (rev 535622)
@@ -2,7 +2,7 @@
 
 pkgname=wireguard-arch
 pkgver=0.0.20191205
-pkgrel=1
+pkgrel=2
 pkgdesc='Wireguard module for Arch Kernel'
 url='https://www.wireguard.com/'
 arch=('x86_64')


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

2019-12-05 Thread Jan Steffens via arch-commits
Date: Thursday, December 5, 2019 @ 15:06:43
  Author: heftig
Revision: 535616

6.0.14-12: linux 5.4.2.arch1-1

Modified:
  virtualbox-modules-arch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-05 15:06:42 UTC (rev 535615)
+++ PKGBUILD2019-12-05 15:06:43 UTC (rev 535616)
@@ -4,7 +4,7 @@
 pkgbase=virtualbox-modules-arch
 pkgname=('virtualbox-host-modules-arch' 'virtualbox-guest-modules-arch')
 pkgver=6.0.14
-pkgrel=11
+pkgrel=12
 arch=('x86_64')
 url='http://virtualbox.org'
 license=('GPL')


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

2019-12-05 Thread Jan Steffens via arch-commits
Date: Thursday, December 5, 2019 @ 15:07:48
  Author: heftig
Revision: 535625

archrelease: copy trunk to community-testing-x86_64

Added:
  r8168-lts/repos/community-testing-x86_64/
  r8168-lts/repos/community-testing-x86_64/PKGBUILD
(from rev 535623, r8168-lts/trunk/PKGBUILD)

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

Copied: r8168-lts/repos/community-testing-x86_64/PKGBUILD (from rev 535623, 
r8168-lts/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2019-12-05 15:07:48 UTC (rev 535625)
@@ -0,0 +1,39 @@
+# Maintainer: Massimiliano Torromeo 
+
+pkgname=r8168-lts
+pkgver=8.047.05
+pkgrel=3
+pkgdesc="A kernel module for Realtek 8168 network cards for linux-lts"
+url="http://www.realtek.com.tw;
+license=("GPL")
+arch=('x86_64')
+makedepends=('linux-lts-headers')
+source=(https://github.com/mtorromeo/r8168/archive/$pkgver/r8168-$pkgver.tar.gz)
+sha256sums=('1344bf3d8a1d01a1be8805b48940be1b946b5e694ca75bd14ed1c76fd4c3d67b')
+
+build() {
+   local KERNEL_VERSION=$(

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

2019-12-05 Thread Jan Steffens via arch-commits
Date: Thursday, December 5, 2019 @ 15:06:51
  Author: heftig
Revision: 535620

1.1.0-264: linux 5.4.2.arch1-1

Modified:
  acpi_call/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-05 15:06:49 UTC (rev 535619)
+++ PKGBUILD2019-12-05 15:06:51 UTC (rev 535620)
@@ -5,7 +5,7 @@
 pkgbase=acpi_call
 pkgname=(acpi_call acpi_call-dkms)
 pkgver=1.1.0
-pkgrel=263
+pkgrel=264
 pkgdesc='A linux kernel module that enables calls to ACPI methods through 
/proc/acpi/call'
 url='https://github.com/mkottman/acpi_call'
 arch=('x86_64')


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

2019-12-05 Thread Jan Steffens via arch-commits
Date: Thursday, December 5, 2019 @ 15:06:45
  Author: heftig
Revision: 535617

0.8-269: linux 5.4.2.arch1-1

Modified:
  bbswitch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-05 15:06:43 UTC (rev 535616)
+++ PKGBUILD2019-12-05 15:06:45 UTC (rev 535617)
@@ -5,7 +5,7 @@
 pkgbase=bbswitch
 pkgname=(bbswitch bbswitch-dkms)
 pkgver=0.8
-pkgrel=268
+pkgrel=269
 pkgdesc="Kernel module allowing to switch dedicated graphics card on Optimus 
laptops"
 arch=('x86_64')
 url="http://github.com/Bumblebee-Project/bbswitch;


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

2019-12-05 Thread Jan Steffens via arch-commits
Date: Thursday, December 5, 2019 @ 15:06:46
  Author: heftig
Revision: 535618

8.047.05-4: linux 5.4.2.arch1-1

Modified:
  r8168/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-05 15:06:45 UTC (rev 535617)
+++ PKGBUILD2019-12-05 15:06:46 UTC (rev 535618)
@@ -4,7 +4,7 @@
 
 pkgname=r8168
 pkgver=8.047.05
-pkgrel=3
+pkgrel=4
 pkgdesc="A kernel module for Realtek 8168 network cards"
 url="http://www.realtek.com.tw;
 license=("GPL")


  1   2   3   4   >