[arch-commits] Commit in pd/trunk (PKGBUILD pd.png)

2019-08-08 Thread David Runge via arch-commits
Date: Friday, August 9, 2019 @ 05:50:47
  Author: dvzrv
Revision: 498387

upgpkg: pd 0.49.1-1

Upgrading to 0.49.1. Removing custom icon. Integrating upstream svg and 
generating all icons from it, using inkscape. Switching to github for tarballs 
(because https and instant tarball generation).

Modified:
  pd/trunk/PKGBUILD
Deleted:
  pd/trunk/pd.png

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-09 05:13:57 UTC (rev 498386)
+++ PKGBUILD2019-08-09 05:50:47 UTC (rev 498387)
@@ -3,26 +3,28 @@
 # Contributor: TDY 
 # Contributor: Shinlun Hsieh 
 
+_resolutions=( 16 32 48 64 96 128 256 512 1024 )
+_name=pure-data
 pkgname=pd
-pkgver=0.49.0
+pkgver=0.49.1
 _ver=${pkgver%.*}-${pkgver##*.}
 pkgrel=1
 pkgdesc="The Pure Data real-time music and multimedia environment"
 arch=('x86_64')
 url="http://msp.ucsd.edu/software.html;
-license=('custom:BSD')
+license=('BSD')
 groups=('pro-audio')
-depends=('fftw' 'portaudio' 'tk')
-makedepends=('gendesk' 'portmidi')
+depends=('fftw' 'hicolor-icon-theme' 'portaudio' 'tk')
+makedepends=('gendesk' 'inkscape' 'portmidi')
 optdepends=('portmidi: for alternative portmidi support')
 provides=('puredata')
-source=("http://msp.ucsd.edu/Software/${pkgname}-${_ver}.src.tar.gz;
-"${pkgname}.png")
-sha512sums=('5a8e606d2e1b62bc65903c7a30c6339f0f9acc676290d233bcb8ed87a817c7c3ff63207779f5e0d9caa231ad988770e5c2225921c2a616df661b3960b2c72480'
-
'61300b58f10018b0bd28424ac00d1b8158f8ace9855742e19e48c98f915cabcade6c6041460aa795005c0fb6abc93e7116fc6d00116c9fe6c85c162d')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/pure-data/pure-data/archive/${_ver}.tar.gz;
+
"${pkgname}.svg::https://raw.githubusercontent.com/pure-data/pd-icon/master/masters/icon.svg;)
+sha512sums=('c2dd4eadc622b1a626095cad95ce7e34be569414671af5938b339665526545174cf7abb77bf49943f617a93b3fae54fc890df46f1b9f73cb93b13a36db490fd7'
+
'3c88122e0bdbdda73d47a688de7264f4cf86537b981dfabcbc646fc621189612bd0ae4804ba962d533072df85faddb9a77daf3eb7c6ef8ea46c22e3216bf0d74')
 
 prepare() {
-  mv -v "${pkgname}-${_ver}" "${pkgname}-${pkgver}"
+  mv -v "${_name}-${_ver}" "${pkgname}-${pkgver}"
   cd "${pkgname}-${pkgver}"
   autoreconf -vfi
   # XDG desktop files
@@ -32,6 +34,12 @@
   --exec ${pkgname} \
   --name "Pure Data" \
   --categories "AudioVideo;Audio"
+  for _res in ${_resolutions[@]}; do
+inkscape -z -e "pd-${_res}.png" \
+ -w "${_res}" \
+ -h "${_res}" \
+ "../${pkgname}.svg"
+  done
 }
 
 build() {
@@ -57,10 +65,15 @@
   # desktop file
   install -vDm 644 "${pkgname}.desktop" \
 -t "${pkgdir}/usr/share/applications/"
-  # icon from puredata.info
-  # https://puredata.info/Members/claudiusmaximus/icons/index_html/
-  install -vDm 644 "${srcdir}/${pkgname}.png" \
--t "${pkgdir}/usr/share/pixmaps/"
+  # icons
+  install -vDm 644 "${pkgname}-32.png" \
+"${pkgdir}/usr/share/pixmaps/${pkgname}.png"
+  install -vDm 644 "${srcdir}/${pkgname}.svg" \
+-t "${pkgdir}/usr/share/icons/hicolor/scalable/apps"
+  for _res in ${_resolutions[@]}; do
+install -vDm 644 "${pkgname}-${_res}.png" \
+  "${pkgdir}/usr/share/icons/hicolor/${_res}x${_res}/apps/${pkgname}.png"
+  done
   # readme
   install -vDm 644 README.txt -t "${pkgdir}/usr/share/doc/${pkgname}/"
   # fix broken symlink

Deleted: pd.png
===
(Binary files differ)


[arch-commits] Commit in pd/repos/community-x86_64 (PKGBUILD PKGBUILD pd.png)

2019-08-08 Thread David Runge via arch-commits
Date: Friday, August 9, 2019 @ 05:50:52
  Author: dvzrv
Revision: 498388

archrelease: copy trunk to community-x86_64

Added:
  pd/repos/community-x86_64/PKGBUILD
(from rev 498387, pd/trunk/PKGBUILD)
Deleted:
  pd/repos/community-x86_64/PKGBUILD
  pd/repos/community-x86_64/pd.png

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-09 05:50:47 UTC (rev 498387)
+++ PKGBUILD2019-08-09 05:50:52 UTC (rev 498388)
@@ -1,71 +0,0 @@
-# Maintainer: David Runge 
-# Contributor: speps 
-# Contributor: TDY 
-# Contributor: Shinlun Hsieh 
-
-pkgname=pd
-pkgver=0.49.0
-_ver=${pkgver%.*}-${pkgver##*.}
-pkgrel=1
-pkgdesc="The Pure Data real-time music and multimedia environment"
-arch=('x86_64')
-url="http://msp.ucsd.edu/software.html;
-license=('custom:BSD')
-groups=('pro-audio')
-depends=('fftw' 'portaudio' 'tk')
-makedepends=('gendesk' 'portmidi')
-optdepends=('portmidi: for alternative portmidi support')
-provides=('puredata')
-source=("http://msp.ucsd.edu/Software/${pkgname}-${_ver}.src.tar.gz;
-"${pkgname}.png")
-sha512sums=('5a8e606d2e1b62bc65903c7a30c6339f0f9acc676290d233bcb8ed87a817c7c3ff63207779f5e0d9caa231ad988770e5c2225921c2a616df661b3960b2c72480'
-
'61300b58f10018b0bd28424ac00d1b8158f8ace9855742e19e48c98f915cabcade6c6041460aa795005c0fb6abc93e7116fc6d00116c9fe6c85c162d')
-
-prepare() {
-  mv -v "${pkgname}-${_ver}" "${pkgname}-${pkgver}"
-  cd "${pkgname}-${pkgver}"
-  autoreconf -vfi
-  # XDG desktop files
-  gendesk -n \
-  --pkgname ${pkgname} \
-  --pkgdesc "${pkgdesc}" \
-  --exec ${pkgname} \
-  --name "Pure Data" \
-  --categories "AudioVideo;Audio"
-}
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  ./configure --prefix=/usr \
-  --enable-alsa \
-  --enable-fftw \
-  --enable-jack \
-  --enable-portaudio \
-  --enable-portmidi \
-  --without-local-portaudio \
-  --without-local-portmidi
-  make
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-
-  # license
-  install -vDm 644 LICENSE.txt \
-"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  # desktop file
-  install -vDm 644 "${pkgname}.desktop" \
--t "${pkgdir}/usr/share/applications/"
-  # icon from puredata.info
-  # https://puredata.info/Members/claudiusmaximus/icons/index_html/
-  install -vDm 644 "${srcdir}/${pkgname}.png" \
--t "${pkgdir}/usr/share/pixmaps/"
-  # readme
-  install -vDm 644 README.txt -t "${pkgdir}/usr/share/doc/${pkgname}/"
-  # fix broken symlink
-  ls -lah "${pkgdir}/usr/lib/${pkgname}/bin/${pkgname}"
-  rm -v "${pkgdir}/usr/lib/${pkgname}/bin/${pkgname}"
-  ln -sv "/usr/bin/${pkgname}" "${pkgdir}/usr/lib/${pkgname}/bin/${pkgname}"
-  ls -lah "${pkgdir}/usr/lib/${pkgname}/bin/${pkgname}"
-}

Copied: pd/repos/community-x86_64/PKGBUILD (from rev 498387, pd/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-09 05:50:52 UTC (rev 498388)
@@ -0,0 +1,84 @@
+# Maintainer: David Runge 
+# Contributor: speps 
+# Contributor: TDY 
+# Contributor: Shinlun Hsieh 
+
+_resolutions=( 16 32 48 64 96 128 256 512 1024 )
+_name=pure-data
+pkgname=pd
+pkgver=0.49.1
+_ver=${pkgver%.*}-${pkgver##*.}
+pkgrel=1
+pkgdesc="The Pure Data real-time music and multimedia environment"
+arch=('x86_64')
+url="http://msp.ucsd.edu/software.html;
+license=('BSD')
+groups=('pro-audio')
+depends=('fftw' 'hicolor-icon-theme' 'portaudio' 'tk')
+makedepends=('gendesk' 'inkscape' 'portmidi')
+optdepends=('portmidi: for alternative portmidi support')
+provides=('puredata')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/pure-data/pure-data/archive/${_ver}.tar.gz;
+
"${pkgname}.svg::https://raw.githubusercontent.com/pure-data/pd-icon/master/masters/icon.svg;)
+sha512sums=('c2dd4eadc622b1a626095cad95ce7e34be569414671af5938b339665526545174cf7abb77bf49943f617a93b3fae54fc890df46f1b9f73cb93b13a36db490fd7'
+
'3c88122e0bdbdda73d47a688de7264f4cf86537b981dfabcbc646fc621189612bd0ae4804ba962d533072df85faddb9a77daf3eb7c6ef8ea46c22e3216bf0d74')
+
+prepare() {
+  mv -v "${_name}-${_ver}" "${pkgname}-${pkgver}"
+  cd "${pkgname}-${pkgver}"
+  autoreconf -vfi
+  # XDG desktop files
+  gendesk -n \
+  --pkgname ${pkgname} \
+  --pkgdesc "${pkgdesc}" \
+  --exec ${pkgname} \
+  --name "Pure Data" \
+  --categories "AudioVideo;Audio"
+  for _res in ${_resolutions[@]}; do
+inkscape -z -e "pd-${_res}.png" \
+ -w "${_res}" \
+ -h "${_res}" \
+ "../${pkgname}.svg"
+  done
+}
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  ./configure --prefix=/usr \
+  --enable-alsa \
+  

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

2019-08-08 Thread David Runge via arch-commits
Date: Friday, August 9, 2019 @ 05:18:15
  Author: dvzrv
Revision: 359360

upgpkg: scons 3.1.1-1

Upgrading to 3.1.1. Adding lib32-glibc to checkdepends to have one failing test 
less.

Modified:
  scons/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-09 04:12:20 UTC (rev 359359)
+++ PKGBUILD2019-08-09 05:18:15 UTC (rev 359360)
@@ -14,9 +14,8 @@
 depends=('python')
 makedepends=('python-setuptools')
 # potential additions include ipkg, rpm
-checkdepends=('clang' 'gdc' 'dmd' 'docbook-xml' 'ldc' 'lib32-glibc' 'nasm'
-'python-beautifulsoup4' 'python-lxml' 'python-pytest' 'python-virtualenv' 
'swig'
-'zip')
+checkdepends=('clang' 'gdc' 'dmd' 'ldc' 'lib32-glibc' 'nasm' 'python-lxml'
+'python-pytest' 'python-virtualenv' 'swig' 'zip')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/${pkgname}/${pkgname}/archive/${pkgver}.tar.gz;)
 
sha512sums=('3347a7ec5c6c7b596c0d51bb4a9654b971734736febe3834df0f40e7839e1f0578dafeae838d5ddd9f3319ac3d17b6790666fa1602c30480eba25122355179a5')
 


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

2019-08-08 Thread David Runge via arch-commits
Date: Friday, August 9, 2019 @ 05:18:20
  Author: dvzrv
Revision: 359361

archrelease: copy trunk to extra-any

Added:
  scons/repos/extra-any/PKGBUILD
(from rev 359360, scons/trunk/PKGBUILD)
Deleted:
  scons/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-09 05:18:15 UTC (rev 359360)
+++ PKGBUILD2019-08-09 05:18:20 UTC (rev 359361)
@@ -1,77 +0,0 @@
-# Maintainer: David Runge 
-# Contributor: Ray Rashif 
-# Contributor: damir 
-# Contributor: Lukas Sabota 
-# Contributor: Brice Carpentier 
-
-pkgname=scons
-pkgver=3.1.0
-pkgrel=2
-pkgdesc="Extensible Python-based build utility"
-arch=('any')
-url="https://scons.org;
-license=('MIT')
-depends=('python')
-makedepends=('python-setuptools')
-# potential additions include ipkg, rpm
-checkdepends=('clang' 'dmd' 'gdc' 'ldc' 'nasm' 'python-lxml' 'python-pytest'
-'python-virtualenv' 'swig' 'zip')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/${pkgname}/${pkgname}/archive/${pkgver}.tar.gz;)
-sha512sums=('3894d17bca02b9aa5426c70d894b8ecfcf3db2b20254b848209c31d8413a8cd1c2a7b2a87ef9bcfe980beb2815f62cdbe185098a64ae8b3506c41c867463')
-
-prepare() {
-  cd "${pkgname}-${pkgver}"
-  # emulate a release
-  local _copyright='Copyright (c) 2001 - 2019 The SCons Foundation'
-  local _date_of_release="$(grep "RELEASE ${pkgver}" src/CHANGES.txt | cut -d 
',' -f2)"
-  local _date="$(date -d "${_date_of_release}" +'%Y-%m-%d %H:%M:%S')"
-  # copy scripts to correct locations and change their globals
-  for _script in scons{,ign,-time,-configure-cache}; do
-cp -v "src/script/${_script}.py" "src/script/${_script}"
-sed -e "s|__COPYRIGHT__|${_copyright}|g" \
--e "s|__FILE__|/src/script/${_script}|g" \
--e 's/__REVISION__/none/g' \
--e "s|__DATE__|${_date}|g" \
--e 's/__BUILDSYS__/none/g' \
--e 's/__DEVELOPER__/none/g' \
--e "s/__VERSION__/${pkgver}/g" \
--i "src/script/${_script}"
-  done
-  sed -e "s|__COPYRIGHT__|${_copyright}|g" \
-  -e 's|__FILE__|/src/setup.py|g' \
-  -e 's/__REVISION__/none/g' \
-  -e "s|__DATE__|${_date}|g" \
-  -e 's/__BUILDSYS__/none/g' \
-  -e 's/__DEVELOPER__/none/g' \
-  -e "s/__VERSION__/${pkgver}/g" \
-  -i "src/setup.py"
-}
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  # build man page and move to src directory
-  python bootstrap.py doc/SConscript
-  mv -v build/doc/man/* src/
-  cd src
-  python setup.py build
-}
-
-check() {
-  cd "${pkgname}-${pkgver}"
-  python runtest.py -a -t || msg "Tests passing with 'NO RESULT' count as 
failed."
-}
-
-package() {
-  cd "${pkgname}-${pkgver}/src"
-  python setup.py install --prefix=/usr \
-  --skip-build \
-  --optimize=1 \
-  --standard-lib \
-  --install-data=/usr/share \
-  --root="$pkgdir"
-  install -vDm 644 LICENSE.txt -t "${pkgdir}/usr/share/licenses/${pkgname}/"
-  install -vDm 644 {CHANGES,README,RELEASE}.txt \
--t "${pkgdir}/usr/share/doc/${pkgname}/"
-  # removing Windows only script
-  rm -vf "${pkgdir}/usr/bin/scons"*.bat
-}

Copied: scons/repos/extra-any/PKGBUILD (from rev 359360, scons/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-09 05:18:20 UTC (rev 359361)
@@ -0,0 +1,77 @@
+# Maintainer: David Runge 
+# Contributor: Ray Rashif 
+# Contributor: damir 
+# Contributor: Lukas Sabota 
+# Contributor: Brice Carpentier 
+
+pkgname=scons
+pkgver=3.1.1
+pkgrel=1
+pkgdesc="Extensible Python-based build utility"
+arch=('any')
+url="https://scons.org;
+license=('MIT')
+depends=('python')
+makedepends=('python-setuptools')
+# potential additions include ipkg, rpm
+checkdepends=('clang' 'gdc' 'dmd' 'ldc' 'lib32-glibc' 'nasm' 'python-lxml'
+'python-pytest' 'python-virtualenv' 'swig' 'zip')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/${pkgname}/${pkgname}/archive/${pkgver}.tar.gz;)
+sha512sums=('3347a7ec5c6c7b596c0d51bb4a9654b971734736febe3834df0f40e7839e1f0578dafeae838d5ddd9f3319ac3d17b6790666fa1602c30480eba25122355179a5')
+
+prepare() {
+  cd "${pkgname}-${pkgver}"
+  # emulate a release
+  local _copyright='Copyright (c) 2001 - 2019 The SCons Foundation'
+  local _date_of_release="$(grep "RELEASE ${pkgver}" src/CHANGES.txt | cut -d 
',' -f2)"
+  local _date="$(date -d "${_date_of_release}" +'%Y-%m-%d %H:%M:%S')"
+  # copy scripts to correct locations and change their globals
+  for _script in scons{,ign,-time,-configure-cache}; do
+cp -v "src/script/${_script}.py" "src/script/${_script}"
+sed -e "s|__COPYRIGHT__|${_copyright}|g" \
+-e "s|__FILE__|/src/script/${_script}|g" \
+-e 's/__REVISION__/none/g' \

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

2019-08-08 Thread David Runge via arch-commits
Date: Friday, August 9, 2019 @ 05:13:51
  Author: dvzrv
Revision: 498385

upgpkg: padthv1 0.9.9-2

Adding upstream patch to fix broken padthv1.ttl, which otherwise crashes lv2 
plugin hosts on load.

Modified:
  padthv1/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-09 04:02:38 UTC (rev 498384)
+++ PKGBUILD2019-08-09 05:13:51 UTC (rev 498385)
@@ -1,7 +1,7 @@
 # Maintainer: David Runge 
 pkgname=padthv1
 pkgver=0.9.9
-pkgrel=1
+pkgrel=2
 pkgdesc="An old-school polyphonic additive synthesizer"
 arch=('x86_64')
 url="https://padthv1.sourceforge.io/;
@@ -10,11 +10,16 @@
 depends=('desktop-file-utils' 'fftw' 'hicolor-icon-theme' 'jack' 'liblo'
 'qt5-base')
 makedepends=('lv2' 'qt5-tools')
-source=("https://download.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('358d70e8f6dfb622576b7b42bf150ca2c3dfa759b524748247759a8a42b3451e5e777aac2fc8c417e4b9672611d24c9066fd24e737e6ac1ecb9e31d8fe52f1c1')
+source=("https://download.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz;
+
"${pkgname}-0.9.9-ttl.patch::https://github.com/rncbc/padthv1/commit/06ecd92.patch;
+)
+sha512sums=('358d70e8f6dfb622576b7b42bf150ca2c3dfa759b524748247759a8a42b3451e5e777aac2fc8c417e4b9672611d24c9066fd24e737e6ac1ecb9e31d8fe52f1c1'
+
'c29e1b699a0cc90f91cc32bfef29900ae4e489bf5cec7e2eaf804ccc8bbc77d2786c0ab6994701b966282d61972eda3baf84c621b05d1e517f54dec1796b487b')
 
 prepare() {
   cd "${pkgname}-${pkgver}"
+  # TODO: Fix .ttl file
+  patch -Np1 -i "../${pkgname}-0.9.9-ttl.patch"
   autoreconf -vfi
 }
 


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

2019-08-08 Thread David Runge via arch-commits
Date: Friday, August 9, 2019 @ 05:13:57
  Author: dvzrv
Revision: 498386

archrelease: copy trunk to community-x86_64

Added:
  padthv1/repos/community-x86_64/PKGBUILD
(from rev 498385, padthv1/trunk/PKGBUILD)
Deleted:
  padthv1/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-09 05:13:51 UTC (rev 498385)
+++ PKGBUILD2019-08-09 05:13:57 UTC (rev 498386)
@@ -1,34 +0,0 @@
-# Maintainer: David Runge 
-pkgname=padthv1
-pkgver=0.9.9
-pkgrel=1
-pkgdesc="An old-school polyphonic additive synthesizer"
-arch=('x86_64')
-url="https://padthv1.sourceforge.io/;
-license=('GPL2')
-groups=('lv2-plugins' 'pro-audio' 'vee-one')
-depends=('desktop-file-utils' 'fftw' 'hicolor-icon-theme' 'jack' 'liblo'
-'qt5-base')
-makedepends=('lv2' 'qt5-tools')
-source=("https://download.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('358d70e8f6dfb622576b7b42bf150ca2c3dfa759b524748247759a8a42b3451e5e777aac2fc8c417e4b9672611d24c9066fd24e737e6ac1ecb9e31d8fe52f1c1')
-
-prepare() {
-  cd "${pkgname}-${pkgver}"
-  autoreconf -vfi
-}
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  ./configure --prefix=/usr \
-  --libdir=/usr/lib
-  make
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  make DESTDIR="$pkgdir/" install
-  install -t "${pkgdir}/usr/share/doc/${pkgname}" \
--vDm 644 {AUTHORS,ChangeLog,README,TODO}
-}
-# vim:set ts=2 sw=2 et:

Copied: padthv1/repos/community-x86_64/PKGBUILD (from rev 498385, 
padthv1/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-09 05:13:57 UTC (rev 498386)
@@ -0,0 +1,39 @@
+# Maintainer: David Runge 
+pkgname=padthv1
+pkgver=0.9.9
+pkgrel=2
+pkgdesc="An old-school polyphonic additive synthesizer"
+arch=('x86_64')
+url="https://padthv1.sourceforge.io/;
+license=('GPL2')
+groups=('lv2-plugins' 'pro-audio' 'vee-one')
+depends=('desktop-file-utils' 'fftw' 'hicolor-icon-theme' 'jack' 'liblo'
+'qt5-base')
+makedepends=('lv2' 'qt5-tools')
+source=("https://download.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz;
+
"${pkgname}-0.9.9-ttl.patch::https://github.com/rncbc/padthv1/commit/06ecd92.patch;
+)
+sha512sums=('358d70e8f6dfb622576b7b42bf150ca2c3dfa759b524748247759a8a42b3451e5e777aac2fc8c417e4b9672611d24c9066fd24e737e6ac1ecb9e31d8fe52f1c1'
+
'c29e1b699a0cc90f91cc32bfef29900ae4e489bf5cec7e2eaf804ccc8bbc77d2786c0ab6994701b966282d61972eda3baf84c621b05d1e517f54dec1796b487b')
+
+prepare() {
+  cd "${pkgname}-${pkgver}"
+  # TODO: Fix .ttl file
+  patch -Np1 -i "../${pkgname}-0.9.9-ttl.patch"
+  autoreconf -vfi
+}
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  ./configure --prefix=/usr \
+  --libdir=/usr/lib
+  make
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  make DESTDIR="$pkgdir/" install
+  install -t "${pkgdir}/usr/share/doc/${pkgname}" \
+-vDm 644 {AUTHORS,ChangeLog,README,TODO}
+}
+# vim:set ts=2 sw=2 et:


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

2019-08-08 Thread David Runge via arch-commits
Date: Friday, August 9, 2019 @ 04:12:20
  Author: dvzrv
Revision: 359359

upgpkg: scons 3.1.1-1

Adding libnuma.so to provides.

Modified:
  scons/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-09 04:11:12 UTC (rev 359358)
+++ PKGBUILD2019-08-09 04:12:20 UTC (rev 359359)
@@ -5,8 +5,8 @@
 # Contributor: Brice Carpentier 
 
 pkgname=scons
-pkgver=3.1.0
-pkgrel=2
+pkgver=3.1.1
+pkgrel=1
 pkgdesc="Extensible Python-based build utility"
 arch=('any')
 url="https://scons.org;
@@ -14,10 +14,11 @@
 depends=('python')
 makedepends=('python-setuptools')
 # potential additions include ipkg, rpm
-checkdepends=('clang' 'dmd' 'gdc' 'ldc' 'nasm' 'python-lxml' 'python-pytest'
-'python-virtualenv' 'swig' 'zip')
+checkdepends=('clang' 'gdc' 'dmd' 'docbook-xml' 'ldc' 'lib32-glibc' 'nasm'
+'python-beautifulsoup4' 'python-lxml' 'python-pytest' 'python-virtualenv' 
'swig'
+'zip')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/${pkgname}/${pkgname}/archive/${pkgver}.tar.gz;)
-sha512sums=('3894d17bca02b9aa5426c70d894b8ecfcf3db2b20254b848209c31d8413a8cd1c2a7b2a87ef9bcfe980beb2815f62cdbe185098a64ae8b3506c41c867463')
+sha512sums=('3347a7ec5c6c7b596c0d51bb4a9654b971734736febe3834df0f40e7839e1f0578dafeae838d5ddd9f3319ac3d17b6790666fa1602c30480eba25122355179a5')
 
 prepare() {
   cd "${pkgname}-${pkgver}"


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

2019-08-08 Thread David Runge via arch-commits
Date: Friday, August 9, 2019 @ 04:11:12
  Author: dvzrv
Revision: 359358

archrelease: copy trunk to extra-x86_64

Added:
  numactl/repos/extra-x86_64/PKGBUILD
(from rev 359357, numactl/trunk/PKGBUILD)
Deleted:
  numactl/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-08 22:11:30 UTC (rev 359357)
+++ PKGBUILD2019-08-09 04:11:12 UTC (rev 359358)
@@ -1,38 +0,0 @@
-# Maintainer: David Runge 
-# Contributor: Dan McGee 
-# Contributor: Florian Zeitz 
-
-pkgname=numactl
-pkgver=2.0.12
-pkgrel=2
-pkgdesc="Simple NUMA policy support"
-arch=('x86_64')
-url="http://oss.sgi.com/projects/libnuma/;
-license=('LGPL2.1' 'GPL2')
-depends=('perl')
-source=("https://github.com/numactl/numactl/releases/download/v${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('316b10f50e6eee4cee9cf191f19381ec4a61980354eec3f9fe43fef21465bee28a82adeb9c235d4877e82950ccd14c9473b79fd1e2f5a7f598ec2fac230780ff')
-
-prepare(){
-  cd "${pkgname}-${pkgver}"
-  autoreconf -vfi
-}
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  ./configure --prefix=/usr
-  make
-}
-
-check() {
-  cd "${pkgname}-${pkgver}"
-  make -k test || msg "Tests known to fail depending on system load."
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  make DESTDIR="$pkgdir" install
-  # move_pages(2) is provided by man-pages and is more up-to-date there anyway
-  rm -rf "$pkgdir/usr/share/man/man2"
-  install -vDm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
-}

Copied: numactl/repos/extra-x86_64/PKGBUILD (from rev 359357, 
numactl/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-09 04:11:12 UTC (rev 359358)
@@ -0,0 +1,39 @@
+# Maintainer: David Runge 
+# Contributor: Dan McGee 
+# Contributor: Florian Zeitz 
+
+pkgname=numactl
+pkgver=2.0.12
+pkgrel=3
+pkgdesc="Simple NUMA policy support"
+arch=('x86_64')
+url="http://oss.sgi.com/projects/libnuma/;
+license=('LGPL2.1' 'GPL2')
+depends=('perl')
+provides=('libnuma.so')
+source=("https://github.com/numactl/numactl/releases/download/v${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('316b10f50e6eee4cee9cf191f19381ec4a61980354eec3f9fe43fef21465bee28a82adeb9c235d4877e82950ccd14c9473b79fd1e2f5a7f598ec2fac230780ff')
+
+prepare(){
+  cd "${pkgname}-${pkgver}"
+  autoreconf -vfi
+}
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd "${pkgname}-${pkgver}"
+  make -k test || msg "Tests known to fail depending on system load."
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  make DESTDIR="$pkgdir" install
+  # move_pages(2) is provided by man-pages and is more up-to-date there anyway
+  rm -rf "$pkgdir/usr/share/man/man2"
+  install -vDm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+}


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

2019-08-08 Thread David Runge via arch-commits
Date: Friday, August 9, 2019 @ 04:02:38
  Author: dvzrv
Revision: 498384

archrelease: copy trunk to community-x86_64

Added:
  geonkick/repos/community-x86_64/PKGBUILD
(from rev 498383, geonkick/trunk/PKGBUILD)
Deleted:
  geonkick/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-09 04:02:21 UTC (rev 498383)
+++ PKGBUILD2019-08-09 04:02:38 UTC (rev 498384)
@@ -1,56 +0,0 @@
-# Maintainer: David Runge 
-pkgname=geonkick
-pkgver=1.6
-pkgrel=1
-pkgdesc="A free software percussion synthesizer"
-arch=('x86_64')
-url="https://gitlab.com/iurie/geonkick;
-license=('GPL3')
-groups=('pro-audio')
-depends=('cairo' 'desktop-file-utils' 'hicolor-icon-theme' 'shared-mime-info')
-makedepends=('cmake' 'jack' 'lv2' 'sord' 'rapidjson' 'redkite')
-optdepends=('jack: for standalone application')
-source=("https://gitlab.com/iurie/geonkick/-/archive/v${pkgver}/$pkgname-v$pkgver.tar.gz;)
-sha512sums=('72f117a8bc2bfe3ed9d2e9d5b2271248a211b4fd194d792f16952547aa9bcb6793d5cb327da580e08b8287fe54d8c03a5232a63d6fed63d45f9954cd0a142330')
-
-prepare() {
-  mv -v "$pkgname-v$pkgver" "$pkgname-$pkgver"
-  cd "$pkgname-$pkgver"
-  mkdir -v build
-  # fix hardcoded redkite headers location:
-  # https://gitlab.com/quamplex/geonkick/issues/133
-  sed -e 's|/usr/local/include|/usr/include|' -i CMakeLists.txt
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-  (
-cd build
-cmake -DCMAKE_INSTALL_PREFIX=/usr \
-  ..
-make
-  )
-}
-
-# lv2_validate still fails on itself:
-# https://gitlab.com/lv2/lv2/issues/27
-# check() {
-#   cd "$pkgname-$pkgver"
-#   (
-# cd build
-# lv2_validate "../plugin/lv2/${pkgname}.lv2/"*.ttl
-#   )
-# }
-
-package() {
-  cd "$pkgname-$pkgver"
-  (
-cd build
-make DESTDIR="$pkgdir/" install
-  )
-  install -vDm 644 "data/${pkgname}.desktop" \
--t "${pkgdir}/usr/share/applications"
-  install -vDm 644 examples/* \
--t "${pkgdir}/usr/share/doc/${pkgname}/examples"
-  install -vDm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
-}

Copied: geonkick/repos/community-x86_64/PKGBUILD (from rev 498383, 
geonkick/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-09 04:02:38 UTC (rev 498384)
@@ -0,0 +1,56 @@
+# Maintainer: David Runge 
+pkgname=geonkick
+pkgver=1.8
+pkgrel=1
+pkgdesc="A free software percussion synthesizer"
+arch=('x86_64')
+url="https://gitlab.com/iurie/geonkick;
+license=('GPL3')
+groups=('pro-audio')
+depends=('cairo' 'desktop-file-utils' 'hicolor-icon-theme' 'shared-mime-info')
+makedepends=('cmake' 'jack' 'lv2' 'sord' 'rapidjson' 'redkite')
+optdepends=('jack: for standalone application')
+source=("https://gitlab.com/iurie/geonkick/-/archive/v${pkgver}/$pkgname-v$pkgver.tar.gz;)
+sha512sums=('c3d2f10696720b674a9abc35b646dd3ee13e03aa92551265bb5c466b693aee6b9e4ae93aaa9746695d6faf1c4e0a165b431d793138c826f4191bb638d7dd937b')
+
+prepare() {
+  mv -v "$pkgname-v$pkgver" "$pkgname-$pkgver"
+  cd "$pkgname-$pkgver"
+  mkdir -v build
+  # fix hardcoded redkite headers location:
+  # https://gitlab.com/quamplex/geonkick/issues/133
+  sed -e 's|/usr/local/include|/usr/include|' -i CMakeLists.txt
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  (
+cd build
+cmake -DCMAKE_INSTALL_PREFIX=/usr \
+  ..
+make
+  )
+}
+
+# lv2_validate still fails on itself:
+# https://gitlab.com/lv2/lv2/issues/27
+# check() {
+#   cd "$pkgname-$pkgver"
+#   (
+# cd build
+# lv2_validate "../plugin/lv2/${pkgname}.lv2/"*.ttl
+#   )
+# }
+
+package() {
+  cd "$pkgname-$pkgver"
+  (
+cd build
+make DESTDIR="$pkgdir/" install
+  )
+  install -vDm 644 "data/${pkgname}.desktop" \
+-t "${pkgdir}/usr/share/applications"
+  install -vDm 644 examples/* \
+-t "${pkgdir}/usr/share/doc/${pkgname}/examples"
+  install -vDm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+}


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

2019-08-08 Thread David Runge via arch-commits
Date: Friday, August 9, 2019 @ 04:02:21
  Author: dvzrv
Revision: 498383

upgpkg: geonkick 1.8-1

Upgrading to 1.8.

Modified:
  geonkick/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-09 03:42:08 UTC (rev 498382)
+++ PKGBUILD2019-08-09 04:02:21 UTC (rev 498383)
@@ -1,6 +1,6 @@
 # Maintainer: David Runge 
 pkgname=geonkick
-pkgver=1.6
+pkgver=1.8
 pkgrel=1
 pkgdesc="A free software percussion synthesizer"
 arch=('x86_64')
@@ -11,7 +11,7 @@
 makedepends=('cmake' 'jack' 'lv2' 'sord' 'rapidjson' 'redkite')
 optdepends=('jack: for standalone application')
 
source=("https://gitlab.com/iurie/geonkick/-/archive/v${pkgver}/$pkgname-v$pkgver.tar.gz;)
-sha512sums=('72f117a8bc2bfe3ed9d2e9d5b2271248a211b4fd194d792f16952547aa9bcb6793d5cb327da580e08b8287fe54d8c03a5232a63d6fed63d45f9954cd0a142330')
+sha512sums=('c3d2f10696720b674a9abc35b646dd3ee13e03aa92551265bb5c466b693aee6b9e4ae93aaa9746695d6faf1c4e0a165b431d793138c826f4191bb638d7dd937b')
 
 prepare() {
   mv -v "$pkgname-v$pkgver" "$pkgname-$pkgver"


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

2019-08-08 Thread Chih-Hsuan Yen via arch-commits
Date: Friday, August 9, 2019 @ 03:42:08
  Author: yan12125
Revision: 498382

archrelease: copy trunk to community-any

Added:
  python-cfn-lint/repos/community-any/PKGBUILD
(from rev 498381, python-cfn-lint/trunk/PKGBUILD)
Deleted:
  python-cfn-lint/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-09 03:41:52 UTC (rev 498381)
+++ PKGBUILD2019-08-09 03:42:08 UTC (rev 498382)
@@ -1,32 +0,0 @@
-# Maintainer: Chih-Hsuan Yen 
-
-pkgname=python-cfn-lint
-pkgver=0.23.1
-pkgrel=1
-pkgdesc='CloudFormation Linter'
-arch=(any)
-url='https://github.com/aws-cloudformation/cfn-python-lint'
-license=('custom:MIT No Attribution')
-depends=(python python-pyaml python-six python-requests 
python-aws-sam-translator
- python-jsonpatch python-jsonschema python-setuptools)
-checkdepends=(python-pytest python-mock)
-source=("https://github.com/aws-cloudformation/cfn-python-lint/archive/v$pkgver/cfn-python-lint-$pkgver.tar.gz;)
-sha256sums=('d57b869c8b80e9879466accf2f1337a75aaa9514fc97280d1330fa37861d144c')
-
-build() {
-  cd cfn-python-lint-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd cfn-python-lint-$pkgver
-
-  PYTHONPATH=build/lib pytest -v test
-}
-
-package() {
-  cd cfn-python-lint-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-
-  install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname
-}

Copied: python-cfn-lint/repos/community-any/PKGBUILD (from rev 498381, 
python-cfn-lint/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-09 03:42:08 UTC (rev 498382)
@@ -0,0 +1,32 @@
+# Maintainer: Chih-Hsuan Yen 
+
+pkgname=python-cfn-lint
+pkgver=0.23.2
+pkgrel=1
+pkgdesc='CloudFormation Linter'
+arch=(any)
+url='https://github.com/aws-cloudformation/cfn-python-lint'
+license=('custom:MIT No Attribution')
+depends=(python python-pyaml python-six python-requests 
python-aws-sam-translator
+ python-jsonpatch python-jsonschema python-setuptools)
+checkdepends=(python-pytest python-mock)
+source=("https://github.com/aws-cloudformation/cfn-python-lint/archive/v$pkgver/cfn-python-lint-$pkgver.tar.gz;)
+sha256sums=('eb6b6b41444f4255d742d91822fd516ec96192cead4f17bb57370c8fb1c5bcf6')
+
+build() {
+  cd cfn-python-lint-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd cfn-python-lint-$pkgver
+
+  PYTHONPATH=build/lib pytest -v test
+}
+
+package() {
+  cd cfn-python-lint-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+
+  install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname
+}


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

2019-08-08 Thread Chih-Hsuan Yen via arch-commits
Date: Friday, August 9, 2019 @ 03:41:52
  Author: yan12125
Revision: 498381

upgpkg: python-cfn-lint 0.23.2-1

Modified:
  python-cfn-lint/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-09 01:26:07 UTC (rev 498380)
+++ PKGBUILD2019-08-09 03:41:52 UTC (rev 498381)
@@ -1,7 +1,7 @@
 # Maintainer: Chih-Hsuan Yen 
 
 pkgname=python-cfn-lint
-pkgver=0.23.1
+pkgver=0.23.2
 pkgrel=1
 pkgdesc='CloudFormation Linter'
 arch=(any)
@@ -11,7 +11,7 @@
  python-jsonpatch python-jsonschema python-setuptools)
 checkdepends=(python-pytest python-mock)
 
source=("https://github.com/aws-cloudformation/cfn-python-lint/archive/v$pkgver/cfn-python-lint-$pkgver.tar.gz;)
-sha256sums=('d57b869c8b80e9879466accf2f1337a75aaa9514fc97280d1330fa37861d144c')
+sha256sums=('eb6b6b41444f4255d742d91822fd516ec96192cead4f17bb57370c8fb1c5bcf6')
 
 build() {
   cd cfn-python-lint-$pkgver


[arch-commits] Commit in asoundconf/repos/community-any (5 files)

2019-08-08 Thread Alad Wenter via arch-commits
Date: Friday, August 9, 2019 @ 01:26:07
  Author: alad
Revision: 498380

archrelease: copy trunk to community-any

Added:
  asoundconf/repos/community-any/0001-python3-syntax.patch
(from rev 498379, asoundconf/trunk/0001-python3-syntax.patch)
  asoundconf/repos/community-any/0002-python3-spaces.patch
(from rev 498379, asoundconf/trunk/0002-python3-spaces.patch)
  asoundconf/repos/community-any/0003-python3-gobject.patch
(from rev 498379, asoundconf/trunk/0003-python3-gobject.patch)
  asoundconf/repos/community-any/PKGBUILD
(from rev 498379, asoundconf/trunk/PKGBUILD)
Deleted:
  asoundconf/repos/community-any/PKGBUILD

+
 0001-python3-syntax.patch  |  193 ++
 0002-python3-spaces.patch  |  372 +++
 0003-python3-gobject.patch |  125 ++
 PKGBUILD   |   67 ---
 4 files changed, 730 insertions(+), 27 deletions(-)

Copied: asoundconf/repos/community-any/0001-python3-syntax.patch (from rev 
498379, asoundconf/trunk/0001-python3-syntax.patch)
===
--- 0001-python3-syntax.patch   (rev 0)
+++ 0001-python3-syntax.patch   2019-08-09 01:26:07 UTC (rev 498380)
@@ -0,0 +1,193 @@
+# HG changeset patch
+# User Alad Wenter 
+# Date 1565311059 -7200
+#  Fri Aug 09 02:37:39 2019 +0200
+# Node ID e92452338b542c3626f81db079610753f723c9b9
+# Parent  bf25f416f615a43267abecab4c599e86f363438b
+python3: syntax changes
+
+diff -r bf25f416f615 -r e92452338b54 asoundconf
+--- a/asoundconf   Sun May 31 20:26:03 2015 +0200
 b/asoundconf   Fri Aug 09 02:37:39 2019 +0200
+@@ -1,4 +1,4 @@
+-#!/usr/bin/python2
++#!/usr/bin/python3
+ 
+ # (C) 2005 Canonical Ltd.
+ # Author: Martin Pitt 
+@@ -98,7 +98,7 @@
+ open(our_conf_file, 'w').write(our_conf_header)
+ return True
+ except IOError:
+-print >> sys.stderr, 'Error: could not create', our_conf_file
++print('Error: could not create', our_conf_file, file=sys.stderr)
+ return False
+ 
+ 
+@@ -116,7 +116,7 @@
+ open(asoundrc_file, 'w').write('%s\n%s\n<%s>\n\n' % (asoundrc_header, 
inclusion_comment, our_conf_file))
+ return True
+ except IOError:
+-print >> sys.stderr, 'Error: could not create', asoundrc_file
++print('Error: could not create', asoundrc_file, file=sys.stderr)
+ return False
+ 
+ 
+@@ -229,7 +229,7 @@
+ for line in open(our_conf_file):
+ m = setting_re.match(line)
+ if m:
+-print m.group(1).strip()
++print(m.group(1).strip())
+ return True
+ return False
+ except IOError:
+@@ -245,9 +245,9 @@
+   except IOError:
+   return False
+ 
+-  print "Names of available sound cards:"
++print("Names of available sound cards:")
+   for cardname in card_lines:
+-  print cardname.id_
++print(cardname.id_)
+   return True
+   
+ 
+@@ -262,13 +262,13 @@
+   except IOError:
+   return False
+ 
+-  print "Available devices for all sound cards:"
++  print("Available devices for all sound cards:")
+   for dev in dev_lines:
+   card = next(c for c in card_lines if c.card_num == 
dev.card_num) # find card by number
+-  print "hw:%d,%d: %s : %s : %s : %s" % (
++  print('hw:{},{}: {} : {} : {} : {}'.format(
+   dev.card_num, dev.dev_num,
+   card.id_, card.name,
+-  dev.id_, dev.name)
++  dev.id_, dev.name))
+ 
+   return True
+ 
+@@ -294,7 +294,7 @@
+ return False
+ 
+ found = 0
+-for i in xrange(len(lines)):
++for i in range(len(lines)):
+ if setting_re.match(lines[i]):
+ del lines[i]
+ found = 1
+@@ -340,7 +340,7 @@
+ 
+ # if setting is already present, change it
+ found = 0
+-for i in xrange(len(lines)):
++for i in range(len(lines)):
+ if setting_re.match(lines[i]):
+ lines[i] = newsetting
+ found = 1
+@@ -426,10 +426,10 @@
+ ##
+ 
+ if os.geteuid() == 0:
+-print superuser_warn
++print(superuser_warn)
+ 
+ if len(sys.argv) < 2 or sys.argv[1] == '--help' or sys.argv[1] == '-h':
+-print usage
++print(usage)
+ sys.exit(0)
+ 
+ if sys.argv[1] == 'is-active':
+@@ -437,19 +437,19 @@
+ 
+ if sys.argv[1] == 'get':
+ if len(sys.argv) != 3:
+-print usage
++print(usage)
+ sys.exit(1)
+ exit_code(get(sys.argv[2]))
+ 
+ if sys.argv[1] == 'delete':
+ if len(sys.argv) != 3:
+-print usage
++print(usage)
+ sys.exit(1)
+ exit_code(delete(sys.argv[2]))
+ 
+ if sys.argv[1] == 'set':
+ if len(sys.argv) != 4:
+-print usage
++print(usage)
+ sys.exit(1)
+ exit_code(set(sys.argv[2], 

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

2019-08-08 Thread Alad Wenter via arch-commits
Date: Friday, August 9, 2019 @ 01:25:49
  Author: alad
Revision: 498379

upgpkg: asoundconf 1.2-3

Port to python3

Added:
  asoundconf/trunk/0001-python3-syntax.patch
  asoundconf/trunk/0002-python3-spaces.patch
  asoundconf/trunk/0003-python3-gobject.patch
Modified:
  asoundconf/trunk/PKGBUILD

+
 0001-python3-syntax.patch  |  193 ++
 0002-python3-spaces.patch  |  372 +++
 0003-python3-gobject.patch |  125 ++
 PKGBUILD   |   27 ++-
 4 files changed, 710 insertions(+), 7 deletions(-)

Added: 0001-python3-syntax.patch
===
--- 0001-python3-syntax.patch   (rev 0)
+++ 0001-python3-syntax.patch   2019-08-09 01:25:49 UTC (rev 498379)
@@ -0,0 +1,193 @@
+# HG changeset patch
+# User Alad Wenter 
+# Date 1565311059 -7200
+#  Fri Aug 09 02:37:39 2019 +0200
+# Node ID e92452338b542c3626f81db079610753f723c9b9
+# Parent  bf25f416f615a43267abecab4c599e86f363438b
+python3: syntax changes
+
+diff -r bf25f416f615 -r e92452338b54 asoundconf
+--- a/asoundconf   Sun May 31 20:26:03 2015 +0200
 b/asoundconf   Fri Aug 09 02:37:39 2019 +0200
+@@ -1,4 +1,4 @@
+-#!/usr/bin/python2
++#!/usr/bin/python3
+ 
+ # (C) 2005 Canonical Ltd.
+ # Author: Martin Pitt 
+@@ -98,7 +98,7 @@
+ open(our_conf_file, 'w').write(our_conf_header)
+ return True
+ except IOError:
+-print >> sys.stderr, 'Error: could not create', our_conf_file
++print('Error: could not create', our_conf_file, file=sys.stderr)
+ return False
+ 
+ 
+@@ -116,7 +116,7 @@
+ open(asoundrc_file, 'w').write('%s\n%s\n<%s>\n\n' % (asoundrc_header, 
inclusion_comment, our_conf_file))
+ return True
+ except IOError:
+-print >> sys.stderr, 'Error: could not create', asoundrc_file
++print('Error: could not create', asoundrc_file, file=sys.stderr)
+ return False
+ 
+ 
+@@ -229,7 +229,7 @@
+ for line in open(our_conf_file):
+ m = setting_re.match(line)
+ if m:
+-print m.group(1).strip()
++print(m.group(1).strip())
+ return True
+ return False
+ except IOError:
+@@ -245,9 +245,9 @@
+   except IOError:
+   return False
+ 
+-  print "Names of available sound cards:"
++print("Names of available sound cards:")
+   for cardname in card_lines:
+-  print cardname.id_
++print(cardname.id_)
+   return True
+   
+ 
+@@ -262,13 +262,13 @@
+   except IOError:
+   return False
+ 
+-  print "Available devices for all sound cards:"
++  print("Available devices for all sound cards:")
+   for dev in dev_lines:
+   card = next(c for c in card_lines if c.card_num == 
dev.card_num) # find card by number
+-  print "hw:%d,%d: %s : %s : %s : %s" % (
++  print('hw:{},{}: {} : {} : {} : {}'.format(
+   dev.card_num, dev.dev_num,
+   card.id_, card.name,
+-  dev.id_, dev.name)
++  dev.id_, dev.name))
+ 
+   return True
+ 
+@@ -294,7 +294,7 @@
+ return False
+ 
+ found = 0
+-for i in xrange(len(lines)):
++for i in range(len(lines)):
+ if setting_re.match(lines[i]):
+ del lines[i]
+ found = 1
+@@ -340,7 +340,7 @@
+ 
+ # if setting is already present, change it
+ found = 0
+-for i in xrange(len(lines)):
++for i in range(len(lines)):
+ if setting_re.match(lines[i]):
+ lines[i] = newsetting
+ found = 1
+@@ -426,10 +426,10 @@
+ ##
+ 
+ if os.geteuid() == 0:
+-print superuser_warn
++print(superuser_warn)
+ 
+ if len(sys.argv) < 2 or sys.argv[1] == '--help' or sys.argv[1] == '-h':
+-print usage
++print(usage)
+ sys.exit(0)
+ 
+ if sys.argv[1] == 'is-active':
+@@ -437,19 +437,19 @@
+ 
+ if sys.argv[1] == 'get':
+ if len(sys.argv) != 3:
+-print usage
++print(usage)
+ sys.exit(1)
+ exit_code(get(sys.argv[2]))
+ 
+ if sys.argv[1] == 'delete':
+ if len(sys.argv) != 3:
+-print usage
++print(usage)
+ sys.exit(1)
+ exit_code(delete(sys.argv[2]))
+ 
+ if sys.argv[1] == 'set':
+ if len(sys.argv) != 4:
+-print usage
++print(usage)
+ sys.exit(1)
+ exit_code(set(sys.argv[2], sys.argv[3]))
+ 
+@@ -461,7 +461,7 @@
+ 
+ if sys.argv[1] == 'set-default-card':
+ if len(sys.argv) != 3:
+-  print needs_default_card
++  print(needs_default_card)
+   sys.exit(1)
+ exit_code(set_default_card(sys.argv[2]))
+ 
+@@ -476,13 +476,13 @@
+ 
+ if sys.argv[1] == 'set-oss':
+ if len(sys.argv) != 3:
+-  print needs_oss_dev
++  print(needs_oss_dev)
+   sys.exit(1)
+ 

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

2019-08-08 Thread Levente Polyak via arch-commits
Date: Thursday, August 8, 2019 @ 22:10:13
  Author: anthraxx
Revision: 359354

archrelease: copy trunk to staging-x86_64

Added:
  vlc/repos/staging-x86_64/
  vlc/repos/staging-x86_64/PKGBUILD
(from rev 359353, vlc/trunk/PKGBUILD)
  vlc/repos/staging-x86_64/lua53_compat.patch
(from rev 359353, vlc/trunk/lua53_compat.patch)
  vlc/repos/staging-x86_64/update-vlc-plugin-cache.hook
(from rev 359353, vlc/trunk/update-vlc-plugin-cache.hook)

--+
 PKGBUILD |  244 +
 lua53_compat.patch   |   30 +
 update-vlc-plugin-cache.hook |   11 +
 3 files changed, 285 insertions(+)

Copied: vlc/repos/staging-x86_64/PKGBUILD (from rev 359353, vlc/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-08-08 22:10:13 UTC (rev 359354)
@@ -0,0 +1,244 @@
+# Maintainer: Levente Polyak 
+# Contributor: Giovanni Scafora 
+# Contributor: Sarah Hay 
+# Contributor: Martin Sandsmark 
+
+pkgname=vlc
+_vlcver=3.0.7.1
+# optional fixup version including hyphen
+_vlcfixupver=
+pkgver=${_vlcver}${_vlcfixupver//-/.r}
+pkgrel=3
+pkgdesc='Multi-platform MPEG, VCD/DVD, and DivX player'
+url='https://www.videolan.org/vlc/'
+arch=('x86_64')
+license=('LGPL2.1' 'GPL2')
+# TODO: libplacebo 
https://github.com/haasn/libplacebo/commit/65ddefbadc3481a7835baa23701a7a2992ca2768
+depends=('a52dec' 'libdvbpsi' 'libxpm' 'libdca' 'libproxy' 'lua' 'libidn'
+ 'libmatroska' 'taglib' 'libmpcdec' 'ffmpeg' 'faad2' 'libupnp' 'libmad'
+ 'libmpeg2' 'xcb-util-keysyms' 'libtar' 'libxinerama' 'libsecret'
+ 'libarchive' 'qt5-base' 'qt5-x11extras' 'qt5-svg' 'freetype2'
+ 'fribidi' 'harfbuzz' 'fontconfig' 'libxml2' 'gnutls' # 'libplacebo'
+ 'wayland-protocols' 'aribb24')
+makedepends=('gst-plugins-base-libs' 'live-media' 'libnotify' 'libbluray'
+ 'flac' 'libdc1394' 'libavc1394' 'libcaca' 'gtk3'
+ 'librsvg' 'libgme' 'xosd' 'twolame' 'aalib' 'avahi' 'systemd-libs'
+ 'libmtp' 'libupnp' 'libmicrodns' 'libdvdcss' 'smbclient'
+ 'vcdimager' 'libssh2' 'mesa' 'protobuf' 'libnfs' 'mpg123'
+ 'libdvdread' 'libdvdnav' 'libogg' 'libshout' 'libmodplug' 'libvpx'
+ 'libvorbis' 'speex' 'opus' 'libtheora' 'libpng' 'libjpeg-turbo'
+ 'libx265.so' 'libx264.so' 'zvbi' 'libass' 'libkate' 'libtiger'
+ 'sdl_image' 'libpulse' 'alsa-lib' 'jack' 'libsamplerate' 'libsoxr'
+ 'lirc' 'libgoom2' 'projectm' 'chromaprint' 'aom' 'srt' 'dav1d')
+optdepends=('avahi: service discovery using bonjour protocol'
+'aom: AOM AV1 codec'
+'gst-plugins-base-libs: for libgst plugins'
+'dav1d: dav1d AV1 decoder'
+'libdvdcss: decoding encrypted DVDs'
+'libavc1394: devices using the 1394ta AV/C'
+'libdc1394: IEEE 1394 access plugin'
+'kwallet: kwallet keystore'
+'libva-vdpau-driver: vdpau backend nvidia'
+'libva-intel-driver: video backend intel'
+'libbluray: Blu-Ray video input'
+'flac: Free Lossless Audio Codec plugin'
+'twolame: TwoLAME mpeg2 encoder plugin'
+'libgme: Game Music Emu plugin'
+'vcdimager: navigate VCD with libvcdinfo'
+'libmtp: MTP devices discovery'
+'systemd-libs: udev services discovery'
+'smbclient: SMB access plugin'
+'libcdio: audio CD playback'
+'ttf-freefont: subtitle font '
+'ttf-dejavu: subtitle font'
+'libssh2: sftp access'
+'libnfs: NFS access'
+'mpg123: mpg123 codec'
+'protobuf: chromecast streaming'
+'libmicrodns: mDNS services discovery (chromecast etc)'
+'lua-socket: http interface'
+'live-media: RTSP input'
+'libdvdread: DVD input module'
+'libdvdnav: DVD with navigation input module'
+'libogg: Ogg and OggSpots codec'
+'libshout: shoutcast/icecast output plugin'
+'libmodplug: MOD output plugin'
+'libvpx: VP8 and VP9 codec'
+'libvorbis: Vorbis decoder/encoder'
+'speex: Speex codec'
+'opus: opus codec'
+'libtheora: theora codec'
+'libpng: PNG support'
+'libjpeg-turbo: JPEG support'
+'librsvg: SVG plugin'
+'x264: H264 encoding'
+'x265: HEVC/H.265 encoder'
+'zvbi: VBI/Teletext decoding'
+'libass: Subtitle support'
+'libkate: Kate codec'
+'libtiger: Tiger rendering for Kate streams'
+'sdl_image: SDL image support'
+'srt: SRT input/output plugin'
+'aalib: ASCII art video output'
+'libcaca: colored ASCII art video output'

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

2019-08-08 Thread Levente Polyak via arch-commits
Date: Thursday, August 8, 2019 @ 22:10:09
  Author: anthraxx
Revision: 359353

upgpkg: vlc 3.0.7.1-3 (dav1d rebuild)

Modified:
  vlc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-08 21:49:21 UTC (rev 359352)
+++ PKGBUILD2019-08-08 22:10:09 UTC (rev 359353)
@@ -8,7 +8,7 @@
 # optional fixup version including hyphen
 _vlcfixupver=
 pkgver=${_vlcver}${_vlcfixupver//-/.r}
-pkgrel=2
+pkgrel=3
 pkgdesc='Multi-platform MPEG, VCD/DVD, and DivX player'
 url='https://www.videolan.org/vlc/'
 arch=('x86_64')


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

2019-08-08 Thread Levente Polyak via arch-commits
Date: Thursday, August 8, 2019 @ 21:49:10
  Author: anthraxx
Revision: 359351

upgpkg: ffmpeg 1:4.2-4 (re-enable dav1d for rebuild cycle)

Modified:
  ffmpeg/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-08 21:38:14 UTC (rev 359350)
+++ PKGBUILD2019-08-08 21:49:10 UTC (rev 359351)
@@ -6,7 +6,7 @@
 
 pkgname=ffmpeg
 pkgver=4.2
-pkgrel=3
+pkgrel=4
 epoch=1
 pkgdesc='Complete solution to record, convert and stream audio and video'
 arch=(x86_64)
@@ -26,7 +26,7 @@
   libass.so
   libavc1394
   libbluray.so
-  #libdav1d.so
+  libdav1d.so
   libdrm
   libfreetype.so
   libiec61883
@@ -99,7 +99,7 @@
 --enable-libaom \
 --enable-libass \
 --enable-libbluray \
---disable-libdav1d \
+--enable-libdav1d \
 --enable-libdrm \
 --enable-libfreetype \
 --enable-libfribidi \


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

2019-08-08 Thread Levente Polyak via arch-commits
Date: Thursday, August 8, 2019 @ 21:49:21
  Author: anthraxx
Revision: 359352

archrelease: copy trunk to staging-x86_64

Added:
  ffmpeg/repos/staging-x86_64/PKGBUILD
(from rev 359351, ffmpeg/trunk/PKGBUILD)
Deleted:
  ffmpeg/repos/staging-x86_64/PKGBUILD

--+
 PKGBUILD |  292 ++---
 1 file changed, 146 insertions(+), 146 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-08 21:49:10 UTC (rev 359351)
+++ PKGBUILD2019-08-08 21:49:21 UTC (rev 359352)
@@ -1,146 +0,0 @@
-# Maintainer: Maxime Gauduin 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Ionut Biru 
-# Contributor: Tom Newsom 
-# Contributor: Paul Mattal 
-
-pkgname=ffmpeg
-pkgver=4.2
-pkgrel=3
-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=n${pkgver})
-sha256sums=('SKIP')
-
-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 \
---disable-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/staging-x86_64/PKGBUILD (from rev 359351, 
ffmpeg/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-08 21:49:21 UTC (rev 359352)
@@ -0,0 +1,146 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Ionut Biru 
+# Contributor: Tom Newsom 
+# Contributor: Paul Mattal 
+
+pkgname=ffmpeg
+pkgver=4.2
+pkgrel=4
+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=n${pkgver})
+sha256sums=('SKIP')
+
+build() {
+  cd ffmpeg
+
+  ./configure \
+--prefix='/usr' \
+--disable-debug \
+--disable-static \
+

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

2019-08-08 Thread Levente Polyak via arch-commits
Date: Thursday, August 8, 2019 @ 21:38:14
  Author: anthraxx
Revision: 359350

archrelease: copy trunk to staging-x86_64

Added:
  ffmpeg/repos/staging-x86_64/
  ffmpeg/repos/staging-x86_64/PKGBUILD
(from rev 359349, ffmpeg/trunk/PKGBUILD)

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

Copied: ffmpeg/repos/staging-x86_64/PKGBUILD (from rev 359349, 
ffmpeg/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-08-08 21:38:14 UTC (rev 359350)
@@ -0,0 +1,146 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Ionut Biru 
+# Contributor: Tom Newsom 
+# Contributor: Paul Mattal 
+
+pkgname=ffmpeg
+pkgver=4.2
+pkgrel=3
+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=n${pkgver})
+sha256sums=('SKIP')
+
+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 \
+--disable-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:


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

2019-08-08 Thread Levente Polyak via arch-commits
Date: Thursday, August 8, 2019 @ 21:38:05
  Author: anthraxx
Revision: 359349

upgpkg: ffmpeg 1:4.2-3 (deactivate dav1d for rebuild cycle)

Modified:
  ffmpeg/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-08 21:01:47 UTC (rev 359348)
+++ PKGBUILD2019-08-08 21:38:05 UTC (rev 359349)
@@ -6,7 +6,7 @@
 
 pkgname=ffmpeg
 pkgver=4.2
-pkgrel=2
+pkgrel=3
 epoch=1
 pkgdesc='Complete solution to record, convert and stream audio and video'
 arch=(x86_64)
@@ -26,7 +26,7 @@
   libass.so
   libavc1394
   libbluray.so
-  libdav1d.so
+  #libdav1d.so
   libdrm
   libfreetype.so
   libiec61883
@@ -99,7 +99,7 @@
 --enable-libaom \
 --enable-libass \
 --enable-libbluray \
---enable-libdav1d \
+--disable-libdav1d \
 --enable-libdrm \
 --enable-libfreetype \
 --enable-libfribidi \


[arch-commits] Commit in dav1d/repos (staging-x86_64 staging-x86_64/PKGBUILD)

2019-08-08 Thread Levente Polyak via arch-commits
Date: Thursday, August 8, 2019 @ 21:01:47
  Author: anthraxx
Revision: 359348

archrelease: copy trunk to staging-x86_64

Added:
  dav1d/repos/staging-x86_64/
  dav1d/repos/staging-x86_64/PKGBUILD
(from rev 359347, dav1d/trunk/PKGBUILD)

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

Copied: dav1d/repos/staging-x86_64/PKGBUILD (from rev 359347, 
dav1d/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-08-08 21:01:47 UTC (rev 359348)
@@ -0,0 +1,36 @@
+# Maintainer: Levente Polyak 
+
+pkgname=dav1d
+pkgver=0.4.0
+pkgrel=1
+pkgdesc='AV1 cross-platform decoder focused on speed and correctness'
+url='https://code.videolan.org/videolan/dav1d/'
+arch=('x86_64')
+license=('BSD')
+depends=('glibc' 'sdl2' 'libplacebo' 'libplacebo.so' 'vulkan-icd-loader')
+makedepends=('meson' 'ninja' 'nasm' 'doxygen' 'vulkan-headers')
+provides=('libdav1d.so')
+source=(https://downloads.videolan.org/pub/videolan/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.xz{,.asc})
+sha512sums=('8ed44b3d747f01b87b34f86fada824dfb7f86c16168af641fe754c767af5714e9fe212b6eea2bc11b5b041460184c78f755e10d4947e46bc70d95e1bd750f79d'
+'SKIP')
+validpgpkeys=('65F7C6B4206BD057A7EB73787180713BE58D1ADC') # VideoLAN Release 
Signing Key
+
+build() {
+  cd ${pkgbase}-${pkgver}
+  arch-meson build
+  ninja -C build
+}
+
+check() {
+  cd ${pkgbase}-${pkgver}/build
+  meson test
+}
+
+package() {
+  cd ${pkgbase}-${pkgver}
+  DESTDIR="${pkgdir}" ninja -C build install
+  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm 644 COPYING -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:


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

2019-08-08 Thread Levente Polyak via arch-commits
Date: Thursday, August 8, 2019 @ 21:01:43
  Author: anthraxx
Revision: 359347

upgpkg: dav1d 0.4.0-1

Modified:
  dav1d/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-08 20:51:57 UTC (rev 359346)
+++ PKGBUILD2019-08-08 21:01:43 UTC (rev 359347)
@@ -1,17 +1,17 @@
 # Maintainer: Levente Polyak 
 
 pkgname=dav1d
-pkgver=0.3.0
+pkgver=0.4.0
 pkgrel=1
 pkgdesc='AV1 cross-platform decoder focused on speed and correctness'
 url='https://code.videolan.org/videolan/dav1d/'
 arch=('x86_64')
 license=('BSD')
-depends=('glibc')
-makedepends=('meson' 'ninja' 'nasm' 'doxygen')
+depends=('glibc' 'sdl2' 'libplacebo' 'libplacebo.so' 'vulkan-icd-loader')
+makedepends=('meson' 'ninja' 'nasm' 'doxygen' 'vulkan-headers')
 provides=('libdav1d.so')
 
source=(https://downloads.videolan.org/pub/videolan/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.xz{,.asc})
-sha512sums=('a1e5bc5d9aa6df5451346b65e8be634588003e24bd8f5f3c14687354c0783287aaf9c68059ef9edcfbb9c8865afaef15ac7bce72780113423f997b710a2eaa2f'
+sha512sums=('8ed44b3d747f01b87b34f86fada824dfb7f86c16168af641fe754c767af5714e9fe212b6eea2bc11b5b041460184c78f755e10d4947e46bc70d95e1bd750f79d'
 'SKIP')
 validpgpkeys=('65F7C6B4206BD057A7EB73787180713BE58D1ADC') # VideoLAN Release 
Signing Key
 


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

2019-08-08 Thread Levente Polyak via arch-commits
Date: Thursday, August 8, 2019 @ 20:59:16
  Author: anthraxx
Revision: 498377

upgpkg: pegtl 2.8.1-1

Modified:
  pegtl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-08 20:56:15 UTC (rev 498376)
+++ PKGBUILD2019-08-08 20:59:16 UTC (rev 498377)
@@ -1,8 +1,8 @@
 # Maintainer: Levente Polyak 
 
 pkgname=pegtl
-_gitcommit=3132d6418f176e77c7f173515b9c2d64e3af9e1f
-pkgver=2.8.0
+_gitcommit=7aff80da2ca4fcb0b47f32ba684ff2e1cd48c579
+pkgver=2.8.1
 pkgrel=1
 pkgdesc='Parsing Expression Grammar Template Library'
 url='https://github.com/taocpp/PEGTL'
@@ -15,7 +15,7 @@
 
 pkgver() {
   cd ${pkgname}
-  git describe --tags --always|sed 's/^v//;s/-/+/g'
+  git describe --tags --always| sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
 }
 
 prepare() {
@@ -27,7 +27,7 @@
   cd ${pkgname}/build
   cmake .. \
 -DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_BUILD_TYPE=None \
 -DPEGTL_INSTALL_DOC_DIR=share/doc/${pkgname} \
 -DPEGTL_INSTALL_CMAKE_DIR=lib/cmake/${pkgname} \
 -DPEGTL_BUILD_EXAMPLES=OFF \


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

2019-08-08 Thread Levente Polyak via arch-commits
Date: Thursday, August 8, 2019 @ 20:59:21
  Author: anthraxx
Revision: 498378

archrelease: copy trunk to community-any

Added:
  pegtl/repos/community-any/PKGBUILD
(from rev 498377, pegtl/trunk/PKGBUILD)
Deleted:
  pegtl/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-08 20:59:16 UTC (rev 498377)
+++ PKGBUILD2019-08-08 20:59:21 UTC (rev 498378)
@@ -1,50 +0,0 @@
-# Maintainer: Levente Polyak 
-
-pkgname=pegtl
-_gitcommit=3132d6418f176e77c7f173515b9c2d64e3af9e1f
-pkgver=2.8.0
-pkgrel=1
-pkgdesc='Parsing Expression Grammar Template Library'
-url='https://github.com/taocpp/PEGTL'
-arch=('any')
-license=('MIT')
-makedepends=('git' 'cmake')
-source=(${pkgname}::"git+https://github.com/taocpp/PEGTL#commit=${_gitcommit}?signed;)
-sha512sums=('SKIP')
-validpgpkeys=('3AC06334B62566C11A5912FB014C496DEC39EB21') # Daniel Frey 

-
-pkgver() {
-  cd ${pkgname}
-  git describe --tags --always|sed 's/^v//;s/-/+/g'
-}
-
-prepare() {
-  cd ${pkgname}
-  mkdir -p build
-}
-
-build() {
-  cd ${pkgname}/build
-  cmake .. \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DPEGTL_INSTALL_DOC_DIR=share/doc/${pkgname} \
--DPEGTL_INSTALL_CMAKE_DIR=lib/cmake/${pkgname} \
--DPEGTL_BUILD_EXAMPLES=OFF \
--DPEGTL_BUILD_TESTS=ON
-  make
-}
-
-check() {
-  cd ${pkgname}/build
-  ctest
-}
-
-package() {
-  cd ${pkgname}
-  make -C build DESTDIR="${pkgdir}" install
-  install -Dpm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
-  install -Dpm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
-}
-
-# vim: ts=2 sw=2 et:

Copied: pegtl/repos/community-any/PKGBUILD (from rev 498377, 
pegtl/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-08 20:59:21 UTC (rev 498378)
@@ -0,0 +1,50 @@
+# Maintainer: Levente Polyak 
+
+pkgname=pegtl
+_gitcommit=7aff80da2ca4fcb0b47f32ba684ff2e1cd48c579
+pkgver=2.8.1
+pkgrel=1
+pkgdesc='Parsing Expression Grammar Template Library'
+url='https://github.com/taocpp/PEGTL'
+arch=('any')
+license=('MIT')
+makedepends=('git' 'cmake')
+source=(${pkgname}::"git+https://github.com/taocpp/PEGTL#commit=${_gitcommit}?signed;)
+sha512sums=('SKIP')
+validpgpkeys=('3AC06334B62566C11A5912FB014C496DEC39EB21') # Daniel Frey 

+
+pkgver() {
+  cd ${pkgname}
+  git describe --tags --always| sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
+}
+
+prepare() {
+  cd ${pkgname}
+  mkdir -p build
+}
+
+build() {
+  cd ${pkgname}/build
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=None \
+-DPEGTL_INSTALL_DOC_DIR=share/doc/${pkgname} \
+-DPEGTL_INSTALL_CMAKE_DIR=lib/cmake/${pkgname} \
+-DPEGTL_BUILD_EXAMPLES=OFF \
+-DPEGTL_BUILD_TESTS=ON
+  make
+}
+
+check() {
+  cd ${pkgname}/build
+  ctest
+}
+
+package() {
+  cd ${pkgname}
+  make -C build DESTDIR="${pkgdir}" install
+  install -Dpm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dpm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:


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

2019-08-08 Thread Levente Polyak via arch-commits
Date: Thursday, August 8, 2019 @ 20:56:10
  Author: anthraxx
Revision: 498375

upgpkg: packeth 2.1-1

Modified:
  packeth/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-08 20:06:26 UTC (rev 498374)
+++ PKGBUILD2019-08-08 20:56:10 UTC (rev 498375)
@@ -1,25 +1,32 @@
-# Maintainer: Timothy Redaelli 
+# Maintainer: Levente Polyak 
+# Contributor: Timothy Redaelli 
 # Contributor: Rudy Matela 
 
 pkgname=packeth
-pkgver=1.9
+pkgver=2.1
 pkgrel=1
-pkgdesc="A Linux GUI packet generator tool for ethernet."
-depends=(gtk2)
-source=("https://downloads.sourceforge.net/packeth/packETH-$pkgver.tar.bz2;)
-url="http://packeth.sourceforge.net/;
-sha512sums=('f322130a5981412f109555c52f9ae0b1c92e4f2a4c9a0ec2a62abeef368ade1ef08d5152724a6351fd626ef1dee4b5b98a61b250efd2391e4d61976d4ae4c50d')
+pkgdesc='Linux GUI packet generator tool for ethernet'
+url='http://packeth.sourceforge.net/'
 arch=('x86_64')
 license=('GPL')
+depends=('gtk2')
+source=(https://github.com/jemcek/packETH/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha512sums=('55be4a2eb517c1d040664ea1a16d59dab20b06edbbd073cbf709deb4dfcec8d8eb12b88dfbd578f9bdb0ca614036ac4bbb00be6f865b774da2aa62ce8d3d767e')
 
+prepare() {
+  cd packETH-${pkgver}
+  autoreconf -fiv
+}
+
 build() {
-  cd "$srcdir"/packETH-$pkgver
-
+  cd packETH-${pkgver}
   ./configure --prefix=/usr
   make
 }
 
 package() {
-  cd "$srcdir"/packETH-$pkgver
-  make install DESTDIR="$pkgdir/"
+  cd packETH-${pkgver}
+  make DESTDIR="${pkgdir}" install
 }
+
+# vim: ts=2 sw=2 et:


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

2019-08-08 Thread Levente Polyak via arch-commits
Date: Thursday, August 8, 2019 @ 20:56:15
  Author: anthraxx
Revision: 498376

archrelease: copy trunk to community-x86_64

Added:
  packeth/repos/community-x86_64/PKGBUILD
(from rev 498375, packeth/trunk/PKGBUILD)
Deleted:
  packeth/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-08 20:56:10 UTC (rev 498375)
+++ PKGBUILD2019-08-08 20:56:15 UTC (rev 498376)
@@ -1,25 +0,0 @@
-# Maintainer: Timothy Redaelli 
-# Contributor: Rudy Matela 
-
-pkgname=packeth
-pkgver=1.9
-pkgrel=1
-pkgdesc="A Linux GUI packet generator tool for ethernet."
-depends=(gtk2)
-source=("http://downloads.sourceforge.net/packeth/packETH-$pkgver.tar.bz2;)
-url="http://packeth.sourceforge.net/;
-sha512sums=('f322130a5981412f109555c52f9ae0b1c92e4f2a4c9a0ec2a62abeef368ade1ef08d5152724a6351fd626ef1dee4b5b98a61b250efd2391e4d61976d4ae4c50d')
-arch=('x86_64')
-license=('GPL')
-
-build() {
-  cd "$srcdir"/packETH-$pkgver
-
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "$srcdir"/packETH-$pkgver
-  make install DESTDIR="$pkgdir/"
-}

Copied: packeth/repos/community-x86_64/PKGBUILD (from rev 498375, 
packeth/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-08 20:56:15 UTC (rev 498376)
@@ -0,0 +1,32 @@
+# Maintainer: Levente Polyak 
+# Contributor: Timothy Redaelli 
+# Contributor: Rudy Matela 
+
+pkgname=packeth
+pkgver=2.1
+pkgrel=1
+pkgdesc='Linux GUI packet generator tool for ethernet'
+url='http://packeth.sourceforge.net/'
+arch=('x86_64')
+license=('GPL')
+depends=('gtk2')
+source=(https://github.com/jemcek/packETH/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha512sums=('55be4a2eb517c1d040664ea1a16d59dab20b06edbbd073cbf709deb4dfcec8d8eb12b88dfbd578f9bdb0ca614036ac4bbb00be6f865b774da2aa62ce8d3d767e')
+
+prepare() {
+  cd packETH-${pkgver}
+  autoreconf -fiv
+}
+
+build() {
+  cd packETH-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd packETH-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim: ts=2 sw=2 et:


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

2019-08-08 Thread David Runge via arch-commits
Date: Thursday, August 8, 2019 @ 20:51:57
  Author: dvzrv
Revision: 359346

archrelease: copy trunk to community-x86_64

Added:
  numactl/repos/community-x86_64/
  numactl/repos/community-x86_64/PKGBUILD
(from rev 359345, numactl/trunk/PKGBUILD)

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

Copied: numactl/repos/community-x86_64/PKGBUILD (from rev 359345, 
numactl/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2019-08-08 20:51:57 UTC (rev 359346)
@@ -0,0 +1,39 @@
+# Maintainer: David Runge 
+# Contributor: Dan McGee 
+# Contributor: Florian Zeitz 
+
+pkgname=numactl
+pkgver=2.0.12
+pkgrel=3
+pkgdesc="Simple NUMA policy support"
+arch=('x86_64')
+url="http://oss.sgi.com/projects/libnuma/;
+license=('LGPL2.1' 'GPL2')
+depends=('perl')
+provides=('libnuma.so')
+source=("https://github.com/numactl/numactl/releases/download/v${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('316b10f50e6eee4cee9cf191f19381ec4a61980354eec3f9fe43fef21465bee28a82adeb9c235d4877e82950ccd14c9473b79fd1e2f5a7f598ec2fac230780ff')
+
+prepare(){
+  cd "${pkgname}-${pkgver}"
+  autoreconf -vfi
+}
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd "${pkgname}-${pkgver}"
+  make -k test || msg "Tests known to fail depending on system load."
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  make DESTDIR="$pkgdir" install
+  # move_pages(2) is provided by man-pages and is more up-to-date there anyway
+  rm -rf "$pkgdir/usr/share/man/man2"
+  install -vDm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+}


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

2019-08-08 Thread David Runge via arch-commits
Date: Thursday, August 8, 2019 @ 20:51:53
  Author: dvzrv
Revision: 359345

upgpkg: numactl 2.0.12-3

Adding libnuma.so to provides.

Modified:
  numactl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-08 20:47:00 UTC (rev 359344)
+++ PKGBUILD2019-08-08 20:51:53 UTC (rev 359345)
@@ -4,12 +4,13 @@
 
 pkgname=numactl
 pkgver=2.0.12
-pkgrel=2
+pkgrel=3
 pkgdesc="Simple NUMA policy support"
 arch=('x86_64')
 url="http://oss.sgi.com/projects/libnuma/;
 license=('LGPL2.1' 'GPL2')
 depends=('perl')
+provides=('libnuma.so')
 
source=("https://github.com/numactl/numactl/releases/download/v${pkgver}/${pkgname}-${pkgver}.tar.gz;)
 
sha512sums=('316b10f50e6eee4cee9cf191f19381ec4a61980354eec3f9fe43fef21465bee28a82adeb9c235d4877e82950ccd14c9473b79fd1e2f5a7f598ec2fac230780ff')
 


[arch-commits] Commit in postgresql/trunk (PKGBUILD postgresql.service)

2019-08-08 Thread Levente Polyak via arch-commits
Date: Thursday, August 8, 2019 @ 20:46:50
  Author: anthraxx
Revision: 359343

upgpkg: postgresql 11.5-1

Modified:
  postgresql/trunk/PKGBUILD
  postgresql/trunk/postgresql.service

+
 PKGBUILD   |   10 +-
 postgresql.service |8 
 2 files changed, 13 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-08-08 20:46:17 UTC (rev 359342)
+++ PKGBUILD2019-08-08 20:46:50 UTC (rev 359343)
@@ -3,7 +3,7 @@
 
 pkgbase=postgresql
 pkgname=('postgresql-libs' 'postgresql-docs' 'postgresql')
-pkgver=11.4
+pkgver=11.5
 _majorver=${pkgver%.*}
 pkgrel=1
 pkgdesc='Sophisticated object-relational DBMS'
@@ -21,21 +21,21 @@
 postgresql-check-db-dir
 postgresql.sysusers
 postgresql.tmpfiles)
-sha256sums=('02802ddffd1590805beddd1e464dd28a46a41a5f1e1df04bab4f46663195cc8b'
+sha256sums=('7fdf23060bfc715144cbf2696cf05b0fa284ad3eb21f0c378591c6bca99ad180'
 '8538619cb8bea51078b605ad64fe22abd6050373c7ae3ad6595178da52f6a7d9'
 '5f73b54ca6206bd2c469c507830261ebd167baca074698d8889d769c33f98a31'
 '57dfd072fd7ef0018c6b0a798367aac1abb5979060ff3f9df22d1048bb71c0d5'
 '6abb842764bbed74ea4a269d24f1e73d1c0b1d8ecd6e2e6fb5fb10590298605e'
-'ad025a5fb623b1a1e9dff0cc62cc63f66244bb27d81370a6251aa29e8574be94'
+'25fb140b90345828dc01a4f286345757e700a47178bab03d217a7a5a79105b57'
 '2bbd8c4e51b70223d274fef3a167af096f44af3d3c41ae505ad11c606674e7c5'
 '7fa8f0ef3f9d40abd4749cc327c2f52478cb6dfb6e2405bd0279c95e9ff99f12'
 'ff7c84f78f73b87ade8e2d91d2958808be5a9af79c8b13430238ae953c7fe853')
-sha512sums=('159fb84134e05ddc58e40a879ca52ed4d58ced7bcd1e7310d59bda84f9055339a31a92cfaab2c063a88685f7417b9a828534394bf9a2477fc33d1fb6cd26186b'
+sha512sums=('537148079dc6c33cfb9bf9722171e524707b42ef01369deb968d0d6e8fa9b7f16f6ce67139d9dc45fb7385defbf56aa2c0affe5ee9d76e996f31e47486192141'
 
'031efe12d18ce386989062327cdbbe611c5ef1f94e4e1bead502304cb3e2d410af533d3c7f1109d24f9da9708214fe32f9a10ba373a3ca8d507bdb521fbb75f7'
 
'38302242b30c01c7981574ed28d9cbd9dc73bf6b56ba3a032afb5d0885ae83e5aa72ce578bf2422214dfa6c46f09d0bdd7cccaeb3c25d58754eb1a34f8bf5615'
 
'1e6183ab0eb812b3ef687ac2c26ce78f7cb30540f606d20023669ac00ba04075487fb72e4dc89cc05dab0269ff6aca98fc1167cc75669c225b88b592482fbf67'
 
'9ab4da01337ffbab8faec0e220aaa2a642dbfeccf7232ef2645bdc2177a953f17ee3cc14a4d8f8ebd064e1dae8b3dba6029adbffb8afaabea383963213941ba8'
-
'acd60166ff513b16778705e824944945cd0a98abc519fa5f0232252e0e9c85460c6f8b85459d9692d1f3df1caaaf8909c3e7f785be99c2d3fb98a10b2641a795'
+
'ee0c010be07e8b5396cfd89c1d077b7c5573753d0210ea4e330e314c2759e25fbee9071e663f871855d65cc8ac75162af9e793dd10892f50f515e7a89cc8d6a0'
 
'73af1cd31638791f81aa2623d51188364107a57b55e4deba6691cd99e96ae5ea0dd94b25a0e95d9e21ac64f36f71919a05cd31233c754bde025215a5a02e055c'
 
'36f7a5d38370fdc4d4267fd5a8a8330f152a1077bf0f065b89d4a7b8112ccd42be2c46c863791b77de02013f28275a42219f4236e7cb837c3f8cfd5fcc7d3373'
 
'27094b07fd57a077da9cb31e1970998766e7aff5bd7a2c4545fe3a5a96e84ecc6e5c541f418b2f395c06404fa29a17d9f88db0f4efdd392a02ac029662697619')

Modified: postgresql.service
===
--- postgresql.service  2019-08-08 20:46:17 UTC (rev 359342)
+++ postgresql.service  2019-08-08 20:46:50 UTC (rev 359343)
@@ -30,6 +30,14 @@
 ProtectHome=true
 ProtectSystem=full
 NoNewPrivileges=true
+ProtectControlGroups=true
+ProtectKernelModules=true
+ProtectKernelTunables=true
+PrivateDevices=true
+RestrictAddressFamilies=AF_UNIX AF_INET AF_INET6
+RestrictNamespaces=true
+RestrictRealtime=true
+SystemCallArchitectures=native
 
 [Install]
 WantedBy=multi-user.target


[arch-commits] Commit in postgresql/repos (10 files)

2019-08-08 Thread Levente Polyak via arch-commits
Date: Thursday, August 8, 2019 @ 20:47:00
  Author: anthraxx
Revision: 359344

archrelease: copy trunk to testing-x86_64

Added:
  postgresql/repos/testing-x86_64/
  postgresql/repos/testing-x86_64/PKGBUILD
(from rev 359343, postgresql/trunk/PKGBUILD)
  postgresql/repos/testing-x86_64/postgresql-check-db-dir
(from rev 359343, postgresql/trunk/postgresql-check-db-dir)
  postgresql/repos/testing-x86_64/postgresql-perl-rpath.patch
(from rev 359343, postgresql/trunk/postgresql-perl-rpath.patch)
  postgresql/repos/testing-x86_64/postgresql-run-socket.patch
(from rev 359343, postgresql/trunk/postgresql-run-socket.patch)
  postgresql/repos/testing-x86_64/postgresql.logrotate
(from rev 359343, postgresql/trunk/postgresql.logrotate)
  postgresql/repos/testing-x86_64/postgresql.pam
(from rev 359343, postgresql/trunk/postgresql.pam)
  postgresql/repos/testing-x86_64/postgresql.service
(from rev 359343, postgresql/trunk/postgresql.service)
  postgresql/repos/testing-x86_64/postgresql.sysusers
(from rev 359343, postgresql/trunk/postgresql.sysusers)
  postgresql/repos/testing-x86_64/postgresql.tmpfiles
(from rev 359343, postgresql/trunk/postgresql.tmpfiles)

-+
 PKGBUILD|  219 ++
 postgresql-check-db-dir |   49 +
 postgresql-perl-rpath.patch |   13 ++
 postgresql-run-socket.patch |   12 ++
 postgresql.logrotate|4 
 postgresql.pam  |3 
 postgresql.service  |   43 
 postgresql.sysusers |1 
 postgresql.tmpfiles |1 
 9 files changed, 345 insertions(+)

Copied: postgresql/repos/testing-x86_64/PKGBUILD (from rev 359343, 
postgresql/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-08-08 20:47:00 UTC (rev 359344)
@@ -0,0 +1,219 @@
+# Maintainer: Levente Polyak 
+# Maintainer: Dan McGee 
+
+pkgbase=postgresql
+pkgname=('postgresql-libs' 'postgresql-docs' 'postgresql')
+pkgver=11.5
+_majorver=${pkgver%.*}
+pkgrel=1
+pkgdesc='Sophisticated object-relational DBMS'
+url='https://www.postgresql.org/'
+arch=('x86_64')
+license=('custom:PostgreSQL')
+makedepends=('krb5' 'libxml2' 'python' 'python2' 'perl' 'tcl>=8.6.0' 
'openssl>=1.0.0'
+ 'pam' 'zlib' 'icu' 'systemd' 'libldap' 'llvm' 'clang')
+source=(https://ftp.postgresql.org/pub/source/v${pkgver}/postgresql-${pkgver}.tar.bz2
+postgresql-run-socket.patch
+postgresql-perl-rpath.patch
+postgresql.pam
+postgresql.logrotate
+postgresql.service
+postgresql-check-db-dir
+postgresql.sysusers
+postgresql.tmpfiles)
+sha256sums=('7fdf23060bfc715144cbf2696cf05b0fa284ad3eb21f0c378591c6bca99ad180'
+'8538619cb8bea51078b605ad64fe22abd6050373c7ae3ad6595178da52f6a7d9'
+'5f73b54ca6206bd2c469c507830261ebd167baca074698d8889d769c33f98a31'
+'57dfd072fd7ef0018c6b0a798367aac1abb5979060ff3f9df22d1048bb71c0d5'
+'6abb842764bbed74ea4a269d24f1e73d1c0b1d8ecd6e2e6fb5fb10590298605e'
+'25fb140b90345828dc01a4f286345757e700a47178bab03d217a7a5a79105b57'
+'2bbd8c4e51b70223d274fef3a167af096f44af3d3c41ae505ad11c606674e7c5'
+'7fa8f0ef3f9d40abd4749cc327c2f52478cb6dfb6e2405bd0279c95e9ff99f12'
+'ff7c84f78f73b87ade8e2d91d2958808be5a9af79c8b13430238ae953c7fe853')
+sha512sums=('537148079dc6c33cfb9bf9722171e524707b42ef01369deb968d0d6e8fa9b7f16f6ce67139d9dc45fb7385defbf56aa2c0affe5ee9d76e996f31e47486192141'
+
'031efe12d18ce386989062327cdbbe611c5ef1f94e4e1bead502304cb3e2d410af533d3c7f1109d24f9da9708214fe32f9a10ba373a3ca8d507bdb521fbb75f7'
+
'38302242b30c01c7981574ed28d9cbd9dc73bf6b56ba3a032afb5d0885ae83e5aa72ce578bf2422214dfa6c46f09d0bdd7cccaeb3c25d58754eb1a34f8bf5615'
+
'1e6183ab0eb812b3ef687ac2c26ce78f7cb30540f606d20023669ac00ba04075487fb72e4dc89cc05dab0269ff6aca98fc1167cc75669c225b88b592482fbf67'
+
'9ab4da01337ffbab8faec0e220aaa2a642dbfeccf7232ef2645bdc2177a953f17ee3cc14a4d8f8ebd064e1dae8b3dba6029adbffb8afaabea383963213941ba8'
+
'ee0c010be07e8b5396cfd89c1d077b7c5573753d0210ea4e330e314c2759e25fbee9071e663f871855d65cc8ac75162af9e793dd10892f50f515e7a89cc8d6a0'
+
'73af1cd31638791f81aa2623d51188364107a57b55e4deba6691cd99e96ae5ea0dd94b25a0e95d9e21ac64f36f71919a05cd31233c754bde025215a5a02e055c'
+
'36f7a5d38370fdc4d4267fd5a8a8330f152a1077bf0f065b89d4a7b8112ccd42be2c46c863791b77de02013f28275a42219f4236e7cb837c3f8cfd5fcc7d3373'
+
'27094b07fd57a077da9cb31e1970998766e7aff5bd7a2c4545fe3a5a96e84ecc6e5c541f418b2f395c06404fa29a17d9f88db0f4efdd392a02ac029662697619')
+
+prepare() {
+  cd postgresql-${pkgver}
+  patch -p1 < ../postgresql-run-socket.patch
+  patch -p1 < ../postgresql-perl-rpath.patch
+}
+
+build() {
+  cd postgresql-${pkgver}
+  

[arch-commits] Commit in postgresql-old-upgrade/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2019-08-08 Thread Levente Polyak via arch-commits
Date: Thursday, August 8, 2019 @ 20:46:17
  Author: anthraxx
Revision: 359342

archrelease: copy trunk to extra-x86_64

Added:
  postgresql-old-upgrade/repos/extra-x86_64/PKGBUILD
(from rev 359341, postgresql-old-upgrade/trunk/PKGBUILD)
Deleted:
  postgresql-old-upgrade/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-08 20:46:12 UTC (rev 359341)
+++ PKGBUILD2019-08-08 20:46:17 UTC (rev 359342)
@@ -1,76 +0,0 @@
-# Maintainer: Levente Polyak 
-# Maintainer: Dan McGee 
-
-pkgname=postgresql-old-upgrade
-pkgver=10.9
-_majorver=${pkgver%.*}
-pkgrel=1
-pkgdesc='PostgreSQL build for migrating between major versions with pg_upgrade'
-url='https://www.postgresql.org/'
-arch=('x86_64')
-license=('custom:PostgreSQL')
-depends=("postgresql-libs>=${_majorver}" 'libxml2' 'openssl>=1.0.0' 'pam' 
'zlib' 'icu' 'systemd-libs' 'libldap')
-makedepends=('krb5' 'python' 'python2' 'perl' 'tcl>=8.6.0' 'systemd')
-source=(https://ftp.postgresql.org/pub/source/v${pkgver}/postgresql-${pkgver}.tar.bz2)
-sha256sums=('958b317fb007e94f3bef7e2a6641875db8f7f9d73db9f283324f3d6e8f5b0f54')
-sha512sums=('4e2f30a0fd262f2e3ce5fc836425be635326600cd6cd4e117c57f59ea7ab2e9ea463a8d357fe7adb8c0dd0094e43d08efc2a137f8f9975715a5908e35920f98e')
-
-build() {
-  cd postgresql-${pkgver}
-  local options=(
---prefix=/opt/pgsql-${_majorver}
---with-gssapi
---with-libxml
---with-openssl
---with-perl
---with-python
---with-tcl
---with-pam
---without-readline
---with-system-tzdata=/usr/share/zoneinfo
---with-uuid=e2fs
---with-icu
---with-systemd
---with-ldap
---disable-nls
---enable-thread-safety
-  )
-
-  # only build plpython3 for now
-  ./configure ${options[@]} \
-PYTHON=/usr/bin/python
-  make -C src/pl/plpython all
-  make -C contrib/hstore_plpython all
-  make -C contrib/ltree_plpython all
-
-  # save plpython3 build and Makefile.global
-  cp -a src/pl/plpython{,3}
-  cp -a contrib/hstore_plpython{,3}
-  cp -a contrib/ltree_plpython{,3}
-  cp -a src/Makefile.global{,.python3}
-  make distclean
-
-  # regular build with everything
-  ./configure ${options[@]} \
-PYTHON=/usr/bin/python2
-  make -C src all
-  make -C contrib all
-}
-
-package() {
-  cd postgresql-${pkgver}
-  make -C src DESTDIR="${pkgdir}" install
-  make -C contrib DESTDIR="${pkgdir}" install
-
-  # install plpython3
-  mv src/Makefile.global src/Makefile.global.save
-  cp src/Makefile.global.python3 src/Makefile.global
-  touch -r src/Makefile.global.save src/Makefile.global
-  make -C src/pl/plpython3 DESTDIR="${pkgdir}" install
-  make -C contrib/hstore_plpython3 DESTDIR="${pkgdir}" install
-  make -C contrib/ltree_plpython3 DESTDIR="${pkgdir}" install
-
-  install -Dm 644 COPYRIGHT -t "${pkgdir}/usr/share/licenses/${pkgname}"
-}
-
-# vim: ts=2 sw=2 et:

Copied: postgresql-old-upgrade/repos/extra-x86_64/PKGBUILD (from rev 359341, 
postgresql-old-upgrade/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-08 20:46:17 UTC (rev 359342)
@@ -0,0 +1,76 @@
+# Maintainer: Levente Polyak 
+# Maintainer: Dan McGee 
+
+pkgname=postgresql-old-upgrade
+pkgver=10.10
+_majorver=${pkgver%.*}
+pkgrel=1
+pkgdesc='PostgreSQL build for migrating between major versions with pg_upgrade'
+url='https://www.postgresql.org/'
+arch=('x86_64')
+license=('custom:PostgreSQL')
+depends=("postgresql-libs>=${_majorver}" 'libxml2' 'openssl>=1.0.0' 'pam' 
'zlib' 'icu' 'systemd-libs' 'libldap')
+makedepends=('krb5' 'python' 'python2' 'perl' 'tcl>=8.6.0' 'systemd')
+source=(https://ftp.postgresql.org/pub/source/v${pkgver}/postgresql-${pkgver}.tar.bz2)
+sha256sums=('ad4f9b8575f98ed6091bf9bb2cb16f0e52795a5f66546c1f499ca5c69b21f253')
+sha512sums=('60cafe4b27a194949aff482dcce4fa096a9916f37205868437a32afb8964df71934b619a0b891fe85eb7c7f9b11775cffbbedca589e78feb6c4184eb224b48bc')
+
+build() {
+  cd postgresql-${pkgver}
+  local options=(
+--prefix=/opt/pgsql-${_majorver}
+--with-gssapi
+--with-libxml
+--with-openssl
+--with-perl
+--with-python
+--with-tcl
+--with-pam
+--without-readline
+--with-system-tzdata=/usr/share/zoneinfo
+--with-uuid=e2fs
+--with-icu
+--with-systemd
+--with-ldap
+--disable-nls
+--enable-thread-safety
+  )
+
+  # only build plpython3 for now
+  ./configure ${options[@]} \
+PYTHON=/usr/bin/python
+  make -C src/pl/plpython all
+  make -C contrib/hstore_plpython all
+  make -C contrib/ltree_plpython all
+
+  # save plpython3 build and Makefile.global
+  cp -a src/pl/plpython{,3}
+  cp -a contrib/hstore_plpython{,3}
+  cp -a contrib/ltree_plpython{,3}
+  cp -a src/Makefile.global{,.python3}
+  make distclean
+
+  # regular build 

[arch-commits] Commit in postgresql-old-upgrade/trunk (PKGBUILD)

2019-08-08 Thread Levente Polyak via arch-commits
Date: Thursday, August 8, 2019 @ 20:46:12
  Author: anthraxx
Revision: 359341

upgpkg: postgresql-old-upgrade 10.10-1

Modified:
  postgresql-old-upgrade/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-08 20:43:24 UTC (rev 359340)
+++ PKGBUILD2019-08-08 20:46:12 UTC (rev 359341)
@@ -2,7 +2,7 @@
 # Maintainer: Dan McGee 
 
 pkgname=postgresql-old-upgrade
-pkgver=10.9
+pkgver=10.10
 _majorver=${pkgver%.*}
 pkgrel=1
 pkgdesc='PostgreSQL build for migrating between major versions with pg_upgrade'
@@ -12,8 +12,8 @@
 depends=("postgresql-libs>=${_majorver}" 'libxml2' 'openssl>=1.0.0' 'pam' 
'zlib' 'icu' 'systemd-libs' 'libldap')
 makedepends=('krb5' 'python' 'python2' 'perl' 'tcl>=8.6.0' 'systemd')
 
source=(https://ftp.postgresql.org/pub/source/v${pkgver}/postgresql-${pkgver}.tar.bz2)
-sha256sums=('958b317fb007e94f3bef7e2a6641875db8f7f9d73db9f283324f3d6e8f5b0f54')
-sha512sums=('4e2f30a0fd262f2e3ce5fc836425be635326600cd6cd4e117c57f59ea7ab2e9ea463a8d357fe7adb8c0dd0094e43d08efc2a137f8f9975715a5908e35920f98e')
+sha256sums=('ad4f9b8575f98ed6091bf9bb2cb16f0e52795a5f66546c1f499ca5c69b21f253')
+sha512sums=('60cafe4b27a194949aff482dcce4fa096a9916f37205868437a32afb8964df71934b619a0b891fe85eb7c7f9b11775cffbbedca589e78feb6c4184eb224b48bc')
 
 build() {
   cd postgresql-${pkgver}


[arch-commits] Commit in portmidi/repos/extra-x86_64 (5 files)

2019-08-08 Thread David Runge via arch-commits
Date: Thursday, August 8, 2019 @ 20:43:24
  Author: dvzrv
Revision: 359340

archrelease: copy trunk to extra-x86_64

Added:
  portmidi/repos/extra-x86_64/PKGBUILD
(from rev 359339, portmidi/trunk/PKGBUILD)
  portmidi/repos/extra-x86_64/pmdefaults.sh
(from rev 359339, portmidi/trunk/pmdefaults.sh)
  portmidi/repos/extra-x86_64/portmidi-217-build-fix.patch
(from rev 359339, portmidi/trunk/portmidi-217-build-fix.patch)
Deleted:
  portmidi/repos/extra-x86_64/PKGBUILD
  portmidi/repos/extra-x86_64/portmidi-217-build-fix.patch

--+
 PKGBUILD |  107 +
 pmdefaults.sh|5 +
 portmidi-217-build-fix.patch |   58 +++---
 3 files changed, 91 insertions(+), 79 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-08 20:43:15 UTC (rev 359339)
+++ PKGBUILD2019-08-08 20:43:24 UTC (rev 359340)
@@ -1,50 +0,0 @@
-# Maintainer: David Runge 
-# Contributor: Eric Bélanger 
-
-pkgname=portmidi
-pkgver=217
-pkgrel=7
-pkgdesc="Platform independent library for real-time MIDI input/output"
-arch=('x86_64')
-url="http://portmedia.sourceforge.net/;
-license=('MIT')
-depends=('alsa-lib')
-makedepends=('cmake' 'jdk8-openjdk')
-optdepends=('java-runtime: for using pmdefaults')
-source=("https://downloads.sourceforge.net/project/portmedia/${pkgname}/${pkgver}/${pkgname}-src-${pkgver}.zip;
-'portmidi-217-build-fix.patch')
-sha512sums=('d08d4d57429d26d292b5fe6868b7c7a32f2f1d2428f6695cd403a697e2d91629bd4380242ab2720e8f21c895bb75cb56b709fb663a20e8e623120e50bfc5d90b'
-
'643d249d53780519c9773c88974a34127ba64982ed75d2d0f55e99faf3bb7c8c97ba185412e70794319c8253de659b8658de95a8eb6fbfa3648c1be384bafbc1')
-
-prepare() {
-  mv -v "${pkgname}" "${pkgname}-${pkgver}"
-  cd "${pkgname}-${pkgver}"
-  mkdir -vp pm_java/Release
-  # fix hardcoding of output directories
-  sed -e "s|/usr/local|/usr|g" \
-  -i */CMakeLists.txt pm_python/setup.py
-  # build fix for "pm_java/CMakeLists.txt" (FS#27118)
-  patch -Np1 -i "../${pkgname}-217-build-fix.patch"
-}
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  cmake -DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_ARCHIVE_OUTPUT_DIRECTORY=Release \
--DCMAKE_LIBRARY_OUTPUT_DIRECTORY=Release \
--DCMAKE_RUNTIME_OUTPUT_DIRECTORY=Release \
-.
-  make VERBOSE=1
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-
-  # Fix missing symlink for libporttime.so (FS#21528).
-  ln -s libportmidi.so "${pkgdir}/usr/lib/libporttime.so"
-
-  install -vDm 644 license.txt -t "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -vDm 644 {CHANGELOG,README}.txt \
--t "${pkgdir}/usr/share/doc/${pkgname}"
-}

Copied: portmidi/repos/extra-x86_64/PKGBUILD (from rev 359339, 
portmidi/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-08 20:43:24 UTC (rev 359340)
@@ -0,0 +1,57 @@
+# Maintainer: David Runge 
+# Contributor: Eric Bélanger 
+
+pkgname=portmidi
+pkgver=217
+pkgrel=8
+pkgdesc="Platform independent library for real-time MIDI input/output"
+arch=('x86_64')
+url="http://portmedia.sourceforge.net/;
+license=('MIT')
+depends=('alsa-lib')
+makedepends=('cmake' 'java-environment=12')
+optdepends=('java-runtime=12: for using pmdefaults'
+'sh: for using pmdefaults')
+provides=('libpmjni.so' 'libportmidi.so' 'libporttime.so')
+source=("https://downloads.sourceforge.net/project/portmedia/${pkgname}/${pkgver}/${pkgname}-src-${pkgver}.zip;
+'pmdefaults.sh'
+'portmidi-217-build-fix.patch')
+sha512sums=('d08d4d57429d26d292b5fe6868b7c7a32f2f1d2428f6695cd403a697e2d91629bd4380242ab2720e8f21c895bb75cb56b709fb663a20e8e623120e50bfc5d90b'
+
'83e2f93b084d2068980947f399b44efd02efd6d466b604b1f9ea3c0ba8e1abd90108efff3648992d63c0f710f816933c03953a4a2930050c8627cce14cbc7ad3'
+
'643d249d53780519c9773c88974a34127ba64982ed75d2d0f55e99faf3bb7c8c97ba185412e70794319c8253de659b8658de95a8eb6fbfa3648c1be384bafbc1')
+
+prepare() {
+  mv -v "${pkgname}" "${pkgname}-${pkgver}"
+  cd "${pkgname}-${pkgver}"
+  mkdir -vp pm_java/Release
+  # fix hardcoding of output directories
+  sed -e "s|/usr/local|/usr|g" \
+  -i */CMakeLists.txt pm_python/setup.py
+  # build fix for "pm_java/CMakeLists.txt" (FS#27118)
+  patch -Np1 -i "../${pkgname}-217-build-fix.patch"
+}
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  cmake -DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_ARCHIVE_OUTPUT_DIRECTORY=Release \
+-DCMAKE_LIBRARY_OUTPUT_DIRECTORY=Release \
+-DCMAKE_RUNTIME_OUTPUT_DIRECTORY=Release \
+.
+  make VERBOSE=1
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+
+  # install custom launcher script, so java-runtime can be pinned
+  install -vDm 755 ../pmdefaults.sh 

[arch-commits] Commit in portmidi/trunk (PKGBUILD pmdefaults.sh)

2019-08-08 Thread David Runge via arch-commits
Date: Thursday, August 8, 2019 @ 20:43:15
  Author: dvzrv
Revision: 359339

upgpkg: portmidi 217-8

Adding libpmjni.so, libportmidi.so and libporttime.so to provides. Pinning 
java-runtime with custom launcher script (portmidi doesn't specify its language 
level properly and therefore will only work with the same version of jre/jdk. 
Adding sh to optdepends for pmdefaults.

Added:
  portmidi/trunk/pmdefaults.sh
Modified:
  portmidi/trunk/PKGBUILD

---+
 PKGBUILD  |   13 ++---
 pmdefaults.sh |5 +
 2 files changed, 15 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-08-08 20:09:20 UTC (rev 359338)
+++ PKGBUILD2019-08-08 20:43:15 UTC (rev 359339)
@@ -3,17 +3,21 @@
 
 pkgname=portmidi
 pkgver=217
-pkgrel=7
+pkgrel=8
 pkgdesc="Platform independent library for real-time MIDI input/output"
 arch=('x86_64')
 url="http://portmedia.sourceforge.net/;
 license=('MIT')
 depends=('alsa-lib')
-makedepends=('cmake' 'jdk8-openjdk')
-optdepends=('java-runtime: for using pmdefaults')
+makedepends=('cmake' 'java-environment=12')
+optdepends=('java-runtime=12: for using pmdefaults'
+'sh: for using pmdefaults')
+provides=('libpmjni.so' 'libportmidi.so' 'libporttime.so')
 
source=("https://downloads.sourceforge.net/project/portmedia/${pkgname}/${pkgver}/${pkgname}-src-${pkgver}.zip;
+'pmdefaults.sh'
 'portmidi-217-build-fix.patch')
 
sha512sums=('d08d4d57429d26d292b5fe6868b7c7a32f2f1d2428f6695cd403a697e2d91629bd4380242ab2720e8f21c895bb75cb56b709fb663a20e8e623120e50bfc5d90b'
+
'83e2f93b084d2068980947f399b44efd02efd6d466b604b1f9ea3c0ba8e1abd90108efff3648992d63c0f710f816933c03953a4a2930050c8627cce14cbc7ad3'
 
'643d249d53780519c9773c88974a34127ba64982ed75d2d0f55e99faf3bb7c8c97ba185412e70794319c8253de659b8658de95a8eb6fbfa3648c1be384bafbc1')
 
 prepare() {
@@ -41,6 +45,9 @@
   cd "${pkgname}-${pkgver}"
   make DESTDIR="${pkgdir}" install
 
+  # install custom launcher script, so java-runtime can be pinned
+  install -vDm 755 ../pmdefaults.sh "${pkgdir}/usr/bin/pmdefaults"
+
   # Fix missing symlink for libporttime.so (FS#21528).
   ln -s libportmidi.so "${pkgdir}/usr/lib/libporttime.so"
 

Added: pmdefaults.sh
===
--- pmdefaults.sh   (rev 0)
+++ pmdefaults.sh   2019-08-08 20:43:15 UTC (rev 359339)
@@ -0,0 +1,5 @@
+#!/bin/sh
+
+export PATH="/usr/lib/jvm/java-12-openjdk/bin/:${PATH}"
+
+java -jar /usr/share/java/pmdefaults.jar > /dev/null


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

2019-08-08 Thread David Runge via arch-commits
Date: Thursday, August 8, 2019 @ 18:32:07
  Author: dvzrv
Revision: 359333

archrelease: copy trunk to extra-x86_64

Added:
  portaudio/repos/extra-x86_64/PKGBUILD
(from rev 359332, portaudio/trunk/PKGBUILD)
Deleted:
  portaudio/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-08 18:25:08 UTC (rev 359332)
+++ PKGBUILD2019-08-08 18:32:07 UTC (rev 359333)
@@ -1,38 +0,0 @@
-# Maintainer: David Runge 
-# Contributor: Lukas Fleischer 
-# Contributor: Eric Belanger 
-# Contributor: Darwin Bautista 
-# Contributor: Bob Finch 
-
-pkgname=portaudio
-# versioning is very bizarre:
-# https://app.assembla.com/wiki/show/portaudio/ReleaseNotes
-_version=190600_20161030
-pkgver=19.6.0
-pkgrel=5
-epoch=1
-pkgdesc='A free, cross-platform, open source, audio I/O library.'
-arch=('x86_64')
-url="http://www.portaudio.com/;
-license=('MIT')
-depends=('gcc-libs' 'jack')
-source=("${pkgname}-${pkgver}.tgz::http://www.portaudio.com/archives/pa_stable_v${_version}.tgz;)
-sha512sums=('7ec692cbd8c23878b029fad9d9fd63a021f57e60c4921f602995a2fca070c29f17a280c7f2da5966c4aad29d28434538452f4c822eacf3a60af59a6dc8e9704c')
-
-prepare() {
-  mv -v "${pkgname}" "${pkgname}-${pkgver}"
-}
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  ./configure --prefix=/usr \
-  --enable-cxx
-  make
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-  install -vDm 644 LICENSE.txt -t "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -vDm 644 README.txt -t "${pkgdir}/usr/share/doc/${pkgname}"
-}

Copied: portaudio/repos/extra-x86_64/PKGBUILD (from rev 359332, 
portaudio/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-08 18:32:07 UTC (rev 359333)
@@ -0,0 +1,39 @@
+# Maintainer: David Runge 
+# Contributor: Lukas Fleischer 
+# Contributor: Eric Belanger 
+# Contributor: Darwin Bautista 
+# Contributor: Bob Finch 
+
+pkgname=portaudio
+# versioning is very bizarre:
+# https://app.assembla.com/wiki/show/portaudio/ReleaseNotes
+_version=190600_20161030
+pkgver=19.6.0
+pkgrel=6
+epoch=1
+pkgdesc='A free, cross-platform, open source, audio I/O library.'
+arch=('x86_64')
+url="http://www.portaudio.com/;
+license=('MIT')
+depends=('gcc-libs' 'jack')
+provides=('libportaudio.so' 'libportaudiocpp.so')
+source=("${pkgname}-${pkgver}.tgz::http://www.portaudio.com/archives/pa_stable_v${_version}.tgz;)
+sha512sums=('7ec692cbd8c23878b029fad9d9fd63a021f57e60c4921f602995a2fca070c29f17a280c7f2da5966c4aad29d28434538452f4c822eacf3a60af59a6dc8e9704c')
+
+prepare() {
+  mv -v "${pkgname}" "${pkgname}-${pkgver}"
+}
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  ./configure --prefix=/usr \
+  --enable-cxx
+  make
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+  install -vDm 644 LICENSE.txt -t "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -vDm 644 README.txt -t "${pkgdir}/usr/share/doc/${pkgname}"
+}


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

2019-08-08 Thread David Runge via arch-commits
Date: Thursday, August 8, 2019 @ 18:25:08
  Author: dvzrv
Revision: 359332

upgpkg: portaudio 1:19.6.0-6

Adding libportaudio.so and libportaudiocpp.so to provides.

Modified:
  portaudio/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-08 17:56:29 UTC (rev 359331)
+++ PKGBUILD2019-08-08 18:25:08 UTC (rev 359332)
@@ -9,7 +9,7 @@
 # https://app.assembla.com/wiki/show/portaudio/ReleaseNotes
 _version=190600_20161030
 pkgver=19.6.0
-pkgrel=5
+pkgrel=6
 epoch=1
 pkgdesc='A free, cross-platform, open source, audio I/O library.'
 arch=('x86_64')
@@ -16,6 +16,7 @@
 url="http://www.portaudio.com/;
 license=('MIT')
 depends=('gcc-libs' 'jack')
+provides=('libportaudio.so' 'libportaudiocpp.so')
 
source=("${pkgname}-${pkgver}.tgz::http://www.portaudio.com/archives/pa_stable_v${_version}.tgz;)
 
sha512sums=('7ec692cbd8c23878b029fad9d9fd63a021f57e60c4921f602995a2fca070c29f17a280c7f2da5966c4aad29d28434538452f4c822eacf3a60af59a6dc8e9704c')
 


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

2019-08-08 Thread David Runge via arch-commits
Date: Thursday, August 8, 2019 @ 17:56:24
  Author: dvzrv
Revision: 359330

upgpkg: libgit2-glib 0.28.0.1-2

Adding libgit2-glib-1.0.so to provides.

Modified:
  libgit2-glib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-08 17:15:34 UTC (rev 359329)
+++ PKGBUILD2019-08-08 17:56:24 UTC (rev 359330)
@@ -4,7 +4,7 @@
 
 pkgname=libgit2-glib
 pkgver=0.28.0.1
-pkgrel=1
+pkgrel=2
 pkgdesc="GLib wrapper for libgit2"
 url="https://wiki.gnome.org/Projects/Libgit2-glib;
 license=('LGPL2.1')
@@ -11,6 +11,7 @@
 arch=('x86_64')
 depends=('glib2' 'libgit2')
 makedepends=('gobject-introspection' 'gtk-doc' 'meson' 'python-gobject' 'vala')
+provides=('libgit2-glib-1.0.so')
 
source=("https://gitlab.gnome.org/gnome/${pkgname}/-/archive/v${pkgver}/${pkgname}-v${pkgver}.tar.gz;)
 sha256sums=('f180c3030b33930133b2dd66aecf64ec354433c603323da810ff84f542243350')
 


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

2019-08-08 Thread David Runge via arch-commits
Date: Thursday, August 8, 2019 @ 17:56:29
  Author: dvzrv
Revision: 359331

archrelease: copy trunk to extra-x86_64

Added:
  libgit2-glib/repos/extra-x86_64/PKGBUILD
(from rev 359330, libgit2-glib/trunk/PKGBUILD)
Deleted:
  libgit2-glib/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-08 17:56:24 UTC (rev 359330)
+++ PKGBUILD2019-08-08 17:56:29 UTC (rev 359331)
@@ -1,43 +0,0 @@
-# Maintainer: Lukas Fleischer 
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: David Runge 
-
-pkgname=libgit2-glib
-pkgver=0.28.0.1
-pkgrel=1
-pkgdesc="GLib wrapper for libgit2"
-url="https://wiki.gnome.org/Projects/Libgit2-glib;
-license=('LGPL2.1')
-arch=('x86_64')
-depends=('glib2' 'libgit2')
-makedepends=('gobject-introspection' 'gtk-doc' 'meson' 'python-gobject' 'vala')
-source=("https://gitlab.gnome.org/gnome/${pkgname}/-/archive/v${pkgver}/${pkgname}-v${pkgver}.tar.gz;)
-sha256sums=('f180c3030b33930133b2dd66aecf64ec354433c603323da810ff84f542243350')
-
-prepare() {
-  mv -v "${pkgname}-v${pkgver}" "${pkgname}-${pkgver}"
-}
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  arch-meson build -D gtk_doc=true
-  ninja -C build
-}
-
-check() {
-  cd "${pkgname}-${pkgver}"
-  meson test -C build
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  local py_ver=$(python -c 'import sys; print(".".join(map(str, 
sys.version_info[:2])))')
-  DESTDIR="$pkgdir" meson install -C build
-  # strip $pkgdir from embedded paths:
-  python -m compileall -d "/usr/lib/python${py_ver}" \
-"${pkgdir}/usr/lib/python${py_ver}"
-  python -O -m compileall -d "/usr/lib/python${py_ver}" \
-"${pkgdir}/usr/lib/python${py_ver}"
-  install -vDm 644 {AUTHORS,ChangeLog,NEWS,README} \
--t "${pkgdir}/usr/share/doc/${pkgname}"
-}

Copied: libgit2-glib/repos/extra-x86_64/PKGBUILD (from rev 359330, 
libgit2-glib/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-08 17:56:29 UTC (rev 359331)
@@ -0,0 +1,44 @@
+# Maintainer: Lukas Fleischer 
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: David Runge 
+
+pkgname=libgit2-glib
+pkgver=0.28.0.1
+pkgrel=2
+pkgdesc="GLib wrapper for libgit2"
+url="https://wiki.gnome.org/Projects/Libgit2-glib;
+license=('LGPL2.1')
+arch=('x86_64')
+depends=('glib2' 'libgit2')
+makedepends=('gobject-introspection' 'gtk-doc' 'meson' 'python-gobject' 'vala')
+provides=('libgit2-glib-1.0.so')
+source=("https://gitlab.gnome.org/gnome/${pkgname}/-/archive/v${pkgver}/${pkgname}-v${pkgver}.tar.gz;)
+sha256sums=('f180c3030b33930133b2dd66aecf64ec354433c603323da810ff84f542243350')
+
+prepare() {
+  mv -v "${pkgname}-v${pkgver}" "${pkgname}-${pkgver}"
+}
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  arch-meson build -D gtk_doc=true
+  ninja -C build
+}
+
+check() {
+  cd "${pkgname}-${pkgver}"
+  meson test -C build
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  local py_ver=$(python -c 'import sys; print(".".join(map(str, 
sys.version_info[:2])))')
+  DESTDIR="$pkgdir" meson install -C build
+  # strip $pkgdir from embedded paths:
+  python -m compileall -d "/usr/lib/python${py_ver}" \
+"${pkgdir}/usr/lib/python${py_ver}"
+  python -O -m compileall -d "/usr/lib/python${py_ver}" \
+"${pkgdir}/usr/lib/python${py_ver}"
+  install -vDm 644 {AUTHORS,ChangeLog,NEWS,README} \
+-t "${pkgdir}/usr/share/doc/${pkgname}"
+}


[arch-commits] Commit in firefox-tree-style-tab/repos/community-any (2 files)

2019-08-08 Thread Daniel M. Capella via arch-commits
Date: Thursday, August 8, 2019 @ 17:29:17
  Author: polyzen
Revision: 498370

archrelease: copy trunk to community-any

Added:
  firefox-tree-style-tab/repos/community-any/PKGBUILD
(from rev 498369, firefox-tree-style-tab/trunk/PKGBUILD)
Deleted:
  firefox-tree-style-tab/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-08 17:28:59 UTC (rev 498369)
+++ PKGBUILD2019-08-08 17:29:17 UTC (rev 498370)
@@ -1,20 +0,0 @@
-# Maintainer: Daniel M. Capella 
-# Contributor: Jérémie Detrey 
-
-pkgname=firefox-tree-style-tab
-pkgver=3.1.5
-pkgrel=1
-pkgdesc='Firefox extension to show tabs like a tree'
-arch=('any')
-license=('MPL' 'MPL2')
-groups=('firefox-addons')
-url=https://piro.sakura.ne.jp/xul/_treestyletab.html.en
-source=("https://addons.cdn.mozilla.net/user-media/addons/5890/tree_style_tab-$pkgver-fx.xpi;)
-noextract=("${source##*/}")
-sha256sums=('772f169dc0424e55c63db2d1d5635c47c7cbdd18dbc6c077d2bfea9799e147f5')
-
-package() {
-  install -Dm644 "${source##*/}" 
"$pkgdir"/usr/lib/firefox/browser/extensions/treestyle...@piro.sakura.ne.jp.xpi
-}
-
-# vim:set ts=2 sw=2 et:

Copied: firefox-tree-style-tab/repos/community-any/PKGBUILD (from rev 498369, 
firefox-tree-style-tab/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-08 17:29:17 UTC (rev 498370)
@@ -0,0 +1,20 @@
+# Maintainer: Daniel M. Capella 
+# Contributor: Jérémie Detrey 
+
+pkgname=firefox-tree-style-tab
+pkgver=3.1.6
+pkgrel=1
+pkgdesc='Firefox extension to show tabs like a tree'
+arch=('any')
+license=('MPL' 'MPL2')
+groups=('firefox-addons')
+url=https://piro.sakura.ne.jp/xul/_treestyletab.html.en
+source=("https://addons.cdn.mozilla.net/user-media/addons/5890/tree_style_tab-$pkgver-fx.xpi;)
+noextract=("${source##*/}")
+sha256sums=('9bc3400aa57798c048c5258ede4f8531c966336c1f6de919dadce038646a0f35')
+
+package() {
+  install -Dm644 "${source##*/}" 
"$pkgdir"/usr/lib/firefox/browser/extensions/treestyle...@piro.sakura.ne.jp.xpi
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in firefox-tree-style-tab/trunk (PKGBUILD)

2019-08-08 Thread Daniel M. Capella via arch-commits
Date: Thursday, August 8, 2019 @ 17:28:59
  Author: polyzen
Revision: 498369

upgpkg: firefox-tree-style-tab 3.1.6-1

Modified:
  firefox-tree-style-tab/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-08 16:57:09 UTC (rev 498368)
+++ PKGBUILD2019-08-08 17:28:59 UTC (rev 498369)
@@ -2,7 +2,7 @@
 # Contributor: Jérémie Detrey 
 
 pkgname=firefox-tree-style-tab
-pkgver=3.1.5
+pkgver=3.1.6
 pkgrel=1
 pkgdesc='Firefox extension to show tabs like a tree'
 arch=('any')
@@ -11,7 +11,7 @@
 url=https://piro.sakura.ne.jp/xul/_treestyletab.html.en
 
source=("https://addons.cdn.mozilla.net/user-media/addons/5890/tree_style_tab-$pkgver-fx.xpi;)
 noextract=("${source##*/}")
-sha256sums=('772f169dc0424e55c63db2d1d5635c47c7cbdd18dbc6c077d2bfea9799e147f5')
+sha256sums=('9bc3400aa57798c048c5258ede4f8531c966336c1f6de919dadce038646a0f35')
 
 package() {
   install -Dm644 "${source##*/}" 
"$pkgdir"/usr/lib/firefox/browser/extensions/treestyle...@piro.sakura.ne.jp.xpi


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

2019-08-08 Thread David Runge via arch-commits
Date: Thursday, August 8, 2019 @ 17:15:34
  Author: dvzrv
Revision: 359329

archrelease: copy trunk to extra-x86_64

Added:
  fluidsynth/repos/extra-x86_64/PKGBUILD
(from rev 359328, fluidsynth/trunk/PKGBUILD)
Deleted:
  fluidsynth/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-08 17:15:29 UTC (rev 359328)
+++ PKGBUILD2019-08-08 17:15:34 UTC (rev 359329)
@@ -1,54 +0,0 @@
-# Maintainer: David Runge 
-# Contributor: Ray Rashif 
-# Contributor: damir 
-
-pkgname=fluidsynth
-pkgver=2.0.5
-pkgrel=1
-pkgdesc="A real-time software synthesizer based on the SoundFont 2 
specifications"
-arch=('x86_64')
-url="http://www.fluidsynth.org/;
-license=('LGPL')
-groups=('pro-audio')
-depends=('glib2' 'libpulse' 'portaudio')
-makedepends=('cmake' 'ladspa' 'doxygen')
-optdepends=('pulseaudio: PulseAudio sound support')
-provides=('soundfont-synthesizer')
-backup=("etc/conf.d/$pkgname")
-source=("$pkgname-$pkgver.tar.gz::https://github.com/${pkgname}/${pkgname}/archive/v$pkgver.tar.gz;)
-sha512sums=('5344ac889d2927dc2465bae40096d756a9bf9b1100e287ba0621c55ffc76f9cb8fa763f6bc832d701cd0ad2997965cf344f58ae4b3dd445eb3491e3659c093d9')
-
-prepare() {
-  cd "${pkgname}-${pkgver}"
-  # out-of-tree build
-  mkdir build
-}
-
-build() {
-  cd "${pkgname}-${pkgver}/build"
-  cmake .. -DCMAKE_INSTALL_PREFIX=/usr \
-   -DFLUID_DAEMON_ENV_FILE=/etc/conf.d/fluidsynth \
-   -Denable-ladspa=ON \
-   -Denable-portaudio=ON \
-   -DLIB_SUFFIX=""
-  make
-}
-
-check() {
-  cd "${pkgname}-${pkgver}/build"
-  make -k check
-}
-
-package() {
-  cd "${pkgname}-${pkgver}/build"
-  make DESTDIR="$pkgdir" install
-  # systemd user unit
-  install -vDm 644 "${pkgname}.service" \
--t "$pkgdir/usr/lib/systemd/user/"
-  # system-wide configuration file
-  install -vDm 644 "${pkgname}.conf" "${pkgdir}/etc/conf.d/${pkgname}"
-  # docs
-  install -t "${pkgdir}/usr/share/doc/${pkgname}" \
--vDm 644 ../{AUTHORS,ChangeLog,NEWS,README.md,THANKS,TODO}
-}
-

Copied: fluidsynth/repos/extra-x86_64/PKGBUILD (from rev 359328, 
fluidsynth/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-08 17:15:34 UTC (rev 359329)
@@ -0,0 +1,56 @@
+# Maintainer: David Runge 
+# Contributor: Ray Rashif 
+# Contributor: damir 
+
+pkgname=fluidsynth
+pkgver=2.0.5
+pkgrel=2
+pkgdesc="A real-time software synthesizer based on the SoundFont 2 
specifications"
+arch=('x86_64')
+url="http://www.fluidsynth.org/;
+license=('LGPL2.1')
+groups=('pro-audio')
+depends=('glib2' 'libpulse' 'portaudio')
+makedepends=('cmake' 'ladspa' 'doxygen')
+optdepends=('pulseaudio: PulseAudio sound support')
+provides=('libfluidsynth.so' 'soundfont-synthesizer')
+backup=("etc/conf.d/$pkgname")
+source=("$pkgname-$pkgver.tar.gz::https://github.com/${pkgname}/${pkgname}/archive/v$pkgver.tar.gz;)
+sha512sums=('5344ac889d2927dc2465bae40096d756a9bf9b1100e287ba0621c55ffc76f9cb8fa763f6bc832d701cd0ad2997965cf344f58ae4b3dd445eb3491e3659c093d9')
+
+prepare() {
+  cd "${pkgname}-${pkgver}"
+  mkdir build
+}
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  (
+cd build
+cmake .. -DCMAKE_INSTALL_PREFIX=/usr \
+ -DFLUID_DAEMON_ENV_FILE=/etc/conf.d/fluidsynth \
+ -Denable-ladspa=ON \
+ -Denable-portaudio=ON \
+ -DLIB_SUFFIX=""
+  )
+  make -C build VERBOSE=1
+}
+
+check() {
+  cd "${pkgname}-${pkgver}"
+  make -C build -k check
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  make -C build DESTDIR="$pkgdir" install
+  # systemd user unit
+  install -vDm 644 "build/${pkgname}.service" \
+-t "$pkgdir/usr/lib/systemd/user/"
+  # system-wide configuration file
+  install -vDm 644 "build/${pkgname}.conf" "${pkgdir}/etc/conf.d/${pkgname}"
+  # docs
+  install -vDm 644 {AUTHORS,ChangeLog,NEWS,README.md,THANKS,TODO} \
+-t "${pkgdir}/usr/share/doc/${pkgname}"
+}
+


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

2019-08-08 Thread David Runge via arch-commits
Date: Thursday, August 8, 2019 @ 17:15:29
  Author: dvzrv
Revision: 359328

upgpkg: fluidsynth 2.0.5-2

Adding libfluidsynth.so to provides. Switching to correct license (LGPL2.1). 
Minor cleanups.

Modified:
  fluidsynth/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-08 15:30:42 UTC (rev 359327)
+++ PKGBUILD2019-08-08 17:15:29 UTC (rev 359328)
@@ -4,16 +4,16 @@
 
 pkgname=fluidsynth
 pkgver=2.0.5
-pkgrel=1
+pkgrel=2
 pkgdesc="A real-time software synthesizer based on the SoundFont 2 
specifications"
 arch=('x86_64')
 url="http://www.fluidsynth.org/;
-license=('LGPL')
+license=('LGPL2.1')
 groups=('pro-audio')
 depends=('glib2' 'libpulse' 'portaudio')
 makedepends=('cmake' 'ladspa' 'doxygen')
 optdepends=('pulseaudio: PulseAudio sound support')
-provides=('soundfont-synthesizer')
+provides=('libfluidsynth.so' 'soundfont-synthesizer')
 backup=("etc/conf.d/$pkgname")
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/${pkgname}/${pkgname}/archive/v$pkgver.tar.gz;)
 
sha512sums=('5344ac889d2927dc2465bae40096d756a9bf9b1100e287ba0621c55ffc76f9cb8fa763f6bc832d701cd0ad2997965cf344f58ae4b3dd445eb3491e3659c093d9')
@@ -20,35 +20,37 @@
 
 prepare() {
   cd "${pkgname}-${pkgver}"
-  # out-of-tree build
   mkdir build
 }
 
 build() {
-  cd "${pkgname}-${pkgver}/build"
-  cmake .. -DCMAKE_INSTALL_PREFIX=/usr \
-   -DFLUID_DAEMON_ENV_FILE=/etc/conf.d/fluidsynth \
-   -Denable-ladspa=ON \
-   -Denable-portaudio=ON \
-   -DLIB_SUFFIX=""
-  make
+  cd "${pkgname}-${pkgver}"
+  (
+cd build
+cmake .. -DCMAKE_INSTALL_PREFIX=/usr \
+ -DFLUID_DAEMON_ENV_FILE=/etc/conf.d/fluidsynth \
+ -Denable-ladspa=ON \
+ -Denable-portaudio=ON \
+ -DLIB_SUFFIX=""
+  )
+  make -C build VERBOSE=1
 }
 
 check() {
-  cd "${pkgname}-${pkgver}/build"
-  make -k check
+  cd "${pkgname}-${pkgver}"
+  make -C build -k check
 }
 
 package() {
-  cd "${pkgname}-${pkgver}/build"
-  make DESTDIR="$pkgdir" install
+  cd "${pkgname}-${pkgver}"
+  make -C build DESTDIR="$pkgdir" install
   # systemd user unit
-  install -vDm 644 "${pkgname}.service" \
+  install -vDm 644 "build/${pkgname}.service" \
 -t "$pkgdir/usr/lib/systemd/user/"
   # system-wide configuration file
-  install -vDm 644 "${pkgname}.conf" "${pkgdir}/etc/conf.d/${pkgname}"
+  install -vDm 644 "build/${pkgname}.conf" "${pkgdir}/etc/conf.d/${pkgname}"
   # docs
-  install -t "${pkgdir}/usr/share/doc/${pkgname}" \
--vDm 644 ../{AUTHORS,ChangeLog,NEWS,README.md,THANKS,TODO}
+  install -vDm 644 {AUTHORS,ChangeLog,NEWS,README.md,THANKS,TODO} \
+-t "${pkgdir}/usr/share/doc/${pkgname}"
 }
 


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

2019-08-08 Thread David Runge via arch-commits
Date: Thursday, August 8, 2019 @ 16:57:03
  Author: dvzrv
Revision: 498367

upgpkg: foxdot 0.7.39-1

Upgrading to 0.7.39.

Modified:
  foxdot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-08 16:52:39 UTC (rev 498366)
+++ PKGBUILD2019-08-08 16:57:03 UTC (rev 498367)
@@ -2,7 +2,7 @@
 
 _name=FoxDot
 pkgname=foxdot
-pkgver=0.7.34
+pkgver=0.7.39
 pkgrel=1
 pkgdesc="Live Coding with Python"
 arch=('any')
@@ -14,9 +14,9 @@
 checkdepends=('python-pytest')
 optdepends=('sc3-plugins: use additional UGens')
 # pypi sdist doesn't contain tests: https://github.com/Qirky/FoxDot/issues/188
-#source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/${pkgname}/${_name}-${pkgver}.tar.gz;)
+# 
source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/${pkgname}/${_name}-${pkgver}.tar.gz;)
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/Qirky/${pkgname}/archive/${pkgver}.tar.gz;)
-sha512sums=('3efd39fc4f36939c9d64020044b2b7fd3aaf38f477786e5af4016a5b58135ad34ff27d8d815f333f1fe2f3854114f6c4b642a3bb8bdd0b3b003990b8fb46a8fb')
+sha512sums=('a35d7dccddc5b8e9496ceb46e719c14abd0eea3ba7a2ca8dee8029fb8aecb76a6205f7f69344132a29919d348790ab2ca5c1bc9da574c363357db979798a6b4d')
 
 prepare() {
   mv -v "${_name}-$pkgver" "$pkgname-$pkgver"
@@ -44,7 +44,8 @@
   python setup.py install --prefix=/usr \
   --skip-build \
   --optimize=1 \
-  --root="${pkgdir}"
+  --root="${pkgdir}" \
+  --verbose
   install -vDm 644 *.desktop -t "${pkgdir}/usr/share/applications"
   install -vDm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
   install -vDm 644 {README.md,changelog} \


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

2019-08-08 Thread David Runge via arch-commits
Date: Thursday, August 8, 2019 @ 16:57:09
  Author: dvzrv
Revision: 498368

archrelease: copy trunk to community-any

Added:
  foxdot/repos/community-any/PKGBUILD
(from rev 498367, foxdot/trunk/PKGBUILD)
Deleted:
  foxdot/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-08 16:57:03 UTC (rev 498367)
+++ PKGBUILD2019-08-08 16:57:09 UTC (rev 498368)
@@ -1,52 +0,0 @@
-# Maintainer: David Runge 
-
-_name=FoxDot
-pkgname=foxdot
-pkgver=0.7.34
-pkgrel=1
-pkgdesc="Live Coding with Python"
-arch=('any')
-url="https://foxdot.org;
-license=('CCPL')
-groups=('pro-audio')
-depends=('python' 'supercollider' 'tk')
-makedepends=('gendesk' 'python-setuptools')
-checkdepends=('python-pytest')
-optdepends=('sc3-plugins: use additional UGens')
-# pypi sdist doesn't contain tests: https://github.com/Qirky/FoxDot/issues/188
-#source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/${pkgname}/${_name}-${pkgver}.tar.gz;)
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/Qirky/${pkgname}/archive/${pkgver}.tar.gz;)
-sha512sums=('3efd39fc4f36939c9d64020044b2b7fd3aaf38f477786e5af4016a5b58135ad34ff27d8d815f333f1fe2f3854114f6c4b642a3bb8bdd0b3b003990b8fb46a8fb')
-
-prepare() {
-  mv -v "${_name}-$pkgver" "$pkgname-$pkgver"
-  cd "$pkgname-$pkgver"
-  gendesk -n \
-  --pkgname "${pkgname}" \
-  --name "${_name}" \
-  --exec "${_name}" \
-  --genericname "Live Coding Editor" \
-  --categories "AudioVideo;Audio"
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-  python setup.py build
-}
-
-check() {
-  cd "$pkgname-$pkgver"
-  py.test
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  python setup.py install --prefix=/usr \
-  --skip-build \
-  --optimize=1 \
-  --root="${pkgdir}"
-  install -vDm 644 *.desktop -t "${pkgdir}/usr/share/applications"
-  install -vDm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -vDm 644 {README.md,changelog} \
--t "${pkgdir}/usr/share/doc/${pkgname}"
-}

Copied: foxdot/repos/community-any/PKGBUILD (from rev 498367, 
foxdot/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-08 16:57:09 UTC (rev 498368)
@@ -0,0 +1,53 @@
+# Maintainer: David Runge 
+
+_name=FoxDot
+pkgname=foxdot
+pkgver=0.7.39
+pkgrel=1
+pkgdesc="Live Coding with Python"
+arch=('any')
+url="https://foxdot.org;
+license=('CCPL')
+groups=('pro-audio')
+depends=('python' 'supercollider' 'tk')
+makedepends=('gendesk' 'python-setuptools')
+checkdepends=('python-pytest')
+optdepends=('sc3-plugins: use additional UGens')
+# pypi sdist doesn't contain tests: https://github.com/Qirky/FoxDot/issues/188
+# 
source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/${pkgname}/${_name}-${pkgver}.tar.gz;)
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/Qirky/${pkgname}/archive/${pkgver}.tar.gz;)
+sha512sums=('a35d7dccddc5b8e9496ceb46e719c14abd0eea3ba7a2ca8dee8029fb8aecb76a6205f7f69344132a29919d348790ab2ca5c1bc9da574c363357db979798a6b4d')
+
+prepare() {
+  mv -v "${_name}-$pkgver" "$pkgname-$pkgver"
+  cd "$pkgname-$pkgver"
+  gendesk -n \
+  --pkgname "${pkgname}" \
+  --name "${_name}" \
+  --exec "${_name}" \
+  --genericname "Live Coding Editor" \
+  --categories "AudioVideo;Audio"
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  python setup.py build
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  py.test
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  python setup.py install --prefix=/usr \
+  --skip-build \
+  --optimize=1 \
+  --root="${pkgdir}" \
+  --verbose
+  install -vDm 644 *.desktop -t "${pkgdir}/usr/share/applications"
+  install -vDm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -vDm 644 {README.md,changelog} \
+-t "${pkgdir}/usr/share/doc/${pkgname}"
+}


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

2019-08-08 Thread David Runge via arch-commits
Date: Thursday, August 8, 2019 @ 16:52:34
  Author: dvzrv
Revision: 498365

upgpkg: redkite 0.6.1-1

Upgrading to 0.6.1.

Modified:
  redkite/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-08 15:32:44 UTC (rev 498364)
+++ PKGBUILD2019-08-08 16:52:34 UTC (rev 498365)
@@ -1,8 +1,8 @@
 # Maintainer: David Runge 
 
 pkgname=redkite
-pkgver=0.6
-pkgrel=2
+pkgver=0.6.1
+pkgrel=1
 pkgdesc="A small free software and cross-platform GUI toolkit"
 arch=('x86_64')
 url="https://github.com/quamplex/redkite;
@@ -10,7 +10,7 @@
 depends=('cairo')
 makedepends=('cmake')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/quamplex/${pkgname}/archive/v${pkgver}.tar.gz;)
-sha512sums=('2b74163ac3e66cdba39daee81c646676b9d32a57821dd851a077f04eafa5e076c2fa2e54b46cb0e1d6506d840c527868e15d863dec64271ee436f497185853c2')
+sha512sums=('2ba9e9becc79a08a26fd414324d282516fff75f0f2d3c1adabe52669fcafe93c0d89fd40276bf0a42248d6eec5972a58901a9e4853b3b6c9f8334565b186994a')
 
 prepare() {
   cd "$pkgname-$pkgver"


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

2019-08-08 Thread David Runge via arch-commits
Date: Thursday, August 8, 2019 @ 16:52:39
  Author: dvzrv
Revision: 498366

archrelease: copy trunk to community-x86_64

Added:
  redkite/repos/community-x86_64/PKGBUILD
(from rev 498365, redkite/trunk/PKGBUILD)
Deleted:
  redkite/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-08 16:52:34 UTC (rev 498365)
+++ PKGBUILD2019-08-08 16:52:39 UTC (rev 498366)
@@ -1,37 +0,0 @@
-# Maintainer: David Runge 
-
-pkgname=redkite
-pkgver=0.6
-pkgrel=2
-pkgdesc="A small free software and cross-platform GUI toolkit"
-arch=('x86_64')
-url="https://github.com/quamplex/redkite;
-license=('GPL3')
-depends=('cairo')
-makedepends=('cmake')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/quamplex/${pkgname}/archive/v${pkgver}.tar.gz;)
-sha512sums=('2b74163ac3e66cdba39daee81c646676b9d32a57821dd851a077f04eafa5e076c2fa2e54b46cb0e1d6506d840c527868e15d863dec64271ee436f497185853c2')
-
-prepare() {
-  cd "$pkgname-$pkgver"
-  mkdir -pv build
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-  (
-cd build
-cmake -DCMAKE_INSTALL_PREFIX=/usr \
-  ..
-make VERBOSE=1
-  )
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  (
-cd build
-make DESTDIR="$pkgdir/" install
-  )
-  install -vDm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
-}

Copied: redkite/repos/community-x86_64/PKGBUILD (from rev 498365, 
redkite/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-08 16:52:39 UTC (rev 498366)
@@ -0,0 +1,37 @@
+# Maintainer: David Runge 
+
+pkgname=redkite
+pkgver=0.6.1
+pkgrel=1
+pkgdesc="A small free software and cross-platform GUI toolkit"
+arch=('x86_64')
+url="https://github.com/quamplex/redkite;
+license=('GPL3')
+depends=('cairo')
+makedepends=('cmake')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/quamplex/${pkgname}/archive/v${pkgver}.tar.gz;)
+sha512sums=('2ba9e9becc79a08a26fd414324d282516fff75f0f2d3c1adabe52669fcafe93c0d89fd40276bf0a42248d6eec5972a58901a9e4853b3b6c9f8334565b186994a')
+
+prepare() {
+  cd "$pkgname-$pkgver"
+  mkdir -pv build
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  (
+cd build
+cmake -DCMAKE_INSTALL_PREFIX=/usr \
+  ..
+make VERBOSE=1
+  )
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  (
+cd build
+make DESTDIR="$pkgdir/" install
+  )
+  install -vDm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+}


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

2019-08-08 Thread Christian Rebischke via arch-commits
Date: Thursday, August 8, 2019 @ 15:32:44
  Author: shibumi
Revision: 498364

archrelease: copy trunk to community-x86_64

Added:
  gvmd/repos/community-x86_64/
  gvmd/repos/community-x86_64/CHANGELOG.md
(from rev 498363, gvmd/trunk/CHANGELOG.md)
  gvmd/repos/community-x86_64/PKGBUILD
(from rev 498363, gvmd/trunk/PKGBUILD)

--+
 CHANGELOG.md |  152 +
 PKGBUILD |   35 +
 2 files changed, 187 insertions(+)

Copied: gvmd/repos/community-x86_64/CHANGELOG.md (from rev 498363, 
gvmd/trunk/CHANGELOG.md)
===
--- community-x86_64/CHANGELOG.md   (rev 0)
+++ community-x86_64/CHANGELOG.md   2019-08-08 15:32:44 UTC (rev 498364)
@@ -0,0 +1,152 @@
+# Changelog
+
+All notable changes to this project will be documented in this file.
+
+The format is based on [Keep a 
Changelog](https://keepachangelog.com/en/1.0.0/).
+
+## [Unreleased]
+
+### Added
+- Added TLS certificates as a new resource type 
[#585](https://github.com/greenbone/gvmd/pull/585) 
[#663](https://github.com/greenbone/gvmd/pull/663)
+- Update NVTs via OSP [#392](https://github.com/greenbone/gvmd/pull/392) 
[#609](https://github.com/greenbone/gvmd/pull/609) 
[#626](https://github.com/greenbone/gvmd/pull/626)
+- Handle addition of ID to NVT preferences. 
[#413](https://github.com/greenbone/gvmd/pull/413)
+- Add setting 'OMP Slave Check Period' 
[#491](https://github.com/greenbone/gvmd/pull/491)
+- Document switching between releases when using Postgres. 
[#563](https://github.com/greenbone/gvmd/pull/563)
+- Cgreen based unit tests for gvmd has been added. 
[#579](https://github.com/greenbone/gvmd/pull/579)
+- New usage_type property to distinguish normal scan tasks and configs from 
compliance audits and policies 
[#613](https://github.com/greenbone/gvmd/pull/613) 
[#625](https://github.com/greenbone/gvmd/pull/625) 
[#633](https://github.com/greenbone/gvmd/pull/633)
+- Command cleanup-report-formats for --optimize option 
[#652](https://github.com/greenbone/gvmd/pull/652)
+
+### Changed
+- Check if NVT preferences exist before inserting. 
[#406](https://github.com/greenbone/gvmd/pull/406)
+- Raise minimum version for SQL functions. 
[#420](https://github.com/greenbone/gvmd/pull/420)
+- Run OpenVAS scans via OSP instead of OTP. 
[#422](https://github.com/greenbone/gvmd/pull/422) 
[#584](https://github.com/greenbone/gvmd/pull/584) 
[#623](https://github.com/greenbone/gvmd/pull/623) 
[#636](https://github.com/greenbone/gvmd/pull/636)
+- Request nvti_cache update only at very end of NVT update. 
[#426](https://github.com/greenbone/gvmd/pull/426)
+- Consolidate NVT references into unified "refs" element. 
[#427](https://github.com/greenbone/gvmd/pull/427)
+- Update gvm-libs version requirements to v11.0. 
[#480](https://github.com/greenbone/gvmd/pull/480)
+-Adjust to use new API for vt references. 
[#526](https://github.com/greenbone/gvmd/pull/526)
+- Expect NVT sync script in bin directory. 
[#546](https://github.com/greenbone/gvmd/pull/546)
+- Change internal handling of NVT XML to use nvti_t. 
[#562](https://github.com/greenbone/gvmd/pull/562)
+- Change NVT references like CVEs and BID to general vt_refs. 
[#570](https://github.com/greenbone/gvmd/pull/570) 
[#574](https://github.com/greenbone/gvmd/pull/574) 
[#582](https://github.com/greenbone/gvmd/pull/582)
+- Update Postgres to SQLite migration. 
[#581](https://github.com/greenbone/gvmd/pull/581) 
[#601](https://github.com/greenbone/gvmd/pull/601) 
[#604](https://github.com/greenbone/gvmd/pull/604) 
[#605](https://github.com/greenbone/gvmd/pull/605)
+- Update result diff generation at delta reports 
[#650](https://github.com/greenbone/gvmd/pull/650)
+
+### Fixed
+- Fix iCalendar recurrence and timezone handling 
[#654](https://github.com/greenbone/gvmd/pull/654)
+- Fix issues with some scheduled tasks by using iCalendar more instead of old 
period fields [#656](https://github.com/greenbone/gvmd/pull/655)
+- Fix an issue in getting the reports from GMP scanners 
[#659](https://github.com/greenbone/gvmd/pull/659) 
[#665](https://github.com/greenbone/gvmd/pull/665)
+- Fix GET_SYSTEM_REPORTS using slave_id 
[#668](https://github.com/greenbone/gvmd/pull/668)
+
+### Removed
+- The handling of NVT updates via OTP has been removed. 
[#575](https://github.com/greenbone/gvmd/pull/575)
+- Bid and xref have been removed from table nvts. 
[#582](https://github.com/greenbone/gvmd/pull/582)
+- Database migration from revisions before 185 has been removed. 
[#411](https://github.com/greenbone/gvmd/pull/411) 
[#622](https://github.com/greenbone/gvmd/pull/622)
+- Drop SQLite support [#610](https://github.com/greenbone/gvmd/pull/610) 
[#612](https://github.com/greenbone/gvmd/pull/612) 
[#614](https://github.com/greenbone/gvmd/pull/614)
+- Remove create report task creation 
[#616](https://github.com/greenbone/gvmd/pull/616)
+- Remove 

[arch-commits] Commit in gvmd/repos (community-testing-x86_64)

2019-08-08 Thread Christian Rebischke via arch-commits
Date: Thursday, August 8, 2019 @ 15:32:26
  Author: shibumi
Revision: 498363

removed testing

Deleted:
  gvmd/repos/community-testing-x86_64/


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

2019-08-08 Thread Christian Rebischke via arch-commits
Date: Thursday, August 8, 2019 @ 15:31:22
  Author: shibumi
Revision: 498362

db-remove: gvmd removed by shibumi

Deleted:
  gvmd/repos/community-x86_64/


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

2019-08-08 Thread Jan Steffens via arch-commits
Date: Thursday, August 8, 2019 @ 15:30:42
  Author: heftig
Revision: 359327

archrelease: copy trunk to extra-x86_64

Added:
  libfprint/repos/extra-x86_64/PKGBUILD
(from rev 359325, libfprint/trunk/PKGBUILD)
Deleted:
  libfprint/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-08 15:30:40 UTC (rev 359326)
+++ PKGBUILD2019-08-08 15:30:42 UTC (rev 359327)
@@ -1,39 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Tom Gundersen 
-# Contributor: Thomas Baechler 
-
-pkgname=libfprint
-pkgver=0.99.0+1+ga1e46de
-pkgrel=1
-pkgdesc="Library for fingerprint readers"
-arch=(x86_64)
-url="https://www.freedesktop.org/wiki/Software/fprint/libfprint;
-license=(LGPL)
-depends=(libusb nss pixman glib2)
-makedepends=(git meson gtk-doc)
-groups=(fprint)
-_commit=a1e46de462757e3c900d3d959b4e53a0d2410e49  # master
-source=("git+https://gitlab.freedesktop.org/libfprint/libfprint.git#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/^V_//;s/_/./g;s/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-}
-
-build() {
-  arch-meson $pkgname build -D x11-examples=false -D gtk-examples=false
-  ninja -C build
-}
-
-check() {
-  meson test -C build
-}
-
-package() {
-  DESTDIR="$pkgdir" meson install -C build
-}

Copied: libfprint/repos/extra-x86_64/PKGBUILD (from rev 359325, 
libfprint/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-08 15:30:42 UTC (rev 359327)
@@ -0,0 +1,39 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Tom Gundersen 
+# Contributor: Thomas Baechler 
+
+pkgname=libfprint
+pkgver=1.0
+pkgrel=1
+pkgdesc="Library for fingerprint readers"
+arch=(x86_64)
+url="https://www.freedesktop.org/wiki/Software/fprint/libfprint;
+license=(LGPL)
+depends=(libusb nss pixman glib2)
+makedepends=(git meson gtk-doc)
+groups=(fprint)
+_commit=823f2c1067a27deae4153dd9ece6ce24bedc0680  # tags/V_1_0^0
+source=("git+https://gitlab.freedesktop.org/libfprint/libfprint.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^V_//;s/_/./g;s/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+}
+
+build() {
+  arch-meson $pkgname build -D x11-examples=false -D gtk-examples=false
+  ninja -C build
+}
+
+check() {
+  meson test -C build
+}
+
+package() {
+  DESTDIR="$pkgdir" meson install -C build
+}


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

2019-08-08 Thread Jan Steffens via arch-commits
Date: Thursday, August 8, 2019 @ 15:30:40
  Author: heftig
Revision: 359326

archrelease: copy trunk to extra-x86_64

Added:
  fprintd/repos/extra-x86_64/PKGBUILD
(from rev 359325, fprintd/trunk/PKGBUILD)
Deleted:
  fprintd/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-08 15:30:23 UTC (rev 359325)
+++ PKGBUILD2019-08-08 15:30:40 UTC (rev 359326)
@@ -1,45 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Nikolay Rysev 
-
-pkgname=fprintd
-pkgver=0.8.1
-pkgrel=2
-pkgdesc="D-Bus service to access fingerprint readers"
-arch=(x86_64)
-url="https://www.freedesktop.org/wiki/Software/fprint/fprintd;
-license=(GPL)
-depends=(libfprint dbus-glib polkit)
-makedepends=(intltool gtk-doc gnome-common git)
-groups=(fprint)
-_commit=9e32cd525724f21eebf2336a06b13a39c6616ab0  # tags/V_0_8_1^0
-source=("git+https://gitlab.freedesktop.org/libfprint/fprintd.git#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/^V_//;s/_/./g;s/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd $pkgname
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---libexecdir=/usr/lib \
---localstatedir=/var \
---disable-static \
---enable-gtk-doc
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" dbus_confdir=/usr/share/dbus-1/system.d install
-  install -d -m 700 "$pkgdir/var/lib/fprint"
-}

Copied: fprintd/repos/extra-x86_64/PKGBUILD (from rev 359325, 
fprintd/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-08 15:30:40 UTC (rev 359326)
@@ -0,0 +1,45 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Nikolay Rysev 
+
+pkgname=fprintd
+pkgver=0.9.0
+pkgrel=1
+pkgdesc="D-Bus service to access fingerprint readers"
+arch=(x86_64)
+url="https://www.freedesktop.org/wiki/Software/fprint/fprintd;
+license=(GPL)
+depends=(libfprint dbus-glib polkit)
+makedepends=(intltool gtk-doc gnome-common git)
+groups=(fprint)
+_commit=c0ba475fbf9854053789035c4bab561ce2b9a9ef  # tags/V_0_9_0^0
+source=("git+https://gitlab.freedesktop.org/libfprint/fprintd.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^V_//;s/_/./g;s/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib \
+--localstatedir=/var \
+--disable-static \
+--enable-gtk-doc
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" dbus_confdir=/usr/share/dbus-1/system.d install
+  install -d -m 700 "$pkgdir/var/lib/fprint"
+}


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

2019-08-08 Thread Jan Steffens via arch-commits
Date: Thursday, August 8, 2019 @ 15:30:23
  Author: heftig
Revision: 359325

0.9.0-1

Modified:
  fprintd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-08 15:28:18 UTC (rev 359324)
+++ PKGBUILD2019-08-08 15:30:23 UTC (rev 359325)
@@ -2,8 +2,8 @@
 # Contributor: Nikolay Rysev 
 
 pkgname=fprintd
-pkgver=0.8.1
-pkgrel=2
+pkgver=0.9.0
+pkgrel=1
 pkgdesc="D-Bus service to access fingerprint readers"
 arch=(x86_64)
 url="https://www.freedesktop.org/wiki/Software/fprint/fprintd;
@@ -11,7 +11,7 @@
 depends=(libfprint dbus-glib polkit)
 makedepends=(intltool gtk-doc gnome-common git)
 groups=(fprint)
-_commit=9e32cd525724f21eebf2336a06b13a39c6616ab0  # tags/V_0_8_1^0
+_commit=c0ba475fbf9854053789035c4bab561ce2b9a9ef  # tags/V_0_9_0^0
 
source=("git+https://gitlab.freedesktop.org/libfprint/fprintd.git#commit=$_commit;)
 sha256sums=('SKIP')
 


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

2019-08-08 Thread Christian Rebischke via arch-commits
Date: Thursday, August 8, 2019 @ 15:29:37
  Author: shibumi
Revision: 498361

archrelease: copy trunk to community-x86_64

Added:
  gvmd/repos/community-x86_64/CHANGELOG.md
(from rev 498360, gvmd/trunk/CHANGELOG.md)
  gvmd/repos/community-x86_64/PKGBUILD
(from rev 498360, gvmd/trunk/PKGBUILD)
Deleted:
  gvmd/repos/community-x86_64/CHANGELOG.md
  gvmd/repos/community-x86_64/PKGBUILD

--+
 CHANGELOG.md |  304 -
 PKGBUILD |   70 ++---
 2 files changed, 187 insertions(+), 187 deletions(-)

Deleted: CHANGELOG.md
===
--- CHANGELOG.md2019-08-08 15:27:36 UTC (rev 498360)
+++ CHANGELOG.md2019-08-08 15:29:37 UTC (rev 498361)
@@ -1,152 +0,0 @@
-# Changelog
-
-All notable changes to this project will be documented in this file.
-
-The format is based on [Keep a 
Changelog](https://keepachangelog.com/en/1.0.0/).
-
-## [Unreleased]
-
-### Added
-- Added TLS certificates as a new resource type 
[#585](https://github.com/greenbone/gvmd/pull/585) 
[#663](https://github.com/greenbone/gvmd/pull/663)
-- Update NVTs via OSP [#392](https://github.com/greenbone/gvmd/pull/392) 
[#609](https://github.com/greenbone/gvmd/pull/609) 
[#626](https://github.com/greenbone/gvmd/pull/626)
-- Handle addition of ID to NVT preferences. 
[#413](https://github.com/greenbone/gvmd/pull/413)
-- Add setting 'OMP Slave Check Period' 
[#491](https://github.com/greenbone/gvmd/pull/491)
-- Document switching between releases when using Postgres. 
[#563](https://github.com/greenbone/gvmd/pull/563)
-- Cgreen based unit tests for gvmd has been added. 
[#579](https://github.com/greenbone/gvmd/pull/579)
-- New usage_type property to distinguish normal scan tasks and configs from 
compliance audits and policies 
[#613](https://github.com/greenbone/gvmd/pull/613) 
[#625](https://github.com/greenbone/gvmd/pull/625) 
[#633](https://github.com/greenbone/gvmd/pull/633)
-- Command cleanup-report-formats for --optimize option 
[#652](https://github.com/greenbone/gvmd/pull/652)
-
-### Changed
-- Check if NVT preferences exist before inserting. 
[#406](https://github.com/greenbone/gvmd/pull/406)
-- Raise minimum version for SQL functions. 
[#420](https://github.com/greenbone/gvmd/pull/420)
-- Run OpenVAS scans via OSP instead of OTP. 
[#422](https://github.com/greenbone/gvmd/pull/422) 
[#584](https://github.com/greenbone/gvmd/pull/584) 
[#623](https://github.com/greenbone/gvmd/pull/623) 
[#636](https://github.com/greenbone/gvmd/pull/636)
-- Request nvti_cache update only at very end of NVT update. 
[#426](https://github.com/greenbone/gvmd/pull/426)
-- Consolidate NVT references into unified "refs" element. 
[#427](https://github.com/greenbone/gvmd/pull/427)
-- Update gvm-libs version requirements to v11.0. 
[#480](https://github.com/greenbone/gvmd/pull/480)
--Adjust to use new API for vt references. 
[#526](https://github.com/greenbone/gvmd/pull/526)
-- Expect NVT sync script in bin directory. 
[#546](https://github.com/greenbone/gvmd/pull/546)
-- Change internal handling of NVT XML to use nvti_t. 
[#562](https://github.com/greenbone/gvmd/pull/562)
-- Change NVT references like CVEs and BID to general vt_refs. 
[#570](https://github.com/greenbone/gvmd/pull/570) 
[#574](https://github.com/greenbone/gvmd/pull/574) 
[#582](https://github.com/greenbone/gvmd/pull/582)
-- Update Postgres to SQLite migration. 
[#581](https://github.com/greenbone/gvmd/pull/581) 
[#601](https://github.com/greenbone/gvmd/pull/601) 
[#604](https://github.com/greenbone/gvmd/pull/604) 
[#605](https://github.com/greenbone/gvmd/pull/605)
-- Update result diff generation at delta reports 
[#650](https://github.com/greenbone/gvmd/pull/650)
-
-### Fixed
-- Fix iCalendar recurrence and timezone handling 
[#654](https://github.com/greenbone/gvmd/pull/654)
-- Fix issues with some scheduled tasks by using iCalendar more instead of old 
period fields [#656](https://github.com/greenbone/gvmd/pull/655)
-- Fix an issue in getting the reports from GMP scanners 
[#659](https://github.com/greenbone/gvmd/pull/659) 
[#665](https://github.com/greenbone/gvmd/pull/665)
-- Fix GET_SYSTEM_REPORTS using slave_id 
[#668](https://github.com/greenbone/gvmd/pull/668)
-
-### Removed
-- The handling of NVT updates via OTP has been removed. 
[#575](https://github.com/greenbone/gvmd/pull/575)
-- Bid and xref have been removed from table nvts. 
[#582](https://github.com/greenbone/gvmd/pull/582)
-- Database migration from revisions before 185 has been removed. 
[#411](https://github.com/greenbone/gvmd/pull/411) 
[#622](https://github.com/greenbone/gvmd/pull/622)
-- Drop SQLite support [#610](https://github.com/greenbone/gvmd/pull/610) 
[#612](https://github.com/greenbone/gvmd/pull/612) 
[#614](https://github.com/greenbone/gvmd/pull/614)
-- Remove create report task creation 
[#616](https://github.com/greenbone/gvmd/pull/616)
-- Remove --backup command line 

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

2019-08-08 Thread Jan Steffens via arch-commits
Date: Thursday, August 8, 2019 @ 15:28:18
  Author: heftig
Revision: 359324

1.0-1

Modified:
  libfprint/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-08 14:08:47 UTC (rev 359323)
+++ PKGBUILD2019-08-08 15:28:18 UTC (rev 359324)
@@ -3,7 +3,7 @@
 # Contributor: Thomas Baechler 
 
 pkgname=libfprint
-pkgver=0.99.0+1+ga1e46de
+pkgver=1.0
 pkgrel=1
 pkgdesc="Library for fingerprint readers"
 arch=(x86_64)
@@ -12,7 +12,7 @@
 depends=(libusb nss pixman glib2)
 makedepends=(git meson gtk-doc)
 groups=(fprint)
-_commit=a1e46de462757e3c900d3d959b4e53a0d2410e49  # master
+_commit=823f2c1067a27deae4153dd9ece6ce24bedc0680  # tags/V_1_0^0
 
source=("git+https://gitlab.freedesktop.org/libfprint/libfprint.git#commit=$_commit;)
 sha256sums=('SKIP')
 


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

2019-08-08 Thread Christian Rebischke via arch-commits
Date: Thursday, August 8, 2019 @ 15:27:36
  Author: shibumi
Revision: 498360

archrelease: copy trunk to community-x86_64

Added:
  gvmd/repos/community-x86_64/CHANGELOG.md
(from rev 498359, gvmd/trunk/CHANGELOG.md)
  gvmd/repos/community-x86_64/PKGBUILD
(from rev 498359, gvmd/trunk/PKGBUILD)
Deleted:
  gvmd/repos/community-x86_64/CHANGELOG.md
  gvmd/repos/community-x86_64/PKGBUILD

--+
 CHANGELOG.md |  304 -
 PKGBUILD |   70 ++---
 2 files changed, 187 insertions(+), 187 deletions(-)

Deleted: CHANGELOG.md
===
--- CHANGELOG.md2019-08-08 15:24:43 UTC (rev 498359)
+++ CHANGELOG.md2019-08-08 15:27:36 UTC (rev 498360)
@@ -1,152 +0,0 @@
-# Changelog
-
-All notable changes to this project will be documented in this file.
-
-The format is based on [Keep a 
Changelog](https://keepachangelog.com/en/1.0.0/).
-
-## [Unreleased]
-
-### Added
-- Added TLS certificates as a new resource type 
[#585](https://github.com/greenbone/gvmd/pull/585) 
[#663](https://github.com/greenbone/gvmd/pull/663)
-- Update NVTs via OSP [#392](https://github.com/greenbone/gvmd/pull/392) 
[#609](https://github.com/greenbone/gvmd/pull/609) 
[#626](https://github.com/greenbone/gvmd/pull/626)
-- Handle addition of ID to NVT preferences. 
[#413](https://github.com/greenbone/gvmd/pull/413)
-- Add setting 'OMP Slave Check Period' 
[#491](https://github.com/greenbone/gvmd/pull/491)
-- Document switching between releases when using Postgres. 
[#563](https://github.com/greenbone/gvmd/pull/563)
-- Cgreen based unit tests for gvmd has been added. 
[#579](https://github.com/greenbone/gvmd/pull/579)
-- New usage_type property to distinguish normal scan tasks and configs from 
compliance audits and policies 
[#613](https://github.com/greenbone/gvmd/pull/613) 
[#625](https://github.com/greenbone/gvmd/pull/625) 
[#633](https://github.com/greenbone/gvmd/pull/633)
-- Command cleanup-report-formats for --optimize option 
[#652](https://github.com/greenbone/gvmd/pull/652)
-
-### Changed
-- Check if NVT preferences exist before inserting. 
[#406](https://github.com/greenbone/gvmd/pull/406)
-- Raise minimum version for SQL functions. 
[#420](https://github.com/greenbone/gvmd/pull/420)
-- Run OpenVAS scans via OSP instead of OTP. 
[#422](https://github.com/greenbone/gvmd/pull/422) 
[#584](https://github.com/greenbone/gvmd/pull/584) 
[#623](https://github.com/greenbone/gvmd/pull/623) 
[#636](https://github.com/greenbone/gvmd/pull/636)
-- Request nvti_cache update only at very end of NVT update. 
[#426](https://github.com/greenbone/gvmd/pull/426)
-- Consolidate NVT references into unified "refs" element. 
[#427](https://github.com/greenbone/gvmd/pull/427)
-- Update gvm-libs version requirements to v11.0. 
[#480](https://github.com/greenbone/gvmd/pull/480)
--Adjust to use new API for vt references. 
[#526](https://github.com/greenbone/gvmd/pull/526)
-- Expect NVT sync script in bin directory. 
[#546](https://github.com/greenbone/gvmd/pull/546)
-- Change internal handling of NVT XML to use nvti_t. 
[#562](https://github.com/greenbone/gvmd/pull/562)
-- Change NVT references like CVEs and BID to general vt_refs. 
[#570](https://github.com/greenbone/gvmd/pull/570) 
[#574](https://github.com/greenbone/gvmd/pull/574) 
[#582](https://github.com/greenbone/gvmd/pull/582)
-- Update Postgres to SQLite migration. 
[#581](https://github.com/greenbone/gvmd/pull/581) 
[#601](https://github.com/greenbone/gvmd/pull/601) 
[#604](https://github.com/greenbone/gvmd/pull/604) 
[#605](https://github.com/greenbone/gvmd/pull/605)
-- Update result diff generation at delta reports 
[#650](https://github.com/greenbone/gvmd/pull/650)
-
-### Fixed
-- Fix iCalendar recurrence and timezone handling 
[#654](https://github.com/greenbone/gvmd/pull/654)
-- Fix issues with some scheduled tasks by using iCalendar more instead of old 
period fields [#656](https://github.com/greenbone/gvmd/pull/655)
-- Fix an issue in getting the reports from GMP scanners 
[#659](https://github.com/greenbone/gvmd/pull/659) 
[#665](https://github.com/greenbone/gvmd/pull/665)
-- Fix GET_SYSTEM_REPORTS using slave_id 
[#668](https://github.com/greenbone/gvmd/pull/668)
-
-### Removed
-- The handling of NVT updates via OTP has been removed. 
[#575](https://github.com/greenbone/gvmd/pull/575)
-- Bid and xref have been removed from table nvts. 
[#582](https://github.com/greenbone/gvmd/pull/582)
-- Database migration from revisions before 185 has been removed. 
[#411](https://github.com/greenbone/gvmd/pull/411) 
[#622](https://github.com/greenbone/gvmd/pull/622)
-- Drop SQLite support [#610](https://github.com/greenbone/gvmd/pull/610) 
[#612](https://github.com/greenbone/gvmd/pull/612) 
[#614](https://github.com/greenbone/gvmd/pull/614)
-- Remove create report task creation 
[#616](https://github.com/greenbone/gvmd/pull/616)
-- Remove --backup command line 

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

2019-08-08 Thread Christian Rebischke via arch-commits
Date: Thursday, August 8, 2019 @ 15:24:43
  Author: shibumi
Revision: 498359

archrelease: copy trunk to community-x86_64

Added:
  gvmd/repos/community-x86_64/CHANGELOG.md
(from rev 498358, gvmd/trunk/CHANGELOG.md)
  gvmd/repos/community-x86_64/PKGBUILD
(from rev 498358, gvmd/trunk/PKGBUILD)
Deleted:
  gvmd/repos/community-x86_64/CHANGELOG.md
  gvmd/repos/community-x86_64/PKGBUILD

--+
 CHANGELOG.md |  304 -
 PKGBUILD |   70 ++---
 2 files changed, 187 insertions(+), 187 deletions(-)

Deleted: CHANGELOG.md
===
--- CHANGELOG.md2019-08-08 15:22:44 UTC (rev 498358)
+++ CHANGELOG.md2019-08-08 15:24:43 UTC (rev 498359)
@@ -1,152 +0,0 @@
-# Changelog
-
-All notable changes to this project will be documented in this file.
-
-The format is based on [Keep a 
Changelog](https://keepachangelog.com/en/1.0.0/).
-
-## [Unreleased]
-
-### Added
-- Added TLS certificates as a new resource type 
[#585](https://github.com/greenbone/gvmd/pull/585) 
[#663](https://github.com/greenbone/gvmd/pull/663)
-- Update NVTs via OSP [#392](https://github.com/greenbone/gvmd/pull/392) 
[#609](https://github.com/greenbone/gvmd/pull/609) 
[#626](https://github.com/greenbone/gvmd/pull/626)
-- Handle addition of ID to NVT preferences. 
[#413](https://github.com/greenbone/gvmd/pull/413)
-- Add setting 'OMP Slave Check Period' 
[#491](https://github.com/greenbone/gvmd/pull/491)
-- Document switching between releases when using Postgres. 
[#563](https://github.com/greenbone/gvmd/pull/563)
-- Cgreen based unit tests for gvmd has been added. 
[#579](https://github.com/greenbone/gvmd/pull/579)
-- New usage_type property to distinguish normal scan tasks and configs from 
compliance audits and policies 
[#613](https://github.com/greenbone/gvmd/pull/613) 
[#625](https://github.com/greenbone/gvmd/pull/625) 
[#633](https://github.com/greenbone/gvmd/pull/633)
-- Command cleanup-report-formats for --optimize option 
[#652](https://github.com/greenbone/gvmd/pull/652)
-
-### Changed
-- Check if NVT preferences exist before inserting. 
[#406](https://github.com/greenbone/gvmd/pull/406)
-- Raise minimum version for SQL functions. 
[#420](https://github.com/greenbone/gvmd/pull/420)
-- Run OpenVAS scans via OSP instead of OTP. 
[#422](https://github.com/greenbone/gvmd/pull/422) 
[#584](https://github.com/greenbone/gvmd/pull/584) 
[#623](https://github.com/greenbone/gvmd/pull/623) 
[#636](https://github.com/greenbone/gvmd/pull/636)
-- Request nvti_cache update only at very end of NVT update. 
[#426](https://github.com/greenbone/gvmd/pull/426)
-- Consolidate NVT references into unified "refs" element. 
[#427](https://github.com/greenbone/gvmd/pull/427)
-- Update gvm-libs version requirements to v11.0. 
[#480](https://github.com/greenbone/gvmd/pull/480)
--Adjust to use new API for vt references. 
[#526](https://github.com/greenbone/gvmd/pull/526)
-- Expect NVT sync script in bin directory. 
[#546](https://github.com/greenbone/gvmd/pull/546)
-- Change internal handling of NVT XML to use nvti_t. 
[#562](https://github.com/greenbone/gvmd/pull/562)
-- Change NVT references like CVEs and BID to general vt_refs. 
[#570](https://github.com/greenbone/gvmd/pull/570) 
[#574](https://github.com/greenbone/gvmd/pull/574) 
[#582](https://github.com/greenbone/gvmd/pull/582)
-- Update Postgres to SQLite migration. 
[#581](https://github.com/greenbone/gvmd/pull/581) 
[#601](https://github.com/greenbone/gvmd/pull/601) 
[#604](https://github.com/greenbone/gvmd/pull/604) 
[#605](https://github.com/greenbone/gvmd/pull/605)
-- Update result diff generation at delta reports 
[#650](https://github.com/greenbone/gvmd/pull/650)
-
-### Fixed
-- Fix iCalendar recurrence and timezone handling 
[#654](https://github.com/greenbone/gvmd/pull/654)
-- Fix issues with some scheduled tasks by using iCalendar more instead of old 
period fields [#656](https://github.com/greenbone/gvmd/pull/655)
-- Fix an issue in getting the reports from GMP scanners 
[#659](https://github.com/greenbone/gvmd/pull/659) 
[#665](https://github.com/greenbone/gvmd/pull/665)
-- Fix GET_SYSTEM_REPORTS using slave_id 
[#668](https://github.com/greenbone/gvmd/pull/668)
-
-### Removed
-- The handling of NVT updates via OTP has been removed. 
[#575](https://github.com/greenbone/gvmd/pull/575)
-- Bid and xref have been removed from table nvts. 
[#582](https://github.com/greenbone/gvmd/pull/582)
-- Database migration from revisions before 185 has been removed. 
[#411](https://github.com/greenbone/gvmd/pull/411) 
[#622](https://github.com/greenbone/gvmd/pull/622)
-- Drop SQLite support [#610](https://github.com/greenbone/gvmd/pull/610) 
[#612](https://github.com/greenbone/gvmd/pull/612) 
[#614](https://github.com/greenbone/gvmd/pull/614)
-- Remove create report task creation 
[#616](https://github.com/greenbone/gvmd/pull/616)
-- Remove --backup command line 

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

2019-08-08 Thread Christian Rebischke via arch-commits
Date: Thursday, August 8, 2019 @ 15:22:44
  Author: shibumi
Revision: 498358

archrelease: copy trunk to community-x86_64

Added:
  gvmd/repos/community-x86_64/
  gvmd/repos/community-x86_64/CHANGELOG.md
(from rev 498357, gvmd/trunk/CHANGELOG.md)
  gvmd/repos/community-x86_64/PKGBUILD
(from rev 498357, gvmd/trunk/PKGBUILD)

--+
 CHANGELOG.md |  152 +
 PKGBUILD |   35 +
 2 files changed, 187 insertions(+)

Copied: gvmd/repos/community-x86_64/CHANGELOG.md (from rev 498357, 
gvmd/trunk/CHANGELOG.md)
===
--- community-x86_64/CHANGELOG.md   (rev 0)
+++ community-x86_64/CHANGELOG.md   2019-08-08 15:22:44 UTC (rev 498358)
@@ -0,0 +1,152 @@
+# Changelog
+
+All notable changes to this project will be documented in this file.
+
+The format is based on [Keep a 
Changelog](https://keepachangelog.com/en/1.0.0/).
+
+## [Unreleased]
+
+### Added
+- Added TLS certificates as a new resource type 
[#585](https://github.com/greenbone/gvmd/pull/585) 
[#663](https://github.com/greenbone/gvmd/pull/663)
+- Update NVTs via OSP [#392](https://github.com/greenbone/gvmd/pull/392) 
[#609](https://github.com/greenbone/gvmd/pull/609) 
[#626](https://github.com/greenbone/gvmd/pull/626)
+- Handle addition of ID to NVT preferences. 
[#413](https://github.com/greenbone/gvmd/pull/413)
+- Add setting 'OMP Slave Check Period' 
[#491](https://github.com/greenbone/gvmd/pull/491)
+- Document switching between releases when using Postgres. 
[#563](https://github.com/greenbone/gvmd/pull/563)
+- Cgreen based unit tests for gvmd has been added. 
[#579](https://github.com/greenbone/gvmd/pull/579)
+- New usage_type property to distinguish normal scan tasks and configs from 
compliance audits and policies 
[#613](https://github.com/greenbone/gvmd/pull/613) 
[#625](https://github.com/greenbone/gvmd/pull/625) 
[#633](https://github.com/greenbone/gvmd/pull/633)
+- Command cleanup-report-formats for --optimize option 
[#652](https://github.com/greenbone/gvmd/pull/652)
+
+### Changed
+- Check if NVT preferences exist before inserting. 
[#406](https://github.com/greenbone/gvmd/pull/406)
+- Raise minimum version for SQL functions. 
[#420](https://github.com/greenbone/gvmd/pull/420)
+- Run OpenVAS scans via OSP instead of OTP. 
[#422](https://github.com/greenbone/gvmd/pull/422) 
[#584](https://github.com/greenbone/gvmd/pull/584) 
[#623](https://github.com/greenbone/gvmd/pull/623) 
[#636](https://github.com/greenbone/gvmd/pull/636)
+- Request nvti_cache update only at very end of NVT update. 
[#426](https://github.com/greenbone/gvmd/pull/426)
+- Consolidate NVT references into unified "refs" element. 
[#427](https://github.com/greenbone/gvmd/pull/427)
+- Update gvm-libs version requirements to v11.0. 
[#480](https://github.com/greenbone/gvmd/pull/480)
+-Adjust to use new API for vt references. 
[#526](https://github.com/greenbone/gvmd/pull/526)
+- Expect NVT sync script in bin directory. 
[#546](https://github.com/greenbone/gvmd/pull/546)
+- Change internal handling of NVT XML to use nvti_t. 
[#562](https://github.com/greenbone/gvmd/pull/562)
+- Change NVT references like CVEs and BID to general vt_refs. 
[#570](https://github.com/greenbone/gvmd/pull/570) 
[#574](https://github.com/greenbone/gvmd/pull/574) 
[#582](https://github.com/greenbone/gvmd/pull/582)
+- Update Postgres to SQLite migration. 
[#581](https://github.com/greenbone/gvmd/pull/581) 
[#601](https://github.com/greenbone/gvmd/pull/601) 
[#604](https://github.com/greenbone/gvmd/pull/604) 
[#605](https://github.com/greenbone/gvmd/pull/605)
+- Update result diff generation at delta reports 
[#650](https://github.com/greenbone/gvmd/pull/650)
+
+### Fixed
+- Fix iCalendar recurrence and timezone handling 
[#654](https://github.com/greenbone/gvmd/pull/654)
+- Fix issues with some scheduled tasks by using iCalendar more instead of old 
period fields [#656](https://github.com/greenbone/gvmd/pull/655)
+- Fix an issue in getting the reports from GMP scanners 
[#659](https://github.com/greenbone/gvmd/pull/659) 
[#665](https://github.com/greenbone/gvmd/pull/665)
+- Fix GET_SYSTEM_REPORTS using slave_id 
[#668](https://github.com/greenbone/gvmd/pull/668)
+
+### Removed
+- The handling of NVT updates via OTP has been removed. 
[#575](https://github.com/greenbone/gvmd/pull/575)
+- Bid and xref have been removed from table nvts. 
[#582](https://github.com/greenbone/gvmd/pull/582)
+- Database migration from revisions before 185 has been removed. 
[#411](https://github.com/greenbone/gvmd/pull/411) 
[#622](https://github.com/greenbone/gvmd/pull/622)
+- Drop SQLite support [#610](https://github.com/greenbone/gvmd/pull/610) 
[#612](https://github.com/greenbone/gvmd/pull/612) 
[#614](https://github.com/greenbone/gvmd/pull/614)
+- Remove create report task creation 
[#616](https://github.com/greenbone/gvmd/pull/616)
+- Remove 

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

2019-08-08 Thread Christian Rebischke via arch-commits
Date: Thursday, August 8, 2019 @ 15:21:38
  Author: shibumi
Revision: 498357

db-remove: gvmd removed by shibumi

Deleted:
  gvmd/repos/community-x86_64/


[arch-commits] Commit in gvmd/repos/community-x86_64 (CHANGELOG.md PKGBUILD)

2019-08-08 Thread Christian Rebischke via arch-commits
Date: Thursday, August 8, 2019 @ 15:20:12
  Author: shibumi
Revision: 498356

archrelease: copy trunk to community-x86_64

Added:
  gvmd/repos/community-x86_64/CHANGELOG.md
(from rev 498355, gvmd/trunk/CHANGELOG.md)
  gvmd/repos/community-x86_64/PKGBUILD
(from rev 498355, gvmd/trunk/PKGBUILD)

--+
 CHANGELOG.md |  152 +
 PKGBUILD |   35 +
 2 files changed, 187 insertions(+)

Copied: gvmd/repos/community-x86_64/CHANGELOG.md (from rev 498355, 
gvmd/trunk/CHANGELOG.md)
===
--- CHANGELOG.md(rev 0)
+++ CHANGELOG.md2019-08-08 15:20:12 UTC (rev 498356)
@@ -0,0 +1,152 @@
+# Changelog
+
+All notable changes to this project will be documented in this file.
+
+The format is based on [Keep a 
Changelog](https://keepachangelog.com/en/1.0.0/).
+
+## [Unreleased]
+
+### Added
+- Added TLS certificates as a new resource type 
[#585](https://github.com/greenbone/gvmd/pull/585) 
[#663](https://github.com/greenbone/gvmd/pull/663)
+- Update NVTs via OSP [#392](https://github.com/greenbone/gvmd/pull/392) 
[#609](https://github.com/greenbone/gvmd/pull/609) 
[#626](https://github.com/greenbone/gvmd/pull/626)
+- Handle addition of ID to NVT preferences. 
[#413](https://github.com/greenbone/gvmd/pull/413)
+- Add setting 'OMP Slave Check Period' 
[#491](https://github.com/greenbone/gvmd/pull/491)
+- Document switching between releases when using Postgres. 
[#563](https://github.com/greenbone/gvmd/pull/563)
+- Cgreen based unit tests for gvmd has been added. 
[#579](https://github.com/greenbone/gvmd/pull/579)
+- New usage_type property to distinguish normal scan tasks and configs from 
compliance audits and policies 
[#613](https://github.com/greenbone/gvmd/pull/613) 
[#625](https://github.com/greenbone/gvmd/pull/625) 
[#633](https://github.com/greenbone/gvmd/pull/633)
+- Command cleanup-report-formats for --optimize option 
[#652](https://github.com/greenbone/gvmd/pull/652)
+
+### Changed
+- Check if NVT preferences exist before inserting. 
[#406](https://github.com/greenbone/gvmd/pull/406)
+- Raise minimum version for SQL functions. 
[#420](https://github.com/greenbone/gvmd/pull/420)
+- Run OpenVAS scans via OSP instead of OTP. 
[#422](https://github.com/greenbone/gvmd/pull/422) 
[#584](https://github.com/greenbone/gvmd/pull/584) 
[#623](https://github.com/greenbone/gvmd/pull/623) 
[#636](https://github.com/greenbone/gvmd/pull/636)
+- Request nvti_cache update only at very end of NVT update. 
[#426](https://github.com/greenbone/gvmd/pull/426)
+- Consolidate NVT references into unified "refs" element. 
[#427](https://github.com/greenbone/gvmd/pull/427)
+- Update gvm-libs version requirements to v11.0. 
[#480](https://github.com/greenbone/gvmd/pull/480)
+-Adjust to use new API for vt references. 
[#526](https://github.com/greenbone/gvmd/pull/526)
+- Expect NVT sync script in bin directory. 
[#546](https://github.com/greenbone/gvmd/pull/546)
+- Change internal handling of NVT XML to use nvti_t. 
[#562](https://github.com/greenbone/gvmd/pull/562)
+- Change NVT references like CVEs and BID to general vt_refs. 
[#570](https://github.com/greenbone/gvmd/pull/570) 
[#574](https://github.com/greenbone/gvmd/pull/574) 
[#582](https://github.com/greenbone/gvmd/pull/582)
+- Update Postgres to SQLite migration. 
[#581](https://github.com/greenbone/gvmd/pull/581) 
[#601](https://github.com/greenbone/gvmd/pull/601) 
[#604](https://github.com/greenbone/gvmd/pull/604) 
[#605](https://github.com/greenbone/gvmd/pull/605)
+- Update result diff generation at delta reports 
[#650](https://github.com/greenbone/gvmd/pull/650)
+
+### Fixed
+- Fix iCalendar recurrence and timezone handling 
[#654](https://github.com/greenbone/gvmd/pull/654)
+- Fix issues with some scheduled tasks by using iCalendar more instead of old 
period fields [#656](https://github.com/greenbone/gvmd/pull/655)
+- Fix an issue in getting the reports from GMP scanners 
[#659](https://github.com/greenbone/gvmd/pull/659) 
[#665](https://github.com/greenbone/gvmd/pull/665)
+- Fix GET_SYSTEM_REPORTS using slave_id 
[#668](https://github.com/greenbone/gvmd/pull/668)
+
+### Removed
+- The handling of NVT updates via OTP has been removed. 
[#575](https://github.com/greenbone/gvmd/pull/575)
+- Bid and xref have been removed from table nvts. 
[#582](https://github.com/greenbone/gvmd/pull/582)
+- Database migration from revisions before 185 has been removed. 
[#411](https://github.com/greenbone/gvmd/pull/411) 
[#622](https://github.com/greenbone/gvmd/pull/622)
+- Drop SQLite support [#610](https://github.com/greenbone/gvmd/pull/610) 
[#612](https://github.com/greenbone/gvmd/pull/612) 
[#614](https://github.com/greenbone/gvmd/pull/614)
+- Remove create report task creation 
[#616](https://github.com/greenbone/gvmd/pull/616)
+- Remove --backup command line option 

[arch-commits] Commit in gvmd (trunk trunk/CHANGELOG.md trunk/PKGBUILD)

2019-08-08 Thread Christian Rebischke via arch-commits
Date: Thursday, August 8, 2019 @ 15:19:51
  Author: shibumi
Revision: 498355

added trunk directory to gvmd

Added:
  gvmd/trunk/
  gvmd/trunk/CHANGELOG.md
  gvmd/trunk/PKGBUILD

--+
 CHANGELOG.md |  152 +
 PKGBUILD |   35 +
 2 files changed, 187 insertions(+)

Added: trunk/CHANGELOG.md
===
--- trunk/CHANGELOG.md  (rev 0)
+++ trunk/CHANGELOG.md  2019-08-08 15:19:51 UTC (rev 498355)
@@ -0,0 +1,152 @@
+# Changelog
+
+All notable changes to this project will be documented in this file.
+
+The format is based on [Keep a 
Changelog](https://keepachangelog.com/en/1.0.0/).
+
+## [Unreleased]
+
+### Added
+- Added TLS certificates as a new resource type 
[#585](https://github.com/greenbone/gvmd/pull/585) 
[#663](https://github.com/greenbone/gvmd/pull/663)
+- Update NVTs via OSP [#392](https://github.com/greenbone/gvmd/pull/392) 
[#609](https://github.com/greenbone/gvmd/pull/609) 
[#626](https://github.com/greenbone/gvmd/pull/626)
+- Handle addition of ID to NVT preferences. 
[#413](https://github.com/greenbone/gvmd/pull/413)
+- Add setting 'OMP Slave Check Period' 
[#491](https://github.com/greenbone/gvmd/pull/491)
+- Document switching between releases when using Postgres. 
[#563](https://github.com/greenbone/gvmd/pull/563)
+- Cgreen based unit tests for gvmd has been added. 
[#579](https://github.com/greenbone/gvmd/pull/579)
+- New usage_type property to distinguish normal scan tasks and configs from 
compliance audits and policies 
[#613](https://github.com/greenbone/gvmd/pull/613) 
[#625](https://github.com/greenbone/gvmd/pull/625) 
[#633](https://github.com/greenbone/gvmd/pull/633)
+- Command cleanup-report-formats for --optimize option 
[#652](https://github.com/greenbone/gvmd/pull/652)
+
+### Changed
+- Check if NVT preferences exist before inserting. 
[#406](https://github.com/greenbone/gvmd/pull/406)
+- Raise minimum version for SQL functions. 
[#420](https://github.com/greenbone/gvmd/pull/420)
+- Run OpenVAS scans via OSP instead of OTP. 
[#422](https://github.com/greenbone/gvmd/pull/422) 
[#584](https://github.com/greenbone/gvmd/pull/584) 
[#623](https://github.com/greenbone/gvmd/pull/623) 
[#636](https://github.com/greenbone/gvmd/pull/636)
+- Request nvti_cache update only at very end of NVT update. 
[#426](https://github.com/greenbone/gvmd/pull/426)
+- Consolidate NVT references into unified "refs" element. 
[#427](https://github.com/greenbone/gvmd/pull/427)
+- Update gvm-libs version requirements to v11.0. 
[#480](https://github.com/greenbone/gvmd/pull/480)
+-Adjust to use new API for vt references. 
[#526](https://github.com/greenbone/gvmd/pull/526)
+- Expect NVT sync script in bin directory. 
[#546](https://github.com/greenbone/gvmd/pull/546)
+- Change internal handling of NVT XML to use nvti_t. 
[#562](https://github.com/greenbone/gvmd/pull/562)
+- Change NVT references like CVEs and BID to general vt_refs. 
[#570](https://github.com/greenbone/gvmd/pull/570) 
[#574](https://github.com/greenbone/gvmd/pull/574) 
[#582](https://github.com/greenbone/gvmd/pull/582)
+- Update Postgres to SQLite migration. 
[#581](https://github.com/greenbone/gvmd/pull/581) 
[#601](https://github.com/greenbone/gvmd/pull/601) 
[#604](https://github.com/greenbone/gvmd/pull/604) 
[#605](https://github.com/greenbone/gvmd/pull/605)
+- Update result diff generation at delta reports 
[#650](https://github.com/greenbone/gvmd/pull/650)
+
+### Fixed
+- Fix iCalendar recurrence and timezone handling 
[#654](https://github.com/greenbone/gvmd/pull/654)
+- Fix issues with some scheduled tasks by using iCalendar more instead of old 
period fields [#656](https://github.com/greenbone/gvmd/pull/655)
+- Fix an issue in getting the reports from GMP scanners 
[#659](https://github.com/greenbone/gvmd/pull/659) 
[#665](https://github.com/greenbone/gvmd/pull/665)
+- Fix GET_SYSTEM_REPORTS using slave_id 
[#668](https://github.com/greenbone/gvmd/pull/668)
+
+### Removed
+- The handling of NVT updates via OTP has been removed. 
[#575](https://github.com/greenbone/gvmd/pull/575)
+- Bid and xref have been removed from table nvts. 
[#582](https://github.com/greenbone/gvmd/pull/582)
+- Database migration from revisions before 185 has been removed. 
[#411](https://github.com/greenbone/gvmd/pull/411) 
[#622](https://github.com/greenbone/gvmd/pull/622)
+- Drop SQLite support [#610](https://github.com/greenbone/gvmd/pull/610) 
[#612](https://github.com/greenbone/gvmd/pull/612) 
[#614](https://github.com/greenbone/gvmd/pull/614)
+- Remove create report task creation 
[#616](https://github.com/greenbone/gvmd/pull/616)
+- Remove --backup command line option 
[#615](https://github.com/greenbone/gvmd/pull/615)
+- Remove GET_REPORTS type "assets" 
[#617](https://github.com/greenbone/gvmd/pull/617) 
[#620](https://github.com/greenbone/gvmd/pull/620)
+- Remove errors for unknown elements 

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

2019-08-08 Thread Christian Rebischke via arch-commits
Date: Thursday, August 8, 2019 @ 15:16:40
  Author: shibumi
Revision: 498354

archrelease: copy trunk to community-x86_64

Added:
  gvmd/repos/community-x86_64/


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

2019-08-08 Thread Christian Rebischke via arch-commits
Date: Thursday, August 8, 2019 @ 15:13:35
  Author: shibumi
Revision: 498353

archrelease: copy trunk to community-x86_64

Added:
  openvas/repos/community-x86_64/
  openvas/repos/community-x86_64/CHANGELOG.md
(from rev 498352, openvas/trunk/CHANGELOG.md)
  openvas/repos/community-x86_64/PKGBUILD
(from rev 498352, openvas/trunk/PKGBUILD)
  openvas/repos/community-x86_64/openvas.service
(from rev 498352, openvas/trunk/openvas.service)

-+
 CHANGELOG.md|   87 ++
 PKGBUILD|   36 ++
 openvas.service |   11 ++
 3 files changed, 134 insertions(+)

Copied: openvas/repos/community-x86_64/CHANGELOG.md (from rev 498352, 
openvas/trunk/CHANGELOG.md)
===
--- community-x86_64/CHANGELOG.md   (rev 0)
+++ community-x86_64/CHANGELOG.md   2019-08-08 15:13:35 UTC (rev 498353)
@@ -0,0 +1,87 @@
+# Changelog
+
+All notable changes to this project will be documented in this file.
+
+The format is based on [Keep a 
Changelog](https://keepachangelog.com/en/1.0.0/).
+
+## [Unreleased]
+
+### Added
+- An ID has been added to NVT preferences. 
[#282](https://github.com/greenbone/openvas/pull/282)
+- A new NVT cross references data handling has been 
added.[#317](https://github.com/greenbone/openvas/pull/317)
+
+### Changes
+- Vendor version is now an option in the config file. 
[#363](https://github.com/greenbone/openvas/pull/363)
+- The NVT preference format has been changed. 
[#275](https://github.com/greenbone/openvas/pull/275)
+- Redis supported versions must be 3.2 or higher. 
[#287](https://github.com/greenbone/openvas/pull/287)
+- Log directory is now configurable. 
[#316](https://github.com/greenbone/openvas/pull/316)
+- The greenbone-nvt-sync script is not allowed to run as root. 
[#323](https://github.com/greenbone/openvas/pull/323)
+- OpenVAS Scanner has been renamed to OpenVAS (Open Vulnerability Assessment 
Scanner). [#337](https://github.com/greenbone/openvas/pull/337) 
[#343](https://github.com/greenbone/openvas/pull/343)
+- Retry until a host finishes and frees a db before running a new host scan, 
in case there is no free redis db. Therefore a infinite loop has been added 
when it call kb_new(). [#340](https://github.com/greenbone/openvas/pull/340)
+
+### Fixed
+- An issue with stuck scans where only a single plugin is running and is 
beyond its timeout has been addressed. 
[#289](https://github.com/greenbone/openvas/pull/289)
+- Fix a type mismatch. Use correct format specifier for size_t. 
[#299](https://github.com/greenbone/openvas/pull/299)
+- An issue which caused falling back into a default port in get_ssh_port() has 
been fixed. [#342](https://github.com/greenbone/openvas/pull/342)
+
+### Removed
+- Unused be_nice scan preferences has been removed. 
[#313](https://github.com/greenbone/openvas/pull/313)
+- OTP has been entirely removed in favor of using the ospd-openvas interface. 
[#337](https://github.com/greenbone/openvas/pull/337)
+- Daemon mode has been entirely removed. 
[#337](https://github.com/greenbone/openvas/pull/337)  
[#341](https://github.com/greenbone/openvas/pull/341)
+
+[Unreleased]: 
https://github.com/greenbone/openvas/compare/openvas-scanner-6.0...master
+
+## [6.0.2] (unreleased)
+
+### Changes
+- The call to wmiexec.py has been replaced with impacket-wmiexec, because the 
symlink has been added in Debian Stretch with python-impacket 0.9.15-1.
+
+[6.0.2]: 
https://github.com/greenbone/openvas/compare/v6.0.1...openvas-scanner-6.0
+
+## [6.0.1] (2019-07-17)
+
+### Added
+
+### Changes
+- Use lowercase for values added from add_host_name(). 
[#306](https://github.com/greenbone/openvas/pull/306)
+- Do not launch the scan if the nvticache is corrupted. 
[#309](https://github.com/greenbone/openvas/pull/310)
+- Separate each scan plugin process into its own process group. 
[#325](https://github.com/greenbone/openvas/pull/325)
+
+### Fixed
+- An issue which caused the scanner to crash when a plugin is missing during a 
scan has been addressed. [#296](https://github.com/greenbone/openvas/pull/296)
+- An issue which causes a scan to hang has been addressed. 
[#301](https://github.com/greenbone/openvas/pull/301)
+- Issues in building process have been addressed. 
[#308](https://github.com/greenbone/openvas/pull/308)
+- An issue which caused resuming task not to work was addressed. 
[#312](https://github.com/greenbone/openvas/pull/312)
+- An issue which caused a possible null IP values in OTP results / HOST_END 
has been addressed. [#321](https://github.com/greenbone/openvas/pull/321)
+- An issue which caused the scanner to finish instantly without any result has 
been addressed. [#330](https://github.com/greenbone/openvas/pull/330)
+
+### Removed
+- Currently unused advanced_log related code has been removed. 
[#327](https://github.com/greenbone/openvas/pull/327)
+
+[6.0.1]: 

[arch-commits] Commit in (6 files)

2019-08-08 Thread Christian Rebischke via arch-commits
Date: Thursday, August 8, 2019 @ 15:13:22
  Author: shibumi
Revision: 498352

new openvas scanner package

Added:
  openvas/
  openvas/repos/
  openvas/trunk/
  openvas/trunk/CHANGELOG.md
  openvas/trunk/PKGBUILD
  openvas/trunk/openvas.service

-+
 CHANGELOG.md|   87 ++
 PKGBUILD|   36 ++
 openvas.service |   11 ++
 3 files changed, 134 insertions(+)

Added: openvas/trunk/CHANGELOG.md
===
--- openvas/trunk/CHANGELOG.md  (rev 0)
+++ openvas/trunk/CHANGELOG.md  2019-08-08 15:13:22 UTC (rev 498352)
@@ -0,0 +1,87 @@
+# Changelog
+
+All notable changes to this project will be documented in this file.
+
+The format is based on [Keep a 
Changelog](https://keepachangelog.com/en/1.0.0/).
+
+## [Unreleased]
+
+### Added
+- An ID has been added to NVT preferences. 
[#282](https://github.com/greenbone/openvas/pull/282)
+- A new NVT cross references data handling has been 
added.[#317](https://github.com/greenbone/openvas/pull/317)
+
+### Changes
+- Vendor version is now an option in the config file. 
[#363](https://github.com/greenbone/openvas/pull/363)
+- The NVT preference format has been changed. 
[#275](https://github.com/greenbone/openvas/pull/275)
+- Redis supported versions must be 3.2 or higher. 
[#287](https://github.com/greenbone/openvas/pull/287)
+- Log directory is now configurable. 
[#316](https://github.com/greenbone/openvas/pull/316)
+- The greenbone-nvt-sync script is not allowed to run as root. 
[#323](https://github.com/greenbone/openvas/pull/323)
+- OpenVAS Scanner has been renamed to OpenVAS (Open Vulnerability Assessment 
Scanner). [#337](https://github.com/greenbone/openvas/pull/337) 
[#343](https://github.com/greenbone/openvas/pull/343)
+- Retry until a host finishes and frees a db before running a new host scan, 
in case there is no free redis db. Therefore a infinite loop has been added 
when it call kb_new(). [#340](https://github.com/greenbone/openvas/pull/340)
+
+### Fixed
+- An issue with stuck scans where only a single plugin is running and is 
beyond its timeout has been addressed. 
[#289](https://github.com/greenbone/openvas/pull/289)
+- Fix a type mismatch. Use correct format specifier for size_t. 
[#299](https://github.com/greenbone/openvas/pull/299)
+- An issue which caused falling back into a default port in get_ssh_port() has 
been fixed. [#342](https://github.com/greenbone/openvas/pull/342)
+
+### Removed
+- Unused be_nice scan preferences has been removed. 
[#313](https://github.com/greenbone/openvas/pull/313)
+- OTP has been entirely removed in favor of using the ospd-openvas interface. 
[#337](https://github.com/greenbone/openvas/pull/337)
+- Daemon mode has been entirely removed. 
[#337](https://github.com/greenbone/openvas/pull/337)  
[#341](https://github.com/greenbone/openvas/pull/341)
+
+[Unreleased]: 
https://github.com/greenbone/openvas/compare/openvas-scanner-6.0...master
+
+## [6.0.2] (unreleased)
+
+### Changes
+- The call to wmiexec.py has been replaced with impacket-wmiexec, because the 
symlink has been added in Debian Stretch with python-impacket 0.9.15-1.
+
+[6.0.2]: 
https://github.com/greenbone/openvas/compare/v6.0.1...openvas-scanner-6.0
+
+## [6.0.1] (2019-07-17)
+
+### Added
+
+### Changes
+- Use lowercase for values added from add_host_name(). 
[#306](https://github.com/greenbone/openvas/pull/306)
+- Do not launch the scan if the nvticache is corrupted. 
[#309](https://github.com/greenbone/openvas/pull/310)
+- Separate each scan plugin process into its own process group. 
[#325](https://github.com/greenbone/openvas/pull/325)
+
+### Fixed
+- An issue which caused the scanner to crash when a plugin is missing during a 
scan has been addressed. [#296](https://github.com/greenbone/openvas/pull/296)
+- An issue which causes a scan to hang has been addressed. 
[#301](https://github.com/greenbone/openvas/pull/301)
+- Issues in building process have been addressed. 
[#308](https://github.com/greenbone/openvas/pull/308)
+- An issue which caused resuming task not to work was addressed. 
[#312](https://github.com/greenbone/openvas/pull/312)
+- An issue which caused a possible null IP values in OTP results / HOST_END 
has been addressed. [#321](https://github.com/greenbone/openvas/pull/321)
+- An issue which caused the scanner to finish instantly without any result has 
been addressed. [#330](https://github.com/greenbone/openvas/pull/330)
+
+### Removed
+- Currently unused advanced_log related code has been removed. 
[#327](https://github.com/greenbone/openvas/pull/327)
+
+[6.0.1]: 
https://github.com/greenbone/openvas/compare/v6.0.0...openvas-scanner-6.0
+
+## [6.0.0] (2019-04-05)
+
+### Added
+- Function to get the currently running script filename has been added.
+
+### Changed
+- Debugging nasl mechanism has been improved, replacing preprocessor directives
+  with 

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

2019-08-08 Thread Christian Rebischke via arch-commits
Date: Thursday, August 8, 2019 @ 15:10:50
  Author: shibumi
Revision: 498351

archrelease: copy trunk to community-x86_64

Added:
  gvm-tools/repos/community-x86_64/
  gvm-tools/repos/community-x86_64/CHANGELOG.md
(from rev 498350, gvm-tools/trunk/CHANGELOG.md)
  gvm-tools/repos/community-x86_64/PKGBUILD
(from rev 498350, gvm-tools/trunk/PKGBUILD)

--+
 CHANGELOG.md |  219 +
 PKGBUILD |   32 
 2 files changed, 251 insertions(+)

Copied: gvm-tools/repos/community-x86_64/CHANGELOG.md (from rev 498350, 
gvm-tools/trunk/CHANGELOG.md)
===
--- community-x86_64/CHANGELOG.md   (rev 0)
+++ community-x86_64/CHANGELOG.md   2019-08-08 15:10:50 UTC (rev 498351)
@@ -0,0 +1,219 @@
+# Changelog
+
+All notable changes to this project will be documented in this file.
+
+The format is based on [Keep a 
Changelog](https://keepachangelog.com/en/1.0.0/),
+and this project adheres to [Semantic 
Versioning](https://semver.org/spec/v2.0.0.html).
+
+For detailed code changes, please visit
+https://github.com/greenbone/gvm-tools/commits/master
+or get the entire source code repository and view log history:
+
+```sh
+$ git clone https://github.com/greenbone/gvm-tools.git
+$ cd gvm-tools && git log
+```
+
+## [Unreleased]
+
+### Added
+- Added --ssh-password switch for ssh connection [PR 
140](https://github.com/greenbone/gvm-tools/pull/140)
+- Added a new console line interface `gvm-script` for only running GMP and OSP
+  scripts without opening a python shell [PR 
152](https://github.com/greenbone/gvm-tools/pull/152)
+- Forbid to run any gvm-tools cli as root user [PR 
183](https://github.com/greenbone/gvm-tools/pull/183)
+- Added error message if invalid XML is passed to `gvm-cli` [PR 
198](https://github.com/greenbone/gvm-tools/pull/198)
+- Added argument `--pretty` to `gvm-cli` to pretty format xml output
+  [PR 203](https://github.com/greenbone/gvm-tools/pull/203)
+
+### Changed
+- Improved error messages if unix socket could not be found [PR 
78](https://github.com/greenbone/python-gvm/pull/78)
+- The structure for the config file (default is ~/.config/gvm-tools.conf) has
+  changed. It's possible to set defaults for nearly all command line arguments
+  [PR 140](https://github.com/greenbone/gvm-tools/pull/140)
+- The command line help for `gvm-cli` and `gvm-pyshell` has been updated and
+  made more consistent [PR 
138](https://github.com/greenbone/gvm-tools/pull/138)
+- Renamed --ssh-user switch to --ssh-username [PR 
140](https://github.com/greenbone/gvm-tools/pull/140)
+- Update `gvmtools.get_version` to return a fully compliant [PEP 
440](https://www.python.org/dev/peps/pep-0440/)
+  version string [PR 150](https://github.com/greenbone/gvm-tools/pull/150)
+- Refresh the dependencies specified via the `Pipfile.lock` file to their 
latest
+  versions [PR 186](https://github.com/greenbone/gvm-tools/pull/186),
+  [PR 193](https://github.com/greenbone/gvm-tools/pull/193)
+- Dropped global command line arguments from sub commands e.g. it must be 
`gvm-cli --config foo.conf socket ...`
+  instead of `gvm-cli socket --config foo.conf` now. The latter didn't work 
actually but
+  was listed in the `--help` output 
[#194](https://github.com/greenbone/gvm-tools/pull/194)
+- Improved error message if a global argument is passed after the connection 
type to `gvm-cli`
+  [#196](https://github.com/greenbone/gvm-tools/pull/196)
+- Renamed `clean-slave.gmp` to `clean-sensor.gmp` [PR 
202](https://github.com/greenbone/gvm-tools/pull/202)
+
+### Deprecated
+- Only running scripts with gvm-pyshell is deprecated [PR 
152](https://github.com/greenbone/gvm-tools/pull/152)
+- \[Auth\] section in config file is deprecated and will be ignored in future
+  releases [PR 160](https://github.com/greenbone/gvm-tools/pull/160)
+
+### Fixed
+- Fix a bug which caused `gvm-pyshell` to immediately re-enter interactive mode
+  upon exiting it for the first time [PR 
139](https://github.com/greenbone/gvm-tools/pull/139)
+- Support \[Auth\] section in config file for backwards compatibility [PR 
160](https://github.com/greenbone/gvm-tools/pull/160)
+- Fix using correct API to get single task and targets in 
update-task-target.gmp
+  script [PR 188](https://github.com/greenbone/gvm-tools/pull/188)
+
+## [2.0.0.beta1] - 2018-11-13
+
+gvm-tools got split into the command line interfaces (*gvm-cli* and
+*gvm-pyshell*) including the [gmp (example) 
scripts](https://github.com/greenbone/gvm-tools/tree/master/scripts)
+and the Python API. The Python API can now be found at
+[python-gvm](https://github.com/greenbone/python-gvm). During this split the
+python package name for the API got changed from **gmp** to **gvm**. The API
+has also been refactored and stabilized. For details please take a look at
+[python-gvm](https://github.com/greenbone/python-gvm)
+[PR 

[arch-commits] Commit in (5 files)

2019-08-08 Thread Christian Rebischke via arch-commits
Date: Thursday, August 8, 2019 @ 15:10:35
  Author: shibumi
Revision: 498350

new tool gvm-tools for openvas

Added:
  gvm-tools/
  gvm-tools/repos/
  gvm-tools/trunk/
  gvm-tools/trunk/CHANGELOG.md
  gvm-tools/trunk/PKGBUILD

--+
 CHANGELOG.md |  219 +
 PKGBUILD |   32 
 2 files changed, 251 insertions(+)

Added: gvm-tools/trunk/CHANGELOG.md
===
--- gvm-tools/trunk/CHANGELOG.md(rev 0)
+++ gvm-tools/trunk/CHANGELOG.md2019-08-08 15:10:35 UTC (rev 498350)
@@ -0,0 +1,219 @@
+# Changelog
+
+All notable changes to this project will be documented in this file.
+
+The format is based on [Keep a 
Changelog](https://keepachangelog.com/en/1.0.0/),
+and this project adheres to [Semantic 
Versioning](https://semver.org/spec/v2.0.0.html).
+
+For detailed code changes, please visit
+https://github.com/greenbone/gvm-tools/commits/master
+or get the entire source code repository and view log history:
+
+```sh
+$ git clone https://github.com/greenbone/gvm-tools.git
+$ cd gvm-tools && git log
+```
+
+## [Unreleased]
+
+### Added
+- Added --ssh-password switch for ssh connection [PR 
140](https://github.com/greenbone/gvm-tools/pull/140)
+- Added a new console line interface `gvm-script` for only running GMP and OSP
+  scripts without opening a python shell [PR 
152](https://github.com/greenbone/gvm-tools/pull/152)
+- Forbid to run any gvm-tools cli as root user [PR 
183](https://github.com/greenbone/gvm-tools/pull/183)
+- Added error message if invalid XML is passed to `gvm-cli` [PR 
198](https://github.com/greenbone/gvm-tools/pull/198)
+- Added argument `--pretty` to `gvm-cli` to pretty format xml output
+  [PR 203](https://github.com/greenbone/gvm-tools/pull/203)
+
+### Changed
+- Improved error messages if unix socket could not be found [PR 
78](https://github.com/greenbone/python-gvm/pull/78)
+- The structure for the config file (default is ~/.config/gvm-tools.conf) has
+  changed. It's possible to set defaults for nearly all command line arguments
+  [PR 140](https://github.com/greenbone/gvm-tools/pull/140)
+- The command line help for `gvm-cli` and `gvm-pyshell` has been updated and
+  made more consistent [PR 
138](https://github.com/greenbone/gvm-tools/pull/138)
+- Renamed --ssh-user switch to --ssh-username [PR 
140](https://github.com/greenbone/gvm-tools/pull/140)
+- Update `gvmtools.get_version` to return a fully compliant [PEP 
440](https://www.python.org/dev/peps/pep-0440/)
+  version string [PR 150](https://github.com/greenbone/gvm-tools/pull/150)
+- Refresh the dependencies specified via the `Pipfile.lock` file to their 
latest
+  versions [PR 186](https://github.com/greenbone/gvm-tools/pull/186),
+  [PR 193](https://github.com/greenbone/gvm-tools/pull/193)
+- Dropped global command line arguments from sub commands e.g. it must be 
`gvm-cli --config foo.conf socket ...`
+  instead of `gvm-cli socket --config foo.conf` now. The latter didn't work 
actually but
+  was listed in the `--help` output 
[#194](https://github.com/greenbone/gvm-tools/pull/194)
+- Improved error message if a global argument is passed after the connection 
type to `gvm-cli`
+  [#196](https://github.com/greenbone/gvm-tools/pull/196)
+- Renamed `clean-slave.gmp` to `clean-sensor.gmp` [PR 
202](https://github.com/greenbone/gvm-tools/pull/202)
+
+### Deprecated
+- Only running scripts with gvm-pyshell is deprecated [PR 
152](https://github.com/greenbone/gvm-tools/pull/152)
+- \[Auth\] section in config file is deprecated and will be ignored in future
+  releases [PR 160](https://github.com/greenbone/gvm-tools/pull/160)
+
+### Fixed
+- Fix a bug which caused `gvm-pyshell` to immediately re-enter interactive mode
+  upon exiting it for the first time [PR 
139](https://github.com/greenbone/gvm-tools/pull/139)
+- Support \[Auth\] section in config file for backwards compatibility [PR 
160](https://github.com/greenbone/gvm-tools/pull/160)
+- Fix using correct API to get single task and targets in 
update-task-target.gmp
+  script [PR 188](https://github.com/greenbone/gvm-tools/pull/188)
+
+## [2.0.0.beta1] - 2018-11-13
+
+gvm-tools got split into the command line interfaces (*gvm-cli* and
+*gvm-pyshell*) including the [gmp (example) 
scripts](https://github.com/greenbone/gvm-tools/tree/master/scripts)
+and the Python API. The Python API can now be found at
+[python-gvm](https://github.com/greenbone/python-gvm). During this split the
+python package name for the API got changed from **gmp** to **gvm**. The API
+has also been refactored and stabilized. For details please take a look at
+[python-gvm](https://github.com/greenbone/python-gvm)
+[PR 126](https://github.com/greenbone/gvm-tools/pull/126).
+
+### Added
+- It's now possible to write OSP scripts. Using the `--protocol=OSP` switch
+  `gvm-pyshell` adds a global **osp** object instead of the **gmp** one.
+- 

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

2019-08-08 Thread Christian Rebischke via arch-commits
Date: Thursday, August 8, 2019 @ 15:07:45
  Author: shibumi
Revision: 498349

archrelease: copy trunk to community-x86_64

Added:
  gvm-libs/repos/community-x86_64/
  gvm-libs/repos/community-x86_64/CHANGELOG.md
(from rev 498348, gvm-libs/trunk/CHANGELOG.md)
  gvm-libs/repos/community-x86_64/PKGBUILD
(from rev 498348, gvm-libs/trunk/PKGBUILD)

--+
 CHANGELOG.md |   53 +
 PKGBUILD |   36 
 2 files changed, 89 insertions(+)

Copied: gvm-libs/repos/community-x86_64/CHANGELOG.md (from rev 498348, 
gvm-libs/trunk/CHANGELOG.md)
===
--- community-x86_64/CHANGELOG.md   (rev 0)
+++ community-x86_64/CHANGELOG.md   2019-08-08 15:07:45 UTC (rev 498349)
@@ -0,0 +1,53 @@
+# Changelog
+
+All notable changes to this project will be documented in this file.
+
+The format is based on [Keep a 
Changelog](https://keepachangelog.com/en/1.0.0/).
+
+## [Unreleased]
+
+### Added
+- A new data model for unified handling of cross references in the NVT meta 
data as been added. All previous API elements to handle cve, bid, xref werehas 
been removed. [#225](https://github.com/greenbone/gvm-libs/pull/225) 
[#232](https://github.com/greenbone/gvm-libs/pull/232).
+
+### Changed
+- Handle EAI_AGAIN in gvm_host_reverse_lookup() IPv6 case and function 
refactor. [#229](https://github.com/greenbone/gvm-libs/pull/229)
+- Prevent g_strsplit to be called with NULL. 
[#238](https://github.com/greenbone/gvm-libs/pull/238)
+
+### Fixed
+- Prevent g_strsplit to be called with NULL. 
[#238](https://github.com/greenbone/gvm-libs/pull/238)
+
+### Removed
+- Remove inconsistent delays in kb routines. 
[#230](https://github.com/greenbone/gvm-libs/pull/230)
+
+[Unreleased]: 
https://github.com/greenbone/gvm-libs/compare/gvm-libs-10.0...master
+
+## [10.0.1] (unreleased)
+
+### Added
+- Allow multiple certificate formats for S/MIME. 
[#231](https://github.com/greenbone/gvm-libs/pull/231)
+- Add cmake options to build with ldap and radius support. 
[#235](https://github.com/greenbone/gvm-libs/pull/235)
+
+### Changed
+- Always add hostnames and vhosts in lower-case format. 
[#218](https://github.com/greenbone/gvm-libs/pull/218)
+- Plugin feed version file: Show message only once if it is not found. 
[#220](https://github.com/greenbone/gvm-libs/pull/220)
+- Use g_log instead of g_debug for No redis DB available message. 
[#224](https://github.com/greenbone/gvm-libs/pull/224)
+
+### Fixed
+- Fix prefs key in nvticache_delete(). 
[#214](https://github.com/greenbone/gvm-libs/pull/214)
+- Fix redis_find(). [#216](https://github.com/greenbone/gvm-libs/pull/216)
+- Fixes to gvm_hosts_resolve(). 
[#228](https://github.com/greenbone/gvm-libs/pull/228)
+
+[10.0.1]: https://github.com/greenbone/gvm-libs/compare/v10.0.0...gvm-libs-10.0
+
+## [10.0.0] (2019-04-05)
+
+### Changed
+- The function gvm_hosts_shuffle has been improved. 
[#200](https://github.com/greenbone/gvm-libs/pull/200)
+
+### Fixed
+- An issue which caused duplicated or removed values in the nvticache as 
addressed. [#196](https://github.com/greenbone/gvm-libs/pull/196)
+- Performance fixes related to handling large sets of hosts have been 
done.[203](https://github.com/greenbone/gvm-libs/pull/203) 
[#208](https://github.com/greenbone/gvm-libs/pull/208)
+- Memory management issues have been addressed. 
[#187](https://github.com/greenbone/gvm-libs/pull/187)
+
+
+[10.0.0]: https://github.com/greenbone/gvm-libs/compare/1.0.0...v10.0.0

Copied: gvm-libs/repos/community-x86_64/PKGBUILD (from rev 498348, 
gvm-libs/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2019-08-08 15:07:45 UTC (rev 498349)
@@ -0,0 +1,36 @@
+# Maintainer  : Christian Rebischke 
+# Maintainer  : Levente Polyak 
+# Contributor : Daniel Micay 
+pkgname=gvm-libs
+pkgver=10.0.1
+pkgrel=1
+pkgdesc='greenbone-vulnerability-manager libraries'
+arch=('x86_64')
+url="https://github.com/greenbone/gvm-libs;
+license=('GPL')
+depends=('gnutls' 'libpcap' 'gpgme' 'libssh' 'glib2' 'libldap' 'hiredis')
+makedepends=('cmake' 'doxygen')
+groups=('greenbone-vulnerability-manager')
+source=("https://github.com/greenbone/gvm-libs/releases/download/v${pkgver}/gvm-libs-${pkgver}.tar.gz.sig;
+
"${pkgname}-${pkgver}.tar.gz::https://github.com/greenbone/gvm-libs/archive/v${pkgver}.tar.gz;)
+sha512sums=('SKIP'
+
'961570e8fa8f89f0b462991bff1bf4e512ed6419cff6871c7432899847fb9edcc9f0adb7c280d12ee69fbb5c8e306c9e4366e2cbbb05fc3bae06795dcfb42206')
+validpgpkeys=(
+  '8AE4BE429B60A59B311C2E739823FAA60ED1E580' # GVM Transfer 
Integrity
+)
+replaces=('openvas-libraries')
+changelog=CHANGELOG.md
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  LDFLAGS+=" -Wl,--no-as-needed"
+  cmake 

[arch-commits] Commit in gvm-libs/trunk (CHANGELOG.md PKGBUILD)

2019-08-08 Thread Christian Rebischke via arch-commits
Date: Thursday, August 8, 2019 @ 15:07:37
  Author: shibumi
Revision: 498348

upgpkg: gvm-libs 10.0.1-1

new gvm-libs. This package is supposed to replace openvas-libraries

Added:
  gvm-libs/trunk/CHANGELOG.md
Modified:
  gvm-libs/trunk/PKGBUILD

--+
 CHANGELOG.md |   53 +
 PKGBUILD |   11 ++-
 2 files changed, 59 insertions(+), 5 deletions(-)

Added: CHANGELOG.md
===
--- CHANGELOG.md(rev 0)
+++ CHANGELOG.md2019-08-08 15:07:37 UTC (rev 498348)
@@ -0,0 +1,53 @@
+# Changelog
+
+All notable changes to this project will be documented in this file.
+
+The format is based on [Keep a 
Changelog](https://keepachangelog.com/en/1.0.0/).
+
+## [Unreleased]
+
+### Added
+- A new data model for unified handling of cross references in the NVT meta 
data as been added. All previous API elements to handle cve, bid, xref werehas 
been removed. [#225](https://github.com/greenbone/gvm-libs/pull/225) 
[#232](https://github.com/greenbone/gvm-libs/pull/232).
+
+### Changed
+- Handle EAI_AGAIN in gvm_host_reverse_lookup() IPv6 case and function 
refactor. [#229](https://github.com/greenbone/gvm-libs/pull/229)
+- Prevent g_strsplit to be called with NULL. 
[#238](https://github.com/greenbone/gvm-libs/pull/238)
+
+### Fixed
+- Prevent g_strsplit to be called with NULL. 
[#238](https://github.com/greenbone/gvm-libs/pull/238)
+
+### Removed
+- Remove inconsistent delays in kb routines. 
[#230](https://github.com/greenbone/gvm-libs/pull/230)
+
+[Unreleased]: 
https://github.com/greenbone/gvm-libs/compare/gvm-libs-10.0...master
+
+## [10.0.1] (unreleased)
+
+### Added
+- Allow multiple certificate formats for S/MIME. 
[#231](https://github.com/greenbone/gvm-libs/pull/231)
+- Add cmake options to build with ldap and radius support. 
[#235](https://github.com/greenbone/gvm-libs/pull/235)
+
+### Changed
+- Always add hostnames and vhosts in lower-case format. 
[#218](https://github.com/greenbone/gvm-libs/pull/218)
+- Plugin feed version file: Show message only once if it is not found. 
[#220](https://github.com/greenbone/gvm-libs/pull/220)
+- Use g_log instead of g_debug for No redis DB available message. 
[#224](https://github.com/greenbone/gvm-libs/pull/224)
+
+### Fixed
+- Fix prefs key in nvticache_delete(). 
[#214](https://github.com/greenbone/gvm-libs/pull/214)
+- Fix redis_find(). [#216](https://github.com/greenbone/gvm-libs/pull/216)
+- Fixes to gvm_hosts_resolve(). 
[#228](https://github.com/greenbone/gvm-libs/pull/228)
+
+[10.0.1]: https://github.com/greenbone/gvm-libs/compare/v10.0.0...gvm-libs-10.0
+
+## [10.0.0] (2019-04-05)
+
+### Changed
+- The function gvm_hosts_shuffle has been improved. 
[#200](https://github.com/greenbone/gvm-libs/pull/200)
+
+### Fixed
+- An issue which caused duplicated or removed values in the nvticache as 
addressed. [#196](https://github.com/greenbone/gvm-libs/pull/196)
+- Performance fixes related to handling large sets of hosts have been 
done.[203](https://github.com/greenbone/gvm-libs/pull/203) 
[#208](https://github.com/greenbone/gvm-libs/pull/208)
+- Memory management issues have been addressed. 
[#187](https://github.com/greenbone/gvm-libs/pull/187)
+
+
+[10.0.0]: https://github.com/greenbone/gvm-libs/compare/1.0.0...v10.0.0

Modified: PKGBUILD
===
--- PKGBUILD2019-08-08 15:07:11 UTC (rev 498347)
+++ PKGBUILD2019-08-08 15:07:37 UTC (rev 498348)
@@ -2,7 +2,7 @@
 # Maintainer  : Levente Polyak 
 # Contributor : Daniel Micay 
 pkgname=gvm-libs
-pkgver=10.0.0
+pkgver=10.0.1
 pkgrel=1
 pkgdesc='greenbone-vulnerability-manager libraries'
 arch=('x86_64')
@@ -11,14 +11,15 @@
 depends=('gnutls' 'libpcap' 'gpgme' 'libssh' 'glib2' 'libldap' 'hiredis')
 makedepends=('cmake' 'doxygen')
 groups=('greenbone-vulnerability-manager')
-source=("https://github.com/greenbone/gvm-libs/releases/download/v${pkgver}/gvm-libs-${pgkver}.tar.gz.sig;
+source=("https://github.com/greenbone/gvm-libs/releases/download/v${pkgver}/gvm-libs-${pkgver}.tar.gz.sig;
 
"${pkgname}-${pkgver}.tar.gz::https://github.com/greenbone/gvm-libs/archive/v${pkgver}.tar.gz;)
-sha512sums=('bca213309e06a39d2dcd790cacb01f2a71471622887424e41cc025a2bc25feb6a9b2c1d904f739df6fd87d8ec7af5171b31d1f5d08411c5143e4be1e6723397a'
-'SKIP')
+sha512sums=('SKIP'
+
'961570e8fa8f89f0b462991bff1bf4e512ed6419cff6871c7432899847fb9edcc9f0adb7c280d12ee69fbb5c8e306c9e4366e2cbbb05fc3bae06795dcfb42206')
 validpgpkeys=(
-  'C3B468D2288C68B9D526452248479FF648DB4530' # OpenVAS Transfer 
Integrity
+  '8AE4BE429B60A59B311C2E739823FAA60ED1E580' # GVM Transfer 
Integrity
 )
 replaces=('openvas-libraries')
+changelog=CHANGELOG.md
 
 build() {
   cd "${pkgname}-${pkgver}"


[arch-commits] Commit in greenbone-security-assistant/repos (3 files)

2019-08-08 Thread Christian Rebischke via arch-commits
Date: Thursday, August 8, 2019 @ 15:07:11
  Author: shibumi
Revision: 498347

archrelease: copy trunk to community-x86_64

Added:
  greenbone-security-assistant/repos/community-x86_64/
  greenbone-security-assistant/repos/community-x86_64/CHANGELOG.md
(from rev 498346, greenbone-security-assistant/trunk/CHANGELOG.md)
  greenbone-security-assistant/repos/community-x86_64/PKGBUILD
(from rev 498346, greenbone-security-assistant/trunk/PKGBUILD)

--+
 CHANGELOG.md |  464 +
 PKGBUILD |   38 
 2 files changed, 502 insertions(+)

Copied: greenbone-security-assistant/repos/community-x86_64/CHANGELOG.md (from 
rev 498346, greenbone-security-assistant/trunk/CHANGELOG.md)
===
--- community-x86_64/CHANGELOG.md   (rev 0)
+++ community-x86_64/CHANGELOG.md   2019-08-08 15:07:11 UTC (rev 498347)
@@ -0,0 +1,464 @@
+# Changelog
+
+All notable changes to this project will be documented in this file.
+
+The format is based on [Keep a 
Changelog](https://keepachangelog.com/en/1.0.0/).
+
+## [Unreleased]
+
+### Added
+- Added Explicit Compliance [#1495](https://github.com/greenbone/gsa/pull/1495)
+- added tasktrendgroup component for tasks filter dialog 
[#1511](https://github.com/greenbone/gsa/pull/1511)
+- Added HorizontalSep component for horizontal lists. 
[#1494](https://github.com/greenbone/gsa/pull/1494)
+- added BooleanFilterGroup and changed notes filter dialog 
[#1493](https://github.com/greenbone/gsa/pull/1493)
+- Added grow option to multiselect component 
[#1485](https://github.com/greenbone/gsa/pull/1485)
+- Add LogoutIcon [#1481](https://github.com/greenbone/gsa/pull/1481)
+- Added a component "SeverityValuesGroup" enabling user choose the relation 
they want [#1477](https://github.com/greenbone/gsa/pull/1477)
+- Added filter keywords owner, host, cvss base score, vulnerability and 
location to filter dialog on results page 
[#1472](https://github.com/greenbone/gsa/pull/1472)
+- Add storybook [#1272](https://github.com/greenbone/gsa/pull/1286)
+- Added TLS certificates to the asset management.
+  [#1455](https://github.com/greenbone/gsa/pull/1455),
+  [#1461](https://github.com/greenbone/gsa/pull/1461)
+- Add usage type to task and scanconfig commands 
[#1460](https://github.com/greenbone/gsa/pull/1460)
+  [#1466](https://github.com/greenbone/gsa/pull/1466) 
[#1467](https://github.com/greenbone/gsa/pull/1467)
+
+### Changed
+- Use fast xml parser by default 
[#1556](https://github.com/greenbone/gsa/pull/1556)
+- Updated dependencies [#1555](https://github.com/greenbone/gsa/pull/1555)
+- Changed schedule dialog (added Now button) to help users jump to current 
time ASAP [#1519](https://github.com/greenbone/gsa/pull/1519)
+- Changed the filter dialogues for tasks and overrides 
[#1511](https://github.com/greenbone/gsa/pull/1511)
+- modified filterdialogs for reports and vulnerabilities 
[#1503](https://github.com/greenbone/gsa/pull/1503)
+- Changed filterdialog for tickets page 
[#1489](https://github.com/greenbone/gsa/pull/1489)
+- Restructured menu categories 
[#1481](https://github.com/greenbone/gsa/pull/1481)
+- Logout and usersettings link got a menu 
[#1481](https://github.com/greenbone/gsa/pull/1481)
+- Modified the BarChart's y-domain to avoid range [0,0]. 
[#1447](https://github.com/greenbone/gsa/pull/1447)
+- Changed FilterTerm to convert all filter keywords to lower case 
[#1444](https://github.com/greenbone/gsa/pull/1444)
+- Use Reacts new ref API (no innerRef anymore 
[#1441](https://github.com/greenbone/gsa/pull/1441))
+- Allow dynamic ref types in NVT model and adjust CertLink to it 
[#1434](https://github.com/greenbone/gsa/pull/1434)
+- Use new ref structure in NVTs 
[#1424](https://github.com/greenbone/gsa/pull/1424)
+- Use HTTPS for documentation links
+- Cleanup and improve handling of http parameters and arguments for gmp
+  requests in gsad [#1355](https://github.com/greenbone/gsa/pull/1355)
+
+### Fixed
+- fixed secinfo severitybars not displaying 
severity.[#1530](https://github.com/greenbone/gsa/pull/1530)
+- Fixed outer click issues for multi select and select boxes
+  [#1504](https://github.com/greenbone/gsa/pull/1504)
+
+### Removed
+- Removed UserLink component 
[#1481](https://github.com/greenbone/gsa/pull/1481)
+- Remove edit_config command from gsad 
[#1439](https://github.com/greenbone/gsa/pull/1439)
+- Remove copyright from gsad version output 
[#1379](https://github.com/greenbone/gsa/pull/1379)
+
+[Unreleased]: https://github.com/greenbone/gsa/compare/gsa-8.0...master
+
+## [8.0.2] - unreleased
+
+### Added
+- Added an explicit get_capabilities command to gsad 
[#1538](https://github.com/greenbone/gsa/pull/1538)
+- Highlight result diffs at delta reports 
[#1513](https://github.com/greenbone/gsa/pull/1513)
+- Added HorizontalSep component for horizontal lists
+  

[arch-commits] Commit in greenbone-security-assistant/trunk (CHANGELOG.md PKGBUILD)

2019-08-08 Thread Christian Rebischke via arch-commits
Date: Thursday, August 8, 2019 @ 15:07:05
  Author: shibumi
Revision: 498346

upgpkg: greenbone-security-assistant 8.0.1-1

New greenbone-security-assistant with new dependencies.
All packages has been replaced to the rebranded packages

Added:
  greenbone-security-assistant/trunk/CHANGELOG.md
Modified:
  greenbone-security-assistant/trunk/PKGBUILD

--+
 CHANGELOG.md |  464 +
 PKGBUILD |   15 -
 2 files changed, 472 insertions(+), 7 deletions(-)

Added: CHANGELOG.md
===
--- CHANGELOG.md(rev 0)
+++ CHANGELOG.md2019-08-08 15:07:05 UTC (rev 498346)
@@ -0,0 +1,464 @@
+# Changelog
+
+All notable changes to this project will be documented in this file.
+
+The format is based on [Keep a 
Changelog](https://keepachangelog.com/en/1.0.0/).
+
+## [Unreleased]
+
+### Added
+- Added Explicit Compliance [#1495](https://github.com/greenbone/gsa/pull/1495)
+- added tasktrendgroup component for tasks filter dialog 
[#1511](https://github.com/greenbone/gsa/pull/1511)
+- Added HorizontalSep component for horizontal lists. 
[#1494](https://github.com/greenbone/gsa/pull/1494)
+- added BooleanFilterGroup and changed notes filter dialog 
[#1493](https://github.com/greenbone/gsa/pull/1493)
+- Added grow option to multiselect component 
[#1485](https://github.com/greenbone/gsa/pull/1485)
+- Add LogoutIcon [#1481](https://github.com/greenbone/gsa/pull/1481)
+- Added a component "SeverityValuesGroup" enabling user choose the relation 
they want [#1477](https://github.com/greenbone/gsa/pull/1477)
+- Added filter keywords owner, host, cvss base score, vulnerability and 
location to filter dialog on results page 
[#1472](https://github.com/greenbone/gsa/pull/1472)
+- Add storybook [#1272](https://github.com/greenbone/gsa/pull/1286)
+- Added TLS certificates to the asset management.
+  [#1455](https://github.com/greenbone/gsa/pull/1455),
+  [#1461](https://github.com/greenbone/gsa/pull/1461)
+- Add usage type to task and scanconfig commands 
[#1460](https://github.com/greenbone/gsa/pull/1460)
+  [#1466](https://github.com/greenbone/gsa/pull/1466) 
[#1467](https://github.com/greenbone/gsa/pull/1467)
+
+### Changed
+- Use fast xml parser by default 
[#1556](https://github.com/greenbone/gsa/pull/1556)
+- Updated dependencies [#1555](https://github.com/greenbone/gsa/pull/1555)
+- Changed schedule dialog (added Now button) to help users jump to current 
time ASAP [#1519](https://github.com/greenbone/gsa/pull/1519)
+- Changed the filter dialogues for tasks and overrides 
[#1511](https://github.com/greenbone/gsa/pull/1511)
+- modified filterdialogs for reports and vulnerabilities 
[#1503](https://github.com/greenbone/gsa/pull/1503)
+- Changed filterdialog for tickets page 
[#1489](https://github.com/greenbone/gsa/pull/1489)
+- Restructured menu categories 
[#1481](https://github.com/greenbone/gsa/pull/1481)
+- Logout and usersettings link got a menu 
[#1481](https://github.com/greenbone/gsa/pull/1481)
+- Modified the BarChart's y-domain to avoid range [0,0]. 
[#1447](https://github.com/greenbone/gsa/pull/1447)
+- Changed FilterTerm to convert all filter keywords to lower case 
[#1444](https://github.com/greenbone/gsa/pull/1444)
+- Use Reacts new ref API (no innerRef anymore 
[#1441](https://github.com/greenbone/gsa/pull/1441))
+- Allow dynamic ref types in NVT model and adjust CertLink to it 
[#1434](https://github.com/greenbone/gsa/pull/1434)
+- Use new ref structure in NVTs 
[#1424](https://github.com/greenbone/gsa/pull/1424)
+- Use HTTPS for documentation links
+- Cleanup and improve handling of http parameters and arguments for gmp
+  requests in gsad [#1355](https://github.com/greenbone/gsa/pull/1355)
+
+### Fixed
+- fixed secinfo severitybars not displaying 
severity.[#1530](https://github.com/greenbone/gsa/pull/1530)
+- Fixed outer click issues for multi select and select boxes
+  [#1504](https://github.com/greenbone/gsa/pull/1504)
+
+### Removed
+- Removed UserLink component 
[#1481](https://github.com/greenbone/gsa/pull/1481)
+- Remove edit_config command from gsad 
[#1439](https://github.com/greenbone/gsa/pull/1439)
+- Remove copyright from gsad version output 
[#1379](https://github.com/greenbone/gsa/pull/1379)
+
+[Unreleased]: https://github.com/greenbone/gsa/compare/gsa-8.0...master
+
+## [8.0.2] - unreleased
+
+### Added
+- Added an explicit get_capabilities command to gsad 
[#1538](https://github.com/greenbone/gsa/pull/1538)
+- Highlight result diffs at delta reports 
[#1513](https://github.com/greenbone/gsa/pull/1513)
+- Added HorizontalSep component for horizontal lists
+  [#1506](https://github.com/greenbone/gsa/pull/1506),
+  [#1507](https://github.com/greenbone/gsa/pull/1507)
+
+### Changed
+- Redirect to main page when visiting the login page and the user is already
+  logged in [#1508](https://github.com/greenbone/gsa/pull/1508)
+
+### Fixed
+- 

[arch-commits] Commit in openvas-manager/repos (community-x86_64)

2019-08-08 Thread Christian Rebischke via arch-commits
Date: Thursday, August 8, 2019 @ 14:59:48
  Author: shibumi
Revision: 498345

db-remove: openvas-manager removed by shibumi

Deleted:
  openvas-manager/repos/community-x86_64/


[arch-commits] Commit in openvas-libraries/repos (community-x86_64)

2019-08-08 Thread Christian Rebischke via arch-commits
Date: Thursday, August 8, 2019 @ 14:59:35
  Author: shibumi
Revision: 498344

db-remove: openvas-libraries removed by shibumi

Deleted:
  openvas-libraries/repos/community-x86_64/


[arch-commits] Commit in greenbone-security-assistant/repos (community-x86_64)

2019-08-08 Thread Christian Rebischke via arch-commits
Date: Thursday, August 8, 2019 @ 14:59:16
  Author: shibumi
Revision: 498343

db-remove: greenbone-security-assistant removed by shibumi

Deleted:
  greenbone-security-assistant/repos/community-x86_64/


[arch-commits] Commit in openvas-scanner/repos (community-x86_64)

2019-08-08 Thread Christian Rebischke via arch-commits
Date: Thursday, August 8, 2019 @ 14:59:01
  Author: shibumi
Revision: 498342

db-remove: openvas-scanner removed by shibumi

Deleted:
  openvas-scanner/repos/community-x86_64/


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

2019-08-08 Thread David Runge via arch-commits
Date: Thursday, August 8, 2019 @ 14:12:29
  Author: dvzrv
Revision: 498341

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-08 14:12:23 UTC (rev 498340)
+++ PKGBUILD2019-08-08 14:12:29 UTC (rev 498341)
@@ -1,19 +0,0 @@
-# Maintainer: David Runge 
-# Contributor: Jonas Heinrich 
-
-pkgname=nextcloud-app-deck
-_name=deck
-pkgver=0.6.5
-pkgrel=1
-pkgdesc="Kanban style organization tool aimed at personal planning and project 
organization"
-arch=('any')
-url="https://github.com/nextcloud/deck;
-license=('AGPL3')
-depends=('nextcloud')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/nextcloud/${_name}/releases/download/v${pkgver}/${_name}.tar.gz;)
-sha512sums=('93ee2c2e6a457c69d6351a3ef8b9b1ac5289a97cc151e0f5c836ef16d8f014423b31e848da6cac53ebc4949f3328d9d7abfacefdbb111e4bc183590247ed98c6')
-
-package() {
-  install -vdm 755 "${pkgdir}/usr/share/webapps/nextcloud/apps/"
-  cp -av "${_name}" "${pkgdir}/usr/share/webapps/nextcloud/apps/"
-}

Copied: nextcloud-app-deck/repos/community-any/PKGBUILD (from rev 498340, 
nextcloud-app-deck/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-08 14:12:29 UTC (rev 498341)
@@ -0,0 +1,19 @@
+# Maintainer: David Runge 
+# Contributor: Jonas Heinrich 
+
+pkgname=nextcloud-app-deck
+_name=deck
+pkgver=0.6.6
+pkgrel=1
+pkgdesc="Kanban style organization tool aimed at personal planning and project 
organization"
+arch=('any')
+url="https://github.com/nextcloud/deck;
+license=('AGPL3')
+depends=('nextcloud')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/nextcloud/${_name}/releases/download/v${pkgver}/${_name}.tar.gz;)
+sha512sums=('b0a3477d7d2f22786692d0e3a7146d5e66b852c58c9d8166c43193b1da4429672b0431c02be12ede370c6b1c5ff5d9b60fb4ec55beb413a2c341984a70231c8a')
+
+package() {
+  install -vdm 755 "${pkgdir}/usr/share/webapps/nextcloud/apps/"
+  cp -av "${_name}" "${pkgdir}/usr/share/webapps/nextcloud/apps/"
+}


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

2019-08-08 Thread David Runge via arch-commits
Date: Thursday, August 8, 2019 @ 14:12:23
  Author: dvzrv
Revision: 498340

upgpkg: nextcloud-app-deck 0.6.6-1

Upgrading to 0.6.6.

Modified:
  nextcloud-app-deck/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-08 10:16:16 UTC (rev 498339)
+++ PKGBUILD2019-08-08 14:12:23 UTC (rev 498340)
@@ -3,7 +3,7 @@
 
 pkgname=nextcloud-app-deck
 _name=deck
-pkgver=0.6.5
+pkgver=0.6.6
 pkgrel=1
 pkgdesc="Kanban style organization tool aimed at personal planning and project 
organization"
 arch=('any')
@@ -11,7 +11,7 @@
 license=('AGPL3')
 depends=('nextcloud')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/nextcloud/${_name}/releases/download/v${pkgver}/${_name}.tar.gz;)
-sha512sums=('93ee2c2e6a457c69d6351a3ef8b9b1ac5289a97cc151e0f5c836ef16d8f014423b31e848da6cac53ebc4949f3328d9d7abfacefdbb111e4bc183590247ed98c6')
+sha512sums=('b0a3477d7d2f22786692d0e3a7146d5e66b852c58c9d8166c43193b1da4429672b0431c02be12ede370c6b1c5ff5d9b60fb4ec55beb413a2c341984a70231c8a')
 
 package() {
   install -vdm 755 "${pkgdir}/usr/share/webapps/nextcloud/apps/"


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

2019-08-08 Thread David Runge via arch-commits
Date: Thursday, August 8, 2019 @ 14:08:47
  Author: dvzrv
Revision: 359323

archrelease: copy trunk to extra-x86_64

Added:
  libgit2/repos/extra-x86_64/PKGBUILD
(from rev 359322, libgit2/trunk/PKGBUILD)
Deleted:
  libgit2/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-08 14:08:42 UTC (rev 359322)
+++ PKGBUILD2019-08-08 14:08:47 UTC (rev 359323)
@@ -1,45 +0,0 @@
-# Maintainer: Lukas Fleischer 
-# Contributor: David Runge 
-# Contributor: Hilton Medeiros 
-# Contributor: Dave Reisner 
-
-pkgname=libgit2
-pkgver=0.28.2
-pkgrel=1
-epoch=1
-pkgdesc='A linkable library for Git'
-arch=('x86_64')
-url="https://libgit2.github.com/;
-depends=('curl' 'http-parser' 'libssh2' 'openssl' 'zlib')
-makedepends=('cmake' 'python')
-license=('GPL2')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/libgit2/libgit2/archive/v${pkgver}.tar.gz;
-
"${pkgname}-0.28.2-online-tests.patch::https://github.com/libgit2/libgit2/pull/5094.patch;)
-sha256sums=('42b5f1e9b9159d66d86fff0394215c5733b6ef8f9b9d054cdd8c73ad47177fc3'
-'0d1d5ceaae10a9dc17894b8f13e957b463e5f5ccde13dc57f19dbc80f5d89de8')
-
-prepare() {
-  cd "$pkgname-$pkgver"
-  mkdir -p build
-  # fix online tests: https://github.com/libgit2/libgit2/pull/5094
-  patch -Np1 -i "../${pkgname}-0.28.2-online-tests.patch"
-}
-
-build() {
-  cd "$pkgname-$pkgver/build"
-  cmake -DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DTHREADSAFE=ON \
-..
-  make VERBOSE=1
-}
-
-check() {
-  cd "$pkgname-$pkgver/build"
-  make test VERBOSE=1
-}
-
-package() {
-  cd "$pkgname-$pkgver/build"
-  make DESTDIR="$pkgdir" install
-}

Copied: libgit2/repos/extra-x86_64/PKGBUILD (from rev 359322, 
libgit2/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-08 14:08:47 UTC (rev 359323)
@@ -0,0 +1,50 @@
+# Maintainer: Lukas Fleischer 
+# Contributor: David Runge 
+# Contributor: Hilton Medeiros 
+# Contributor: Dave Reisner 
+
+pkgname=libgit2
+pkgver=0.28.2
+pkgrel=2
+epoch=1
+pkgdesc='A linkable library for Git'
+arch=('x86_64')
+url="https://libgit2.github.com/;
+depends=('http-parser' 'libssh2')
+makedepends=('cmake' 'python')
+provides=('libgit2.so')
+license=('GPL2')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/libgit2/libgit2/archive/v${pkgver}.tar.gz;
+
"${pkgname}-0.28.2-online-tests.patch::https://github.com/libgit2/libgit2/pull/5094.patch;)
+sha256sums=('42b5f1e9b9159d66d86fff0394215c5733b6ef8f9b9d054cdd8c73ad47177fc3'
+'0d1d5ceaae10a9dc17894b8f13e957b463e5f5ccde13dc57f19dbc80f5d89de8')
+
+prepare() {
+  cd "$pkgname-$pkgver"
+  mkdir -p build
+  # fix online tests: https://github.com/libgit2/libgit2/pull/5094
+  patch -Np1 -i "../${pkgname}-0.28.2-online-tests.patch"
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  (
+cd build
+cmake -DCMAKE_INSTALL_PREFIX=/usr \
+  -DCMAKE_BUILD_TYPE=Release \
+  ..
+  )
+  make -C build VERBOSE=1
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  make -C build test VERBOSE=1
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make -C build DESTDIR="$pkgdir" install
+  install -vDm 644 {AUTHORS,README.md} \
+-t "${pkgdir}/usr/share/doc/${pkgname}"
+}


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

2019-08-08 Thread David Runge via arch-commits
Date: Thursday, August 8, 2019 @ 14:08:42
  Author: dvzrv
Revision: 359322

upgpkg: libgit2 1:0.28.2-2

Adding docs. Removing curl (unrequired) and openssl/zlib (libssh2 requires 
them) from depends. Adding libgit2.so to provides. Minor cleanup.

Modified:
  libgit2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-08 10:00:55 UTC (rev 359321)
+++ PKGBUILD2019-08-08 14:08:42 UTC (rev 359322)
@@ -5,13 +5,14 @@
 
 pkgname=libgit2
 pkgver=0.28.2
-pkgrel=1
+pkgrel=2
 epoch=1
 pkgdesc='A linkable library for Git'
 arch=('x86_64')
 url="https://libgit2.github.com/;
-depends=('curl' 'http-parser' 'libssh2' 'openssl' 'zlib')
+depends=('http-parser' 'libssh2')
 makedepends=('cmake' 'python')
+provides=('libgit2.so')
 license=('GPL2')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/libgit2/libgit2/archive/v${pkgver}.tar.gz;
 
"${pkgname}-0.28.2-online-tests.patch::https://github.com/libgit2/libgit2/pull/5094.patch;)
@@ -26,20 +27,24 @@
 }
 
 build() {
-  cd "$pkgname-$pkgver/build"
-  cmake -DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DTHREADSAFE=ON \
-..
-  make VERBOSE=1
+  cd "$pkgname-$pkgver"
+  (
+cd build
+cmake -DCMAKE_INSTALL_PREFIX=/usr \
+  -DCMAKE_BUILD_TYPE=Release \
+  ..
+  )
+  make -C build VERBOSE=1
 }
 
 check() {
-  cd "$pkgname-$pkgver/build"
-  make test VERBOSE=1
+  cd "$pkgname-$pkgver"
+  make -C build test VERBOSE=1
 }
 
 package() {
-  cd "$pkgname-$pkgver/build"
-  make DESTDIR="$pkgdir" install
+  cd "$pkgname-$pkgver"
+  make -C build DESTDIR="$pkgdir" install
+  install -vDm 644 {AUTHORS,README.md} \
+-t "${pkgdir}/usr/share/doc/${pkgname}"
 }


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

2019-08-08 Thread Massimiliano Torromeo via arch-commits
Date: Thursday, August 8, 2019 @ 10:16:16
  Author: mtorromeo
Revision: 498339

archrelease: copy trunk to community-x86_64

Added:
  xtrabackup/repos/community-x86_64/PKGBUILD
(from rev 498338, xtrabackup/trunk/PKGBUILD)
Deleted:
  xtrabackup/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-08 10:16:03 UTC (rev 498338)
+++ PKGBUILD2019-08-08 10:16:16 UTC (rev 498339)
@@ -1,48 +0,0 @@
-# Maintainer: Massimiliano Torromeo 
-# Contributor: Bartłomiej Piotrowski 
-
-pkgname=xtrabackup
-pkgver=8.0.6
-_boost_ver=1.68.0
-pkgrel=1
-pkgdesc='Non-blocking backup tool for MySQL'
-arch=('x86_64')
-url='https://www.percona.com/software/mysql-database/percona-xtrabackup'
-license=('GPL')
-depends=('libaio' 'libev' 'libgcrypt' 'curl' 'perl-dbd-mysql' 'numactl')
-makedepends=('cmake' 'python-sphinx' 'zlib' 'vim' 'libedit' 'libevent' 
'protobuf' 're2')
-optdepends=('qpress: for compressed backups')
-source=(https://www.percona.com/downloads/Percona-XtraBackup-LATEST/Percona-XtraBackup-${pkgver%.*}-${pkgver##*.}/source/tarball/percona-xtrabackup-$pkgver.tar.gz
-
http://sourceforge.net/projects/boost/files/boost/${_boost_ver}/boost_${_boost_ver//./_}.tar.gz)
-sha256sums=('3d748d646654c9692d9e3a8402935303e5c83d82f493066b7eda4d7c47d902f4'
-'da3411ea45622579d419bfda66f45cd0f8c32a181d84adfa936f5688388995cf')
-build() {
-  mkdir build
-  cd build
-  cmake -DBUILD_CONFIG=xtrabackup_release \
--DCMAKE_BUILD_TYPE=Release \
--DMYSQL_DATADIR=/var/lib/mysql \
--DMYSQL_UNIX_ADDR=/run/mysqld/mysqld.sock \
--DWITH_LIBEVENT=system \
--DWITH_SSL=system \
--DWITH_EDITLINE=system \
--DWITH_LZ4=system \
--DWITH_LZMA=bundled \
--DWITH_PROTOBUF=system \
--DWITH_RE2=system \
--DCMAKE_INSTALL_PREFIX=/usr \
--DINSTALL_PLUGINDIR="/usr/lib/xtrabackup/plugin" \
--DINSTALL_MANDIR="/usr/share/man" \
--DINSTALL_STATIC_LIBRARIES=OFF \
--DWITH_BOOST="../boost_${_boost_ver//./_}" \
-../percona-xtrabackup-$pkgver
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-
-  cd  "$pkgdir"
-  rm -rf usr/xtrabackup-test usr/lib/xtrabackup/plugin/debug
-}

Copied: xtrabackup/repos/community-x86_64/PKGBUILD (from rev 498338, 
xtrabackup/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-08 10:16:16 UTC (rev 498339)
@@ -0,0 +1,48 @@
+# Maintainer: Massimiliano Torromeo 
+# Contributor: Bartłomiej Piotrowski 
+
+pkgname=xtrabackup
+pkgver=8.0.7
+#_boost_ver=1.68.0
+pkgrel=1
+pkgdesc='Non-blocking backup tool for MySQL'
+arch=('x86_64')
+url='https://www.percona.com/software/mysql-database/percona-xtrabackup'
+license=('GPL')
+depends=('libaio' 'libev' 'libgcrypt' 'curl' 'perl-dbd-mysql' 'numactl' 
'boost-libs')
+makedepends=('cmake' 'python-sphinx' 'zlib' 'vim' 'libedit' 'libevent' 
'protobuf' 're2' 'boost')
+optdepends=('qpress: for compressed backups')
+source=("https://www.percona.com/downloads/Percona-XtraBackup-LATEST/Percona-XtraBackup-${pkgver%.*}-${pkgver##*.}/source/tarball/percona-xtrabackup-$pkgver.tar.gz;)
+#
"https://jenkins.percona.com/downloads/boost/boost_${_boost_ver//./_}.tar.gz;)
+
+sha256sums=('a24c691f0a3e73a8acdc809bed9f2bd07f8370d9cfd05cf3e26e189da9f53ce2')
+build() {
+  mkdir build
+  cd build
+  cmake -DBUILD_CONFIG=xtrabackup_release \
+-DCMAKE_BUILD_TYPE=Release \
+-DMYSQL_DATADIR=/var/lib/mysql \
+-DMYSQL_UNIX_ADDR=/run/mysqld/mysqld.sock \
+-DWITH_LIBEVENT=system \
+-DWITH_SSL=system \
+-DWITH_EDITLINE=system \
+-DWITH_LZ4=system \
+-DWITH_LZMA=bundled \
+-DWITH_PROTOBUF=system \
+-DWITH_RE2=system \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DINSTALL_PLUGINDIR="/usr/lib/xtrabackup/plugin" \
+-DINSTALL_MANDIR="/usr/share/man" \
+-DINSTALL_STATIC_LIBRARIES=OFF \
+-DWITH_BOOST=system \
+../percona-xtrabackup-$pkgver
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+
+  cd  "$pkgdir"
+  rm -rf usr/xtrabackup-test usr/lib/xtrabackup/plugin/debug
+}


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

2019-08-08 Thread Massimiliano Torromeo via arch-commits
Date: Thursday, August 8, 2019 @ 10:16:03
  Author: mtorromeo
Revision: 498338

upgpkg: xtrabackup 8.0.7-1

Modified:
  xtrabackup/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-08 09:32:23 UTC (rev 498337)
+++ PKGBUILD2019-08-08 10:16:03 UTC (rev 498338)
@@ -2,20 +2,20 @@
 # Contributor: Bartłomiej Piotrowski 
 
 pkgname=xtrabackup
-pkgver=8.0.6
-_boost_ver=1.68.0
+pkgver=8.0.7
+#_boost_ver=1.68.0
 pkgrel=1
 pkgdesc='Non-blocking backup tool for MySQL'
 arch=('x86_64')
 url='https://www.percona.com/software/mysql-database/percona-xtrabackup'
 license=('GPL')
-depends=('libaio' 'libev' 'libgcrypt' 'curl' 'perl-dbd-mysql' 'numactl')
-makedepends=('cmake' 'python-sphinx' 'zlib' 'vim' 'libedit' 'libevent' 
'protobuf' 're2')
+depends=('libaio' 'libev' 'libgcrypt' 'curl' 'perl-dbd-mysql' 'numactl' 
'boost-libs')
+makedepends=('cmake' 'python-sphinx' 'zlib' 'vim' 'libedit' 'libevent' 
'protobuf' 're2' 'boost')
 optdepends=('qpress: for compressed backups')
-source=("https://www.percona.com/downloads/Percona-XtraBackup-LATEST/Percona-XtraBackup-${pkgver%.*}-${pkgver##*.}/source/tarball/percona-xtrabackup-$pkgver.tar.gz;
-
"https://jenkins.percona.com/downloads/boost/boost_${_boost_ver//./_}.tar.gz;)
-sha256sums=('3d748d646654c9692d9e3a8402935303e5c83d82f493066b7eda4d7c47d902f4'
-'da3411ea45622579d419bfda66f45cd0f8c32a181d84adfa936f5688388995cf')
+source=("https://www.percona.com/downloads/Percona-XtraBackup-LATEST/Percona-XtraBackup-${pkgver%.*}-${pkgver##*.}/source/tarball/percona-xtrabackup-$pkgver.tar.gz;)
+#
"https://jenkins.percona.com/downloads/boost/boost_${_boost_ver//./_}.tar.gz;)
+
+sha256sums=('a24c691f0a3e73a8acdc809bed9f2bd07f8370d9cfd05cf3e26e189da9f53ce2')
 build() {
   mkdir build
   cd build
@@ -34,7 +34,7 @@
 -DINSTALL_PLUGINDIR="/usr/lib/xtrabackup/plugin" \
 -DINSTALL_MANDIR="/usr/share/man" \
 -DINSTALL_STATIC_LIBRARIES=OFF \
--DWITH_BOOST="../boost_${_boost_ver//./_}" \
+-DWITH_BOOST=system \
 ../percona-xtrabackup-$pkgver
   make
 }


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

2019-08-08 Thread Jan Steffens via arch-commits
Date: Thursday, August 8, 2019 @ 10:00:55
  Author: heftig
Revision: 359321

archrelease: copy trunk to extra-x86_64

Added:
  tali/repos/extra-x86_64/PKGBUILD
(from rev 359320, tali/trunk/PKGBUILD)
Deleted:
  tali/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-08 09:30:59 UTC (rev 359320)
+++ PKGBUILD2019-08-08 10:00:55 UTC (rev 359321)
@@ -1,38 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Maintainer: Jan de Groot 
-
-pkgname=tali
-pkgver=3.32.0
-pkgrel=1
-pkgdesc="Beat the odds in a poker-style dice game"
-url="https://wiki.gnome.org/Apps/Tali;
-arch=(x86_64)
-license=(GPL)
-depends=(gtk3 librsvg)
-makedepends=(meson gobject-introspection yelp-tools appstream-glib git)
-groups=(gnome-extra)
-_commit=943aeadc2c6b17da584f59a8bb7efaee8999a482  # tags/3.32.0^0
-source=("git+https://gitlab.gnome.org/GNOME/tali.git#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-}
-
-build() {
-  arch-meson $pkgname build
-  ninja -C build
-}
-
-check() {
-  meson test -C build
-}
-
-package() {
-  DESTDIR="$pkgdir" meson install -C build
-}

Copied: tali/repos/extra-x86_64/PKGBUILD (from rev 359320, tali/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-08 10:00:55 UTC (rev 359321)
@@ -0,0 +1,38 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Maintainer: Jan de Groot 
+
+pkgname=tali
+pkgver=3.32.1
+pkgrel=1
+pkgdesc="Beat the odds in a poker-style dice game"
+url="https://wiki.gnome.org/Apps/Tali;
+arch=(x86_64)
+license=(GPL)
+depends=(gtk3 librsvg)
+makedepends=(meson gobject-introspection yelp-tools appstream-glib git)
+groups=(gnome-extra)
+_commit=99a7764d977084e4d4ffcdd34e0aaa63462b7f37  # tags/3.32.1^0
+source=("git+https://gitlab.gnome.org/GNOME/tali.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+}
+
+build() {
+  arch-meson $pkgname build
+  ninja -C build
+}
+
+check() {
+  meson test -C build
+}
+
+package() {
+  DESTDIR="$pkgdir" meson install -C build
+}


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

2019-08-08 Thread Massimiliano Torromeo via arch-commits
Date: Thursday, August 8, 2019 @ 09:32:16
  Author: mtorromeo
Revision: 498336

upgpkg: sysdig 0.26.2-1

Modified:
  sysdig/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-08 09:29:24 UTC (rev 498335)
+++ PKGBUILD2019-08-08 09:32:16 UTC (rev 498336)
@@ -3,7 +3,7 @@
 # Contribuitor: Christian Babeux 
 
 pkgname=sysdig
-pkgver=0.26.1
+pkgver=0.26.2
 pkgrel=1
 pkgdesc="Open source system-level exploration and troubleshooting tool"
 arch=('x86_64')
@@ -14,7 +14,7 @@
 
source=("https://github.com/draios/sysdig/archive/$pkgver/$pkgname-$pkgver.tar.gz;
 "bashcomp-location.patch"
 "glibc.patch")
-sha256sums=('4bc59f4e958c9b971ecb4d6fe98fe0be27a185b87106c76aaf4614ab3ef7129e'
+sha256sums=('6f4f5b7b187c3774b6c374c1728b3f905ac18a945bde15151dcfb24c79abb441'
 'aaee8a0ff414a24c5d5a479229324be1667bc5eb70702838f5d617fd986f947b'
 '9d9ee715500cb5c3709cf6a77e95421edaaae5f15dbb1c7c8ad2147cc9637939')
 


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

2019-08-08 Thread Massimiliano Torromeo via arch-commits
Date: Thursday, August 8, 2019 @ 09:32:23
  Author: mtorromeo
Revision: 498337

archrelease: copy trunk to community-x86_64

Added:
  sysdig/repos/community-x86_64/PKGBUILD
(from rev 498336, sysdig/trunk/PKGBUILD)
  sysdig/repos/community-x86_64/bashcomp-location.patch
(from rev 498336, sysdig/trunk/bashcomp-location.patch)
  sysdig/repos/community-x86_64/glibc.patch
(from rev 498336, sysdig/trunk/glibc.patch)
Deleted:
  sysdig/repos/community-x86_64/PKGBUILD
  sysdig/repos/community-x86_64/bashcomp-location.patch
  sysdig/repos/community-x86_64/glibc.patch

-+
 PKGBUILD|  106 +++---
 bashcomp-location.patch |   26 +--
 glibc.patch |   24 +-
 3 files changed, 78 insertions(+), 78 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-08 09:32:16 UTC (rev 498336)
+++ PKGBUILD2019-08-08 09:32:23 UTC (rev 498337)
@@ -1,53 +0,0 @@
-# Maintainer: Massimiliano Torromeo 
-# Contribuitor: Alfredo Palhares 
-# Contribuitor: Christian Babeux 
-
-pkgname=sysdig
-pkgver=0.26.1
-pkgrel=1
-pkgdesc="Open source system-level exploration and troubleshooting tool"
-arch=('x86_64')
-url="https://www.sysdig.com/;
-license=('GPL2' 'Apache' 'MIT')
-depends=('dkms' 'jsoncpp' 'luajit' 'curl' 'jq' 'libb64' 'intel-tbb' 'grpc')
-makedepends=('cmake' 'pandoc')
-source=("https://github.com/draios/sysdig/archive/$pkgver/$pkgname-$pkgver.tar.gz;
-"bashcomp-location.patch"
-"glibc.patch")
-sha256sums=('4bc59f4e958c9b971ecb4d6fe98fe0be27a185b87106c76aaf4614ab3ef7129e'
-'aaee8a0ff414a24c5d5a479229324be1667bc5eb70702838f5d617fd986f947b'
-'9d9ee715500cb5c3709cf6a77e95421edaaae5f15dbb1c7c8ad2147cc9637939')
-
-prepare() {
-  cd "$srcdir"/$pkgname-$pkgver
-  patch -p1 -i "$srcdir"/bashcomp-location.patch
-  patch -p1 -i "$srcdir"/glibc.patch
-}
-
-build() {
-  cd "$srcdir"/$pkgname-$pkgver
-  rm -rf build
-  mkdir build
-  cd build
-  cmake .. \
--DCMAKE_VERBOSE_MAKEFILE:BOOL=ON \
--DCMAKE_EXE_LINKER_FLAGS="-ltbb -lcurl" \
--DCMAKE_CXX_FLAGS="-Wno-deprecated-declarations" \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DSYSDIG_VERSION=$pkgver \
--DUSE_BUNDLED_DEPS=OFF \
--DBUILD_DRIVER=OFF \
--DBUILD_LIBSCAP_EXAMPLES=OFF
-  make
-}
-
-package() {
-  cd "$srcdir"/$pkgname-$pkgver
-
-  install -dm755 "$pkgdir"/usr/share/licenses/$pkgname
-  install -m644 NOTICES COPYING "$pkgdir"/usr/share/licenses/$pkgname
-
-  cd build
-  make install DESTDIR="$pkgdir"
-}

Copied: sysdig/repos/community-x86_64/PKGBUILD (from rev 498336, 
sysdig/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-08 09:32:23 UTC (rev 498337)
@@ -0,0 +1,53 @@
+# Maintainer: Massimiliano Torromeo 
+# Contribuitor: Alfredo Palhares 
+# Contribuitor: Christian Babeux 
+
+pkgname=sysdig
+pkgver=0.26.2
+pkgrel=1
+pkgdesc="Open source system-level exploration and troubleshooting tool"
+arch=('x86_64')
+url="https://www.sysdig.com/;
+license=('GPL2' 'Apache' 'MIT')
+depends=('dkms' 'jsoncpp' 'luajit' 'curl' 'jq' 'libb64' 'intel-tbb' 'grpc')
+makedepends=('cmake' 'pandoc')
+source=("https://github.com/draios/sysdig/archive/$pkgver/$pkgname-$pkgver.tar.gz;
+"bashcomp-location.patch"
+"glibc.patch")
+sha256sums=('6f4f5b7b187c3774b6c374c1728b3f905ac18a945bde15151dcfb24c79abb441'
+'aaee8a0ff414a24c5d5a479229324be1667bc5eb70702838f5d617fd986f947b'
+'9d9ee715500cb5c3709cf6a77e95421edaaae5f15dbb1c7c8ad2147cc9637939')
+
+prepare() {
+  cd "$srcdir"/$pkgname-$pkgver
+  patch -p1 -i "$srcdir"/bashcomp-location.patch
+  patch -p1 -i "$srcdir"/glibc.patch
+}
+
+build() {
+  cd "$srcdir"/$pkgname-$pkgver
+  rm -rf build
+  mkdir build
+  cd build
+  cmake .. \
+-DCMAKE_VERBOSE_MAKEFILE:BOOL=ON \
+-DCMAKE_EXE_LINKER_FLAGS="-ltbb -lcurl" \
+-DCMAKE_CXX_FLAGS="-Wno-deprecated-declarations" \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DSYSDIG_VERSION=$pkgver \
+-DUSE_BUNDLED_DEPS=OFF \
+-DBUILD_DRIVER=OFF \
+-DBUILD_LIBSCAP_EXAMPLES=OFF
+  make
+}
+
+package() {
+  cd "$srcdir"/$pkgname-$pkgver
+
+  install -dm755 "$pkgdir"/usr/share/licenses/$pkgname
+  install -m644 NOTICES COPYING "$pkgdir"/usr/share/licenses/$pkgname
+
+  cd build
+  make install DESTDIR="$pkgdir"
+}

Deleted: bashcomp-location.patch
===
--- bashcomp-location.patch 2019-08-08 09:32:16 UTC (rev 498336)
+++ bashcomp-location.patch 2019-08-08 09:32:23 UTC (rev 498337)
@@ -1,13 +0,0 @@
-diff --git a/scripts/CMakeLists.txt b/scripts/CMakeLists.txt
-index ded65e9..fd2a59b 100644
 a/scripts/CMakeLists.txt
-+++ 

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

2019-08-08 Thread Jan Steffens via arch-commits
Date: Thursday, August 8, 2019 @ 09:30:59
  Author: heftig
Revision: 359320

3.32.1-1

Modified:
  tali/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-08 08:50:06 UTC (rev 359319)
+++ PKGBUILD2019-08-08 09:30:59 UTC (rev 359320)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot 
 
 pkgname=tali
-pkgver=3.32.0
+pkgver=3.32.1
 pkgrel=1
 pkgdesc="Beat the odds in a poker-style dice game"
 url="https://wiki.gnome.org/Apps/Tali;
@@ -11,7 +11,7 @@
 depends=(gtk3 librsvg)
 makedepends=(meson gobject-introspection yelp-tools appstream-glib git)
 groups=(gnome-extra)
-_commit=943aeadc2c6b17da584f59a8bb7efaee8999a482  # tags/3.32.0^0
+_commit=99a7764d977084e4d4ffcdd34e0aaa63462b7f37  # tags/3.32.1^0
 source=("git+https://gitlab.gnome.org/GNOME/tali.git#commit=$_commit;)
 sha256sums=('SKIP')
 


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

2019-08-08 Thread Massimiliano Torromeo via arch-commits
Date: Thursday, August 8, 2019 @ 09:29:11
  Author: mtorromeo
Revision: 498334

upgpkg: fabric 2.5.0-1

Modified:
  fabric/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-08 09:22:57 UTC (rev 498333)
+++ PKGBUILD2019-08-08 09:29:11 UTC (rev 498334)
@@ -3,7 +3,7 @@
 # Contributor: Francois Boulogne 
 
 pkgname=fabric
-pkgver=2.4.0
+pkgver=2.5.0
 pkgrel=1
 pkgdesc="Python library and command-line tool designed to streamline deploying 
applications or performing system administration tasks via the SSH protocol"
 url="https://www.fabfile.org/;
@@ -12,7 +12,7 @@
 depends=('python-setuptools' 'python-paramiko' 'python-invoke')
 optdepends=('python-patchwork: Common deployment/sysadmin operations')
 
source=("https://github.com/fabric/fabric/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('5da238fd0f76705177d9d026db154c73cea2c5341b9d68b539884bf520f488bbd7c025a0d48438cac3613f6ff587b1755444f61898ada7fbaf511adf0f1eebd4')
+sha512sums=('9fb3ceaeca449a39a5f78176b79f296927c17ef1938dc345d6c8954c9ed1547e288a68e5fbfb0be6148bc78940b4efed373257a3b7cba0354b3dad633ccb552f')
 
 build() {
   cd "${srcdir}"/fabric-${pkgver}


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

2019-08-08 Thread Massimiliano Torromeo via arch-commits
Date: Thursday, August 8, 2019 @ 09:29:24
  Author: mtorromeo
Revision: 498335

archrelease: copy trunk to community-any

Added:
  fabric/repos/community-any/PKGBUILD
(from rev 498334, fabric/trunk/PKGBUILD)
Deleted:
  fabric/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-08 09:29:11 UTC (rev 498334)
+++ PKGBUILD2019-08-08 09:29:24 UTC (rev 498335)
@@ -1,28 +0,0 @@
-# Maintainer: Massimiliano Torromeo 
-# Contributor: Sven-Hendrik Haase 
-# Contributor: Francois Boulogne 
-
-pkgname=fabric
-pkgver=2.4.0
-pkgrel=1
-pkgdesc="Python library and command-line tool designed to streamline deploying 
applications or performing system administration tasks via the SSH protocol"
-url="http://www.fabfile.org/;
-license=('BSD')
-arch=('any')
-depends=('python-setuptools' 'python-paramiko' 'python-invoke')
-optdepends=('python-patchwork: Common deployment/sysadmin operations')
-source=("https://github.com/fabric/fabric/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('5da238fd0f76705177d9d026db154c73cea2c5341b9d68b539884bf520f488bbd7c025a0d48438cac3613f6ff587b1755444f61898ada7fbaf511adf0f1eebd4')
-
-build() {
-  cd "${srcdir}"/fabric-${pkgver}
-  python setup.py build
-}
-
-package() {
-  cd "${srcdir}"/fabric-${pkgver}
-  python setup.py install -O1 --skip-build --root="${pkgdir}"
-
-  install -Dm644 README.rst "${pkgdir}"/usr/share/doc/${pkgname}/README.rst
-  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: fabric/repos/community-any/PKGBUILD (from rev 498334, 
fabric/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-08 09:29:24 UTC (rev 498335)
@@ -0,0 +1,28 @@
+# Maintainer: Massimiliano Torromeo 
+# Contributor: Sven-Hendrik Haase 
+# Contributor: Francois Boulogne 
+
+pkgname=fabric
+pkgver=2.5.0
+pkgrel=1
+pkgdesc="Python library and command-line tool designed to streamline deploying 
applications or performing system administration tasks via the SSH protocol"
+url="https://www.fabfile.org/;
+license=('BSD')
+arch=('any')
+depends=('python-setuptools' 'python-paramiko' 'python-invoke')
+optdepends=('python-patchwork: Common deployment/sysadmin operations')
+source=("https://github.com/fabric/fabric/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('9fb3ceaeca449a39a5f78176b79f296927c17ef1938dc345d6c8954c9ed1547e288a68e5fbfb0be6148bc78940b4efed373257a3b7cba0354b3dad633ccb552f')
+
+build() {
+  cd "${srcdir}"/fabric-${pkgver}
+  python setup.py build
+}
+
+package() {
+  cd "${srcdir}"/fabric-${pkgver}
+  python setup.py install -O1 --skip-build --root="${pkgdir}"
+
+  install -Dm644 README.rst "${pkgdir}"/usr/share/doc/${pkgname}/README.rst
+  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}


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

2019-08-08 Thread Maxime Gauduin via arch-commits
Date: Thursday, August 8, 2019 @ 09:22:49
  Author: alucryd
Revision: 498332

upgpkg: home-assistant 0.97.0-1

Modified:
  home-assistant/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-08 09:20:54 UTC (rev 498331)
+++ PKGBUILD2019-08-08 09:22:49 UTC (rev 498332)
@@ -6,7 +6,7 @@
 
 pkgname=home-assistant
 pkgdesc='Open source home automation that puts local control and privacy first'
-pkgver=0.96.5
+pkgver=0.97.0
 pkgrel=1
 arch=(any)
 url=https://home-assistant.io/


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

2019-08-08 Thread Maxime Gauduin via arch-commits
Date: Thursday, August 8, 2019 @ 09:22:57
  Author: alucryd
Revision: 498333

archrelease: copy trunk to community-any

Added:
  home-assistant/repos/community-any/PKGBUILD
(from rev 498332, home-assistant/trunk/PKGBUILD)
  home-assistant/repos/community-any/home-assistant.service
(from rev 498332, home-assistant/trunk/home-assistant.service)
  home-assistant/repos/community-any/home-assistant.sysusers
(from rev 498332, home-assistant/trunk/home-assistant.sysusers)
  home-assistant/repos/community-any/home-assistant.tmpfiles
(from rev 498332, home-assistant/trunk/home-assistant.tmpfiles)
Deleted:
  home-assistant/repos/community-any/PKGBUILD
  home-assistant/repos/community-any/home-assistant.service
  home-assistant/repos/community-any/home-assistant.sysusers
  home-assistant/repos/community-any/home-assistant.tmpfiles

-+
 PKGBUILD|  154 +++---
 home-assistant.service  |   28 
 home-assistant.sysusers |2 
 home-assistant.tmpfiles |2 
 4 files changed, 93 insertions(+), 93 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-08 09:22:49 UTC (rev 498332)
+++ PKGBUILD2019-08-08 09:22:57 UTC (rev 498333)
@@ -1,77 +0,0 @@
-# Maintainer: Maxime Gauduin 
-# Contributor: Ethan Skinner 
-# Contributor: Grégoire Seux 
-# Contributor: Dean Galvin 
-# Contributor: NicoHood 
-
-pkgname=home-assistant
-pkgdesc='Open source home automation that puts local control and privacy first'
-pkgver=0.96.5
-pkgrel=1
-arch=(any)
-url=https://home-assistant.io/
-license=(APACHE)
-depends=(
-  python-aiohttp
-  python-astral
-  python-async-timeout
-  python-attrs
-  python-bcrypt
-  python-certifi
-  python-cryptography
-  python-importlib-metadata
-  python-jinja
-  python-pyjwt
-  python-pip
-  python-pytz
-  python-requests
-  python-ruamel-yaml
-  python-slugify
-  python-voluptuous
-  python-voluptuous-serialize
-  python-yaml
-)
-makedepends=(
-  git
-  python-setuptools
-)
-optdepends=(
-  'net-tools: Nmap host discovery'
-  'openzwave: Z-Wave integration'
-  'python-lxml: Meteo France integration'
-)
-source=(
-  git+https://github.com/home-assistant/home-assistant.git#tag=${pkgver}
-  home-assistant.service
-  home-assistant.sysusers
-  home-assistant.tmpfiles
-)
-sha512sums=('SKIP'
-
'fe96bd3df3ba666fd9f127c466d1dd1dd7314db2e57826a2b319c8a0bfad7aedeac398e748f93c6ecd9c2247ebbae196b8b0e7263b8681e2b7aeab6a8bfeab80'
-
'100665ac35370c3ccec65d73521568de21cebf9e46af364124778861c94e338e32ad9abb675d3917f97d351dd7867e3ab2e80c26616330ae7cf0d9dc3f13369b'
-
'3e93118c84954f829767dc71ce534c5d02c1c95fc8748714c7a2df28a3a297f59962f8fb7cddf721987eb97d62feabb25acda5d38209e365646ca4a4ef4356e3')
-
-prepare() {
-  cd home-assistant
-
-  # lift hard dep constraints, we'll deal with breaking changes ourselves
-  sed 's/==/>=/g' -i setup.py
-}
-
-build() {
-  cd home-assistant
-
-  python setup.py build
-}
-
-package() {
-  cd home-assistant
-
-  python setup.py install --root="${pkgdir}" --prefix=/usr --optimize=1 
--skip-build
-
-  install -Dm 644 ../home-assistant.service -t 
"${pkgdir}"/usr/lib/systemd/system/
-  install -Dm 644 ../home-assistant.sysusers 
"${pkgdir}"/usr/lib/sysusers.d/home-assistant.conf
-  install -Dm 644 ../home-assistant.tmpfiles 
"${pkgdir}"/usr/lib/tmpfiles.d/home-assistant.conf
-}
-
-# vim: ts=2 sw=2 et:

Copied: home-assistant/repos/community-any/PKGBUILD (from rev 498332, 
home-assistant/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-08 09:22:57 UTC (rev 498333)
@@ -0,0 +1,77 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: Ethan Skinner 
+# Contributor: Grégoire Seux 
+# Contributor: Dean Galvin 
+# Contributor: NicoHood 
+
+pkgname=home-assistant
+pkgdesc='Open source home automation that puts local control and privacy first'
+pkgver=0.97.0
+pkgrel=1
+arch=(any)
+url=https://home-assistant.io/
+license=(APACHE)
+depends=(
+  python-aiohttp
+  python-astral
+  python-async-timeout
+  python-attrs
+  python-bcrypt
+  python-certifi
+  python-cryptography
+  python-importlib-metadata
+  python-jinja
+  python-pyjwt
+  python-pip
+  python-pytz
+  python-requests
+  python-ruamel-yaml
+  python-slugify
+  python-voluptuous
+  python-voluptuous-serialize
+  python-yaml
+)
+makedepends=(
+  git
+  python-setuptools
+)
+optdepends=(
+  'net-tools: Nmap host discovery'
+  'openzwave: Z-Wave integration'
+  'python-lxml: Meteo France integration'
+)
+source=(
+  git+https://github.com/home-assistant/home-assistant.git#tag=${pkgver}
+  home-assistant.service
+  home-assistant.sysusers
+  home-assistant.tmpfiles
+)
+sha512sums=('SKIP'
+
'fe96bd3df3ba666fd9f127c466d1dd1dd7314db2e57826a2b319c8a0bfad7aedeac398e748f93c6ecd9c2247ebbae196b8b0e7263b8681e2b7aeab6a8bfeab80'
+

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

2019-08-08 Thread Maxime Gauduin via arch-commits
Date: Thursday, August 8, 2019 @ 09:20:54
  Author: alucryd
Revision: 498331

archrelease: copy trunk to community-any

Added:
  python-voluptuous-serialize/repos/community-any/PKGBUILD
(from rev 498330, python-voluptuous-serialize/trunk/PKGBUILD)
Deleted:
  python-voluptuous-serialize/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-08 09:20:48 UTC (rev 498330)
+++ PKGBUILD2019-08-08 09:20:54 UTC (rev 498331)
@@ -1,37 +0,0 @@
-# Maintainer: Jameson Pugh 
-
-pkgname=python-voluptuous-serialize
-pkgver=2.1.0
-pkgrel=1
-pkgdesc='Convert voluptuous schemas to JSON'
-arch=(any)
-url=https://github.com/balloob/voluptuous-serialize
-license=(APACHE)
-depends=(python-voluptuous)
-makedepends=(
-  git
-  python-setuptools
-)
-checkdepends=(python-pytest)
-source=(git+https://github.com/balloob/voluptuous-serialize.git#tag=${pkgver})
-sha256sums=(SKIP)
-
-build() {
-  cd voluptuous-serialize
-
-  python setup.py build
-}
-
-check() {
-  cd voluptuous-serialize
-
-  python setup.py test
-}
-
-package() {
-  cd voluptuous-serialize
-
-  python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
-}
-
-# vim: ts=2 sw=2 et:

Copied: python-voluptuous-serialize/repos/community-any/PKGBUILD (from rev 
498330, python-voluptuous-serialize/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-08 09:20:54 UTC (rev 498331)
@@ -0,0 +1,37 @@
+# Maintainer: Jameson Pugh 
+
+pkgname=python-voluptuous-serialize
+pkgver=2.2.0
+pkgrel=1
+pkgdesc='Convert voluptuous schemas to JSON'
+arch=(any)
+url=https://github.com/balloob/voluptuous-serialize
+license=(APACHE)
+depends=(python-voluptuous)
+makedepends=(
+  git
+  python-setuptools
+)
+checkdepends=(python-pytest)
+source=(git+https://github.com/balloob/voluptuous-serialize.git#tag=${pkgver})
+sha256sums=('SKIP')
+
+build() {
+  cd voluptuous-serialize
+
+  python setup.py build
+}
+
+check() {
+  cd voluptuous-serialize
+
+  python setup.py test
+}
+
+package() {
+  cd voluptuous-serialize
+
+  python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+}
+
+# vim: ts=2 sw=2 et:


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

2019-08-08 Thread Maxime Gauduin via arch-commits
Date: Thursday, August 8, 2019 @ 09:20:48
  Author: alucryd
Revision: 498330

upgpkg: python-voluptuous-serialize 2.2.0-1

Modified:
  python-voluptuous-serialize/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-08 09:08:37 UTC (rev 498329)
+++ PKGBUILD2019-08-08 09:20:48 UTC (rev 498330)
@@ -1,7 +1,7 @@
 # Maintainer: Jameson Pugh 
 
 pkgname=python-voluptuous-serialize
-pkgver=2.1.0
+pkgver=2.2.0
 pkgrel=1
 pkgdesc='Convert voluptuous schemas to JSON'
 arch=(any)
@@ -14,7 +14,7 @@
 )
 checkdepends=(python-pytest)
 source=(git+https://github.com/balloob/voluptuous-serialize.git#tag=${pkgver})
-sha256sums=(SKIP)
+sha256sums=('SKIP')
 
 build() {
   cd voluptuous-serialize


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

2019-08-08 Thread Maxime Gauduin via arch-commits
Date: Thursday, August 8, 2019 @ 09:08:37
  Author: alucryd
Revision: 498329

archrelease: copy trunk to community-x86_64

Added:
  vapoursynth/repos/community-x86_64/PKGBUILD
(from rev 498328, vapoursynth/trunk/PKGBUILD)
  vapoursynth/repos/community-x86_64/vapoursynth.xml
(from rev 498328, vapoursynth/trunk/vapoursynth.xml)
Deleted:
  vapoursynth/repos/community-x86_64/PKGBUILD
  vapoursynth/repos/community-x86_64/vapoursynth.xml

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-08 09:08:30 UTC (rev 498328)
+++ PKGBUILD2019-08-08 09:08:37 UTC (rev 498329)
@@ -1,64 +0,0 @@
-# Maintainer: Maxime Gauduin 
-# Contributor: sl1pkn07 
-# Contributor: jackoneill 
-
-pkgname=vapoursynth
-pkgver=R47
-pkgrel=1
-pkgdesc='A video processing framework with the future in mind'
-arch=(x86_64)
-url=http://www.vapoursynth.com/
-license=(
-  LGPL2.1
-  custom:OFL
-)
-depends=(
-  libass.so
-  libavcodec.so
-  libavformat.so
-  libavutil.so
-  libmagick
-  libzimg.so
-  python
-  tesseract
-)
-makedepends=(
-  cython
-  git
-  nasm
-  python-sphinx
-)
-source=(
-  git+https://github.com/vapoursynth/vapoursynth.git#tag=${pkgver}
-  vapoursynth.xml
-)
-sha256sums=('SKIP'
-'8e51579547d20cd7cb9618a47b3ac508423d09d76649bf038d0ab9acb850b068')
-
-prepare() {
-  cd vapoursynth
-
-  ./autogen.sh
-}
-
-build() {
-  cd vapoursynth
-
-  ./configure \
---prefix=/usr \
---enable-imwri \
---disable-static
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-package() {
-  cd vapoursynth
-
-  make DESTDIR="${pkgdir}" install
-
-  install -Dm 644 ofl.txt -t "${pkgdir}"/usr/share/licenses/vapoursynth/
-  install -Dm 644 ../vapoursynth.xml -t "${pkgdir}"/usr/share/mime/packages/
-}
-
-# vim: ts=2 sw=2 et:

Copied: vapoursynth/repos/community-x86_64/PKGBUILD (from rev 498328, 
vapoursynth/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-08 09:08:37 UTC (rev 498329)
@@ -0,0 +1,64 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: sl1pkn07 
+# Contributor: jackoneill 
+
+pkgname=vapoursynth
+pkgver=R47.1
+pkgrel=1
+pkgdesc='A video processing framework with the future in mind'
+arch=(x86_64)
+url=http://www.vapoursynth.com/
+license=(
+  LGPL2.1
+  custom:OFL
+)
+depends=(
+  libass.so
+  libavcodec.so
+  libavformat.so
+  libavutil.so
+  libmagick
+  libzimg.so
+  python
+  tesseract
+)
+makedepends=(
+  cython
+  git
+  nasm
+  python-sphinx
+)
+source=(
+  git+https://github.com/vapoursynth/vapoursynth.git#tag=${pkgver}
+  vapoursynth.xml
+)
+sha256sums=('SKIP'
+'8e51579547d20cd7cb9618a47b3ac508423d09d76649bf038d0ab9acb850b068')
+
+prepare() {
+  cd vapoursynth
+
+  ./autogen.sh
+}
+
+build() {
+  cd vapoursynth
+
+  ./configure \
+--prefix=/usr \
+--enable-imwri \
+--disable-static
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd vapoursynth
+
+  make DESTDIR="${pkgdir}" install
+
+  install -Dm 644 ofl.txt -t "${pkgdir}"/usr/share/licenses/vapoursynth/
+  install -Dm 644 ../vapoursynth.xml -t "${pkgdir}"/usr/share/mime/packages/
+}
+
+# vim: ts=2 sw=2 et:

Deleted: vapoursynth.xml
===
(Binary files differ)

Copied: vapoursynth/repos/community-x86_64/vapoursynth.xml (from rev 498328, 
vapoursynth/trunk/vapoursynth.xml)
===
(Binary files differ)


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

2019-08-08 Thread Maxime Gauduin via arch-commits
Date: Thursday, August 8, 2019 @ 09:08:30
  Author: alucryd
Revision: 498328

upgpkg: vapoursynth R47.1-1

Modified:
  vapoursynth/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-08 08:45:10 UTC (rev 498327)
+++ PKGBUILD2019-08-08 09:08:30 UTC (rev 498328)
@@ -3,7 +3,7 @@
 # Contributor: jackoneill 
 
 pkgname=vapoursynth
-pkgver=R47
+pkgver=R47.1
 pkgrel=1
 pkgdesc='A video processing framework with the future in mind'
 arch=(x86_64)


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

2019-08-08 Thread Jan Steffens via arch-commits
Date: Thursday, August 8, 2019 @ 08:49:52
  Author: heftig
Revision: 359318

12.99.2-1

Modified:
  pulseaudio/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-08 01:16:04 UTC (rev 359317)
+++ PKGBUILD2019-08-08 08:49:52 UTC (rev 359318)
@@ -6,16 +6,16 @@
 pkgbase=pulseaudio
 pkgname=(pulseaudio libpulse 
pulseaudio-{zeroconf,lirc,jack,bluetooth,equalizer})
 pkgdesc="A featureful, general-purpose sound server"
-pkgver=12.99.1
+pkgver=12.99.2
 pkgrel=1
 arch=(x86_64)
 url="https://www.freedesktop.org/wiki/Software/PulseAudio/;
 license=(GPL)
-makedepends=(libasyncns libcap attr libxtst libsm libsndfile libtool rtkit 
libsoxr
- speexdsp tdb systemd dbus avahi bluez bluez-libs intltool 
jack2-dbus sbc
- lirc openssl fftw orc gtk3 webrtc-audio-processing
- check autoconf-archive git)
-_commit=0cd931dc808786bffa3b40f75097af43a217b880  # tags/v12.99.1^0
+makedepends=(libasyncns libcap attr libxtst libsm libsndfile rtkit libsoxr
+ speexdsp tdb systemd dbus avahi bluez bluez-libs jack2-dbus sbc
+ lirc openssl fftw orc gtk3 webrtc-audio-processing check git meson
+ xmltoman)
+_commit=09e6728f7b609a7eb00abacd2caaa7cae862de70  # tags/v12.99.2^0
 
source=("git+https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git#commit=$_commit;)
 sha256sums=('SKIP')
 
@@ -26,30 +26,18 @@
 
 prepare() {
   cd pulseaudio
-  NOCONFIGURE=1 ./bootstrap.sh
 }
 
 build() {
-  cd pulseaudio
+  arch-meson pulseaudio build \
+-D gcov=false \
+-D pulsedsp-location='/usr/\$LIB/pulseaudio' \
+-D udevrulesdir=/usr/lib/udev/rules.d
+  ninja -C build
+}
 
-  ./configure --prefix=/usr \
---sysconfdir=/etc \
---libexecdir=/usr/lib \
---localstatedir=/var \
---with-udev-rules-dir=/usr/lib/udev/rules.d \
---with-pulsedsp-location='/usr/\\$$LIB/pulseaudio' \
---with-database=tdb \
---disable-tcpwrap \
---disable-bluez4 \
---disable-samplerate \
---disable-rpath \
---disable-default-build-tests \
-DATADIRNAME=share
-
-  # fight unused direct deps
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
+check() {
+  meson test -C build --print-errorlogs
 }
 
 _pick() {
@@ -70,16 +58,13 @@
   install=pulseaudio.install
   replaces=('pulseaudio-xen<=9.0' 'pulseaudio-gconf<=11.1')
 
-  cd pulseaudio
-
-  local pulsever=$(./git-version-gen .tarball-version)
+  local pulsever=$(cd pulseaudio; ./git-version-gen .tarball-version)
   while [[ $pulsever = *.*.* ]]; do
 pulsever=${pulsever%.*}
   done
   pulsever=${pulsever%%-*}
 
-  make -j1 DESTDIR="$pkgdir" install \
-bashcompletiondir=/usr/share/bash-completion/completions
+  DESTDIR="$pkgdir" meson install -C build
 
   cd "$pkgdir"
 
@@ -180,3 +165,5 @@
 
   mv equalizer/* "$pkgdir"
 }
+
+# vim:set sw=2 et:


[arch-commits] Commit in pulseaudio/repos/testing-x86_64 (4 files)

2019-08-08 Thread Jan Steffens via arch-commits
Date: Thursday, August 8, 2019 @ 08:50:06
  Author: heftig
Revision: 359319

archrelease: copy trunk to testing-x86_64

Added:
  pulseaudio/repos/testing-x86_64/PKGBUILD
(from rev 359318, pulseaudio/trunk/PKGBUILD)
  pulseaudio/repos/testing-x86_64/pulseaudio.install
(from rev 359318, pulseaudio/trunk/pulseaudio.install)
Deleted:
  pulseaudio/repos/testing-x86_64/PKGBUILD
  pulseaudio/repos/testing-x86_64/pulseaudio.install

+
 PKGBUILD   |  351 ---
 pulseaudio.install |   28 ++--
 2 files changed, 183 insertions(+), 196 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-08 08:49:52 UTC (rev 359318)
+++ PKGBUILD2019-08-08 08:50:06 UTC (rev 359319)
@@ -1,182 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Daniel J Griffiths 
-# Contributor: Corrado Primier 
-# Contributor: William Rea 
-
-pkgbase=pulseaudio
-pkgname=(pulseaudio libpulse 
pulseaudio-{zeroconf,lirc,jack,bluetooth,equalizer})
-pkgdesc="A featureful, general-purpose sound server"
-pkgver=12.99.1
-pkgrel=1
-arch=(x86_64)
-url="https://www.freedesktop.org/wiki/Software/PulseAudio/;
-license=(GPL)
-makedepends=(libasyncns libcap attr libxtst libsm libsndfile libtool rtkit 
libsoxr
- speexdsp tdb systemd dbus avahi bluez bluez-libs intltool 
jack2-dbus sbc
- lirc openssl fftw orc gtk3 webrtc-audio-processing
- check autoconf-archive git)
-_commit=0cd931dc808786bffa3b40f75097af43a217b880  # tags/v12.99.1^0
-source=("git+https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd pulseaudio
-  git describe --tags | sed 's/^v//;s/-/+/g'
-}
-
-prepare() {
-  cd pulseaudio
-  NOCONFIGURE=1 ./bootstrap.sh
-}
-
-build() {
-  cd pulseaudio
-
-  ./configure --prefix=/usr \
---sysconfdir=/etc \
---libexecdir=/usr/lib \
---localstatedir=/var \
---with-udev-rules-dir=/usr/lib/udev/rules.d \
---with-pulsedsp-location='/usr/\\$$LIB/pulseaudio' \
---with-database=tdb \
---disable-tcpwrap \
---disable-bluez4 \
---disable-samplerate \
---disable-rpath \
---disable-default-build-tests \
-DATADIRNAME=share
-
-  # fight unused direct deps
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-_pick() {
-  local p="$1" f d; shift
-  for f; do
-d="$srcdir/$p/${f#$pkgdir/}"
-mkdir -p "$(dirname "$d")"
-mv "$f" "$d"
-rmdir -p --ignore-fail-on-non-empty "$(dirname "$f")"
-  done
-}
-
-package_pulseaudio() {
-  depends=("libpulse=$pkgver-$pkgrel" rtkit libltdl speexdsp tdb orc libsoxr
-   webrtc-audio-processing)
-  optdepends=('pulseaudio-alsa: ALSA configuration (recommended)')
-  backup=(etc/pulse/{daemon.conf,default.pa,system.pa})
-  install=pulseaudio.install
-  replaces=('pulseaudio-xen<=9.0' 'pulseaudio-gconf<=11.1')
-
-  cd pulseaudio
-
-  local pulsever=$(./git-version-gen .tarball-version)
-  while [[ $pulsever = *.*.* ]]; do
-pulsever=${pulsever%.*}
-  done
-  pulsever=${pulsever%%-*}
-
-  make -j1 DESTDIR="$pkgdir" install \
-bashcompletiondir=/usr/share/bash-completion/completions
-
-  cd "$pkgdir"
-
-  # Assumes that any volume adjustment is intended by the user, who can control
-  # each app's volume. Misbehaving clients can trigger earsplitting volume
-  # jumps. App volumes can diverge wildly and cause apps without their own
-  # volume control to fall below sink volume; a sink-only volume control will
-  # suddenly be unable to make such an app loud enough.
-  sed -e '/flat-volumes/iflat-volumes = no' \
-  -i etc/pulse/daemon.conf
-
-  # Superseded by socket activation
-  sed -e '/autospawn/iautospawn = no' \
-  -i etc/pulse/client.conf
-
-  # Disable cork-request module, can result in e.g. media players unpausing
-  # when there's a Skype call incoming
-  sed -e 's|/usr/bin/pactl load-module module-x11-cork-request|#&|' \
-  -i usr/bin/start-pulseaudio-x11
-
-  # Required by qpaeq
-  sed -e '/Load several protocols/aload-module module-dbus-protocol' \
-  -i etc/pulse/default.pa
-
-  rm -r etc/dbus-1
-
-### Split libpulse
-  _pick libpulse etc/pulse/client.conf
-  _pick libpulse usr/bin/pa{cat,ctl,dsp,mon,play,rec,record}
-  _pick libpulse usr/lib/libpulse{,-simple,-mainloop-glib}.so*
-  _pick libpulse usr/lib/{cmake,pkgconfig}
-  _pick libpulse usr/lib/pulseaudio/libpulse{dsp,common-*}.so
-  _pick libpulse usr/include
-  _pick libpulse usr/share/man/man1/pa{cat,ctl,dsp,mon,play,rec,record}.1
-  _pick libpulse usr/share/man/man5/pulse-client.conf.5
-  _pick libpulse usr/share/vala
-
-### Split modules
-  local moddir=usr/lib/pulse-$pulsever/modules
-
-  _pick zeroconf $moddir/libavahi-wrap.so
-  _pick zeroconf $moddir/module-zeroconf-{publish,discover}.so
-  _pick zeroconf $moddir/module-raop-discover.so
-
-  _pick lirc $moddir/module-lirc.so
-
-  _pick jack 

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

2019-08-08 Thread Jan Steffens via arch-commits
Date: Thursday, August 8, 2019 @ 08:45:10
  Author: heftig
Revision: 498327

archrelease: copy trunk to community-any

Added:
  d-feet/repos/community-any/PKGBUILD
(from rev 498326, d-feet/trunk/PKGBUILD)
Deleted:
  d-feet/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-08 08:44:59 UTC (rev 498326)
+++ PKGBUILD2019-08-08 08:45:10 UTC (rev 498327)
@@ -1,29 +0,0 @@
-# Maintainer: Balló György 
-
-pkgname=d-feet
-pkgver=0.3.14
-pkgrel=1
-pkgdesc="D-Bus debugger for GNOME"
-arch=('any')
-url="https://wiki.gnome.org/Apps/DFeet;
-license=('GPL2')
-depends=('gtk3' 'python-gobject')
-makedepends=('intltool' 'itstool' 'gobject-introspection')
-source=(https://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('eedc20a97e7eee4cce9348a19565db8f5e0947abbf74e34f0711ca4279e414d5')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var 
--disable-tests
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make check
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: d-feet/repos/community-any/PKGBUILD (from rev 498326, 
d-feet/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-08 08:45:10 UTC (rev 498327)
@@ -0,0 +1,33 @@
+# Maintainer: Balló György 
+
+pkgname=d-feet
+pkgver=0.3.15
+pkgrel=1
+pkgdesc="D-Bus debugger for GNOME"
+arch=('any')
+url="https://wiki.gnome.org/Apps/DFeet;
+license=('GPL2')
+depends=('gtk3' 'python-gobject')
+makedepends=('gobject-introspection' 'meson' 'python-pycodestyle' 'yelp-tools')
+checkdepends=('xorg-server-xvfb')
+source=(https://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('1fff149ad01ccbd93c927f5733346a9122324b9d367da3adbf4f1a52e47dfdb1')
+
+prepare() {
+  cd $pkgname-$pkgver
+}
+
+build() {
+  arch-meson $pkgname-$pkgver build
+  ninja -C build
+}
+
+check() {
+  xvfb-run meson test -C build --print-errorlogs
+}
+
+package() {
+  DESTDIR="$pkgdir" meson install -C build
+  python -m compileall -d /usr/lib "$pkgdir/usr/lib"
+  python -O -m compileall -d /usr/lib "$pkgdir/usr/lib"
+}


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

2019-08-08 Thread Jan Steffens via arch-commits
Date: Thursday, August 8, 2019 @ 08:44:59
  Author: heftig
Revision: 498326

0.3.15-1

Modified:
  d-feet/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-08 04:07:42 UTC (rev 498325)
+++ PKGBUILD2019-08-08 08:44:59 UTC (rev 498326)
@@ -1,7 +1,7 @@
 # Maintainer: Balló György 
 
 pkgname=d-feet
-pkgver=0.3.14
+pkgver=0.3.15
 pkgrel=1
 pkgdesc="D-Bus debugger for GNOME"
 arch=('any')
@@ -8,22 +8,26 @@
 url="https://wiki.gnome.org/Apps/DFeet;
 license=('GPL2')
 depends=('gtk3' 'python-gobject')
-makedepends=('intltool' 'itstool' 'gobject-introspection')
+makedepends=('gobject-introspection' 'meson' 'python-pycodestyle' 'yelp-tools')
+checkdepends=('xorg-server-xvfb')
 
source=(https://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('eedc20a97e7eee4cce9348a19565db8f5e0947abbf74e34f0711ca4279e414d5')
+sha256sums=('1fff149ad01ccbd93c927f5733346a9122324b9d367da3adbf4f1a52e47dfdb1')
 
-build() {
+prepare() {
   cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var 
--disable-tests
-  make
 }
 
+build() {
+  arch-meson $pkgname-$pkgver build
+  ninja -C build
+}
+
 check() {
-  cd $pkgname-$pkgver
-  make check
+  xvfb-run meson test -C build --print-errorlogs
 }
 
 package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
+  DESTDIR="$pkgdir" meson install -C build
+  python -m compileall -d /usr/lib "$pkgdir/usr/lib"
+  python -O -m compileall -d /usr/lib "$pkgdir/usr/lib"
 }