[arch-commits] Commit in openssh/trunk (install)

2019-09-17 Thread Gaëtan Bisson via arch-commits
Date: Tuesday, September 17, 2019 @ 23:34:15
  Author: bisson
Revision: 362994

simpler approach

Modified:
  openssh/trunk/install

-+
 install |   31 ---
 1 file changed, 16 insertions(+), 15 deletions(-)

Modified: install
===
--- install 2019-09-17 15:56:27 UTC (rev 362993)
+++ install 2019-09-17 23:34:15 UTC (rev 362994)
@@ -1,19 +1,20 @@
-post_upgrade() {
-   # Migrate away from socket activation, Sept 2019.
-   # See: https://bugs.archlinux.org/task/62248
+pre_upgrade() {
+   # Remove socket activation. See: https://bugs.archlinux.org/task/62248
if (( $(vercmp $2 8.0p1-3) < 0 )); then
-   if stat -c %N 
/etc/systemd/system/sockets.target.wants/sshd.socket | grep -q 
'/usr/lib/systemd/system/sshd.socket'; then
-   if [[ ! -e /etc/systemd/system/sshd\@.service ]]; then
-   echo '==> SSHD: Migrating from socket 
activation to daemon.'
-   systemctl stop sshd.socket
-   systemctl disable sshd.socket
-   systemctl daemon-reload
-   systemctl start sshd.service
-   systemctl enable sshd.service
-   else
-   echo '==> The files sshd.socket and 
sshd@.service are no longer provided.'
-   echo '==> Please maintain them yourself or 
migrate to sshd.service.'
+   if systemctl is-enabled -q sshd.socket; then
+   cat < This package no longer provides sshd.socket and sshd@.service;
+==> copies of those files will be placed under /etc/systemd/system
+==> but please migrate to sshd.service whenever possible.
+EOF
+   src=/usr/lib/systemd/system
+   dst=/etc/systemd/system
+   for i in sshd.socket sshd\@.service; do
+   if [[ ! -e "$dst/$i" ]]; then
+   cp -v "$src/$i" "$dst/$i"
fi
-   fi
+   done
+   systemctl reenable sshd.socket
fi
+   fi
 }


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

2019-09-17 Thread Antonio Rojas via arch-commits
Date: Tuesday, September 17, 2019 @ 20:59:11
  Author: arojas
Revision: 511024

archrelease: copy trunk to community-x86_64

Added:
  libalkimia/repos/community-x86_64/PKGBUILD
(from rev 511023, libalkimia/trunk/PKGBUILD)
Deleted:
  libalkimia/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-09-17 20:58:49 UTC (rev 511023)
+++ PKGBUILD2019-09-17 20:59:11 UTC (rev 511024)
@@ -1,38 +0,0 @@
-# Maintainer: Laurent Carlier 
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: gumper 
-
-pkgname=libalkimia
-pkgver=8.0.1
-pkgrel=1
-pkgdesc="A library with common classes and functionality used by finance 
applications for the KDE SC"
-arch=('x86_64')
-url="https://community.kde.org/Alkimia/libalkimia;
-license=('LGPL')
-depends=('qt5-webkit' 'knewstuff' 'kdelibs4support' 'hicolor-icon-theme')
-makedepends=('cmake' 'doxygen' 'extra-cmake-modules' 'kdesignerplugin' 
'plasma-framework' 'kpackage' 'kdoctools')
-source=(https://ftp.acc.umu.se/mirror/kde.org/ftp/stable/alkimia/$pkgver/alkimia-$pkgver.tar.xz{,.sig})
-validpgpkeys=('D69A745A55331F44F404D8258D4DE062AA2EB01C'  # Thomas Baumgart 

-  '8C13BC14185A65215B592A2F1243132CD9321771') # Ralf Habacker 

-sha256sums=('f5601780f6ed95b5e14dd3a243ecd1afbdbdb522f0e32dec2fb86933ec363115'
-'SKIP')
-
-build() {
-  cd "${srcdir}"
-
-  mkdir build
-  cd build
-
-  cmake ../alkimia-${pkgver} \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DCMAKE_BUILD_TYPE=Release \
--Wno-dev
-  make
-}
-
-package() {
-  cd "${srcdir}"/build
-
-  make DESTDIR="${pkgdir}" install
-}

Copied: libalkimia/repos/community-x86_64/PKGBUILD (from rev 511023, 
libalkimia/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-09-17 20:59:11 UTC (rev 511024)
@@ -0,0 +1,32 @@
+# Maintainer: Laurent Carlier 
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: gumper 
+
+pkgname=libalkimia
+pkgver=8.0.2
+pkgrel=1
+pkgdesc="A library with common classes and functionality used by finance 
applications for the KDE SC"
+arch=('x86_64')
+url="https://community.kde.org/Alkimia/libalkimia;
+license=('LGPL')
+depends=('qt5-webkit' 'knewstuff' 'kdelibs4support' 'hicolor-icon-theme')
+makedepends=('cmake' 'doxygen' 'extra-cmake-modules' 'kdesignerplugin' 
'plasma-framework' 'kpackage' 'kdoctools')
+source=(https://download.kde.org/stable/alkimia/$pkgver/alkimia-$pkgver.tar.xz{,.sig})
+validpgpkeys=('D69A745A55331F44F404D8258D4DE062AA2EB01C'  # Thomas Baumgart 

+  '8C13BC14185A65215B592A2F1243132CD9321771') # Ralf Habacker 

+sha256sums=('616f7736fde8ce8acec4575f14e856fabfefb0961d932198d42fbd9a639a852a'
+'SKIP')
+
+build() {
+  mkdir build
+  cd build
+
+  cmake ../alkimia-${pkgver}
+  make
+}
+
+package() {
+  cd build
+
+  make DESTDIR="${pkgdir}" install
+}


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

2019-09-17 Thread Antonio Rojas via arch-commits
Date: Tuesday, September 17, 2019 @ 20:58:49
  Author: arojas
Revision: 511023

Update to 8.0.2

Modified:
  libalkimia/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-17 20:45:13 UTC (rev 511022)
+++ PKGBUILD2019-09-17 20:58:49 UTC (rev 511023)
@@ -3,7 +3,7 @@
 # Contributor: gumper 
 
 pkgname=libalkimia
-pkgver=8.0.1
+pkgver=8.0.2
 pkgrel=1
 pkgdesc="A library with common classes and functionality used by finance 
applications for the KDE SC"
 arch=('x86_64')
@@ -11,28 +11,22 @@
 license=('LGPL')
 depends=('qt5-webkit' 'knewstuff' 'kdelibs4support' 'hicolor-icon-theme')
 makedepends=('cmake' 'doxygen' 'extra-cmake-modules' 'kdesignerplugin' 
'plasma-framework' 'kpackage' 'kdoctools')
-source=(https://ftp.acc.umu.se/mirror/kde.org/ftp/stable/alkimia/$pkgver/alkimia-$pkgver.tar.xz{,.sig})
+source=(https://download.kde.org/stable/alkimia/$pkgver/alkimia-$pkgver.tar.xz{,.sig})
 validpgpkeys=('D69A745A55331F44F404D8258D4DE062AA2EB01C'  # Thomas Baumgart 

   '8C13BC14185A65215B592A2F1243132CD9321771') # Ralf Habacker 

-sha256sums=('f5601780f6ed95b5e14dd3a243ecd1afbdbdb522f0e32dec2fb86933ec363115'
+sha256sums=('616f7736fde8ce8acec4575f14e856fabfefb0961d932198d42fbd9a639a852a'
 'SKIP')
 
 build() {
-  cd "${srcdir}"
-
   mkdir build
   cd build
 
-  cmake ../alkimia-${pkgver} \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DCMAKE_BUILD_TYPE=Release \
--Wno-dev
+  cmake ../alkimia-${pkgver}
   make
 }
 
 package() {
-  cd "${srcdir}"/build
+  cd build
 
   make DESTDIR="${pkgdir}" install
 }


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

2019-09-17 Thread Antonio Rojas via arch-commits
Date: Tuesday, September 17, 2019 @ 20:45:13
  Author: arojas
Revision: 511022

https

Modified:
  lib32-slang/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-17 20:44:47 UTC (rev 511021)
+++ PKGBUILD2019-09-17 20:45:13 UTC (rev 511022)
@@ -11,7 +11,7 @@
 depends=('lib32-glibc' 'lib32-pcre' 'lib32-zlib' 'slang')
 makedepends=('gcc-multilib')
 options=('!makeflags')
-source=("http://www.jedsoft.org/releases/slang/slang-${pkgver}.tar.bz2"{,.asc})
+source=("https://www.jedsoft.org/releases/slang/slang-${pkgver}.tar.bz2"{,.asc})
 sha256sums=('fc9e3b0fc4f67c3c1f6d43c90c16a5c42d117b8e28457c5b46831b8b5d3ae31a'
 'SKIP')
 validpgpkeys=('AE962A02D29BFE4A4BB2805FDE401E0D5873000A') # John E. Davis


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

2019-09-17 Thread Antonio Rojas via arch-commits
Date: Tuesday, September 17, 2019 @ 20:44:47
  Author: arojas
Revision: 511021

https

Modified:
  lib32-rest/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-17 20:44:20 UTC (rev 511020)
+++ PKGBUILD2019-09-17 20:44:47 UTC (rev 511021)
@@ -7,11 +7,11 @@
 pkgrel=1
 pkgdesc='A helper library for RESTful services'
 arch=('x86_64')
-url='http://www.gtk.org/'
+url='https://www.gtk.org/'
 license=('GPL2')
 depends=('lib32-libsoup' 'rest')
 makedepends=('gcc-multilib' 'gobject-introspection')
-source=("http://download.gnome.org/sources/rest/${pkgver%.*}/rest-${pkgver}.tar.xz;)
+source=("https://download.gnome.org/sources/rest/${pkgver%.*}/rest-${pkgver}.tar.xz;)
 sha256sums=('0513aad38e5d3cedd4ae3c551634e3be1b9baaa79775e53b2dba9456f15b01c9')
 
 build() {


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

2019-09-17 Thread Antonio Rojas via arch-commits
Date: Tuesday, September 17, 2019 @ 20:43:54
  Author: arojas
Revision: 511019

https

Modified:
  lib32-db/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-17 20:43:29 UTC (rev 511018)
+++ PKGBUILD2019-09-17 20:43:54 UTC (rev 511019)
@@ -12,7 +12,7 @@
 license=('custom')
 depends=("db=${pkgver}" 'lib32-gcc-libs')
 makedepends=('gcc-multilib')
-source=("http://download.oracle.com/berkeley-db/db-${pkgver}.tar.gz;)
+source=("https://download.oracle.com/berkeley-db/db-${pkgver}.tar.gz;)
 sha256sums=('e0a992d740709892e81f9d93f06daf305cf73fb81b545afe72478043172c3628')
 
 build() {


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

2019-09-17 Thread Antonio Rojas via arch-commits
Date: Tuesday, September 17, 2019 @ 20:44:20
  Author: arojas
Revision: 511020

https

Modified:
  lib32-libvpx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-17 20:43:54 UTC (rev 511019)
+++ PKGBUILD2019-09-17 20:44:20 UTC (rev 511020)
@@ -6,7 +6,7 @@
 pkgrel=1
 pkgdesc='VP8 and VP9 codec'
 arch=(x86_64)
-url=http://www.webmproject.org/
+url=https://www.webmproject.org/
 license=(BSD)
 depends=(
   lib32-gcc-libs


[arch-commits] Commit in lib32-alsa-oss/trunk (PKGBUILD)

2019-09-17 Thread Antonio Rojas via arch-commits
Date: Tuesday, September 17, 2019 @ 20:43:29
  Author: arojas
Revision: 511018

https

Modified:
  lib32-alsa-oss/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-17 20:42:11 UTC (rev 511017)
+++ PKGBUILD2019-09-17 20:43:29 UTC (rev 511018)
@@ -7,7 +7,7 @@
 pkgdesc="OSS compatibility library (32 bit)"
 arch=(x86_64)
 license=('GPL')
-url="http://www.alsa-project.org;
+url="https://www.alsa-project.org;
 depends=('lib32-glibc' 'lib32-alsa-lib' 'alsa-oss')
 source=(ftp://ftp.alsa-project.org/pub/oss-lib/${_pkgbasename}-$pkgver.tar.bz2)
 md5sums=('9ec4bb783fdce19032aace086d65d874')


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

2019-09-17 Thread Antonio Rojas via arch-commits
Date: Tuesday, September 17, 2019 @ 20:41:49
  Author: arojas
Revision: 511016

https

Modified:
  krusader/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-17 20:41:17 UTC (rev 511015)
+++ PKGBUILD2019-09-17 20:41:49 UTC (rev 511016)
@@ -33,7 +33,7 @@
 'konsole: terminal'
 'ktexteditor: file editing support'
 )
-source=("http://download.kde.org/stable/krusader/$pkgver/$pkgname-$pkgver.tar.xz;)
+source=("https://download.kde.org/stable/krusader/$pkgver/$pkgname-$pkgver.tar.xz;)
 md5sums=('d3a5e956ad0b1b63f236c4f41a7f')
 sha1sums=('e0109c6f9f841695a31045c46a43eb70c0085750')
 sha256sums=('41a39a43b3c42dd1d1ecaea86df30caff6a061fecc1d66f60859b2a3ca976109')


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

2019-09-17 Thread Antonio Rojas via arch-commits
Date: Tuesday, September 17, 2019 @ 20:42:11
  Author: arojas
Revision: 511017

https

Modified:
  kubectl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-17 20:41:49 UTC (rev 511016)
+++ PKGBUILD2019-09-17 20:42:11 UTC (rev 511017)
@@ -9,7 +9,7 @@
 pkgver=1.15.2
 pkgrel=1
 arch=('x86_64')
-url="http://kubernetes.io;
+url="https://kubernetes.io;
 license=('Apache')
 makedepends=('go-pie' 'rsync')
 #source=("git+https://github.com/kubernetes/kubernetes#tag=v${pkgver};)


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

2019-09-17 Thread Antonio Rojas via arch-commits
Date: Tuesday, September 17, 2019 @ 20:41:17
  Author: arojas
Revision: 511015

https

Modified:
  keepass/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-17 20:40:50 UTC (rev 511014)
+++ PKGBUILD2019-09-17 20:41:17 UTC (rev 511015)
@@ -15,8 +15,8 @@
 optdepends=('xdotool: if you want to use auto-type'
 'xsel: clipboard operations in order to work around Mono clipboard 
bugs')
 install="$pkgname.install"
-source=("http://downloads.sourceforge.net/keepass/KeePass-$pkgver-Source.zip;
-"http://keepass.info/integrity/v2/KeePass-$pkgver-Source.zip.asc;
+source=("https://downloads.sourceforge.net/keepass/KeePass-$pkgver-Source.zip;
+"https://keepass.info/integrity/v2/KeePass-$pkgver-Source.zip.asc;
 'keepass'
 'keepass.1'
 'keepass.desktop'


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

2019-09-17 Thread Antonio Rojas via arch-commits
Date: Tuesday, September 17, 2019 @ 20:40:50
  Author: arojas
Revision: 511014

https

Modified:
  keepalived/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-17 20:40:21 UTC (rev 511013)
+++ PKGBUILD2019-09-17 20:40:50 UTC (rev 511014)
@@ -6,7 +6,7 @@
 pkgrel=1
 pkgdesc='Failover and monitoring daemon for LVS clusters'
 arch=('x86_64')
-url='http://www.keepalived.org/'
+url='https://www.keepalived.org/'
 license=('GPL2')
 backup=('etc/keepalived/keepalived.conf' 'etc/sysconfig/keepalived')
 makedepends=('ipset')
@@ -14,7 +14,7 @@
 optdepends=('ipset: ipset support')
 makedepends=('libnfnetlink' 'ipset' 'systemd')
 options=('!emptydirs')
-source=("http://www.keepalived.org/software/$pkgname-$pkgver.tar.gz;)
+source=("https://www.keepalived.org/software/$pkgname-$pkgver.tar.gz;)
 md5sums=('9d1dc77a0e4c628daf9fe453701b54be')
 
 build() {


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

2019-09-17 Thread Antonio Rojas via arch-commits
Date: Tuesday, September 17, 2019 @ 20:40:21
  Author: arojas
Revision: 511013

https

Modified:
  jython/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-17 20:39:54 UTC (rev 511012)
+++ PKGBUILD2019-09-17 20:40:21 UTC (rev 511013)
@@ -7,7 +7,7 @@
 pkgrel=2
 pkgdesc="An implementation of the Python language written in Java"
 arch=('any')
-url="http://www.jython.org/;
+url="https://www.jython.org/;
 license=('PSF' 'APACHE' 'custom')
 depends=('java-environment' 'bash' 'python')
 backup=('opt/jython/registry')


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

2019-09-17 Thread Antonio Rojas via arch-commits
Date: Tuesday, September 17, 2019 @ 20:39:54
  Author: arojas
Revision: 511012

https

Modified:
  jupyter/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-17 20:39:26 UTC (rev 511011)
+++ PKGBUILD2019-09-17 20:39:54 UTC (rev 511012)
@@ -6,7 +6,7 @@
 pkgrel=7
 pkgdesc="A language-agnostic web-based interactive shell/notebook server."
 arch=('any')
-url="http://jupyter.org/;
+url="https://jupyter.org/;
 license=('BSD')
 depends=('python-setuptools' 'python-jinja' 'python-mistune'
  'ipython' 'python-ipykernel' 'python-jupyter_core'


[arch-commits] Commit in haskell-data-accessor-transformers/trunk (PKGBUILD)

2019-09-17 Thread Antonio Rojas via arch-commits
Date: Tuesday, September 17, 2019 @ 20:38:56
  Author: arojas
Revision: 511010

https

Modified:
  haskell-data-accessor-transformers/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-17 20:37:51 UTC (rev 511009)
+++ PKGBUILD2019-09-17 20:38:56 UTC (rev 511010)
@@ -6,7 +6,7 @@
 pkgver=0.2.1.7
 pkgrel=15
 pkgdesc="Use Accessor to access state in transformers State monad"
-url="http://www.haskell.org/haskellwiki/Record_access;
+url="https://www.haskell.org/haskellwiki/Record_access;
 license=("BSD")
 arch=('x86_64')
 depends=('ghc-libs' "haskell-data-accessor")


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

2019-09-17 Thread Antonio Rojas via arch-commits
Date: Tuesday, September 17, 2019 @ 20:39:26
  Author: arojas
Revision: 511011

https

Modified:
  jake/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-17 20:38:56 UTC (rev 511010)
+++ PKGBUILD2019-09-17 20:39:26 UTC (rev 511011)
@@ -5,7 +5,7 @@
 pkgrel=1
 pkgdesc="JavaScript build tool, similar to Make or Rake"
 arch=('any')
-url="http://jakejs.com;
+url="https://jakejs.com;
 license=('Apache')
 depends=('nodejs')
 makedepends=('npm')


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

2019-09-17 Thread Antonio Rojas via arch-commits
Date: Tuesday, September 17, 2019 @ 20:37:51
  Author: arojas
Revision: 511009

https

Modified:
  haskell-blaze-markup/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-17 20:37:17 UTC (rev 511008)
+++ PKGBUILD2019-09-17 20:37:51 UTC (rev 511009)
@@ -6,7 +6,7 @@
 pkgver=0.8.2.2
 pkgrel=28
 pkgdesc="A blazingly fast markup combinator library for Haskell"
-url="http://jaspervdj.be/blaze;
+url="https://jaspervdj.be/blaze;
 license=("BSD")
 arch=('x86_64')
 depends=('ghc-libs' 'haskell-blaze-builder')


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

2019-09-17 Thread Antonio Rojas via arch-commits
Date: Tuesday, September 17, 2019 @ 20:37:17
  Author: arojas
Revision: 511008

https

Modified:
  gunicorn/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-17 20:36:48 UTC (rev 511007)
+++ PKGBUILD2019-09-17 20:37:17 UTC (rev 511008)
@@ -9,7 +9,7 @@
 pkgrel=1
 pkgdesc='WSGI HTTP Server for UNIX'
 arch=('any')
-url='http://gunicorn.org/'
+url='https://gunicorn.org/'
 license=('MIT')
 makedepends=('python-setuptools' 'python2-setuptools')
 checkdepends=('python2-mock' 'python-coverage' 'python2-coverage' 
'python-pytest' 'python2-pytest'


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

2019-09-17 Thread Antonio Rojas via arch-commits
Date: Tuesday, September 17, 2019 @ 20:36:48
  Author: arojas
Revision: 511007

https

Modified:
  groovy-docs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-17 20:36:16 UTC (rev 511006)
+++ PKGBUILD2019-09-17 20:36:48 UTC (rev 511007)
@@ -5,7 +5,7 @@
 pkgver=2.5.0
 pkgrel=1
 pkgdesc='Documentation for the Groovy programming language'
-url='http://groovy-lang.org/'
+url='https://groovy-lang.org/'
 license=('APACHE')
 arch=('any')
 source=("https://dl.bintray.com/groovy/maven/apache-$pkgname-$pkgver.zip;)


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

2019-09-17 Thread Antonio Rojas via arch-commits
Date: Tuesday, September 17, 2019 @ 20:36:16
  Author: arojas
Revision: 511006

https

Modified:
  gnunet/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-17 20:35:35 UTC (rev 511005)
+++ PKGBUILD2019-09-17 20:36:16 UTC (rev 511006)
@@ -6,7 +6,7 @@
 pkgrel=1
 pkgdesc="A framework for secure peer-to-peer networking"
 arch=('x86_64')
-url="http://gnunet.org;
+url="https://gnunet.org;
 license=('GPL')
 depends=('libextractor' 'sqlite' 'gnurl' 'libmicrohttpd' 'libidn' 'jansson')
 makedepends=('git' 'bluez-libs' 'python' 'glpk' 'libpulse' 'opus' 
'gst-plugins-base-libs')


[arch-commits] Commit in gimp-plugin-wavelet-denoise/trunk (PKGBUILD)

2019-09-17 Thread Antonio Rojas via arch-commits
Date: Tuesday, September 17, 2019 @ 20:35:35
  Author: arojas
Revision: 511005

https

Modified:
  gimp-plugin-wavelet-denoise/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-17 20:34:18 UTC (rev 511004)
+++ PKGBUILD2019-09-17 20:35:35 UTC (rev 511005)
@@ -4,10 +4,10 @@
 pkgrel=4
 pkgdesc="Tool to reduce noise in each channel of an image separately"
 arch=('x86_64')
-url="http://registry.gimp.org/node/4235;
+url="https://registry.gimp.org/node/4235;
 license=('GPL')
 depends=('gimp')
-source=(http://registry.gimp.org/files/wavelet-denoise-$pkgver.tar.gz \
+source=(https://raw.githubusercontent.com/pixlsus/registry.gimp.org_static/master/registry.gimp.org/files/wavelet-denoise-$pkgver.tar.gz
 \
 po_install.diff libm_buildfix.diff)
 md5sums=('a02862026857575cdf81b24477e42f4b'
  '4de9e41a535f200c2502f0dd8458c43e'


[arch-commits] Commit in gimp-plugin-fblur/trunk (PKGBUILD)

2019-09-17 Thread Antonio Rojas via arch-commits
Date: Tuesday, September 17, 2019 @ 20:34:18
  Author: arojas
Revision: 511004

Fix source

Modified:
  gimp-plugin-fblur/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-17 20:24:35 UTC (rev 511003)
+++ PKGBUILD2019-09-17 20:34:18 UTC (rev 511004)
@@ -8,9 +8,9 @@
 license=('GPL')
 depends=('gimp' 'fftw')
 makedepends=('intltool')
-source=(https://registry.gimp.org/files/focusblur-$pkgver.tar.bz2 \
+source=(https://raw.githubusercontent.com/pixlsus/registry.gimp.org_static/master/registry.gimp.org/files/focusblur-$pkgver.tar.bz2
 \
 use_glib_h.diff)
-md5sums=('daa0a206f4f9fd23bc3ac595813e9f25'
+md5sums=('6196c88aeee8733bacc3c6e9ac3c6cf8'
  'b654ec87f28589b84625c0683dbe1273')
 
 prepare() {


[arch-commits] Commit in gimp-plugin-fblur/trunk (PKGBUILD)

2019-09-17 Thread Antonio Rojas via arch-commits
Date: Tuesday, September 17, 2019 @ 20:24:35
  Author: arojas
Revision: 511003

https

Modified:
  gimp-plugin-fblur/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-17 20:23:37 UTC (rev 511002)
+++ PKGBUILD2019-09-17 20:24:35 UTC (rev 511003)
@@ -4,13 +4,13 @@
 pkgrel=5
 pkgdesc="Makes out of focus with luminosity and depth"
 arch=('x86_64')
-url="http://registry.gimp.org/node/1444;
+url="https://registry.gimp.org/node/1444;
 license=('GPL')
 depends=('gimp' 'fftw')
 makedepends=('intltool')
-source=(http://registry.gimp.org/files/focusblur-$pkgver.tar.bz2 \
+source=(https://registry.gimp.org/files/focusblur-$pkgver.tar.bz2 \
 use_glib_h.diff)
-md5sums=('6196c88aeee8733bacc3c6e9ac3c6cf8'
+md5sums=('daa0a206f4f9fd23bc3ac595813e9f25'
  'b654ec87f28589b84625c0683dbe1273')
 
 prepare() {


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

2019-09-17 Thread Antonio Rojas via arch-commits
Date: Tuesday, September 17, 2019 @ 20:23:37
  Author: arojas
Revision: 511002

https

Modified:
  gerbv/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-17 20:23:01 UTC (rev 511001)
+++ PKGBUILD2019-09-17 20:23:37 UTC (rev 511002)
@@ -15,7 +15,7 @@
 makedepends=('cvs' 'gettext')
 # cvs for autopoint
 changelog=ChangeLog
-source=("http://downloads.sourceforge.net/gerbv/$pkgname-$pkgver.tar.gz;)
+source=("https://downloads.sourceforge.net/gerbv/$pkgname-$pkgver.tar.gz;)
 md5sums=('2d09c69bc12ab76f29006daaadb78ad9')
 
 build ()


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

2019-09-17 Thread Antonio Rojas via arch-commits
Date: Tuesday, September 17, 2019 @ 20:23:01
  Author: arojas
Revision: 511001

https

Modified:
  gcolor2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-17 15:38:36 UTC (rev 511000)
+++ PKGBUILD2019-09-17 20:23:01 UTC (rev 511001)
@@ -12,7 +12,7 @@
 license=('GPL')
 depends=('gtk2')
 makedepends=('perl-xml-parser')
-source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz
 \
+source=(https://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz
 \
 gcolor2-0.4-amd64.patch gcolor2.desktop)
 md5sums=('02de9d925ad5921522685f402caec3ec'
  '5791378f6f86dd25a302ad8586292dd6'


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

2019-09-17 Thread David Runge via arch-commits
Date: Tuesday, September 17, 2019 @ 15:38:29
  Author: dvzrv
Revision: 510999

upgpkg: hostapd 2.9-2

Adding contributor. Switching to correct license (BSD). Removing non-standard/ 
not-upstreamed (and undocumented) patches.
Syncing build config with the standard one from version 2.9. Setting state dir 
and configuration locations in default configuration.
Removing unrequired CFLAGS override. Installing (hopefully) all configurations 
to /etc/hostapd and adding them to backup array.
Extracting correct license from README and installing it. Installing READMEs 
and ChangeLog as docs. Building against sqlite for additional functionality.
Using install target to install files instead of manually installing them. 
Adding PrivateTmp=yes to hostapd.service, so a separate tmp is used for certain 
actions.

Modified:
  hostapd/trunk/PKGBUILD
  hostapd/trunk/config
  hostapd/trunk/hostapd.service
Deleted:
  hostapd/trunk/hostapd-noscan.patch
  hostapd/trunk/openvswitch.patch

--+
 PKGBUILD |   94 +++---
 config   |  319 ++---
 hostapd-noscan.patch |   76 ---
 hostapd.service  |1 
 openvswitch.patch|  137 -
 5 files changed, 350 insertions(+), 277 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-09-17 14:03:07 UTC (rev 510998)
+++ PKGBUILD2019-09-17 15:38:29 UTC (rev 510999)
@@ -1,70 +1,68 @@
 # Maintainer: Sergej Pupykin 
+# Contributor: David Runge 
 
 pkgname=hostapd
 pkgver=2.9
-pkgrel=1
+pkgrel=2
 pkgdesc="IEEE 802.11 AP, IEEE 802.1X/WPA/WPA2/EAP/RADIUS Authenticator"
 arch=('x86_64')
 url="https://w1.fi/hostapd/;
-license=(GPL)
-depends=('openssl' 'libnl')
-options=(emptydirs)
-validpgpkeys=('EC4AA0A991A5F2464582D52D2B6EF432EFC895FA') # Jouni Malinen
-source=(https://w1.fi/releases/$pkgname-$pkgver.tar.gz{,.asc}
+license=('BSD')
+depends=('glibc' 'libnl' 'openssl' 'sqlite')
+backup=("etc/${pkgname}/${pkgname}."{accept,conf,deny,eap_user,radius_clients,vlan,wpa_psk})
+source=("https://w1.fi/releases/$pkgname-$pkgver.tar.gz"{,.asc}
 config
-hostapd.service
-hostapd-noscan.patch
-openvswitch.patch)
+hostapd.service)
 sha256sums=('881d7d6a90b2428479288d64233151448f8990ab4958e0ecaca7eeb3c9db2bd7'
 'SKIP'
-'15c116def37d99d02bc46c05d031c12ee00064bbb4b4c8df0e43eb227ff6aafc'
-'989bc6855f44c0b360e3d4cd4a146c35b7c12f8a0ced627b4b033f58edcade8e'
-'5ad1aadcd7682e517cab6afb474df6b9abad1a08dbe2bb40571a1b91c33f6f09'
-'64c06b5f6f58923446fd9351c596c759dec130997677f8b9f013c8ce360fbd98')
+'87445203a518864e704b85fa970d90940e9a5d9b401ceb802d11caab6c07a495'
+'d9a8b44915ed71211f27533b9b075e22423d2fab27013f5ca89f1eec150459b2')
+validpgpkeys=('EC4AA0A991A5F2464582D52D2B6EF432EFC895FA') # Jouni Malinen
 
 prepare() {
-  cd $pkgname-$pkgver
-  local i; for i in "${source[@]}"; do
-case $i in
-  *.patch)
-msg2 "Applying patch $i"
-patch -p1 -i "$srcdir/$i"
-;;
-esac
-  done
+  cd "$pkgname-$pkgver"
+  # fix include locations in main configuration file
+  sed -e 's|/etc/hostapd|/etc/hostapd/hostapd|g' \
+  -e 's|/var/run|/run|g' \
+  -e 's|radius_attr.sqlite|/var/lib/hostapd/radius_attr.sqlite|g' \
+  -e 's|hostapd.cred|/var/lib/hostapd/hostapd.cred|g' \
+  -e 's|hostapd.ap_settings|/var/lib/hostapd/hostapd.ap_settings|g' \
+  -e 's|hostapd_wps_pin_requests|hostapd/wps_pin_requests|g' \
+  -i "${pkgname}/${pkgname}.conf"
+  # extract license
+  cat "${pkgname}/README" |head -n47 |tail -n5 > LICENSE
+  # link build configuration into place:
+  # an up-to-date version of the build configuration can be found in
+  # hostapd/defconfig and should be diffed with the packaged one before every
+  # build
+  ln -sv "${srcdir}/config" "${pkgname}/.config"
 }
 
 build() {
   cd $pkgname-$pkgver/hostapd
-  cp ../../config .config
-  sed -i 's#/etc/hostapd#/etc/hostapd/hostapd#' hostapd.conf
-  export CFLAGS="$CFLAGS $(pkg-config --cflags libnl-3.0)"
   make
 }
 
 package() {
-  # Systemd unit
-  install -Dm644 hostapd.service 
"$pkgdir/usr/lib/systemd/system/hostapd.service"
-
-  cd $pkgname-$pkgver
-
-  # License
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
-
-  cd hostapd
-
-  # Binaries
-  install -d "$pkgdir/usr/bin"
-  install -t "$pkgdir/usr/bin" hostapd hostapd_cli
-
-  # Configuration
+  cd "$pkgname-$pkgver"
+  make -C "${pkgname}" install DESTDIR="${pkgdir}" BINDIR="/usr/bin"
+  # systemd service
+  install -vDm 644 "../${pkgname}.service" \
+-t "$pkgdir/usr/lib/systemd/system/"
+  # license
+  install -vDm 644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname/"
+  # config
   install -d "$pkgdir/etc/hostapd"
-  install -d "$pkgdir/usr/share/doc/hostapd"
-  install -m644 -t "$pkgdir/usr/share/doc/hostapd" \
-

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

2019-09-17 Thread David Runge via arch-commits
Date: Tuesday, September 17, 2019 @ 15:38:36
  Author: dvzrv
Revision: 511000

archrelease: copy trunk to community-x86_64

Added:
  hostapd/repos/community-x86_64/PKGBUILD
(from rev 510999, hostapd/trunk/PKGBUILD)
  hostapd/repos/community-x86_64/config
(from rev 510999, hostapd/trunk/config)
  hostapd/repos/community-x86_64/hostapd.service
(from rev 510999, hostapd/trunk/hostapd.service)
Deleted:
  hostapd/repos/community-x86_64/PKGBUILD
  hostapd/repos/community-x86_64/config
  hostapd/repos/community-x86_64/hostapd-noscan.patch
  hostapd/repos/community-x86_64/hostapd.service
  hostapd/repos/community-x86_64/openvswitch.patch

--+
 PKGBUILD |  138 ++---
 config   |  505 ++---
 hostapd-noscan.patch |   76 ---
 hostapd.service  |   21 +-
 openvswitch.patch|  137 -
 5 files changed, 475 insertions(+), 402 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-09-17 15:38:29 UTC (rev 510999)
+++ PKGBUILD2019-09-17 15:38:36 UTC (rev 511000)
@@ -1,70 +0,0 @@
-# Maintainer: Sergej Pupykin 
-
-pkgname=hostapd
-pkgver=2.9
-pkgrel=1
-pkgdesc="IEEE 802.11 AP, IEEE 802.1X/WPA/WPA2/EAP/RADIUS Authenticator"
-arch=('x86_64')
-url="https://w1.fi/hostapd/;
-license=(GPL)
-depends=('openssl' 'libnl')
-options=(emptydirs)
-validpgpkeys=('EC4AA0A991A5F2464582D52D2B6EF432EFC895FA') # Jouni Malinen
-source=(https://w1.fi/releases/$pkgname-$pkgver.tar.gz{,.asc}
-config
-hostapd.service
-hostapd-noscan.patch
-openvswitch.patch)
-sha256sums=('881d7d6a90b2428479288d64233151448f8990ab4958e0ecaca7eeb3c9db2bd7'
-'SKIP'
-'15c116def37d99d02bc46c05d031c12ee00064bbb4b4c8df0e43eb227ff6aafc'
-'989bc6855f44c0b360e3d4cd4a146c35b7c12f8a0ced627b4b033f58edcade8e'
-'5ad1aadcd7682e517cab6afb474df6b9abad1a08dbe2bb40571a1b91c33f6f09'
-'64c06b5f6f58923446fd9351c596c759dec130997677f8b9f013c8ce360fbd98')
-
-prepare() {
-  cd $pkgname-$pkgver
-  local i; for i in "${source[@]}"; do
-case $i in
-  *.patch)
-msg2 "Applying patch $i"
-patch -p1 -i "$srcdir/$i"
-;;
-esac
-  done
-}
-
-build() {
-  cd $pkgname-$pkgver/hostapd
-  cp ../../config .config
-  sed -i 's#/etc/hostapd#/etc/hostapd/hostapd#' hostapd.conf
-  export CFLAGS="$CFLAGS $(pkg-config --cflags libnl-3.0)"
-  make
-}
-
-package() {
-  # Systemd unit
-  install -Dm644 hostapd.service 
"$pkgdir/usr/lib/systemd/system/hostapd.service"
-
-  cd $pkgname-$pkgver
-
-  # License
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
-
-  cd hostapd
-
-  # Binaries
-  install -d "$pkgdir/usr/bin"
-  install -t "$pkgdir/usr/bin" hostapd hostapd_cli
-
-  # Configuration
-  install -d "$pkgdir/etc/hostapd"
-  install -d "$pkgdir/usr/share/doc/hostapd"
-  install -m644 -t "$pkgdir/usr/share/doc/hostapd" \
-hostapd.{accept,conf,deny,eap_user,radius_clients,sim_db,vlan,wpa_psk} \
-wired.conf hlr_auc_gw.milenage_db
-
-  # Man pages
-  install -Dm644 hostapd.8 "$pkgdir/usr/share/man/man8/hostapd.8"
-  install -Dm644 hostapd_cli.1 "$pkgdir/usr/share/man/man1/hostapd_cli.1"
-}

Copied: hostapd/repos/community-x86_64/PKGBUILD (from rev 510999, 
hostapd/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-09-17 15:38:36 UTC (rev 511000)
@@ -0,0 +1,68 @@
+# Maintainer: Sergej Pupykin 
+# Contributor: David Runge 
+
+pkgname=hostapd
+pkgver=2.9
+pkgrel=2
+pkgdesc="IEEE 802.11 AP, IEEE 802.1X/WPA/WPA2/EAP/RADIUS Authenticator"
+arch=('x86_64')
+url="https://w1.fi/hostapd/;
+license=('BSD')
+depends=('glibc' 'libnl' 'openssl' 'sqlite')
+backup=("etc/${pkgname}/${pkgname}."{accept,conf,deny,eap_user,radius_clients,vlan,wpa_psk})
+source=("https://w1.fi/releases/$pkgname-$pkgver.tar.gz"{,.asc}
+config
+hostapd.service)
+sha256sums=('881d7d6a90b2428479288d64233151448f8990ab4958e0ecaca7eeb3c9db2bd7'
+'SKIP'
+'87445203a518864e704b85fa970d90940e9a5d9b401ceb802d11caab6c07a495'
+'d9a8b44915ed71211f27533b9b075e22423d2fab27013f5ca89f1eec150459b2')
+validpgpkeys=('EC4AA0A991A5F2464582D52D2B6EF432EFC895FA') # Jouni Malinen
+
+prepare() {
+  cd "$pkgname-$pkgver"
+  # fix include locations in main configuration file
+  sed -e 's|/etc/hostapd|/etc/hostapd/hostapd|g' \
+  -e 's|/var/run|/run|g' \
+  -e 's|radius_attr.sqlite|/var/lib/hostapd/radius_attr.sqlite|g' \
+  -e 's|hostapd.cred|/var/lib/hostapd/hostapd.cred|g' \
+  -e 's|hostapd.ap_settings|/var/lib/hostapd/hostapd.ap_settings|g' \
+  -e 's|hostapd_wps_pin_requests|hostapd/wps_pin_requests|g' \
+  -i "${pkgname}/${pkgname}.conf"
+  # extract license
+  cat "${pkgname}/README" |head -n47 |tail -n5 > LICENSE
+  # link build configuration into 

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

2019-09-17 Thread Levente Polyak via arch-commits
Date: Tuesday, September 17, 2019 @ 14:35:28
  Author: anthraxx
Revision: 362991

archrelease: copy trunk to extra-x86_64

Added:
  linux-hardened/repos/extra-x86_64/60-linux.hook
(from rev 362990, linux-hardened/trunk/60-linux.hook)
  linux-hardened/repos/extra-x86_64/90-linux.hook
(from rev 362990, linux-hardened/trunk/90-linux.hook)
  linux-hardened/repos/extra-x86_64/PKGBUILD
(from rev 362990, linux-hardened/trunk/PKGBUILD)
  linux-hardened/repos/extra-x86_64/config.x86_64
(from rev 362990, linux-hardened/trunk/config.x86_64)
  linux-hardened/repos/extra-x86_64/linux.install
(from rev 362990, linux-hardened/trunk/linux.install)
  linux-hardened/repos/extra-x86_64/linux.preset
(from rev 362990, linux-hardened/trunk/linux.preset)
Deleted:
  linux-hardened/repos/extra-x86_64/60-linux.hook
  linux-hardened/repos/extra-x86_64/90-linux.hook
  linux-hardened/repos/extra-x86_64/PKGBUILD
  linux-hardened/repos/extra-x86_64/config.x86_64
  linux-hardened/repos/extra-x86_64/linux.install
  linux-hardened/repos/extra-x86_64/linux.preset

---+
 60-linux.hook |   24 
 90-linux.hook |   22 
 PKGBUILD  |  510 -
 config.x86_64 |20780 
 linux.install |   26 
 linux.preset  |   28 
 6 files changed, 10695 insertions(+), 10695 deletions(-)

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


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

2019-09-17 Thread Levente Polyak via arch-commits
Date: Tuesday, September 17, 2019 @ 14:35:21
  Author: anthraxx
Revision: 362990

upgpkg: linux-hardened 5.2.15.a-1

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

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-17 14:00:23 UTC (rev 362989)
+++ PKGBUILD2019-09-17 14:35:21 UTC (rev 362990)
@@ -4,7 +4,7 @@
 # Contributor: Thomas Baechler 
 
 pkgbase=linux-hardened
-_pkgver=5.2.14
+_pkgver=5.2.15
 _hardenedver=a
 _srcname=linux-${_pkgver}
 pkgver=${_pkgver}.${_hardenedver}
@@ -26,11 +26,11 @@
 linux.preset   # standard config files for mkinitcpio ramdisk
 )
 replaces=('linux-grsec')
-sha256sums=('c64d36477fee6a864a734ec417407768e60040a13f144c33208fa9622fd0ce8c'
+sha256sums=('eb561009da8106b463b1e1a16ab0f75cdef564784f49177148f5f92c32380c4a'
 'SKIP'
-'fe3086755a5d677fd1f31b919a622e4c83bc97f354e7ca4683dd7cdefbd666d6'
+'17d8a2c9e1b89cf87da778071d7539102c9009728f7afd6e87cdc3e66ab64cf6'
 'SKIP'
-'0e7446d52872226b045b0ba3c3f920a4590dd0ddbe879427ab8b223b220d4d9a'
+'49e427fc431c64c29151d811a85418380dd83132a8c1c4dedbf665a911774d62'
 'ae2e95db94ef7176207c690224169594d49445e04249d2499e9d2fbc117a0b21'
 'c043f3033bb781e2688794a59f6d1f7ed49ef9b13eb77ff9a425df33a244a636'
 'ad6344badc91ad0630caacde83f7f9b97276f80d26a20619a87952be65492c65')

Modified: config.x86_64
===
--- config.x86_64   2019-09-17 14:00:23 UTC (rev 362989)
+++ config.x86_64   2019-09-17 14:35:21 UTC (rev 362990)
@@ -1,6 +1,6 @@
 #
 # Automatically generated file; DO NOT EDIT.
-# Linux/x86 5.2.14 Kernel Configuration
+# Linux/x86 5.2.15 Kernel Configuration
 #
 
 #


[arch-commits] Commit in lib32-mesa/repos/multilib-x86_64 (6 files)

2019-09-17 Thread Laurent Carlier via arch-commits
Date: Tuesday, September 17, 2019 @ 14:03:07
  Author: lcarlier
Revision: 510998

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-mesa/repos/multilib-x86_64/LICENSE
(from rev 510997, lib32-mesa/trunk/LICENSE)
  lib32-mesa/repos/multilib-x86_64/PKGBUILD
(from rev 510997, lib32-mesa/trunk/PKGBUILD)
  lib32-mesa/repos/multilib-x86_64/glesv2.pc
(from rev 510997, lib32-mesa/trunk/glesv2.pc)
Deleted:
  lib32-mesa/repos/multilib-x86_64/LICENSE
  lib32-mesa/repos/multilib-x86_64/PKGBUILD
  lib32-mesa/repos/multilib-x86_64/glesv2.pc

---+
 LICENSE   |  166 ++---
 PKGBUILD  |  334 ++--
 glesv2.pc |   20 +--
 3 files changed, 260 insertions(+), 260 deletions(-)

Deleted: LICENSE
===
--- LICENSE 2019-09-17 14:03:00 UTC (rev 510997)
+++ LICENSE 2019-09-17 14:03:07 UTC (rev 510998)
@@ -1,83 +0,0 @@
-The Mesa 3D Graphics Library
-
-Disclaimer
-
-   Mesa is a 3-D graphics library with an API which is very similar to
-   that of [1]OpenGL.* To the extent that Mesa utilizes the OpenGL command
-   syntax or state machine, it is being used with authorization from
-   [2]Silicon Graphics, Inc.(SGI). However, the author does not possess an
-   OpenGL license from SGI, and makes no claim that Mesa is in any way a
-   compatible replacement for OpenGL or associated with SGI. Those who
-   want a licensed implementation of OpenGL should contact a licensed
-   vendor.
-
-   Please do not refer to the library as MesaGL (for legal reasons). It's
-   just Mesa or The Mesa 3-D graphics library.
-
-   * OpenGL is a trademark of [3]Silicon Graphics Incorporated.
-
-License / Copyright Information
-
-   The Mesa distribution consists of several components. Different
-   copyrights and licenses apply to different components. For example, the
-   GLX client code uses the SGI Free Software License B, and some of the
-   Mesa device drivers are copyrighted by their authors. See below for a
-   list of Mesa's main components and the license for each.
-
-   The core Mesa library is licensed according to the terms of the MIT
-   license. This allows integration with the XFree86, Xorg and DRI
-   projects.
-
-   The default Mesa license is as follows:
-
-Copyright (C) 1999-2007  Brian Paul   All Rights Reserved.
-
-Permission is hereby granted, free of charge, to any person obtaining a
-copy of this software and associated documentation files (the "Software"),
-to deal in the Software without restriction, including without limitation
-the rights to use, copy, modify, merge, publish, distribute, sublicense,
-and/or sell copies of the Software, and to permit persons to whom the
-Software is furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included
-in all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
-OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
-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 SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-SOFTWARE.
-
-Attention, Contributors
-
-   When contributing to the Mesa project you must agree to the licensing
-   terms of the component to which you're contributing. The following
-   section lists the primary components of the Mesa distribution and their
-   respective licenses.
-
-Mesa Component Licenses
-
-Component Location   License
---
-Main Mesa codesrc/mesa/  MIT
-
-Device driverssrc/mesa/drivers/* MIT, generally
-
-Gallium code  src/gallium/   MIT
-
-Ext headers   include/GL/glext.h Khronos
-  include/GL/glxext.h
-
-GLX client code   src/glx/   SGI Free Software License B
-
-C11 threadinclude/c11/threads*.h Boost (permissive) emulation
-
-   In general, consult the source files for license terms.
-
-References
-
-   1. https://www.opengl.org/
-   2. https://www.sgi.com/
-   3. https://www.sgi.com/

Copied: lib32-mesa/repos/multilib-x86_64/LICENSE (from rev 510997, 
lib32-mesa/trunk/LICENSE)
===
--- LICENSE (rev 0)
+++ LICENSE 2019-09-17 14:03:07 UTC (rev 510998)
@@ -0,0 +1,83 @@
+The Mesa 3D Graphics Library
+
+Disclaimer
+
+   Mesa is a 3-D graphics library with an API which is very similar to
+   that of [1]OpenGL.* To the extent that Mesa utilizes the OpenGL command
+   syntax or state machine, it is being used with authorization from
+   [2]Silicon Graphics, Inc.(SGI). 

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

2019-09-17 Thread Laurent Carlier via arch-commits
Date: Tuesday, September 17, 2019 @ 14:03:00
  Author: lcarlier
Revision: 510997

upgpkg: lib32-mesa 19.1.7-1

upstream update 19.1.7

Modified:
  lib32-mesa/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-17 13:23:01 UTC (rev 510996)
+++ PKGBUILD2019-09-17 14:03:00 UTC (rev 510997)
@@ -4,7 +4,7 @@
 
 pkgbase=lib32-mesa
 pkgname=('lib32-vulkan-intel' 'lib32-vulkan-radeon' 'lib32-libva-mesa-driver' 
'lib32-mesa-vdpau' 'lib32-mesa')
-pkgver=19.1.6
+pkgver=19.1.7
 pkgrel=1
 arch=('x86_64')
 makedepends=('python-mako' 'lib32-libxml2' 'lib32-expat' 'lib32-libx11' 
'glproto' 'lib32-libdrm' 'dri2proto' 'dri3proto' 'presentproto'
@@ -15,7 +15,7 @@
 source=(https://mesa.freedesktop.org/archive/mesa-${pkgver}.tar.xz{,.sig}
 LICENSE
 glesv2.pc)
-sha512sums=('399ce97a293769893ef9a4a6af1f77c7d835f5405bdbc03bbf9b73e052e4ff3b43dec5dafd6b9fedaaf2c59531aeccaa0f685a8bfdc5719a26c3815fc7f68024'
+sha512sums=('0865b5f91e5daa00e1da2b3d8b65fe5d2ff6332372bf8fec7d671d05d8d64ec5a7abea1858cdfc506c76b7226d2bea0af3426565f156b796d8e0f949ea33dc15'
 'SKIP'
 
'f9f0d0ccf166fe6cb684478b6f1e1ab1f2850431c06aa041738563eb1808a004e52cdec823c103c9e180f03ffc083e95974d291353f0220fe52ae6d4897fecc7'
 
'67b9484f5131beea834192ef185d4eb2d4b77d12302d7a99337c3fb59cb6a2bee10a70d01e92554a0ff74eca04a8197b300b63ebde0aace55c249021b3383179')


[arch-commits] Commit in ffmpeg/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2019-09-17 Thread Maxime Gauduin via arch-commits
Date: Tuesday, September 17, 2019 @ 14:00:23
  Author: alucryd
Revision: 362989

archrelease: copy trunk to extra-x86_64

Added:
  ffmpeg/repos/extra-x86_64/PKGBUILD
(from rev 362988, ffmpeg/trunk/PKGBUILD)
Deleted:
  ffmpeg/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-09-17 14:00:18 UTC (rev 362988)
+++ PKGBUILD2019-09-17 14:00:23 UTC (rev 362989)
@@ -1,152 +0,0 @@
-# Maintainer: Maxime Gauduin 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Ionut Biru 
-# Contributor: Tom Newsom 
-# Contributor: Paul Mattal 
-
-pkgname=ffmpeg
-pkgver=4.2.1
-pkgrel=1
-epoch=1
-pkgdesc='Complete solution to record, convert and stream audio and video'
-arch=(x86_64)
-url=https://ffmpeg.org/
-license=(GPL3)
-depends=(
-  alsa-lib
-  aom
-  bzip2
-  fontconfig
-  fribidi
-  gmp
-  gnutls
-  gsm
-  jack
-  lame
-  libass.so
-  libavc1394
-  libbluray.so
-  libdav1d.so
-  libdrm
-  libfreetype.so
-  libiec61883
-  libmodplug
-  libomxil-bellagio
-  libpulse
-  libraw1394
-  libsoxr
-  libssh
-  libtheora
-  libva.so
-  libva-drm.so
-  libva-x11.so
-  libvdpau
-  libvidstab.so
-  libvorbisenc.so
-  libvorbis.so
-  libvpx.so
-  libwebp
-  libx11
-  libx264.so
-  libx265.so
-  libxcb
-  libxext
-  libxml2
-  libxv
-  libxvidcore.so
-  opencore-amr
-  openjpeg2
-  opus
-  sdl2
-  speex
-  v4l-utils
-  xz
-  zlib
-)
-makedepends=(
-  ffnvcodec-headers
-  git
-  ladspa
-  nasm
-)
-optdepends=('ladspa: LADSPA filters')
-provides=(
-  libavcodec.so
-  libavdevice.so
-  libavfilter.so
-  libavformat.so
-  libavutil.so
-  libpostproc.so
-  libswresample.so
-  libswscale.so
-)
-source=(git+https://git.ffmpeg.org/ffmpeg.git#tag=cbb3c9497549f8856d8cd37ac63af1406a784e58)
-sha256sums=(SKIP)
-
-pkgver() {
-  cd ffmpeg
-
-  git describe --tags | sed 's/^n//'
-}
-
-build() {
-  cd ffmpeg
-
-  ./configure \
---prefix=/usr \
---disable-debug \
---disable-static \
---disable-stripping \
---enable-fontconfig \
---enable-gmp \
---enable-gnutls \
---enable-gpl \
---enable-ladspa \
---enable-libaom \
---enable-libass \
---enable-libbluray \
---enable-libdav1d \
---enable-libdrm \
---enable-libfreetype \
---enable-libfribidi \
---enable-libgsm \
---enable-libiec61883 \
---enable-libjack \
---enable-libmodplug \
---enable-libmp3lame \
---enable-libopencore_amrnb \
---enable-libopencore_amrwb \
---enable-libopenjpeg \
---enable-libopus \
---enable-libpulse \
---enable-libsoxr \
---enable-libspeex \
---enable-libssh \
---enable-libtheora \
---enable-libv4l2 \
---enable-libvidstab \
---enable-libvorbis \
---enable-libvpx \
---enable-libwebp \
---enable-libx264 \
---enable-libx265 \
---enable-libxcb \
---enable-libxml2 \
---enable-libxvid \
---enable-nvdec \
---enable-nvenc \
---enable-omx \
---enable-shared \
---enable-version3
-
-  make
-  make tools/qt-faststart
-  make doc/ff{mpeg,play}.1
-}
-
-package() {
-  make DESTDIR="${pkgdir}" -C ffmpeg install install-man
-  install -Dm 755 ffmpeg/tools/qt-faststart "${pkgdir}"/usr/bin/
-}
-
-# vim: ts=2 sw=2 et:

Copied: ffmpeg/repos/extra-x86_64/PKGBUILD (from rev 362988, 
ffmpeg/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-09-17 14:00:23 UTC (rev 362989)
@@ -0,0 +1,158 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Ionut Biru 
+# Contributor: Tom Newsom 
+# Contributor: Paul Mattal 
+
+pkgname=ffmpeg
+pkgver=4.2.1
+pkgrel=2
+epoch=1
+pkgdesc='Complete solution to record, convert and stream audio and video'
+arch=(x86_64)
+url=https://ffmpeg.org/
+license=(GPL3)
+depends=(
+  alsa-lib
+  aom
+  bzip2
+  fontconfig
+  fribidi
+  gmp
+  gnutls
+  gsm
+  jack
+  lame
+  libass.so
+  libavc1394
+  libbluray.so
+  libdav1d.so
+  libdrm
+  libfreetype.so
+  libiec61883
+  libmodplug
+  libomxil-bellagio
+  libpulse
+  libraw1394
+  libsoxr
+  libssh
+  libtheora
+  libva.so
+  libva-drm.so
+  libva-x11.so
+  libvdpau
+  libvidstab.so
+  libvorbisenc.so
+  libvorbis.so
+  libvpx.so
+  libwebp
+  libx11
+  libx264.so
+  libx265.so
+  libxcb
+  libxext
+  libxml2
+  libxv
+  libxvidcore.so
+  opencore-amr
+  openjpeg2
+  opus
+  sdl2
+  speex
+  v4l-utils
+  xz
+  zlib
+)
+makedepends=(
+  ffnvcodec-headers
+  git
+  ladspa
+  nasm
+)
+optdepends=('ladspa: LADSPA filters')
+provides=(
+  libavcodec.so
+  libavdevice.so
+  libavfilter.so
+  libavformat.so
+  libavutil.so
+  libpostproc.so
+  libswresample.so
+  libswscale.so
+)
+source=(git+https://git.ffmpeg.org/ffmpeg.git#tag=cbb3c9497549f8856d8cd37ac63af1406a784e58)
+sha256sums=(SKIP)
+

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

2019-09-17 Thread Maxime Gauduin via arch-commits
Date: Tuesday, September 17, 2019 @ 14:00:18
  Author: alucryd
Revision: 362988

make dav1d the default av1 decoder: ffmpeg 1:4.2.1-2

Modified:
  ffmpeg/trunk/PKGBUILD

--+
 PKGBUILD |8 +++-
 1 file changed, 7 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-09-17 13:57:28 UTC (rev 362987)
+++ PKGBUILD2019-09-17 14:00:18 UTC (rev 362988)
@@ -6,7 +6,7 @@
 
 pkgname=ffmpeg
 pkgver=4.2.1
-pkgrel=1
+pkgrel=2
 epoch=1
 pkgdesc='Complete solution to record, convert and stream audio and video'
 arch=(x86_64)
@@ -89,6 +89,12 @@
   git describe --tags | sed 's/^n//'
 }
 
+prepare() {
+  cd ffmpeg
+
+  git cherry-pick -n dc0806dd25882f41f6085c8356712f95fded56c7
+}
+
 build() {
   cd ffmpeg
 


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

2019-09-17 Thread Laurent Carlier via arch-commits
Date: Tuesday, September 17, 2019 @ 13:57:22
  Author: lcarlier
Revision: 362986

upgpkg: mesa 19.1.7-1

upstream update 19.1.7

Modified:
  mesa/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-17 13:23:08 UTC (rev 362985)
+++ PKGBUILD2019-09-17 13:57:22 UTC (rev 362986)
@@ -4,8 +4,8 @@
 pkgbase=mesa
 pkgname=('vulkan-mesa-layer' 'opencl-mesa' 'vulkan-intel' 'vulkan-radeon' 
'libva-mesa-driver' 'mesa-vdpau' 'mesa')
 pkgdesc="An open-source implementation of the OpenGL specification"
-pkgver=19.1.6
-pkgrel=2
+pkgver=19.1.7
+pkgrel=1
 arch=('x86_64')
 makedepends=('python-mako' 'libxml2' 'libx11' 'glproto' 'libdrm' 'dri2proto' 
'dri3proto' 'presentproto' 
  'libxshmfence' 'libxxf86vm' 'libxdamage' 'libvdpau' 'libva' 
'wayland' 'wayland-protocols'
@@ -16,7 +16,7 @@
 source=(https://mesa.freedesktop.org/archive/mesa-${pkgver}.tar.xz{,.sig}
 LICENSE
 glesv2.pc)
-sha512sums=('399ce97a293769893ef9a4a6af1f77c7d835f5405bdbc03bbf9b73e052e4ff3b43dec5dafd6b9fedaaf2c59531aeccaa0f685a8bfdc5719a26c3815fc7f68024'
+sha512sums=('0865b5f91e5daa00e1da2b3d8b65fe5d2ff6332372bf8fec7d671d05d8d64ec5a7abea1858cdfc506c76b7226d2bea0af3426565f156b796d8e0f949ea33dc15'
 'SKIP'
 
'f9f0d0ccf166fe6cb684478b6f1e1ab1f2850431c06aa041738563eb1808a004e52cdec823c103c9e180f03ffc083e95974d291353f0220fe52ae6d4897fecc7'
 
'd3adb2081c945df701d2e0ad0ecd19f96ebffaba9878da31bf670b1b591a7d9d5895f4b10cda1f9dbf51e551baa8dda5d061e61256225b464eeec34f29141dff')


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

2019-09-17 Thread Laurent Carlier via arch-commits
Date: Tuesday, September 17, 2019 @ 13:57:28
  Author: lcarlier
Revision: 362987

archrelease: copy trunk to extra-x86_64

Added:
  mesa/repos/extra-x86_64/LICENSE
(from rev 362986, mesa/trunk/LICENSE)
  mesa/repos/extra-x86_64/PKGBUILD
(from rev 362986, mesa/trunk/PKGBUILD)
  mesa/repos/extra-x86_64/glesv2.pc
(from rev 362986, mesa/trunk/glesv2.pc)
Deleted:
  mesa/repos/extra-x86_64/LICENSE
  mesa/repos/extra-x86_64/PKGBUILD
  mesa/repos/extra-x86_64/glesv2.pc

---+
 LICENSE   |  166 +-
 PKGBUILD  |  378 ++--
 glesv2.pc |   20 +--
 3 files changed, 282 insertions(+), 282 deletions(-)

Deleted: LICENSE
===
--- LICENSE 2019-09-17 13:57:22 UTC (rev 362986)
+++ LICENSE 2019-09-17 13:57:28 UTC (rev 362987)
@@ -1,83 +0,0 @@
-The Mesa 3D Graphics Library
-
-Disclaimer
-
-   Mesa is a 3-D graphics library with an API which is very similar to
-   that of [1]OpenGL.* To the extent that Mesa utilizes the OpenGL command
-   syntax or state machine, it is being used with authorization from
-   [2]Silicon Graphics, Inc.(SGI). However, the author does not possess an
-   OpenGL license from SGI, and makes no claim that Mesa is in any way a
-   compatible replacement for OpenGL or associated with SGI. Those who
-   want a licensed implementation of OpenGL should contact a licensed
-   vendor.
-
-   Please do not refer to the library as MesaGL (for legal reasons). It's
-   just Mesa or The Mesa 3-D graphics library.
-
-   * OpenGL is a trademark of [3]Silicon Graphics Incorporated.
-
-License / Copyright Information
-
-   The Mesa distribution consists of several components. Different
-   copyrights and licenses apply to different components. For example, the
-   GLX client code uses the SGI Free Software License B, and some of the
-   Mesa device drivers are copyrighted by their authors. See below for a
-   list of Mesa's main components and the license for each.
-
-   The core Mesa library is licensed according to the terms of the MIT
-   license. This allows integration with the XFree86, Xorg and DRI
-   projects.
-
-   The default Mesa license is as follows:
-
-Copyright (C) 1999-2007  Brian Paul   All Rights Reserved.
-
-Permission is hereby granted, free of charge, to any person obtaining a
-copy of this software and associated documentation files (the "Software"),
-to deal in the Software without restriction, including without limitation
-the rights to use, copy, modify, merge, publish, distribute, sublicense,
-and/or sell copies of the Software, and to permit persons to whom the
-Software is furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included
-in all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
-OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
-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 SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-SOFTWARE.
-
-Attention, Contributors
-
-   When contributing to the Mesa project you must agree to the licensing
-   terms of the component to which you're contributing. The following
-   section lists the primary components of the Mesa distribution and their
-   respective licenses.
-
-Mesa Component Licenses
-
-Component Location   License
---
-Main Mesa codesrc/mesa/  MIT
-
-Device driverssrc/mesa/drivers/* MIT, generally
-
-Gallium code  src/gallium/   MIT
-
-Ext headers   include/GL/glext.h Khronos
-  include/GL/glxext.h
-
-GLX client code   src/glx/   SGI Free Software License B
-
-C11 threadinclude/c11/threads*.h Boost (permissive) emulation
-
-   In general, consult the source files for license terms.
-
-References
-
-   1. https://www.opengl.org/
-   2. https://www.sgi.com/
-   3. https://www.sgi.com/

Copied: mesa/repos/extra-x86_64/LICENSE (from rev 362986, mesa/trunk/LICENSE)
===
--- LICENSE (rev 0)
+++ LICENSE 2019-09-17 13:57:28 UTC (rev 362987)
@@ -0,0 +1,83 @@
+The Mesa 3D Graphics Library
+
+Disclaimer
+
+   Mesa is a 3-D graphics library with an API which is very similar to
+   that of [1]OpenGL.* To the extent that Mesa utilizes the OpenGL command
+   syntax or state machine, it is being used with authorization from
+   [2]Silicon Graphics, Inc.(SGI). However, the author does not possess an
+   OpenGL license from SGI, and makes no claim that 

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

2019-09-17 Thread Christian Hesse via arch-commits
Date: Tuesday, September 17, 2019 @ 12:33:16
  Author: eworm
Revision: 510985

upgpkg: ndiswrapper-arch 1.61-63

fix and rebuilt for linux 5.3.arch1-1

Added:
  ndiswrapper-arch/trunk/linux-5.3.patch
Modified:
  ndiswrapper-arch/trunk/PKGBUILD
  ndiswrapper-arch/trunk/linux-4.15.patch

--+
 PKGBUILD |   12 +
 linux-4.15.patch |   12 -
 linux-5.3.patch  |   69 +
 3 files changed, 82 insertions(+), 11 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-09-17 12:32:05 UTC (rev 510984)
+++ PKGBUILD2019-09-17 12:33:16 UTC (rev 510985)
@@ -4,7 +4,7 @@
 pkgname=ndiswrapper-arch
 pkgver=1.61
 _extramodules=extramodules-ARCH
-pkgrel=62
+pkgrel=63
 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/;
@@ -14,19 +14,21 @@
 provides=('NDISWRAPPER-MODULE')
 replaces=('ndiswrapper-module')
 
source=("ndiswrapper-$pkgver.tar.gz::https://github.com/pgiri/ndiswrapper/archive/v$pkgver.tar.gz;
-'linux-4.11.patch' 'linux-4.13.patch' 'linux-4.15.patch' 
'linux-5.0.patch')
+'linux-4.11.patch' 'linux-4.13.patch' 'linux-4.15.patch' 
'linux-5.0.patch' 'linux-5.3.patch')
 
sha512sums=('85f550f2952137529e0e9855f4d94b7bbc64cbf8a84a31c1b75a4be09d97478a997e64fa6e1ff4e0d29a97a79fc3d4dab1ebdaa9edb3d627a215f47aa4d52823'
 
'5350308406457658fb31c378d6f3dd2a34c7331aebe5bdc80744bf955f1144e88181441704ccc7532f55d6fbe8d410440fb8838c2955d688dde4b55f74fc6ba5'
 
'de026a271cbfbefee99bc00a13c50be87294e5e2c5407d23cff6ce2d2a0c853542ce4f7e3e150741c7e8e32466fb1ab7cab266957da5bcca8376fb0f38e94482'
-
'52bd3d2025ffb8a3f6a4a1a1fee1b87d3811f30a210a54aaa7b37838eb256cd766bc1aeda24e4b4f4829992584931ecd97a042794c9b854bd1ebbf452dce2abf'
-
'4918dcebd62ae577401469719f1a8866edd3dc97667aa3de287af1530aa68f50dc2508c883ecd2c9d1fe20f226ecd342b04b08f7a2cace0e531e5f49bbc12f2c')
+
'4296e7488d8c0cd971d70a81c01f24ab8e01c8611934024e2438181f0fb7c39a2c8201d48ab04659af2a8897ae93fb0810332e89c2a09a8140e216aed56db34b'
+
'4918dcebd62ae577401469719f1a8866edd3dc97667aa3de287af1530aa68f50dc2508c883ecd2c9d1fe20f226ecd342b04b08f7a2cace0e531e5f49bbc12f2c'
+
'c404f35280534b172235c5c578657d7a30ac2253c7c2abedd65a183d09390e95e7c3030cb409accb4d198ff0411482f8029f8664418c99d5672f92e9c733801d')
 
 prepare() {
   cd ndiswrapper-$pkgver
   patch --no-backup-if-mismatch -p1 -i "$srcdir"/linux-4.11.patch
   patch --no-backup-if-mismatch -p1 -i "$srcdir"/linux-4.13.patch
-  patch --no-backup-if-mismatch -p1 -i "$srcdir"/linux-4.15.patch -d 
ndiswrapper
+  patch --no-backup-if-mismatch -p1 -i "$srcdir"/linux-4.15.patch
   patch --no-backup-if-mismatch -p1 -i "$srcdir"/linux-5.0.patch
+  patch --no-backup-if-mismatch -p1 -i "$srcdir"/linux-5.3.patch
 }
 
 build() {

Modified: linux-4.15.patch
===
--- linux-4.15.patch2019-09-17 12:32:05 UTC (rev 510984)
+++ linux-4.15.patch2019-09-17 12:33:16 UTC (rev 510985)
@@ -23,8 +23,8 @@
 
 diff --git a/driver/ntoskernel.c b/driver/ntoskernel.c
 index 4fe0dc1..156c688 100644
 a/driver/ntoskernel.c
-+++ b/driver/ntoskernel.c
+--- a/ndiswrapper/driver/ntoskernel.c
 b/ndiswrapper/driver/ntoskernel.c
 @@ -77,7 +77,6 @@ u64 wrap_ticks_to_boot;
  #if defined(CONFIG_X86_64)
  static struct timer_list shared_data_timer;
@@ -91,8 +91,8 @@
  }
 diff --git a/driver/usb.c b/driver/usb.c
 index 3e7021a..e55c2c6 100644
 a/driver/usb.c
-+++ b/driver/usb.c
+--- a/ndiswrapper/driver/usb.c
 b/ndiswrapper/driver/usb.c
 @@ -750,6 +750,12 @@ static USBD_STATUS wrap_set_clear_feature(struct 
usb_device *udev,
USBEXIT(return NT_URB_STATUS(nt_urb));
  }
@@ -119,8 +119,8 @@
status_req->transfer_buffer_length = ret;
 diff --git a/driver/wrapndis.c b/driver/wrapndis.c
 index 870e4c2..f653440 100644
 a/driver/wrapndis.c
-+++ b/driver/wrapndis.c
+--- a/ndiswrapper/driver/wrapndis.c
 b/ndiswrapper/driver/wrapndis.c
 @@ -1093,9 +1093,15 @@ send_assoc_event:
EXIT2(return);
  }

Added: linux-5.3.patch
===
--- linux-5.3.patch (rev 0)
+++ linux-5.3.patch 2019-09-17 12:33:16 UTC (rev 510985)
@@ -0,0 +1,69 @@
+diff --git a/ndiswrapper/driver/ntoskernel.c b/ndiswrapper/driver/ntoskernel.c
+index 4fe0dc1..4dd7a89 100644
+--- a/ndiswrapper/driver/ntoskernel.c
 b/ndiswrapper/driver/ntoskernel.c
+@@ -2524,7 +2524,11 @@ int ntoskernel_init(void)
+   info->task = NULL;
+   info->count = 0;
+ #ifdef CONFIG_SMP
++#if LINUX_VERSION_CODE < KERNEL_VERSION(5,3,0)
+   cpumask_setall(>cpus_allowed);
++#else
++  

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

2019-09-17 Thread Christian Hesse via arch-commits
Date: Tuesday, September 17, 2019 @ 12:33:19
  Author: eworm
Revision: 510986

archrelease: copy trunk to community-staging-x86_64

Added:
  ndiswrapper-arch/repos/community-staging-x86_64/
  ndiswrapper-arch/repos/community-staging-x86_64/PKGBUILD
(from rev 510985, ndiswrapper-arch/trunk/PKGBUILD)
  ndiswrapper-arch/repos/community-staging-x86_64/linux-4.11.patch
(from rev 510985, ndiswrapper-arch/trunk/linux-4.11.patch)
  ndiswrapper-arch/repos/community-staging-x86_64/linux-4.13.patch
(from rev 510985, ndiswrapper-arch/trunk/linux-4.13.patch)
  ndiswrapper-arch/repos/community-staging-x86_64/linux-4.15.patch
(from rev 510985, ndiswrapper-arch/trunk/linux-4.15.patch)
  ndiswrapper-arch/repos/community-staging-x86_64/linux-5.0.patch
(from rev 510985, ndiswrapper-arch/trunk/linux-5.0.patch)
  ndiswrapper-arch/repos/community-staging-x86_64/linux-5.3.patch
(from rev 510985, ndiswrapper-arch/trunk/linux-5.3.patch)

--+
 PKGBUILD |   45 +++
 linux-4.11.patch |   55 ++
 linux-4.13.patch |   27 +++
 linux-4.15.patch |  199 +
 linux-5.0.patch  |   25 ++
 linux-5.3.patch  |   69 ++
 6 files changed, 420 insertions(+)

Copied: ndiswrapper-arch/repos/community-staging-x86_64/PKGBUILD (from rev 
510985, ndiswrapper-arch/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-09-17 12:33:19 UTC (rev 510986)
@@ -0,0 +1,45 @@
+# Maintainer: Felix Yan 
+# Contributor: maz-1 
+
+pkgname=ndiswrapper-arch
+pkgver=1.61
+_extramodules=extramodules-ARCH
+pkgrel=63
+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')
+depends=('linux')
+makedepends=('linux-headers')
+provides=('NDISWRAPPER-MODULE')
+replaces=('ndiswrapper-module')
+source=("ndiswrapper-$pkgver.tar.gz::https://github.com/pgiri/ndiswrapper/archive/v$pkgver.tar.gz;
+'linux-4.11.patch' 'linux-4.13.patch' 'linux-4.15.patch' 
'linux-5.0.patch' 'linux-5.3.patch')
+sha512sums=('85f550f2952137529e0e9855f4d94b7bbc64cbf8a84a31c1b75a4be09d97478a997e64fa6e1ff4e0d29a97a79fc3d4dab1ebdaa9edb3d627a215f47aa4d52823'
+
'5350308406457658fb31c378d6f3dd2a34c7331aebe5bdc80744bf955f1144e88181441704ccc7532f55d6fbe8d410440fb8838c2955d688dde4b55f74fc6ba5'
+
'de026a271cbfbefee99bc00a13c50be87294e5e2c5407d23cff6ce2d2a0c853542ce4f7e3e150741c7e8e32466fb1ab7cab266957da5bcca8376fb0f38e94482'
+
'4296e7488d8c0cd971d70a81c01f24ab8e01c8611934024e2438181f0fb7c39a2c8201d48ab04659af2a8897ae93fb0810332e89c2a09a8140e216aed56db34b'
+
'4918dcebd62ae577401469719f1a8866edd3dc97667aa3de287af1530aa68f50dc2508c883ecd2c9d1fe20f226ecd342b04b08f7a2cace0e531e5f49bbc12f2c'
+
'c404f35280534b172235c5c578657d7a30ac2253c7c2abedd65a183d09390e95e7c3030cb409accb4d198ff0411482f8029f8664418c99d5672f92e9c733801d')
+
+prepare() {
+  cd ndiswrapper-$pkgver
+  patch --no-backup-if-mismatch -p1 -i "$srcdir"/linux-4.11.patch
+  patch --no-backup-if-mismatch -p1 -i "$srcdir"/linux-4.13.patch
+  patch --no-backup-if-mismatch -p1 -i "$srcdir"/linux-4.15.patch
+  patch --no-backup-if-mismatch -p1 -i "$srcdir"/linux-5.0.patch
+  patch --no-backup-if-mismatch -p1 -i "$srcdir"/linux-5.3.patch
+}
+
+build() {
+  _kernver="$(cat /usr/lib/modules/$_extramodules/version)"
+
+  cd ndiswrapper-$pkgver/ndiswrapper
+  make -C driver KVERS_UNAME="$_kernver"
+}
+
+package() {
+  cd ndiswrapper-$pkgver/ndiswrapper
+  install -Dt "$pkgdir/usr/lib/modules/$_extramodules" -m644 driver/*.ko
+  find "$pkgdir" -name '*.ko' -exec xz {} +
+}

Copied: ndiswrapper-arch/repos/community-staging-x86_64/linux-4.11.patch (from 
rev 510985, ndiswrapper-arch/trunk/linux-4.11.patch)
===
--- community-staging-x86_64/linux-4.11.patch   (rev 0)
+++ community-staging-x86_64/linux-4.11.patch   2019-09-17 12:33:19 UTC (rev 
510986)
@@ -0,0 +1,55 @@
+commit fa2aeeccd5366378ca2eb83c6daee64b511fe792
+Author: Felix Yan 
+Date:   Tue May 16 01:32:56 2017 +0800
+
+Add support for Linux 4.11+
+
+diff --git a/ndiswrapper/driver/ndis.c b/ndiswrapper/driver/ndis.c
+index c1913a05..2ab4dd21 100644
+--- a/ndiswrapper/driver/ndis.c
 b/ndiswrapper/driver/ndis.c
+@@ -2258,7 +2258,9 @@ wstdcall void NdisMIndicateReceivePacket(struct 
ndis_mp_block *nmb,
+   WARNING("empty packet ignored");
+   continue;
+   }
++#if LINUX_VERSION_CODE < KERNEL_VERSION(4, 11, 0)
+   wnd->net_dev->last_rx = jiffies;
++#endif
+   /* get total number of bytes in packet */
+   NdisGetFirstBufferFromPacketSafe(packet, , ,
+   

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

2019-09-17 Thread Christian Hesse via arch-commits
Date: Tuesday, September 17, 2019 @ 12:31:55
  Author: eworm
Revision: 510983

upgpkg: ndiswrapper 1.61-8

fix for linux 5.0 and linux 5.3

Added:
  ndiswrapper/trunk/linux-5.0.patch
  ndiswrapper/trunk/linux-5.3.patch
Modified:
  ndiswrapper/trunk/PKGBUILD
  ndiswrapper/trunk/linux-4.15.patch

--+
 PKGBUILD |   12 +
 linux-4.15.patch |   12 -
 linux-5.0.patch  |   25 +++
 linux-5.3.patch  |   69 +
 4 files changed, 107 insertions(+), 11 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-09-17 11:48:27 UTC (rev 510982)
+++ PKGBUILD2019-09-17 12:31:55 UTC (rev 510983)
@@ -5,26 +5,28 @@
 pkgname=(ndiswrapper-dkms ndiswrapper)
 pkgver=1.61
 _extramodules=extramodules-ARCH
-pkgrel=7
+pkgrel=8
 pkgdesc="Module for NDIS (Windows Network Drivers) drivers supplied by vendors"
 arch=('x86_64')
 url="http://sourceforge.net/projects/ndiswrapper/;
 license=('GPL')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/pgiri/ndiswrapper/archive/v$pkgver.tar.gz;
-'dkms.conf' 'linux-4.11.patch' 'linux-4.13.patch' 'linux-4.15.patch')
+'dkms.conf' 'linux-4.11.patch' 'linux-4.13.patch' 'linux-4.15.patch' 
'linux-5.0.patch' 'linux-5.3.patch')
 
sha512sums=('85f550f2952137529e0e9855f4d94b7bbc64cbf8a84a31c1b75a4be09d97478a997e64fa6e1ff4e0d29a97a79fc3d4dab1ebdaa9edb3d627a215f47aa4d52823'
 
'9fce255fc02ddf6e939dc61a5e29c0ea5fa1a31ecc3c390081bc53aa1cd48eddf5db621f0a1cb909634529d4ccc2995eea8827be8eb5807b34dc17e15045ecf4'
 
'5350308406457658fb31c378d6f3dd2a34c7331aebe5bdc80744bf955f1144e88181441704ccc7532f55d6fbe8d410440fb8838c2955d688dde4b55f74fc6ba5'
 
'de026a271cbfbefee99bc00a13c50be87294e5e2c5407d23cff6ce2d2a0c853542ce4f7e3e150741c7e8e32466fb1ab7cab266957da5bcca8376fb0f38e94482'
-
'52bd3d2025ffb8a3f6a4a1a1fee1b87d3811f30a210a54aaa7b37838eb256cd766bc1aeda24e4b4f4829992584931ecd97a042794c9b854bd1ebbf452dce2abf')
+
'4296e7488d8c0cd971d70a81c01f24ab8e01c8611934024e2438181f0fb7c39a2c8201d48ab04659af2a8897ae93fb0810332e89c2a09a8140e216aed56db34b'
+
'4918dcebd62ae577401469719f1a8866edd3dc97667aa3de287af1530aa68f50dc2508c883ecd2c9d1fe20f226ecd342b04b08f7a2cace0e531e5f49bbc12f2c'
+
'c404f35280534b172235c5c578657d7a30ac2253c7c2abedd65a183d09390e95e7c3030cb409accb4d198ff0411482f8029f8664418c99d5672f92e9c733801d')
 
 prepare() {
   cd ndiswrapper-$pkgver
   patch --no-backup-if-mismatch -p1 -i "$srcdir"/linux-4.11.patch
   patch --no-backup-if-mismatch -p1 -i "$srcdir"/linux-4.13.patch
-
-  cd ndiswrapper
   patch --no-backup-if-mismatch -p1 -i "$srcdir"/linux-4.15.patch
+  patch --no-backup-if-mismatch -p1 -i "$srcdir"/linux-5.0.patch
+  patch --no-backup-if-mismatch -p1 -i "$srcdir"/linux-5.3.patch
 }
 
 build() {

Modified: linux-4.15.patch
===
--- linux-4.15.patch2019-09-17 11:48:27 UTC (rev 510982)
+++ linux-4.15.patch2019-09-17 12:31:55 UTC (rev 510983)
@@ -23,8 +23,8 @@
 
 diff --git a/driver/ntoskernel.c b/driver/ntoskernel.c
 index 4fe0dc1..156c688 100644
 a/driver/ntoskernel.c
-+++ b/driver/ntoskernel.c
+--- a/ndiswrapper/driver/ntoskernel.c
 b/ndiswrapper/driver/ntoskernel.c
 @@ -77,7 +77,6 @@ u64 wrap_ticks_to_boot;
  #if defined(CONFIG_X86_64)
  static struct timer_list shared_data_timer;
@@ -91,8 +91,8 @@
  }
 diff --git a/driver/usb.c b/driver/usb.c
 index 3e7021a..e55c2c6 100644
 a/driver/usb.c
-+++ b/driver/usb.c
+--- a/ndiswrapper/driver/usb.c
 b/ndiswrapper/driver/usb.c
 @@ -750,6 +750,12 @@ static USBD_STATUS wrap_set_clear_feature(struct 
usb_device *udev,
USBEXIT(return NT_URB_STATUS(nt_urb));
  }
@@ -119,8 +119,8 @@
status_req->transfer_buffer_length = ret;
 diff --git a/driver/wrapndis.c b/driver/wrapndis.c
 index 870e4c2..f653440 100644
 a/driver/wrapndis.c
-+++ b/driver/wrapndis.c
+--- a/ndiswrapper/driver/wrapndis.c
 b/ndiswrapper/driver/wrapndis.c
 @@ -1093,9 +1093,15 @@ send_assoc_event:
EXIT2(return);
  }

Added: linux-5.0.patch
===
--- linux-5.0.patch (rev 0)
+++ linux-5.0.patch 2019-09-17 12:31:55 UTC (rev 510983)
@@ -0,0 +1,25 @@
+diff -u -r ndiswrapper-1.61/ndiswrapper/driver/ntoskernel.c 
ndiswrapper-1.61-5.0/ndiswrapper/driver/ntoskernel.c
+--- ndiswrapper-1.61/ndiswrapper/driver/ntoskernel.c   2019-03-04 
20:22:58.095332763 +
 ndiswrapper-1.61-5.0/ndiswrapper/driver/ntoskernel.c   2019-03-04 
20:24:48.698777448 +
+@@ -2498,7 +2498,7 @@
+ 
+ int ntoskernel_init(void)
+ {
+-  struct timeval now;
++  struct timespec64 now;
+ 
+   spin_lock_init(_lock);
+   spin_lock_init(_lock);
+@@ -2518,10 +2518,10 @@
+   INIT_WORK(_work, ntos_work_worker);
+   

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

2019-09-17 Thread Christian Hesse via arch-commits
Date: Tuesday, September 17, 2019 @ 12:32:05
  Author: eworm
Revision: 510984

archrelease: copy trunk to community-x86_64

Added:
  ndiswrapper/repos/community-x86_64/PKGBUILD
(from rev 510983, ndiswrapper/trunk/PKGBUILD)
  ndiswrapper/repos/community-x86_64/dkms.conf
(from rev 510983, ndiswrapper/trunk/dkms.conf)
  ndiswrapper/repos/community-x86_64/linux-4.11.patch
(from rev 510983, ndiswrapper/trunk/linux-4.11.patch)
  ndiswrapper/repos/community-x86_64/linux-4.13.patch
(from rev 510983, ndiswrapper/trunk/linux-4.13.patch)
  ndiswrapper/repos/community-x86_64/linux-4.15.patch
(from rev 510983, ndiswrapper/trunk/linux-4.15.patch)
  ndiswrapper/repos/community-x86_64/linux-5.0.patch
(from rev 510983, ndiswrapper/trunk/linux-5.0.patch)
  ndiswrapper/repos/community-x86_64/linux-5.3.patch
(from rev 510983, ndiswrapper/trunk/linux-5.3.patch)
Deleted:
  ndiswrapper/repos/community-x86_64/PKGBUILD
  ndiswrapper/repos/community-x86_64/dkms.conf
  ndiswrapper/repos/community-x86_64/linux-4.11.patch
  ndiswrapper/repos/community-x86_64/linux-4.13.patch
  ndiswrapper/repos/community-x86_64/linux-4.15.patch

--+
 PKGBUILD |  104 +++--
 dkms.conf|   48 +++---
 linux-4.11.patch |  110 +++---
 linux-4.13.patch |   54 +++
 linux-4.15.patch |  398 ++---
 linux-5.0.patch  |   25 +++
 linux-5.3.patch  |   69 +
 7 files changed, 452 insertions(+), 356 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-09-17 12:31:55 UTC (rev 510983)
+++ PKGBUILD2019-09-17 12:32:05 UTC (rev 510984)
@@ -1,51 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: maz-1 
-
-pkgbase=ndiswrapper
-pkgname=(ndiswrapper-dkms ndiswrapper)
-pkgver=1.61
-_extramodules=extramodules-ARCH
-pkgrel=7
-pkgdesc="Module for NDIS (Windows Network Drivers) drivers supplied by vendors"
-arch=('x86_64')
-url="http://sourceforge.net/projects/ndiswrapper/;
-license=('GPL')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/pgiri/ndiswrapper/archive/v$pkgver.tar.gz;
-'dkms.conf' 'linux-4.11.patch' 'linux-4.13.patch' 'linux-4.15.patch')
-sha512sums=('85f550f2952137529e0e9855f4d94b7bbc64cbf8a84a31c1b75a4be09d97478a997e64fa6e1ff4e0d29a97a79fc3d4dab1ebdaa9edb3d627a215f47aa4d52823'
-
'9fce255fc02ddf6e939dc61a5e29c0ea5fa1a31ecc3c390081bc53aa1cd48eddf5db621f0a1cb909634529d4ccc2995eea8827be8eb5807b34dc17e15045ecf4'
-
'5350308406457658fb31c378d6f3dd2a34c7331aebe5bdc80744bf955f1144e88181441704ccc7532f55d6fbe8d410440fb8838c2955d688dde4b55f74fc6ba5'
-
'de026a271cbfbefee99bc00a13c50be87294e5e2c5407d23cff6ce2d2a0c853542ce4f7e3e150741c7e8e32466fb1ab7cab266957da5bcca8376fb0f38e94482'
-
'52bd3d2025ffb8a3f6a4a1a1fee1b87d3811f30a210a54aaa7b37838eb256cd766bc1aeda24e4b4f4829992584931ecd97a042794c9b854bd1ebbf452dce2abf')
-
-prepare() {
-  cd ndiswrapper-$pkgver
-  patch --no-backup-if-mismatch -p1 -i "$srcdir"/linux-4.11.patch
-  patch --no-backup-if-mismatch -p1 -i "$srcdir"/linux-4.13.patch
-
-  cd ndiswrapper
-  patch --no-backup-if-mismatch -p1 -i "$srcdir"/linux-4.15.patch
-}
-
-build() {
-  cd ndiswrapper-$pkgver/ndiswrapper
-  make -C utils
-}
-
-package_ndiswrapper-dkms() {
-  depends=('dkms')
-  provides=('NDISWRAPPER-MODULE')
-  conflicts=('NDISWRAPPER-MODULE')
-
-  cd ndiswrapper-$pkgver/ndiswrapper
-  mkdir -p "$pkgdir"/usr/src
-  cp -RL ./driver "$pkgdir"/usr/src/ndiswrapper-$pkgver
-  cp "$srcdir"/dkms.conf "$pkgdir"/usr/src/ndiswrapper-$pkgver
-}
-
-package_ndiswrapper() {
-  depends=('NDISWRAPPER-MODULE')
-
-  cd ndiswrapper-$pkgver/ndiswrapper
-  make -C utils sbindir=/usr/bin usrsbindir=/usr/bin DESTDIR="$pkgdir" install
-}

Copied: ndiswrapper/repos/community-x86_64/PKGBUILD (from rev 510983, 
ndiswrapper/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-09-17 12:32:05 UTC (rev 510984)
@@ -0,0 +1,53 @@
+# Maintainer: Felix Yan 
+# Contributor: maz-1 
+
+pkgbase=ndiswrapper
+pkgname=(ndiswrapper-dkms ndiswrapper)
+pkgver=1.61
+_extramodules=extramodules-ARCH
+pkgrel=8
+pkgdesc="Module for NDIS (Windows Network Drivers) drivers supplied by vendors"
+arch=('x86_64')
+url="http://sourceforge.net/projects/ndiswrapper/;
+license=('GPL')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/pgiri/ndiswrapper/archive/v$pkgver.tar.gz;
+'dkms.conf' 'linux-4.11.patch' 'linux-4.13.patch' 'linux-4.15.patch' 
'linux-5.0.patch' 'linux-5.3.patch')
+sha512sums=('85f550f2952137529e0e9855f4d94b7bbc64cbf8a84a31c1b75a4be09d97478a997e64fa6e1ff4e0d29a97a79fc3d4dab1ebdaa9edb3d627a215f47aa4d52823'
+
'9fce255fc02ddf6e939dc61a5e29c0ea5fa1a31ecc3c390081bc53aa1cd48eddf5db621f0a1cb909634529d4ccc2995eea8827be8eb5807b34dc17e15045ecf4'
+

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

2019-09-17 Thread David Runge via arch-commits
Date: Tuesday, September 17, 2019 @ 11:48:27
  Author: dvzrv
Revision: 510982

archrelease: copy trunk to community-x86_64

Added:
  din/repos/community-x86_64/PKGBUILD
(from rev 510981, din/trunk/PKGBUILD)
Deleted:
  din/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-09-17 11:48:22 UTC (rev 510981)
+++ PKGBUILD2019-09-17 11:48:27 UTC (rev 510982)
@@ -1,36 +0,0 @@
-# Maintainer: David Runge 
-# Contributor: muzhed 
-
-pkgname=din
-pkgver=42
-pkgrel=1
-pkgdesc="A sound synthesizer and musical instrument."
-arch=('x86_64')
-url="https://dinisnoise.org/;
-license=('GPL2')
-groups=('pro-audio')
-depends=('hicolor-icon-theme' 'jack' 'libgl' 'sdl' 'tcl')
-makedepends=('boost' 'glu')
-source=("https://archive.org/download/dinisnoise_source_code/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('2b3dff05e3cff71e5c8f5d61958f90208072bfbb5135a7d559bd5758a34af0acee1701a63044d00a096a391576a7eb9417527c1201ec4a024256b258be2b0df0')
-
-prepare() {
-  cd "${pkgname}-${pkgver}"
-  autoreconf -vfi
-}
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  CXXFLAGS="${CXXFLAGS} -O3 -D__UNIX_ALSA__ -D__UNIX_JACK__" \
-  CFLAGS="${CFLAGS} -O3" \
-  ./configure --prefix='/usr'
-  make
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  make install DESTDIR="${pkgdir}"
-  # docs
-  install -t "${pkgdir}/usr/share/doc/${pkgname}/" \
--vDm 644 {AUTHORS,BUGS,CHANGELOG,NEWS,README,TODO}
-}

Copied: din/repos/community-x86_64/PKGBUILD (from rev 510981, 
din/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-09-17 11:48:27 UTC (rev 510982)
@@ -0,0 +1,59 @@
+# Maintainer: David Runge 
+# Contributor: muzhed 
+
+pkgname=din
+pkgver=43
+pkgrel=1
+pkgdesc="A sound synthesizer and musical instrument."
+arch=('x86_64')
+url="https://dinisnoise.org/;
+license=('GPL2')
+groups=('pro-audio')
+depends=('glibc' 'hicolor-icon-theme' 'jack' 'libgl' 'rtaudio' 'rtmidi' 'sdl' 
'tcl')
+makedepends=('boost' 'glu')
+source=("https://archive.org/download/dinisnoise_source_code/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('cd371b9762e136853ac7cb879b3648841a5741c3ee3718b6684e33df49519b26eccf0bcf7119729c0ca1ff898f9828eb75cd2b4bb0aac374bc11f0da95f62a79')
+
+prepare() {
+  cd "${pkgname}-${pkgver}"
+#  # use system rtaudio/rtmidi, instead of vendored versions
+  sed -e 's/RtAudio.h//' \
+  -e 's/RtMidi.h//' \
+  -e '/RtMidi.Po/d' \
+  -e '/RtAudio.Po/d' \
+  -i include/Makefile.{am,in}
+  sed -e 's/RtAudio.cpp//' \
+  -e 's/RtMidi.cpp//' \
+  -e '/RtMidi.Po/d' \
+  -e '/RtAudio.Po/d' \
+  -e '/RtMidi.$(OBJECT)/d' \
+  -e '/RtAudio.$(OBJECT)/d' \
+  -i src/Makefile.{am,in}
+  sed -e 's/\"RtAudio.h\"//' \
+  -i include/audio.h
+  sed -e 's/\"RtMidi.h\"//' \
+  -i include/midi_in.h
+  sed -e '19i#include ' \
+  -i src/audio.cc
+  sed -e '13i#include ' \
+  -i src/midi_in.cc
+  rm -v include/Rt{Audio,Midi}.h src/Rt{Audio,Midi}.cpp
+  autoreconf -vfi
+}
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  export CXXFLAGS="${CXXFLAGS} $(pkg-config --cflags jack rtaudio rtmidi)"
+  export CFLAGS="${CFLAGS} $(pkg-config --cflags jack rtaudio rtmidi)"
+  export LIBS="${LIBS} $(pkg-config --libs jack rtaudio rtmidi)"
+  ./configure --prefix='/usr'
+  make
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  make install DESTDIR="${pkgdir}"
+  # docs
+  install -t "${pkgdir}/usr/share/doc/${pkgname}/" \
+-vDm 644 {AUTHORS,BUGS,CHANGELOG,NEWS,README,TODO}
+}


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

2019-09-17 Thread David Runge via arch-commits
Date: Tuesday, September 17, 2019 @ 11:48:22
  Author: dvzrv
Revision: 510981

upgpkg: din 43-1

Upgrading to 43. Devendoring rtmidi and rtaudio. Adding missing CXXFLAGS/LIBS 
for jack.

Modified:
  din/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-17 11:07:09 UTC (rev 510980)
+++ PKGBUILD2019-09-17 11:48:22 UTC (rev 510981)
@@ -2,7 +2,7 @@
 # Contributor: muzhed 
 
 pkgname=din
-pkgver=42
+pkgver=43
 pkgrel=1
 pkgdesc="A sound synthesizer and musical instrument."
 arch=('x86_64')
@@ -9,20 +9,43 @@
 url="https://dinisnoise.org/;
 license=('GPL2')
 groups=('pro-audio')
-depends=('hicolor-icon-theme' 'jack' 'libgl' 'sdl' 'tcl')
+depends=('glibc' 'hicolor-icon-theme' 'jack' 'libgl' 'rtaudio' 'rtmidi' 'sdl' 
'tcl')
 makedepends=('boost' 'glu')
 
source=("https://archive.org/download/dinisnoise_source_code/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('2b3dff05e3cff71e5c8f5d61958f90208072bfbb5135a7d559bd5758a34af0acee1701a63044d00a096a391576a7eb9417527c1201ec4a024256b258be2b0df0')
+sha512sums=('cd371b9762e136853ac7cb879b3648841a5741c3ee3718b6684e33df49519b26eccf0bcf7119729c0ca1ff898f9828eb75cd2b4bb0aac374bc11f0da95f62a79')
 
 prepare() {
   cd "${pkgname}-${pkgver}"
+#  # use system rtaudio/rtmidi, instead of vendored versions
+  sed -e 's/RtAudio.h//' \
+  -e 's/RtMidi.h//' \
+  -e '/RtMidi.Po/d' \
+  -e '/RtAudio.Po/d' \
+  -i include/Makefile.{am,in}
+  sed -e 's/RtAudio.cpp//' \
+  -e 's/RtMidi.cpp//' \
+  -e '/RtMidi.Po/d' \
+  -e '/RtAudio.Po/d' \
+  -e '/RtMidi.$(OBJECT)/d' \
+  -e '/RtAudio.$(OBJECT)/d' \
+  -i src/Makefile.{am,in}
+  sed -e 's/\"RtAudio.h\"//' \
+  -i include/audio.h
+  sed -e 's/\"RtMidi.h\"//' \
+  -i include/midi_in.h
+  sed -e '19i#include ' \
+  -i src/audio.cc
+  sed -e '13i#include ' \
+  -i src/midi_in.cc
+  rm -v include/Rt{Audio,Midi}.h src/Rt{Audio,Midi}.cpp
   autoreconf -vfi
 }
 
 build() {
   cd "${pkgname}-${pkgver}"
-  CXXFLAGS="${CXXFLAGS} -O3 -D__UNIX_ALSA__ -D__UNIX_JACK__" \
-  CFLAGS="${CFLAGS} -O3" \
+  export CXXFLAGS="${CXXFLAGS} $(pkg-config --cflags jack rtaudio rtmidi)"
+  export CFLAGS="${CFLAGS} $(pkg-config --cflags jack rtaudio rtmidi)"
+  export LIBS="${LIBS} $(pkg-config --libs jack rtaudio rtmidi)"
   ./configure --prefix='/usr'
   make
 }


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

2019-09-17 Thread Christian Hesse via arch-commits
Date: Tuesday, September 17, 2019 @ 11:07:09
  Author: eworm
Revision: 510980

this is [community]...

Added:
  virtualbox-modules-arch/repos/community-staging-x86_64/
Deleted:
  virtualbox-modules-arch/repos/staging-x86_64/


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

2019-09-17 Thread Christian Hesse via arch-commits
Date: Tuesday, September 17, 2019 @ 11:06:18
  Author: eworm
Revision: 510979

archrelease: copy trunk to staging-x86_64

Added:
  virtualbox-modules-arch/repos/staging-x86_64/
  virtualbox-modules-arch/repos/staging-x86_64/PKGBUILD
(from rev 510978, virtualbox-modules-arch/trunk/PKGBUILD)

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

Copied: virtualbox-modules-arch/repos/staging-x86_64/PKGBUILD (from rev 510978, 
virtualbox-modules-arch/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-09-17 11:06:18 UTC (rev 510979)
@@ -0,0 +1,52 @@
+# Maintainer: Sébastien Luttringer
+# Contributor: Ionut Biru 
+
+pkgbase=virtualbox-modules-arch
+pkgname=('virtualbox-host-modules-arch' 'virtualbox-guest-modules-arch')
+pkgver=6.0.12
+pkgrel=6
+arch=('x86_64')
+url='http://virtualbox.org'
+license=('GPL')
+depends=('linux')
+makedepends=('linux-headers'
+ "virtualbox-host-dkms>=$pkgver"
+ "virtualbox-guest-dkms>=$pkgver")
+
+_extramodules=extramodules-ARCH
+
+package_virtualbox-host-modules-arch(){
+  _kernver="$(cat /usr/lib/modules/$_extramodules/version)"
+  pkgdesc='Virtualbox host kernel modules for Arch Kernel'
+  replaces=('virtualbox-modules' 'virtualbox-host-modules')
+  conflicts=('virtualbox-modules' 'virtualbox-host-modules'
+ 'virtualbox-host-dkms')
+  provides=('VIRTUALBOX-HOST-MODULES')
+
+  cd "/var/lib/dkms/vboxhost/${pkgver}_OSE/$_kernver/$CARCH/module"
+  install -Dt "$pkgdir/usr/lib/modules/$_extramodules" -m0644 *
+
+  # compress each module individually
+  find "$pkgdir" -name '*.ko' -exec xz -T1 {} +
+
+  # systemd module loading
+  printf '%s\n' vboxdrv vboxpci vboxnetadp vboxnetflt |
+install -D -m0644 /dev/stdin "$pkgdir/usr/lib/modules-load.d/$pkgname.conf"
+}
+
+package_virtualbox-guest-modules-arch(){
+  _kernver="$(cat /usr/lib/modules/$_extramodules/version)"
+  pkgdesc='Virtualbox guest kernel modules for Arch Kernel'
+  replaces=('virtualbox-archlinux-modules' 'virtualbox-guest-modules')
+  conflicts=('virtualbox-archlinux-modules' 'virtualbox-guest-modules'
+ 'virtualbox-guest-dkms')
+  provides=('VIRTUALBOX-GUEST-MODULES')
+
+  cd "/var/lib/dkms/vboxsf/${pkgver}_OSE/$_kernver/$CARCH/module"
+  install -Dt "$pkgdir/usr/lib/modules/$_extramodules" -m0644 *
+
+  # compress each module individually
+  find "$pkgdir" -name '*.ko' -exec xz -T1 {} +
+}
+
+# vim:set sw=2 et:


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

2019-09-17 Thread Christian Hesse via arch-commits
Date: Tuesday, September 17, 2019 @ 11:06:16
  Author: eworm
Revision: 510978

upgpkg: virtualbox-modules-arch 6.0.12-6

rebuilt for linux-5.3.arch1-1

Modified:
  virtualbox-modules-arch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-17 11:01:58 UTC (rev 510977)
+++ PKGBUILD2019-09-17 11:06:16 UTC (rev 510978)
@@ -4,7 +4,7 @@
 pkgbase=virtualbox-modules-arch
 pkgname=('virtualbox-host-modules-arch' 'virtualbox-guest-modules-arch')
 pkgver=6.0.12
-pkgrel=5
+pkgrel=6
 arch=('x86_64')
 url='http://virtualbox.org'
 license=('GPL')


[arch-commits] Commit in virtualbox/repos/community-x86_64 (57 files)

2019-09-17 Thread Christian Hesse via arch-commits
Date: Tuesday, September 17, 2019 @ 11:01:58
  Author: eworm
Revision: 510977

archrelease: copy trunk to community-x86_64

Added:
  virtualbox/repos/community-x86_64/002-dri-driver-path.patch
(from rev 510976, virtualbox/trunk/002-dri-driver-path.patch)
  virtualbox/repos/community-x86_64/005-gsoap-build.patch
(from rev 510976, virtualbox/trunk/005-gsoap-build.patch)
  virtualbox/repos/community-x86_64/006-rdesktop-vrdp-keymap-path.patch
(from rev 510976, virtualbox/trunk/006-rdesktop-vrdp-keymap-path.patch)
  virtualbox/repos/community-x86_64/008-no-vboxvideo.patch
(from rev 510976, virtualbox/trunk/008-no-vboxvideo.patch)
  virtualbox/repos/community-x86_64/011-python-3-7.patch
(from rev 510976, virtualbox/trunk/011-python-3-7.patch)
  
virtualbox/repos/community-x86_64/012-vbglR3GuestCtrlDetectPeekGetCancelSupport.patch
(from rev 510976, 
virtualbox/trunk/012-vbglR3GuestCtrlDetectPeekGetCancelSupport.patch)
  virtualbox/repos/community-x86_64/013-Makefile.patch
(from rev 510976, virtualbox/trunk/013-Makefile.patch)
  virtualbox/repos/community-x86_64/014-iasl.patch
(from rev 510976, virtualbox/trunk/014-iasl.patch)
  virtualbox/repos/community-x86_64/015-linux-5-3.patch
(from rev 510976, virtualbox/trunk/015-linux-5-3.patch)
  virtualbox/repos/community-x86_64/101-vboxsf-automount.patch
(from rev 510976, virtualbox/trunk/101-vboxsf-automount.patch)
  virtualbox/repos/community-x86_64/60-vboxdrv.rules
(from rev 510976, virtualbox/trunk/60-vboxdrv.rules)
  virtualbox/repos/community-x86_64/60-vboxguest.rules
(from rev 510976, virtualbox/trunk/60-vboxguest.rules)
  virtualbox/repos/community-x86_64/LocalConfig.kmk
(from rev 510976, virtualbox/trunk/LocalConfig.kmk)
  virtualbox/repos/community-x86_64/PKGBUILD
(from rev 510976, virtualbox/trunk/PKGBUILD)
  virtualbox/repos/community-x86_64/build.sh
(from rev 510976, virtualbox/trunk/build.sh)
  virtualbox/repos/community-x86_64/mount.vboxsf
(from rev 510976, virtualbox/trunk/mount.vboxsf)
  virtualbox/repos/community-x86_64/vboxreload
(from rev 510976, virtualbox/trunk/vboxreload)
  virtualbox/repos/community-x86_64/vboxservice-nox.service
(from rev 510976, virtualbox/trunk/vboxservice-nox.service)
  virtualbox/repos/community-x86_64/vboxservice.service
(from rev 510976, virtualbox/trunk/vboxservice.service)
  virtualbox/repos/community-x86_64/vboxweb.service
(from rev 510976, virtualbox/trunk/vboxweb.service)
  virtualbox/repos/community-x86_64/virtualbox-ext-vnc.install
(from rev 510976, virtualbox/trunk/virtualbox-ext-vnc.install)
  virtualbox/repos/community-x86_64/virtualbox-guest-dkms.conf
(from rev 510976, virtualbox/trunk/virtualbox-guest-dkms.conf)
  virtualbox/repos/community-x86_64/virtualbox-guest-dkms.install
(from rev 510976, virtualbox/trunk/virtualbox-guest-dkms.install)
  virtualbox/repos/community-x86_64/virtualbox-guest-utils.sysusers
(from rev 510976, virtualbox/trunk/virtualbox-guest-utils.sysusers)
  virtualbox/repos/community-x86_64/virtualbox-host-dkms.conf
(from rev 510976, virtualbox/trunk/virtualbox-host-dkms.conf)
  virtualbox/repos/community-x86_64/virtualbox-host-dkms.install
(from rev 510976, virtualbox/trunk/virtualbox-host-dkms.install)
  virtualbox/repos/community-x86_64/virtualbox-vboxsf-dkms.conf
(from rev 510976, virtualbox/trunk/virtualbox-vboxsf-dkms.conf)
  virtualbox/repos/community-x86_64/virtualbox.install
(from rev 510976, virtualbox/trunk/virtualbox.install)
  virtualbox/repos/community-x86_64/virtualbox.sysusers
(from rev 510976, virtualbox/trunk/virtualbox.sysusers)
Deleted:
  virtualbox/repos/community-x86_64/002-dri-driver-path.patch
  virtualbox/repos/community-x86_64/005-gsoap-build.patch
  virtualbox/repos/community-x86_64/006-rdesktop-vrdp-keymap-path.patch
  virtualbox/repos/community-x86_64/008-no-vboxvideo.patch
  virtualbox/repos/community-x86_64/011-python-3-7.patch
  
virtualbox/repos/community-x86_64/012-vbglR3GuestCtrlDetectPeekGetCancelSupport.patch
  virtualbox/repos/community-x86_64/013-Makefile.patch
  virtualbox/repos/community-x86_64/014-iasl.patch
  virtualbox/repos/community-x86_64/101-vboxsf-automount.patch
  virtualbox/repos/community-x86_64/60-vboxdrv.rules
  virtualbox/repos/community-x86_64/60-vboxguest.rules
  virtualbox/repos/community-x86_64/LocalConfig.kmk
  virtualbox/repos/community-x86_64/PKGBUILD
  virtualbox/repos/community-x86_64/build.sh
  virtualbox/repos/community-x86_64/mount.vboxsf
  virtualbox/repos/community-x86_64/vboxreload
  virtualbox/repos/community-x86_64/vboxservice-nox.service
  virtualbox/repos/community-x86_64/vboxservice.service
  virtualbox/repos/community-x86_64/vboxweb.service
  virtualbox/repos/community-x86_64/virtualbox-ext-vnc.install
  virtualbox/repos/community-x86_64/virtualbox-guest-dkms.conf
  virtualbox/repos/community-x86_64/virtualbox-guest-dkms.install
  virtualbox/repos/community-x86_64/virtualbox-guest-utils.sysusers
  

[arch-commits] Commit in virtualbox/trunk (015-linux-5-3.patch PKGBUILD)

2019-09-17 Thread Christian Hesse via arch-commits
Date: Tuesday, September 17, 2019 @ 11:01:46
  Author: eworm
Revision: 510976

upgpkg: virtualbox 6.0.12-2

fix for linux 5.3

Added:
  virtualbox/trunk/015-linux-5-3.patch
Modified:
  virtualbox/trunk/PKGBUILD

-+
 015-linux-5-3.patch |   76 ++
 PKGBUILD|4 +-
 2 files changed, 79 insertions(+), 1 deletion(-)

Added: 015-linux-5-3.patch
===
--- 015-linux-5-3.patch (rev 0)
+++ 015-linux-5-3.patch 2019-09-17 11:01:46 UTC (rev 510976)
@@ -0,0 +1,76 @@
+diff --git a/src/VBox/HostDrivers/VBoxNetFlt/linux/VBoxNetFlt-linux.c 
b/src/VBox/HostDrivers/VBoxNetFlt/linux/VBoxNetFlt-linux.c
+index 15ecd351..a2f2a284 100644
+--- a/src/VBox/HostDrivers/VBoxNetFlt/linux/VBoxNetFlt-linux.c
 b/src/VBox/HostDrivers/VBoxNetFlt/linux/VBoxNetFlt-linux.c
+@@ -2123,7 +2123,9 @@ static int vboxNetFltLinuxEnumeratorCallback(struct 
notifier_block *self, unsign
+ #endif
+ if (in_dev != NULL)
+ {
+-for_ifa(in_dev) {
++struct in_ifaddr *ifa;
++
++for (ifa = in_dev->ifa_list; ifa; ifa = ifa->ifa_next) {
+ if (VBOX_IPV4_IS_LOOPBACK(ifa->ifa_address))
+ return NOTIFY_OK;
+ 
+@@ -2137,7 +2139,7 @@ static int vboxNetFltLinuxEnumeratorCallback(struct 
notifier_block *self, unsign
+ 
+ pThis->pSwitchPort->pfnNotifyHostAddress(pThis->pSwitchPort,
+ /* :fAdded */ true, kIntNetAddrType_IPv4, >ifa_address);
+-} endfor_ifa(in_dev);
++}
+ }
+ 
+ /*
+diff --git a/src/VBox/Runtime/r0drv/linux/mp-r0drv-linux.c 
b/src/VBox/Runtime/r0drv/linux/mp-r0drv-linux.c
+index ca480683..72b25bb8 100644
+--- a/src/VBox/Runtime/r0drv/linux/mp-r0drv-linux.c
 b/src/VBox/Runtime/r0drv/linux/mp-r0drv-linux.c
+@@ -283,12 +283,15 @@ RTDECL(int) RTMpOnAll(PFNRTMPWORKER pfnWorker, void 
*pvUser1, void *pvUser2)
+ if (RTCpuSetCount() > 1)
+ {
+ /* Fire the function on all other CPUs without waiting for 
completion. */
+-# if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 27)
++# if LINUX_VERSION_CODE >= KERNEL_VERSION(5, 3, 0)
++smp_call_function(rtmpLinuxAllWrapper, , 0 /* wait */);
++# elif LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 27)
+ int rc = smp_call_function(rtmpLinuxAllWrapper, , 0 /* wait */);
++Assert(!rc); NOREF(rc);
+ # else
+ int rc = smp_call_function(rtmpLinuxAllWrapper, , 0 /* retry */, 
0 /* wait */);
+-# endif
+ Assert(!rc); NOREF(rc);
++# endif
+ }
+ #endif
+ 
+@@ -326,7 +329,6 @@ RTDECL(int) RTMpOnOthers(PFNRTMPWORKER pfnWorker, void 
*pvUser1, void *pvUser2)
+ {
+ #ifdef CONFIG_SMP
+ IPRT_LINUX_SAVE_EFL_AC();
+-int rc;
+ RTMPARGS Args;
+ 
+ RTTHREADPREEMPTSTATE PreemptState = RTTHREADPREEMPTSTATE_INITIALIZER;
+@@ -337,14 +339,17 @@ RTDECL(int) RTMpOnOthers(PFNRTMPWORKER pfnWorker, void 
*pvUser1, void *pvUser2)
+ Args.cHits = 0;
+ 
+ RTThreadPreemptDisable();
+-# if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 27)
+-rc = smp_call_function(rtmpLinuxWrapper, , 1 /* wait */);
++# if LINUX_VERSION_CODE >= KERNEL_VERSION(5, 3, 0)
++smp_call_function(rtmpLinuxWrapper, , 1 /* wait */);
++# elif LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 27)
++int rc = smp_call_function(rtmpLinuxWrapper, , 1 /* wait */);
++Assert(rc == 0); NOREF(rc);
+ # else /* older kernels */
+-rc = smp_call_function(rtmpLinuxWrapper, , 0 /* retry */, 1 /* wait 
*/);
++int rc = smp_call_function(rtmpLinuxWrapper, , 0 /* retry */, 1 /* 
wait */);
++Assert(rc == 0); NOREF(rc);
+ # endif /* older kernels */
+ RTThreadPreemptRestore();
+ 
+-Assert(rc == 0); NOREF(rc);
+ IPRT_LINUX_RESTORE_EFL_AC();
+ #else
+ RT_NOREF(pfnWorker, pvUser1, pvUser2);

Modified: PKGBUILD
===
--- PKGBUILD2019-09-17 09:24:10 UTC (rev 510975)
+++ PKGBUILD2019-09-17 11:01:46 UTC (rev 510976)
@@ -10,7 +10,7 @@
  'virtualbox-guest-utils-nox'
  'virtualbox-ext-vnc')
 pkgver=6.0.12
-pkgrel=1
+pkgrel=2
 _vboxsf_commit='87b9015c57dd7f226c768131bf8b4c0249de9835'
 arch=('x86_64')
 url='https://virtualbox.org/'
@@ -77,6 +77,7 @@
 '012-vbglR3GuestCtrlDetectPeekGetCancelSupport.patch'
 '013-Makefile.patch'
 '014-iasl.patch'
+'015-linux-5-3.patch'
 # The following patch and mount.vboxsf wrapper should be removed
 # once support for mainline-style options string gets upstreamed
 '101-vboxsf-automount.patch'
@@ -103,6 +104,7 @@
 '81900e13d36630488accd8c0bfd2ceb69563fb2c4f0f171caba1cca59d438024'
 'da7e58ed37dc23c6202aab3017864579a99e78417f3421ddcc98a198198fe2c9'
 '5ad14bd587031ac3dcadaeca2cc4d7b48a59ff09b03884b4fc2be5b1432a8237'
+'f4d46295ae92023028e4cb5219b110e0b9d5a9d12d76381fe404d7bf922c9d7f'
 

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

2019-09-17 Thread Antonio Rojas via arch-commits
Date: Tuesday, September 17, 2019 @ 09:50:46
  Author: arojas
Revision: 362981

archrelease: copy trunk to extra-x86_64

Added:
  kdelibs4support/repos/extra-x86_64/PKGBUILD
(from rev 362980, kdelibs4support/trunk/PKGBUILD)
  kdelibs4support/repos/extra-x86_64/kdelibs4support-nm-1.20.patch
(from rev 362980, kdelibs4support/trunk/kdelibs4support-nm-1.20.patch)
Deleted:
  kdelibs4support/repos/extra-x86_64/PKGBUILD

---+
 PKGBUILD  |   85 +---
 kdelibs4support-nm-1.20.patch |   76 +++
 2 files changed, 121 insertions(+), 40 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-09-17 09:50:19 UTC (rev 362980)
+++ PKGBUILD2019-09-17 09:50:46 UTC (rev 362981)
@@ -1,40 +0,0 @@
-# Maintainer: Felix Yan 
-# Maintainer: Antonio Rojas 
-# Contributor: Andrea Scarpino 
-
-pkgname=kdelibs4support
-pkgver=5.62.0
-pkgrel=1
-pkgdesc='Porting aid from KDELibs4'
-arch=(x86_64)
-url='https://community.kde.org/Frameworks'
-license=(LGPL)
-depends=(kunitconversion kitemmodels kemoticons kded kparts)
-makedepends=(extra-cmake-modules kdoctools qt5-tools networkmanager perl-uri 
kdesignerplugin)
-groups=(kf5-aids)
-source=("https://download.kde.org/stable/frameworks/${pkgver%.*}/portingAids/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('9cc10b4727b8ee3bae46af796e7da5d6ae620c543278814176a389ea178595ed'
-'SKIP')
-validpgpkeys=(53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB) # David Faure 

-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_INSTALL_LIBEXECDIR=lib \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-
-# cert bundle seems to be hardcoded
-# link it to the one from ca-certificates
-  rm -f "$pkgdir"/usr/share/kf5/kssl/ca-bundle.crt
-  ln -sf /etc/ssl/certs/ca-certificates.crt 
"$pkgdir"/usr/share/kf5/kssl/ca-bundle.crt
-}

Copied: kdelibs4support/repos/extra-x86_64/PKGBUILD (from rev 362980, 
kdelibs4support/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-09-17 09:50:46 UTC (rev 362981)
@@ -0,0 +1,45 @@
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=kdelibs4support
+pkgver=5.62.0
+pkgrel=2
+pkgdesc='Porting aid from KDELibs4'
+arch=(x86_64)
+url='https://community.kde.org/Frameworks'
+license=(LGPL)
+depends=(kunitconversion kitemmodels kemoticons kded kparts)
+makedepends=(extra-cmake-modules kdoctools qt5-tools networkmanager perl-uri 
kdesignerplugin)
+groups=(kf5-aids)
+source=("https://download.kde.org/stable/frameworks/${pkgver%.*}/portingAids/$pkgname-$pkgver.tar.xz"{,.sig}
+kdelibs4support-nm-1.20.patch)
+sha256sums=('9cc10b4727b8ee3bae46af796e7da5d6ae620c543278814176a389ea178595ed'
+'SKIP'
+'969ced5045f924713b9febc4c2cd6f2567b57404f7aac5f32b2cb4e7461925b1')
+validpgpkeys=(53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB) # David Faure 

+
+prepare() {
+  mkdir -p build
+
+  cd $pkgname-$pkgver
+  patch -p1 -i ../kdelibs4support-nm-1.20.patch # Detect NetworkManager 1.20
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_LIBEXECDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+
+# cert bundle seems to be hardcoded
+# link it to the one from ca-certificates
+  rm -f "$pkgdir"/usr/share/kf5/kssl/ca-bundle.crt
+  ln -sf /etc/ssl/certs/ca-certificates.crt 
"$pkgdir"/usr/share/kf5/kssl/ca-bundle.crt
+}

Copied: kdelibs4support/repos/extra-x86_64/kdelibs4support-nm-1.20.patch (from 
rev 362980, kdelibs4support/trunk/kdelibs4support-nm-1.20.patch)
===
--- kdelibs4support-nm-1.20.patch   (rev 0)
+++ kdelibs4support-nm-1.20.patch   2019-09-17 09:50:46 UTC (rev 362981)
@@ -0,0 +1,76 @@
+diff --git a/cmake/modules/FindNetworkManager.cmake 
b/cmake/modules/FindNetworkManager.cmake
+index ced2017c..a82d43da 100644
+--- a/cmake/modules/FindNetworkManager.cmake
 b/cmake/modules/FindNetworkManager.cmake
+@@ -14,29 +14,27 @@
+ # For details see the accompanying COPYING-CMAKE-SCRIPTS file.
+ 
+ 
+-IF (NETWORKMANAGER_INCLUDE_DIRS AND NM-UTIL_INCLUDE_DIRS)
++IF (NETWORKMANAGER_INCLUDE_DIRS)
+# in cache already
+SET(NetworkManager_FIND_QUIETLY TRUE)
+-ENDIF (NETWORKMANAGER_INCLUDE_DIRS AND NM-UTIL_INCLUDE_DIRS)
++ENDIF (NETWORKMANAGER_INCLUDE_DIRS)
+ 
+ IF (NOT WIN32)
+# use pkg-config to get the directories and then use these values
+# in the FIND_PATH() and FIND_LIBRARY() calls
+find_package(PkgConfig)
+-   PKG_SEARCH_MODULE( NETWORKMANAGER NetworkManager )
+-   PKG_SEARCH_MODULE( NM-UTIL libnm-util )
++   PKG_SEARCH_MODULE( NETWORKMANAGER libnm 

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

2019-09-17 Thread Antonio Rojas via arch-commits
Date: Tuesday, September 17, 2019 @ 09:50:19
  Author: arojas
Revision: 362980

Fix the NetworkManager backend

Added:
  kdelibs4support/trunk/kdelibs4support-nm-1.20.patch
Modified:
  kdelibs4support/trunk/PKGBUILD

---+
 PKGBUILD  |   11 -
 kdelibs4support-nm-1.20.patch |   76 
 2 files changed, 84 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-09-17 07:37:21 UTC (rev 362979)
+++ PKGBUILD2019-09-17 09:50:19 UTC (rev 362980)
@@ -4,7 +4,7 @@
 
 pkgname=kdelibs4support
 pkgver=5.62.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Porting aid from KDELibs4'
 arch=(x86_64)
 url='https://community.kde.org/Frameworks'
@@ -12,13 +12,18 @@
 depends=(kunitconversion kitemmodels kemoticons kded kparts)
 makedepends=(extra-cmake-modules kdoctools qt5-tools networkmanager perl-uri 
kdesignerplugin)
 groups=(kf5-aids)
-source=("https://download.kde.org/stable/frameworks/${pkgver%.*}/portingAids/$pkgname-$pkgver.tar.xz"{,.sig})
+source=("https://download.kde.org/stable/frameworks/${pkgver%.*}/portingAids/$pkgname-$pkgver.tar.xz"{,.sig}
+kdelibs4support-nm-1.20.patch)
 sha256sums=('9cc10b4727b8ee3bae46af796e7da5d6ae620c543278814176a389ea178595ed'
-'SKIP')
+'SKIP'
+'969ced5045f924713b9febc4c2cd6f2567b57404f7aac5f32b2cb4e7461925b1')
 validpgpkeys=(53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB) # David Faure 

 
 prepare() {
   mkdir -p build
+
+  cd $pkgname-$pkgver
+  patch -p1 -i ../kdelibs4support-nm-1.20.patch # Detect NetworkManager 1.20
 }
 
 build() {

Added: kdelibs4support-nm-1.20.patch
===
--- kdelibs4support-nm-1.20.patch   (rev 0)
+++ kdelibs4support-nm-1.20.patch   2019-09-17 09:50:19 UTC (rev 362980)
@@ -0,0 +1,76 @@
+diff --git a/cmake/modules/FindNetworkManager.cmake 
b/cmake/modules/FindNetworkManager.cmake
+index ced2017c..a82d43da 100644
+--- a/cmake/modules/FindNetworkManager.cmake
 b/cmake/modules/FindNetworkManager.cmake
+@@ -14,29 +14,27 @@
+ # For details see the accompanying COPYING-CMAKE-SCRIPTS file.
+ 
+ 
+-IF (NETWORKMANAGER_INCLUDE_DIRS AND NM-UTIL_INCLUDE_DIRS)
++IF (NETWORKMANAGER_INCLUDE_DIRS)
+# in cache already
+SET(NetworkManager_FIND_QUIETLY TRUE)
+-ENDIF (NETWORKMANAGER_INCLUDE_DIRS AND NM-UTIL_INCLUDE_DIRS)
++ENDIF (NETWORKMANAGER_INCLUDE_DIRS)
+ 
+ IF (NOT WIN32)
+# use pkg-config to get the directories and then use these values
+# in the FIND_PATH() and FIND_LIBRARY() calls
+find_package(PkgConfig)
+-   PKG_SEARCH_MODULE( NETWORKMANAGER NetworkManager )
+-   PKG_SEARCH_MODULE( NM-UTIL libnm-util )
++   PKG_SEARCH_MODULE( NETWORKMANAGER libnm )
+ ENDIF (NOT WIN32)
+ 
+-IF (NETWORKMANAGER_FOUND AND NM-UTIL_FOUND)
++IF (NETWORKMANAGER_FOUND)
+IF (NOT NetworkManager_FIND_QUIETLY)
+   MESSAGE(STATUS "Found NetworkManager ${NETWORKMANAGER_VERSION}: 
${NETWORKMANAGER_LIBRARY_DIRS}")
+-  MESSAGE(STATUS "Found libnm-util: ${NM-UTIL_LIBRARY_DIRS}")
+ENDIF (NOT NetworkManager_FIND_QUIETLY)
+-ELSE (NETWORKMANAGER_FOUND AND NM-UTIL_FOUND)
++ELSE (NETWORKMANAGER_FOUND)
+IF (NetworkManager_FIND_REQUIRED)
+-  MESSAGE(FATAL_ERROR "Could NOT find NetworkManager or libnm-util, check 
FindPkgConfig output above!")
++  MESSAGE(FATAL_ERROR "Could NOT find NetworkManager, check FindPkgConfig 
output above!")
+ENDIF (NetworkManager_FIND_REQUIRED)
+-ENDIF (NETWORKMANAGER_FOUND AND NM-UTIL_FOUND)
++ENDIF (NETWORKMANAGER_FOUND)
+ 
+-MARK_AS_ADVANCED(NETWORKMANAGER_INCLUDE_DIRS NM-UTIL_INCLUDE_DIRS)
++MARK_AS_ADVANCED(NETWORKMANAGER_INCLUDE_DIRS)
+ 
+diff --git a/src/solid-networkstatus/kded/CMakeLists.txt 
b/src/solid-networkstatus/kded/CMakeLists.txt
+index 9fa30651..e8d33d74 100644
+--- a/src/solid-networkstatus/kded/CMakeLists.txt
 b/src/solid-networkstatus/kded/CMakeLists.txt
+@@ -16,12 +16,10 @@ set_package_properties(NetworkManager PROPERTIES 
DESCRIPTION "The NetworkManager
+   )
+ 
+ if(NETWORKMANAGER_FOUND)
+-if(NM_0_7)
+-message(STATUS "Adding in-process NetworkManager service-wart to kded 
module")
+-set(kded_networkstatus_PART_SRCS ${kded_networkstatus_PART_SRCS} 
networkmanagerstatus.cpp)
+-include_directories(${NETWORKMANAGER_INCLUDE_DIRS})
+-add_definitions(-DNM_BACKEND_ENABLED)
+-endif()
++message(STATUS "Adding in-process NetworkManager service-wart to kded 
module")
++set(kded_networkstatus_PART_SRCS ${kded_networkstatus_PART_SRCS} 
networkmanagerstatus.cpp)
++include_directories(${NETWORKMANAGER_INCLUDE_DIRS})
++add_definitions(-DNM_BACKEND_ENABLED)
+ endif()
+ 
+ 
+diff --git a/src/solid-networkstatus/kded/networkmanagerstatus.h 
b/src/solid-networkstatus/kded/networkmanagerstatus.h
+index bbe0879a..2104abd8 100644
+--- 

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

2019-09-17 Thread Brett Cornwall via arch-commits
Date: Tuesday, September 17, 2019 @ 09:24:02
  Author: ainola
Revision: 510974

upgpkg: wl-clipboard 2.0.0_beta2-1

Upgraded to beta due to the current stable release being completely broken on 
newer versions of sway.

See https://github.com/bugaevc/wl-clipboard/issues/35 and 
https://github.com/bugaevc/wl-clipboard/issues/56.

Modified:
  wl-clipboard/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-17 08:57:24 UTC (rev 510973)
+++ PKGBUILD2019-09-17 09:24:02 UTC (rev 510974)
@@ -2,8 +2,8 @@
 # Contributor: Adam Brunnmeier
 
 pkgname=wl-clipboard
-pkgver=1.0.0
-pkgrel=4
+pkgver=2.0.0_beta2
+pkgrel=1
 pkgdesc="Command-line copy/paste utilities for Wayland"
 arch=('x86_64')
 url="https://github.com/bugaevc/wl-clipboard;
@@ -14,8 +14,8 @@
 'mailcap: for type inference in wl-paste'
 )
 makedepends=('meson' 'wayland-protocols')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/bugaevc/wl-clipboard/archive/v$pkgver.tar.gz;)
-sha256sums=('9b5c1f5f67c40672324194ec11c1fcbeccc72c0cd5b6712d6c7257be252387e3')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/bugaevc/wl-clipboard/archive/$pkgver.tar.gz;)
+sha256sums=('903c2df89a4f925e467f5c3793fc0297f0917319be7df5789a3c8cdd862799ab')
 
 build() {
 arch-meson "$pkgname-$pkgver" build


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

2019-09-17 Thread Brett Cornwall via arch-commits
Date: Tuesday, September 17, 2019 @ 09:24:10
  Author: ainola
Revision: 510975

archrelease: copy trunk to community-x86_64

Added:
  wl-clipboard/repos/community-x86_64/PKGBUILD
(from rev 510974, wl-clipboard/trunk/PKGBUILD)
Deleted:
  wl-clipboard/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-09-17 09:24:02 UTC (rev 510974)
+++ PKGBUILD2019-09-17 09:24:10 UTC (rev 510975)
@@ -1,27 +0,0 @@
-# Maintainer: Ainola
-# Contributor: Adam Brunnmeier
-
-pkgname=wl-clipboard
-pkgver=1.0.0
-pkgrel=4
-pkgdesc="Command-line copy/paste utilities for Wayland"
-arch=('x86_64')
-url="https://github.com/bugaevc/wl-clipboard;
-license=('GPL3')
-depends=('wayland')
-optdepends=(
-'xdg-utils: for content type inference in wl-copy'
-'mailcap: for type inference in wl-paste'
-)
-makedepends=('meson' 'wayland-protocols')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/bugaevc/wl-clipboard/archive/v$pkgver.tar.gz;)
-sha256sums=('9b5c1f5f67c40672324194ec11c1fcbeccc72c0cd5b6712d6c7257be252387e3')
-
-build() {
-arch-meson "$pkgname-$pkgver" build
-ninja -C build
-}
-
-package() {
-DESTDIR="$pkgdir" ninja -C build install
-}

Copied: wl-clipboard/repos/community-x86_64/PKGBUILD (from rev 510974, 
wl-clipboard/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-09-17 09:24:10 UTC (rev 510975)
@@ -0,0 +1,27 @@
+# Maintainer: Ainola
+# Contributor: Adam Brunnmeier
+
+pkgname=wl-clipboard
+pkgver=2.0.0_beta2
+pkgrel=1
+pkgdesc="Command-line copy/paste utilities for Wayland"
+arch=('x86_64')
+url="https://github.com/bugaevc/wl-clipboard;
+license=('GPL3')
+depends=('wayland')
+optdepends=(
+'xdg-utils: for content type inference in wl-copy'
+'mailcap: for type inference in wl-paste'
+)
+makedepends=('meson' 'wayland-protocols')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/bugaevc/wl-clipboard/archive/$pkgver.tar.gz;)
+sha256sums=('903c2df89a4f925e467f5c3793fc0297f0917319be7df5789a3c8cdd862799ab')
+
+build() {
+arch-meson "$pkgname-$pkgver" build
+ninja -C build
+}
+
+package() {
+DESTDIR="$pkgdir" ninja -C build install
+}


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

2019-09-17 Thread Filipe Laíns via arch-commits
Date: Tuesday, September 17, 2019 @ 08:57:24
  Author: ffy00
Revision: 510973

archrelease: copy trunk to community-x86_64

Added:
  gifski/repos/community-x86_64/PKGBUILD
(from rev 510972, gifski/trunk/PKGBUILD)
Deleted:
  gifski/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-09-17 08:57:19 UTC (rev 510972)
+++ PKGBUILD2019-09-17 08:57:24 UTC (rev 510973)
@@ -1,26 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-# Contributor: Philipp Wolfer 
-
-pkgname=gifski
-pkgver=0.8.7
-pkgrel=1
-pkgdesc="GIF encoder based on libimagequant (pngquant, gifquant?)."
-arch=('x86_64')
-url="https://gif.ski/;
-license=('AGPL3')
-makedepends=('rust' 'clang' 'openmp')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/ImageOptim/$pkgname/archive/$pkgver.tar.gz;)
-sha512sums=('0f1bfeb166ebe40f261d49b04b20d0be0f6a0baaf4d558f6c78239cdd4664532a01f85c4349093c103e92b4e1183d5451d4cb2206626fe2821c6c45d8596a437')
-
-build() {
-  cd $pkgname-$pkgver
-
-  cargo build --release --features=openmp
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  install -Dm 755 target/release/gifski "$pkgdir"/usr/bin/gifski
-}
-

Copied: gifski/repos/community-x86_64/PKGBUILD (from rev 510972, 
gifski/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-09-17 08:57:24 UTC (rev 510973)
@@ -0,0 +1,26 @@
+# Maintainer: Filipe Laíns (FFY00) 
+# Contributor: Philipp Wolfer 
+
+pkgname=gifski
+pkgver=0.9.1
+pkgrel=1
+pkgdesc="GIF encoder based on libimagequant (pngquant, gifquant?)."
+arch=('x86_64')
+url="https://gif.ski/;
+license=('AGPL3')
+makedepends=('rust' 'clang' 'openmp')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/ImageOptim/$pkgname/archive/$pkgver.tar.gz;)
+sha512sums=('338d6441eb3731e3bba8258f60a809883fd321f2cd7c0b9644c7297bc7cd48d32162bcbd01593eca3ebcf6a8d2905996085971556a41b8951e82e56e1a09b32c')
+
+build() {
+  cd $pkgname-$pkgver
+
+  cargo build --release --features=openmp
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  install -Dm 755 target/release/gifski "$pkgdir"/usr/bin/gifski
+}
+


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

2019-09-17 Thread Filipe Laíns via arch-commits
Date: Tuesday, September 17, 2019 @ 08:57:19
  Author: ffy00
Revision: 510972

upgpkg: gifski 0.9.1-1

Modified:
  gifski/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-17 08:22:32 UTC (rev 510971)
+++ PKGBUILD2019-09-17 08:57:19 UTC (rev 510972)
@@ -2,7 +2,7 @@
 # Contributor: Philipp Wolfer 
 
 pkgname=gifski
-pkgver=0.8.7
+pkgver=0.9.1
 pkgrel=1
 pkgdesc="GIF encoder based on libimagequant (pngquant, gifquant?)."
 arch=('x86_64')
@@ -10,7 +10,7 @@
 license=('AGPL3')
 makedepends=('rust' 'clang' 'openmp')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/ImageOptim/$pkgname/archive/$pkgver.tar.gz;)
-sha512sums=('0f1bfeb166ebe40f261d49b04b20d0be0f6a0baaf4d558f6c78239cdd4664532a01f85c4349093c103e92b4e1183d5451d4cb2206626fe2821c6c45d8596a437')
+sha512sums=('338d6441eb3731e3bba8258f60a809883fd321f2cd7c0b9644c7297bc7cd48d32162bcbd01593eca3ebcf6a8d2905996085971556a41b8951e82e56e1a09b32c')
 
 build() {
   cd $pkgname-$pkgver


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

2019-09-17 Thread Filipe Laíns via arch-commits
Date: Tuesday, September 17, 2019 @ 08:18:21
  Author: ffy00
Revision: 510970

archrelease: copy trunk to community-x86_64

Added:
  arduino-cli/repos/community-x86_64/PKGBUILD
(from rev 510969, arduino-cli/trunk/PKGBUILD)
Deleted:
  arduino-cli/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-09-17 08:18:07 UTC (rev 510969)
+++ PKGBUILD2019-09-17 08:18:21 UTC (rev 510970)
@@ -1,50 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-
-pkgname=arduino-cli
-pkgver=0.4.0
-pkgrel=2
-arch=('x86_64')
-pkgdesc='Arduino command line interface'
-url='https://github.com/arduino/arduino-cli'
-license=('GPL3')
-groups=('arduino')
-#checkdepends=('unzip')
-makedepends=('go-pie' 'git')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
-sha512sums=('a9266ba0e674ac6c7222aac5f54581b447ed6a88924b8c306dcee7769fa903ff32b0664d24037fb8a694598a3e34461d66853ca3ac97cf94a0ffb31c90a0')
-
-prepare(){
-  export GOPATH="$srcdir"/gopath
-
-  mkdir -p "$GOPATH"/src/github.com/arduino
-  ln -rTsf "$pkgname-$pkgver" "$GOPATH"/src/github.com/arduino/arduino-cli
-  cd "$GOPATH"/src/github.com/arduino/arduino-cli
-
-  export GO111MODULE=on
-
-  go mod vendor
-  go mod download
-}
-
-build(){
-  export GOPATH="$srcdir"/gopath
-  cd "$GOPATH"/src/github.com/arduino/arduino-cli
-
-  go build \
-   -gcflags "all=-trimpath=$GOPATH" \
-   -asmflags "all=-trimpath=$GOPATH" \
-   -ldflags "-extldflags $LDFLAGS" \
-   -v .
-}
-
-#check() {
-#  export GOPATH="$srcdir"/gopath
-#  cd "$GOPATH"/src/github.com/arduino/arduino-cli
-#
-#  go test .
-#}
-
-package() {
-  install -Dm 755 $pkgname-$pkgver/$pkgname "$pkgdir"/usr/bin/$pkgname
-}
-

Copied: arduino-cli/repos/community-x86_64/PKGBUILD (from rev 510969, 
arduino-cli/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-09-17 08:18:21 UTC (rev 510970)
@@ -0,0 +1,42 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+pkgname=arduino-cli
+pkgver=0.5.0
+pkgrel=1
+arch=('x86_64')
+pkgdesc='Arduino command line interface'
+url='https://github.com/arduino/arduino-cli'
+license=('GPL3')
+groups=('arduino')
+makedepends=('go-pie' 'git')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
+sha512sums=('7a0050591e3be3c09fe847ef2ce62df51fb80935fce593e558c7bc5279996ba899cfcc7d68ebd91db3d6b9066824af3c6f5efd63a496f7e330314fc7085366c9')
+
+prepare(){
+  export GOPATH="$srcdir"/gopath
+
+  mkdir -p "$GOPATH"/src/github.com/arduino
+  ln -rTsf "$pkgname-$pkgver" "$GOPATH"/src/github.com/arduino/arduino-cli
+  cd "$GOPATH"/src/github.com/arduino/arduino-cli
+
+  export GO111MODULE=on
+
+  go mod vendor
+  go mod download
+}
+
+build(){
+  export GOPATH="$srcdir"/gopath
+  cd "$GOPATH"/src/github.com/arduino/arduino-cli
+
+  go build \
+   -gcflags "all=-trimpath=$GOPATH" \
+   -asmflags "all=-trimpath=$GOPATH" \
+   -ldflags "-extldflags $LDFLAGS" \
+   -v .
+}
+
+package() {
+  install -Dm 755 $pkgname-$pkgver/$pkgname "$pkgdir"/usr/bin/$pkgname
+}
+


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

2019-09-17 Thread Filipe Laíns via arch-commits
Date: Tuesday, September 17, 2019 @ 08:18:07
  Author: ffy00
Revision: 510969

upgpkg: arduino-cli 0.5.0-1

Modified:
  arduino-cli/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-17 07:54:06 UTC (rev 510968)
+++ PKGBUILD2019-09-17 08:18:07 UTC (rev 510969)
@@ -1,17 +1,16 @@
 # Maintainer: Filipe Laíns (FFY00) 
 
 pkgname=arduino-cli
-pkgver=0.4.0
-pkgrel=2
+pkgver=0.5.0
+pkgrel=1
 arch=('x86_64')
 pkgdesc='Arduino command line interface'
 url='https://github.com/arduino/arduino-cli'
 license=('GPL3')
 groups=('arduino')
-#checkdepends=('unzip')
 makedepends=('go-pie' 'git')
 source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
-sha512sums=('a9266ba0e674ac6c7222aac5f54581b447ed6a88924b8c306dcee7769fa903ff32b0664d24037fb8a694598a3e34461d66853ca3ac97cf94a0ffb31c90a0')
+sha512sums=('7a0050591e3be3c09fe847ef2ce62df51fb80935fce593e558c7bc5279996ba899cfcc7d68ebd91db3d6b9066824af3c6f5efd63a496f7e330314fc7085366c9')
 
 prepare(){
   export GOPATH="$srcdir"/gopath
@@ -37,13 +36,6 @@
-v .
 }
 
-#check() {
-#  export GOPATH="$srcdir"/gopath
-#  cd "$GOPATH"/src/github.com/arduino/arduino-cli
-#
-#  go test .
-#}
-
 package() {
   install -Dm 755 $pkgname-$pkgver/$pkgname "$pkgdir"/usr/bin/$pkgname
 }


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

2019-09-17 Thread Antonio Rojas via arch-commits
Date: Tuesday, September 17, 2019 @ 07:54:06
  Author: arojas
Revision: 510968

archrelease: copy trunk to community-x86_64

Added:
  clipgrab/repos/community-x86_64/PKGBUILD
(from rev 510967, clipgrab/trunk/PKGBUILD)
  clipgrab/repos/community-x86_64/clipgrab.desktop
(from rev 510967, clipgrab/trunk/clipgrab.desktop)
Deleted:
  clipgrab/repos/community-x86_64/PKGBUILD
  clipgrab/repos/community-x86_64/clipgrab.desktop

--+
 PKGBUILD |   74 ++---
 clipgrab.desktop |   26 +-
 2 files changed, 50 insertions(+), 50 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-09-17 07:53:45 UTC (rev 510967)
+++ PKGBUILD2019-09-17 07:54:06 UTC (rev 510968)
@@ -1,37 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Contributor: Alois Nespor 
-# Contributor: kikadf 
-# Contributor: Stefan Husmann 
-# Contributor: thacrazze 
-
-pkgname=clipgrab
-pkgver=3.8.4
-pkgrel=1
-pkgdesc='A video downloader and converter for YouTube, Veoh, DailyMotion, 
MyVideo, ...'
-arch=(x86_64)
-url='https://clipgrab.org'
-license=(GPL3)
-depends=(qt5-webengine)
-optdepends=('ffmpeg: for the conversion functionality')
-source=(https://download.clipgrab.org/$pkgname-$pkgver.tar.gz
-$pkgname.desktop)
-sha256sums=('5a90ead0eddc9c1bb2d2d2b96fd1306226bc6076a29b9ded46a3349df378d95f'
-'840910097d8c129ea12c395c4a33f562591e878e521c98fde8a7b3f9403aa23f')
-
-build() {
-  cd $pkgname-$pkgver
-
-  qmake \
-QMAKE_CFLAGS_RELEASE="$CPPFLAGS $CFLAGS" \
-QMAKE_CXXFLAGS_RELEASE="$CPPFLAGS $CXXFLAGS" \
-QMAKE_LFLAGS_RELEASE="$LDFLAGS" \
-clipgrab.pro
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  install -Dm755 $pkgname -t "$pkgdir"/usr/bin/
-  install -Dm644 icon.png "$pkgdir/usr/share/pixmaps/$pkgname.png"
-  install -Dm644 "$srcdir"/$pkgname.desktop -t 
"$pkgdir"/usr/share/applications/
-}

Copied: clipgrab/repos/community-x86_64/PKGBUILD (from rev 510967, 
clipgrab/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-09-17 07:54:06 UTC (rev 510968)
@@ -0,0 +1,37 @@
+# Maintainer: Antonio Rojas 
+# Contributor: Alois Nespor 
+# Contributor: kikadf 
+# Contributor: Stefan Husmann 
+# Contributor: thacrazze 
+
+pkgname=clipgrab
+pkgver=3.8.5
+pkgrel=1
+pkgdesc='A video downloader and converter for YouTube, Veoh, DailyMotion, 
MyVideo, ...'
+arch=(x86_64)
+url='https://clipgrab.org'
+license=(GPL3)
+depends=(qt5-webengine)
+optdepends=('ffmpeg: for the conversion functionality')
+source=(https://download.clipgrab.org/$pkgname-$pkgver.tar.gz
+$pkgname.desktop)
+sha256sums=('69c3264bedc72a6c98006b43f05413bce8724a3beec0081aa5d693bff9b7d249'
+'840910097d8c129ea12c395c4a33f562591e878e521c98fde8a7b3f9403aa23f')
+
+build() {
+  cd $pkgname-$pkgver
+
+  qmake \
+QMAKE_CFLAGS_RELEASE="$CPPFLAGS $CFLAGS" \
+QMAKE_CXXFLAGS_RELEASE="$CPPFLAGS $CXXFLAGS" \
+QMAKE_LFLAGS_RELEASE="$LDFLAGS" \
+clipgrab.pro
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  install -Dm755 $pkgname -t "$pkgdir"/usr/bin/
+  install -Dm644 icon.png "$pkgdir/usr/share/pixmaps/$pkgname.png"
+  install -Dm644 "$srcdir"/$pkgname.desktop -t 
"$pkgdir"/usr/share/applications/
+}

Deleted: clipgrab.desktop
===
--- clipgrab.desktop2019-09-17 07:53:45 UTC (rev 510967)
+++ clipgrab.desktop2019-09-17 07:54:06 UTC (rev 510968)
@@ -1,13 +0,0 @@
-[Desktop Entry]
-Type=Application
-Encoding=UTF-8
-Name=ClipGrab
-GenericName=Video Downloader
-GenericName[de]=Video-Downloader
-Comment=Download videos and convert it
-Comment[de]=Videos herunterladen und konvertieren
-Icon=/usr/share/pixmaps/clipgrab.png
-Exec=clipgrab
-TryExec=clipgrab
-Terminal=false
-Categories=Qt;AudioVideo;Audio;Video;

Copied: clipgrab/repos/community-x86_64/clipgrab.desktop (from rev 510967, 
clipgrab/trunk/clipgrab.desktop)
===
--- clipgrab.desktop(rev 0)
+++ clipgrab.desktop2019-09-17 07:54:06 UTC (rev 510968)
@@ -0,0 +1,13 @@
+[Desktop Entry]
+Type=Application
+Encoding=UTF-8
+Name=ClipGrab
+GenericName=Video Downloader
+GenericName[de]=Video-Downloader
+Comment=Download videos and convert it
+Comment[de]=Videos herunterladen und konvertieren
+Icon=/usr/share/pixmaps/clipgrab.png
+Exec=clipgrab
+TryExec=clipgrab
+Terminal=false
+Categories=Qt;AudioVideo;Audio;Video;


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

2019-09-17 Thread Antonio Rojas via arch-commits
Date: Tuesday, September 17, 2019 @ 07:53:45
  Author: arojas
Revision: 510967

Update to 3.8.5

Modified:
  clipgrab/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-17 03:23:09 UTC (rev 510966)
+++ PKGBUILD2019-09-17 07:53:45 UTC (rev 510967)
@@ -5,7 +5,7 @@
 # Contributor: thacrazze 
 
 pkgname=clipgrab
-pkgver=3.8.4
+pkgver=3.8.5
 pkgrel=1
 pkgdesc='A video downloader and converter for YouTube, Veoh, DailyMotion, 
MyVideo, ...'
 arch=(x86_64)
@@ -15,7 +15,7 @@
 optdepends=('ffmpeg: for the conversion functionality')
 source=(https://download.clipgrab.org/$pkgname-$pkgver.tar.gz
 $pkgname.desktop)
-sha256sums=('5a90ead0eddc9c1bb2d2d2b96fd1306226bc6076a29b9ded46a3349df378d95f'
+sha256sums=('69c3264bedc72a6c98006b43f05413bce8724a3beec0081aa5d693bff9b7d249'
 '840910097d8c129ea12c395c4a33f562591e878e521c98fde8a7b3f9403aa23f')
 
 build() {


[arch-commits] Commit in k3b/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2019-09-17 Thread Antonio Rojas via arch-commits
Date: Tuesday, September 17, 2019 @ 06:16:33
  Author: arojas
Revision: 362977

archrelease: copy trunk to extra-x86_64

Added:
  k3b/repos/extra-x86_64/PKGBUILD
(from rev 362976, k3b/trunk/PKGBUILD)
Deleted:
  k3b/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-09-17 06:16:11 UTC (rev 362976)
+++ PKGBUILD2019-09-17 06:16:33 UTC (rev 362977)
@@ -1,43 +0,0 @@
-# Maintainer: Eric Bélanger 
-# Maintainer: Antonio Rojas 
-
-pkgname=k3b
-pkgver=19.08.1
-pkgrel=1
-epoch=1
-pkgdesc="Feature-rich and easy to handle CD burning application"
-arch=(x86_64)
-url="https://userbase.kde.org/K3b;
-license=(GPL)
-depends=(libkcddb kcmutils knotifyconfig libmad kfilemetadata knewstuff
- libmpcdec libdvdread libburn qt5-webkit)
-makedepends=(extra-cmake-modules kdoctools)
-optdepends=('cdrtools: for CD burning with cdrecord'
-'dvd+rw-tools: for DVD burning support'
-'vcdimager: for VCD burning support'
-'emovix: for bootable multimedia CD/DVD support'
-'cdrdao: for disk-at-once (DAO) mode support'
-'cdparanoia: for CD ripping support' 'transcode: for DVD ripping 
support')
-groups=(kde-applications kdemultimedia)
-source=("https://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('8995f39457932fb6597f0f6124e0dfe09ecb2a25a6ec8506ce3ef870da293749'
-'SKIP')
-validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

-  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck 

-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_INSTALL_LIBEXECDIR=lib \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: k3b/repos/extra-x86_64/PKGBUILD (from rev 362976, k3b/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-09-17 06:16:33 UTC (rev 362977)
@@ -0,0 +1,48 @@
+# Maintainer: Eric Bélanger 
+# Maintainer: Antonio Rojas 
+
+pkgname=k3b
+pkgver=19.08.1
+pkgrel=2
+epoch=1
+pkgdesc="Feature-rich and easy to handle CD burning application"
+arch=(x86_64)
+url="https://userbase.kde.org/K3b;
+license=(GPL)
+depends=(libkcddb kcmutils knotifyconfig libmad kfilemetadata knewstuff
+ libmpcdec libdvdread libburn qt5-webkit)
+makedepends=(extra-cmake-modules kdoctools)
+optdepends=('cdrtools: for CD burning with cdrecord'
+'dvd+rw-tools: for DVD burning support'
+'vcdimager: for VCD burning support'
+'emovix: for bootable multimedia CD/DVD support'
+'cdrdao: for disk-at-once (DAO) mode support'
+'cdparanoia: for CD ripping support' 'transcode: for DVD ripping 
support')
+groups=(kde-applications kdemultimedia)
+source=("https://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig}
+kdebug-411969.patch::"https://cgit.kde.org/k3b.git/patch/?id=787aaa1f;)
+sha256sums=('8995f39457932fb6597f0f6124e0dfe09ecb2a25a6ec8506ce3ef870da293749'
+'SKIP'
+'b7c757badd00e04fc7a24275ec48dee71b14ea21a8c0ecfd9fa55079133e')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

+  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck 

+
+prepare() {
+  mkdir -p build
+
+  cd $pkgname-$pkgver
+  patch -p1 -i ../kdebug-411969.patch # Fix crash when adding large files
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_LIBEXECDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


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

2019-09-17 Thread Antonio Rojas via arch-commits
Date: Tuesday, September 17, 2019 @ 06:16:11
  Author: arojas
Revision: 362976

Fix crash when adding large files (FS#63791)

Modified:
  k3b/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-17 06:11:04 UTC (rev 362975)
+++ PKGBUILD2019-09-17 06:16:11 UTC (rev 362976)
@@ -3,7 +3,7 @@
 
 pkgname=k3b
 pkgver=19.08.1
-pkgrel=1
+pkgrel=2
 epoch=1
 pkgdesc="Feature-rich and easy to handle CD burning application"
 arch=(x86_64)
@@ -19,14 +19,19 @@
 'cdrdao: for disk-at-once (DAO) mode support'
 'cdparanoia: for CD ripping support' 'transcode: for DVD ripping 
support')
 groups=(kde-applications kdemultimedia)
-source=("https://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
+source=("https://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig}
+kdebug-411969.patch::"https://cgit.kde.org/k3b.git/patch/?id=787aaa1f;)
 sha256sums=('8995f39457932fb6597f0f6124e0dfe09ecb2a25a6ec8506ce3ef870da293749'
-'SKIP')
+'SKIP'
+'b7c757badd00e04fc7a24275ec48dee71b14ea21a8c0ecfd9fa55079133e')
 validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

   F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck 

 
 prepare() {
   mkdir -p build
+
+  cd $pkgname-$pkgver
+  patch -p1 -i ../kdebug-411969.patch # Fix crash when adding large files
 }
 
 build() {


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

2019-09-17 Thread Antonio Rojas via arch-commits
Date: Tuesday, September 17, 2019 @ 06:10:46
  Author: arojas
Revision: 362974

Update to 1.6.2

Modified:
  icewm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-16 21:50:18 UTC (rev 362973)
+++ PKGBUILD2019-09-17 06:10:46 UTC (rev 362974)
@@ -2,17 +2,17 @@
 # Contributor: Eric Bélanger 
 
 pkgname=icewm
-pkgver=1.6.1
+pkgver=1.6.2
 pkgrel=1
 pkgdesc="A Window Manager designed for speed, usability, and consistency"
 arch=('x86_64')
 url="https://ice-wm.org/;
 license=('LGPL')
-depends=('libxrandr' 'libsm' 'libxinerama' 'libsndfile' 'libao' 'fribidi' 
'libxft' 'libxcomposite' 'libxdamage' 'gdk-pixbuf2')
+depends=('libxrandr' 'libxinerama' 'libsndfile' 'libao' 'fribidi' 'libxft' 
'libxcomposite' 'libxdamage' 'gdk-pixbuf2' 'libxpm')
 makedepends=('xorg-mkfontdir' 'asciidoctor' 'librsvg')
 optdepends=('perl: for icewm-menu-xrandr')
 
source=(https://github.com/ice-wm/icewm/releases/download/$pkgver/$pkgname-$pkgver.tar.lz)
-sha256sums=('e71916f5c839208f279c7ffcf86d2b191632ff053a3ced10b631ffafb6619a1c')
+sha256sums=('8ff09ae111075f220dbf5cdb13401a2c2a051ccab8c81167d234d6e450c6aa24')
 
 build() {
   cd ${pkgname}-${pkgver}


[arch-commits] Commit in icewm/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2019-09-17 Thread Antonio Rojas via arch-commits
Date: Tuesday, September 17, 2019 @ 06:11:04
  Author: arojas
Revision: 362975

archrelease: copy trunk to extra-x86_64

Added:
  icewm/repos/extra-x86_64/PKGBUILD
(from rev 362974, icewm/trunk/PKGBUILD)
Deleted:
  icewm/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-09-17 06:10:46 UTC (rev 362974)
+++ PKGBUILD2019-09-17 06:11:04 UTC (rev 362975)
@@ -1,26 +0,0 @@
-# Maintainer:
-# Contributor: Eric Bélanger 
-
-pkgname=icewm
-pkgver=1.6.1
-pkgrel=1
-pkgdesc="A Window Manager designed for speed, usability, and consistency"
-arch=('x86_64')
-url="https://ice-wm.org/;
-license=('LGPL')
-depends=('libxrandr' 'libsm' 'libxinerama' 'libsndfile' 'libao' 'fribidi' 
'libxft' 'libxcomposite' 'libxdamage' 'gdk-pixbuf2')
-makedepends=('xorg-mkfontdir' 'asciidoctor' 'librsvg')
-optdepends=('perl: for icewm-menu-xrandr')
-source=(https://github.com/ice-wm/icewm/releases/download/$pkgver/$pkgname-$pkgver.tar.lz)
-sha256sums=('e71916f5c839208f279c7ffcf86d2b191632ff053a3ced10b631ffafb6619a1c')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr --sysconfdir=/etc
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-}

Copied: icewm/repos/extra-x86_64/PKGBUILD (from rev 362974, 
icewm/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-09-17 06:11:04 UTC (rev 362975)
@@ -0,0 +1,26 @@
+# Maintainer:
+# Contributor: Eric Bélanger 
+
+pkgname=icewm
+pkgver=1.6.2
+pkgrel=1
+pkgdesc="A Window Manager designed for speed, usability, and consistency"
+arch=('x86_64')
+url="https://ice-wm.org/;
+license=('LGPL')
+depends=('libxrandr' 'libxinerama' 'libsndfile' 'libao' 'fribidi' 'libxft' 
'libxcomposite' 'libxdamage' 'gdk-pixbuf2' 'libxpm')
+makedepends=('xorg-mkfontdir' 'asciidoctor' 'librsvg')
+optdepends=('perl: for icewm-menu-xrandr')
+source=(https://github.com/ice-wm/icewm/releases/download/$pkgver/$pkgname-$pkgver.tar.lz)
+sha256sums=('8ff09ae111075f220dbf5cdb13401a2c2a051ccab8c81167d234d6e450c6aa24')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr --sysconfdir=/etc
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}