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

2020-07-16 Thread Christian Hesse via arch-commits
Date: Friday, July 17, 2020 @ 06:45:05
  Author: eworm
Revision: 664248

drop empty directory

Modified:
  virtualbox/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-17 06:40:40 UTC (rev 664247)
+++ PKGBUILD2020-07-17 06:45:05 UTC (rev 664248)
@@ -348,7 +348,6 @@
 "$pkgdir"/usr/bin/VBoxClient-all
 install -m0644 -D 
"$srcdir"/VirtualBox-$pkgver/src/VBox/Additions/x11/Installer/vboxclient.desktop
 \
 "$pkgdir"/etc/xdg/autostart/vboxclient.desktop
-install -d "$pkgdir/usr/lib/xorg/modules/dri"
 install -m0755 -D pam_vbox.so "$pkgdir/usr/lib/security/pam_vbox.so"
 popd
 # systemd stuff


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

2020-07-16 Thread Christian Hesse via arch-commits
Date: Friday, July 17, 2020 @ 06:40:40
  Author: eworm
Revision: 664247

make virtualbox-guest-utils depend on xf86-video-vmware

Modified:
  virtualbox/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-17 06:31:35 UTC (rev 664246)
+++ PKGBUILD2020-07-17 06:40:40 UTC (rev 664247)
@@ -334,8 +334,8 @@
 
 package_virtualbox-guest-utils() {
 pkgdesc='VirtualBox Guest userspace utilities'
-depends=('glibc' 'pam' 'libx11' 'libxcomposite'
- 'libxdamage' 'libxext' 'libxfixes' 'libxmu' 'libxt' 'xorg-xrandr'
+depends=('glibc' 'pam' 'libx11' 'libxcomposite' 'libxdamage' 'libxext'
+ 'libxfixes' 'libxmu' 'libxt' 'xorg-xrandr' 'xf86-video-vmware'
  'VIRTUALBOX-GUEST-MODULES')
 replaces=('virtualbox-archlinux-additions' 'virtualbox-guest-additions')
 conflicts=('virtualbox-archlinux-additions' 'virtualbox-guest-additions' 
'virtualbox-guest-utils-nox')


[arch-commits] Commit in buildbot/trunk (PKGBUILD ignore-setuptools-warning.diff)

2020-07-16 Thread Chih-Hsuan Yen via arch-commits
Date: Friday, July 17, 2020 @ 06:31:35
  Author: yan12125
Revision: 664246

buildbot: fix check() with setuptools 49.2.0

Ref: https://github.com/pypa/setuptools/issues/2259

Added:
  buildbot/trunk/ignore-setuptools-warning.diff
Modified:
  buildbot/trunk/PKGBUILD

+
 PKGBUILD   |   12 +---
 ignore-setuptools-warning.diff |   12 
 2 files changed, 21 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-07-17 06:11:46 UTC (rev 664245)
+++ PKGBUILD2020-07-17 06:31:35 UTC (rev 664246)
@@ -10,7 +10,7 @@
  python-buildbot-wsgi-dashboards python-buildbot-badges)
 pkgver=2.8.2
 _bb_contrib_commit=ada3c8f30ca7e1b6bb260e2e5971053fbd254333
-pkgrel=1
+pkgrel=2
 arch=(any)
 url='https://buildbot.net'
 license=(GPL2)
@@ -27,12 +27,14 @@
 
source=("https://github.com/buildbot/buildbot/releases/download/v$pkgver/buildbot-v$pkgver.gitarchive.tar.gz"{,.asc}
 
"git+https://github.com/buildbot/buildbot-contrib.git#commit=$_bb_contrib_commit";
 "reproducible-html.diff"
-"sqlalchemy-1.13.18.diff")
+"sqlalchemy-1.13.18.diff"
+"ignore-setuptools-warning.diff")
 sha256sums=('e5ef72bba5eee9f84f5c2df45fb6238537714c7ce9f9838418d385a3722948c9'
 'SKIP'
 'SKIP'
 'b921d29994eff3af134ca1b37acf291a6a95f5da35a2a4f885557adcca22f864'
-'cd6119e8f8346ad2bcfedb3bfdbfcdcbb9908ea1db9f3ec09d323f6c9d13d9df')
+'cd6119e8f8346ad2bcfedb3bfdbfcdcbb9908ea1db9f3ec09d323f6c9d13d9df'
+'d09f851fb1a50f99d407ea79fa25a90ec0f70b593983108468c87fee8b3cc476')
 validpgpkeys=(
   '390EB159056ED56F66AB1092AECD456B4D2531FC'  # Pierre Tardy 
 (@tardyp on GitHub)
   'FD0004A26EADFE43A4C3F249C6F7AE200374452D'  # Povilas Kanapickas 
 (@p12tic on GitHub)
@@ -42,6 +44,10 @@
   cd buildbot-$pkgver
   patch -Np1 -i ../reproducible-html.diff
   patch -Np1 -i ../sqlalchemy-1.13.18.diff
+  # Setuptools 49.2.0 complains if distutils is imported earlier than 
setuptools
+  # The warning is still under discussion, so just ignore it for now
+  # https://github.com/pypa/setuptools/issues/2259
+  patch -Np1 -i ../ignore-setuptools-warning.diff
 
   # HACK: do not use virtualenv
   sed -i -e 's#frontend_deps:.*#frontend_deps:#' Makefile

Added: ignore-setuptools-warning.diff
===
--- ignore-setuptools-warning.diff  (rev 0)
+++ ignore-setuptools-warning.diff  2020-07-17 06:31:35 UTC (rev 664246)
@@ -0,0 +1,12 @@
+diff --git a/master/buildbot/test/__init__.py 
b/master/buildbot/test/__init__.py
+index f7ba7b1e7..6d4b86eab 100644
+--- a/master/buildbot/test/__init__.py
 b/master/buildbot/test/__init__.py
+@@ -131,3 +131,7 @@ warnings.filterwarnings('ignore', ".*Not importing 
directory .*/zope: missing __
+ category=ImportWarning)
+ warnings.filterwarnings('ignore', ".*Not importing directory 
.*/sphinxcontrib: missing __init__",
+ category=ImportWarning)
++
++# ignore warnings from setuptools 49.2.0
++warnings.filterwarnings('ignore', ".*Distutils was imported before 
Setuptools.*",
++category=UserWarning)


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

2020-07-16 Thread Antonio Rojas via arch-commits
Date: Friday, July 17, 2020 @ 06:11:46
  Author: arojas
Revision: 664245

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-17 06:11:36 UTC (rev 664244)
+++ PKGBUILD2020-07-17 06:11:46 UTC (rev 664245)
@@ -1,26 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Contributor: Fredrick Brennan 
-# Contributor: Stephan Eisvogel 
-
-pkgname=python-pikepdf
-pkgver=1.17.1
-pkgrel=1
-pkgdesc='Read and write PDFs with Python, powered by qpdf'
-arch=(x86_64)
-url='https://github.com/pikepdf/pikepdf'
-license=(MPL2)
-makedepends=(pybind11 python-setuptools)
-depends=(python-lxml python-pillow qpdf)
-source=($pkgname-$pkgver.tar.gz::"https://github.com/pikepdf/pikepdf/archive/v$pkgver.tar.gz";)
-sha256sums=('9703551182dc5016477f6904e1708b9310974aa3ea0c45c85bf0db0fea2e0594')
-
-build() {
-  cd pikepdf-$pkgver
-  python setup.py build
-}
-
-package() {
-  cd pikepdf-$pkgver
-  python setup.py install --root="$pkgdir" --prefix=/usr --optimize=1 
--skip-build
-  install -Dm644 LICENSE.txt -t "$pkgdir"/usr/share/licenses/$pkgname
-}

Copied: python-pikepdf/repos/community-x86_64/PKGBUILD (from rev 664244, 
python-pikepdf/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-17 06:11:46 UTC (rev 664245)
@@ -0,0 +1,26 @@
+# Maintainer: Antonio Rojas 
+# Contributor: Fredrick Brennan 
+# Contributor: Stephan Eisvogel 
+
+pkgname=python-pikepdf
+pkgver=1.17.2
+pkgrel=1
+pkgdesc='Read and write PDFs with Python, powered by qpdf'
+arch=(x86_64)
+url='https://github.com/pikepdf/pikepdf'
+license=(MPL2)
+makedepends=(pybind11 python-setuptools)
+depends=(python-lxml python-pillow qpdf)
+source=($pkgname-$pkgver.tar.gz::"https://github.com/pikepdf/pikepdf/archive/v$pkgver.tar.gz";)
+sha256sums=('37d63585d905300b131619d47f0a1819814f41ee4af2cd1c98d27aaa513481d0')
+
+build() {
+  cd pikepdf-$pkgver
+  python setup.py build
+}
+
+package() {
+  cd pikepdf-$pkgver
+  python setup.py install --root="$pkgdir" --prefix=/usr --optimize=1 
--skip-build
+  install -Dm644 LICENSE.txt -t "$pkgdir"/usr/share/licenses/$pkgname
+}


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

2020-07-16 Thread Antonio Rojas via arch-commits
Date: Friday, July 17, 2020 @ 06:11:36
  Author: arojas
Revision: 664244

Update to 1.17.2

Modified:
  python-pikepdf/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-17 02:49:49 UTC (rev 664243)
+++ PKGBUILD2020-07-17 06:11:36 UTC (rev 664244)
@@ -3,7 +3,7 @@
 # Contributor: Stephan Eisvogel 
 
 pkgname=python-pikepdf
-pkgver=1.17.1
+pkgver=1.17.2
 pkgrel=1
 pkgdesc='Read and write PDFs with Python, powered by qpdf'
 arch=(x86_64)
@@ -12,7 +12,7 @@
 makedepends=(pybind11 python-setuptools)
 depends=(python-lxml python-pillow qpdf)
 
source=($pkgname-$pkgver.tar.gz::"https://github.com/pikepdf/pikepdf/archive/v$pkgver.tar.gz";)
-sha256sums=('9703551182dc5016477f6904e1708b9310974aa3ea0c45c85bf0db0fea2e0594')
+sha256sums=('37d63585d905300b131619d47f0a1819814f41ee4af2cd1c98d27aaa513481d0')
 
 build() {
   cd pikepdf-$pkgver


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

2020-07-16 Thread Chih-Hsuan Yen via arch-commits
Date: Friday, July 17, 2020 @ 02:49:31
  Author: yan12125
Revision: 664242

upgpkg: python-cfn-lint 0.34.0-1

Modified:
  python-cfn-lint/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-17 00:35:23 UTC (rev 664241)
+++ PKGBUILD2020-07-17 02:49:31 UTC (rev 664242)
@@ -1,7 +1,7 @@
 # Maintainer: Chih-Hsuan Yen 
 
 pkgname=python-cfn-lint
-pkgver=0.33.2
+pkgver=0.34.0
 pkgrel=1
 pkgdesc='CloudFormation Linter'
 arch=(any)
@@ -15,7 +15,7 @@
   'python-pydot: for building graphs from templates'
 )
 
source=("https://github.com/aws-cloudformation/cfn-python-lint/archive/v$pkgver/cfn-python-lint-$pkgver.tar.gz";)
-sha256sums=('78a0deeec0453e3c983769abd46ed4b3b70233872b5d9855faeedbae09e56ca4')
+sha256sums=('c2712a51e3f16cfb78689f14cdca918141dda21f26d9a68ca337808ab964e0c5')
 
 build() {
   cd cfn-python-lint-$pkgver


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

2020-07-16 Thread Chih-Hsuan Yen via arch-commits
Date: Friday, July 17, 2020 @ 02:49:49
  Author: yan12125
Revision: 664243

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-17 02:49:31 UTC (rev 664242)
+++ PKGBUILD2020-07-17 02:49:49 UTC (rev 664243)
@@ -1,42 +0,0 @@
-# Maintainer: Chih-Hsuan Yen 
-
-pkgname=python-cfn-lint
-pkgver=0.33.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-yaml python-six python-aws-sam-translator
- python-jsonpatch python-jsonschema python-setuptools python-networkx
- python-junit-xml)
-checkdepends=(python-pytest python-mock python-pydot)
-optdepends=(
-  'python-pydot: for building graphs from templates'
-)
-source=("https://github.com/aws-cloudformation/cfn-python-lint/archive/v$pkgver/cfn-python-lint-$pkgver.tar.gz";)
-sha256sums=('78a0deeec0453e3c983769abd46ed4b3b70233872b5d9855faeedbae09e56ca4')
-
-build() {
-  cd cfn-python-lint-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd cfn-python-lint-$pkgver
-
-  # Tests in test/integration need the cfn-lint binary
-  python setup.py install_scripts --install-dir="$srcdir"/tmp_install
-
-  export PYTHONPATH="$PWD/src"
-  export PATH="$PATH:$srcdir/tmp_install"
-  pytest -v test
-}
-
-package() {
-  cd cfn-python-lint-$pkgver
-  # use PYTHONHASHSEED=0 to work around https://bugs.python.org/issue34033
-  PYTHONHASHSEED=0 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 664242, 
python-cfn-lint/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-17 02:49:49 UTC (rev 664243)
@@ -0,0 +1,42 @@
+# Maintainer: Chih-Hsuan Yen 
+
+pkgname=python-cfn-lint
+pkgver=0.34.0
+pkgrel=1
+pkgdesc='CloudFormation Linter'
+arch=(any)
+url='https://github.com/aws-cloudformation/cfn-python-lint'
+license=('custom:MIT No Attribution')
+depends=(python python-yaml python-six python-aws-sam-translator
+ python-jsonpatch python-jsonschema python-setuptools python-networkx
+ python-junit-xml)
+checkdepends=(python-pytest python-mock python-pydot)
+optdepends=(
+  'python-pydot: for building graphs from templates'
+)
+source=("https://github.com/aws-cloudformation/cfn-python-lint/archive/v$pkgver/cfn-python-lint-$pkgver.tar.gz";)
+sha256sums=('c2712a51e3f16cfb78689f14cdca918141dda21f26d9a68ca337808ab964e0c5')
+
+build() {
+  cd cfn-python-lint-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd cfn-python-lint-$pkgver
+
+  # Tests in test/integration need the cfn-lint binary
+  python setup.py install_scripts --install-dir="$srcdir"/tmp_install
+
+  export PYTHONPATH="$PWD/src"
+  export PATH="$PATH:$srcdir/tmp_install"
+  pytest -v test
+}
+
+package() {
+  cd cfn-python-lint-$pkgver
+  # use PYTHONHASHSEED=0 to work around https://bugs.python.org/issue34033
+  PYTHONHASHSEED=0 python setup.py install --root="$pkgdir" --optimize=1 
--skip-build
+
+  install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname
+}


[arch-commits] Commit in element.io/repos (4 files)

2020-07-16 Thread Bruno Pagani via arch-commits
Date: Friday, July 17, 2020 @ 00:35:23
  Author: archange
Revision: 664241

archrelease: copy trunk to community-testing-x86_64

Added:
  element.io/repos/community-testing-x86_64/
  element.io/repos/community-testing-x86_64/PKGBUILD
(from rev 664240, element.io/trunk/PKGBUILD)
  element.io/repos/community-testing-x86_64/element-desktop.sh
(from rev 664240, element.io/trunk/element-desktop.sh)
  element.io/repos/community-testing-x86_64/element.desktop
(from rev 664240, element.io/trunk/element.desktop)

+
 PKGBUILD   |   92 +++
 element-desktop.sh |3 +
 element.desktop|   10 +
 3 files changed, 105 insertions(+)

Copied: element.io/repos/community-testing-x86_64/PKGBUILD (from rev 664240, 
element.io/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-07-17 00:35:23 UTC (rev 664241)
@@ -0,0 +1,92 @@
+# Maintainer: Bruno Pagani 
+# Contributor: Steef Hegeman 
+# Contributor: Luca Weiss 
+# Contributor: Julian Schacher 
+
+_pkgbase=riot
+pkgbase=element.io
+pkgname=(element-web element-desktop)
+pkgver=1.7.1
+pkgrel=1
+pkgdesc="Glossy Matrix collaboration client — "
+arch=(x86_64)
+url="https://element.io";
+license=(Apache)
+makedepends=(npm git yarn python rust sqlcipher electron)
+_url="https://github.com/vector-im/riot";
+source=(element-web-${pkgver}.tar.gz::${_url}-web/archive/v${pkgver}.tar.gz
+
element-web-${pkgver}.tar.gz.asc::${_url}-web/releases/download/v${pkgver}/v${pkgver}-src.tar.gz.asc
+
element-desktop-${pkgver}.tar.gz::${_url}-desktop/archive/v${pkgver}.tar.gz
+
element-desktop-${pkgver}.tar.gz.asc::${_url}-desktop/releases/download/v${pkgver}/v${pkgver}-src.tar.gz.asc
+element.desktop
+element-desktop.sh)
+sha256sums=('e26ad0d5ce192de4dfe29dd0cee296dddf77c043ae6e23ffcc6fc5c5fdb959b2'
+'SKIP'
+'6d92437d3cd3d7846a21616a98759e9d0c1cabd07bcbbedf1e933c1baf55b287'
+'SKIP'
+'07b26f0d4d8fa2308d56ab8d1b9edc8089cfd02d2d1fd3b844bd7cade7c031b3'
+'7b9beb0999e99beebb85e142fe6d26e9b386ce6b636675610d4caccdfb7fd293')
+validpgpkeys=(A878CDF66CF4A9B4807CEBE574692659BDA3D940) # Riot Releases 

+
+prepare() {
+  cd riot-web-${pkgver}
+  # Switch target to output to directory rather than .deb package
+  sed -i 's/"target": "deb"/"target": "dir"/g' package.json
+  yarn install
+
+  cd ../riot-desktop-${pkgver}
+  sed -i 's@"https://packages.riot.im/desktop/update/"@null@g' 
element.io/release/config.json
+  yarn install
+}
+
+build() {
+  cd riot-web-${pkgver}
+  yarn build
+
+  cd ../riot-desktop-${pkgver}
+  yarn run build:native
+  yarn run build
+}
+
+package_element-web() {
+  pkgdesc+="web version."
+  replaces=(riot-web vector-web)
+
+  cd riot-web-${pkgver}
+
+  install -d "${pkgdir}"/{usr/share/webapps,etc/webapps}/element
+
+  cp -r webapp/* "${pkgdir}"/usr/share/webapps/element/
+  install -Dm644 config.sample.json -t "${pkgdir}"/etc/webapps/element/
+  ln -s /etc/webapps/element/config.json "${pkgdir}"/usr/share/webapps/element/
+  echo "${pkgver}" > "${pkgdir}"/usr/share/webapps/element/version
+}
+
+package_element-desktop() {
+  pkgdesc+="desktop version."
+  replaces=(riot-desktop)
+  depends=("element-web=${pkgver}" electron sqlcipher)
+  backup=('etc/element/config.json')
+
+  cd riot-desktop-${pkgver}
+
+  install -d "${pkgdir}"{/usr/lib/element/,/etc/webapps/element}
+
+  # Install the app content, replace the webapp with a symlink to the system 
package
+  cp -r dist/linux-unpacked/resources/* "${pkgdir}"/usr/lib/element/
+  ln -s /usr/share/webapps/element "${pkgdir}"/usr/lib/element/webapp
+
+  # Config file
+  ln -s /etc/element/config.json "${pkgdir}"/etc/webapps/element/config.json
+  install -Dm644 element.io/release/config.json -t "${pkgdir}"/etc/element
+
+  # Required extras
+  install -Dm644 ../element.desktop 
"${pkgdir}"/usr/share/applications/element.desktop
+  install -Dm755 ../${pkgname}.sh "${pkgdir}"/usr/bin/${pkgname}
+
+  # Icons
+  install -Dm644 
../riot-web-${pkgver}/res/themes/element/img/logos/element-logo.svg 
"${pkgdir}"/usr/share/icons/hicolor/scalable/apps/element.svg
+  for i in 16 24 48 64 96 128 256 512; do
+install -Dm644 build/icons/${i}x${i}.png 
"${pkgdir}"/usr/share/icons/hicolor/${i}x${i}/apps/element.png
+  done
+}

Copied: element.io/repos/community-testing-x86_64/element-desktop.sh (from rev 
664240, element.io/trunk/element-desktop.sh)
===
--- community-testing-x86_64/element-desktop.sh (rev 0)
+++ community-testing-x86_64/element-desktop.sh 2020-07-17 00:35:23 UTC (rev 
664241)
@@ -0,0 +1,3 @@
+#!/bin/bash
+
+electron /usr/lib/element/app.asar "$@"

Copied: element.io/repos/community-testing-x86_64/element.deskto

[arch-commits] Commit in (6 files)

2020-07-16 Thread Bruno Pagani via arch-commits
Date: Friday, July 17, 2020 @ 00:27:01
  Author: archange
Revision: 664240

Renaming of riot to element during the 1.7 upgrade

Added:
  element.io/
  element.io/repos/
  element.io/trunk/
  element.io/trunk/PKGBUILD
  element.io/trunk/element-desktop.sh
  element.io/trunk/element.desktop

+
 PKGBUILD   |   92 +++
 element-desktop.sh |3 +
 element.desktop|   10 +
 3 files changed, 105 insertions(+)

Added: element.io/trunk/PKGBUILD
===
--- element.io/trunk/PKGBUILD   (rev 0)
+++ element.io/trunk/PKGBUILD   2020-07-17 00:27:01 UTC (rev 664240)
@@ -0,0 +1,92 @@
+# Maintainer: Bruno Pagani 
+# Contributor: Steef Hegeman 
+# Contributor: Luca Weiss 
+# Contributor: Julian Schacher 
+
+_pkgbase=riot
+pkgbase=element.io
+pkgname=(element-web element-desktop)
+pkgver=1.7.1
+pkgrel=1
+pkgdesc="Glossy Matrix collaboration client — "
+arch=(x86_64)
+url="https://element.io";
+license=(Apache)
+makedepends=(npm git yarn python rust sqlcipher electron)
+_url="https://github.com/vector-im/riot";
+source=(element-web-${pkgver}.tar.gz::${_url}-web/archive/v${pkgver}.tar.gz
+
element-web-${pkgver}.tar.gz.asc::${_url}-web/releases/download/v${pkgver}/v${pkgver}-src.tar.gz.asc
+
element-desktop-${pkgver}.tar.gz::${_url}-desktop/archive/v${pkgver}.tar.gz
+
element-desktop-${pkgver}.tar.gz.asc::${_url}-desktop/releases/download/v${pkgver}/v${pkgver}-src.tar.gz.asc
+element.desktop
+element-desktop.sh)
+sha256sums=('e26ad0d5ce192de4dfe29dd0cee296dddf77c043ae6e23ffcc6fc5c5fdb959b2'
+'SKIP'
+'6d92437d3cd3d7846a21616a98759e9d0c1cabd07bcbbedf1e933c1baf55b287'
+'SKIP'
+'07b26f0d4d8fa2308d56ab8d1b9edc8089cfd02d2d1fd3b844bd7cade7c031b3'
+'7b9beb0999e99beebb85e142fe6d26e9b386ce6b636675610d4caccdfb7fd293')
+validpgpkeys=(A878CDF66CF4A9B4807CEBE574692659BDA3D940) # Riot Releases 

+
+prepare() {
+  cd riot-web-${pkgver}
+  # Switch target to output to directory rather than .deb package
+  sed -i 's/"target": "deb"/"target": "dir"/g' package.json
+  yarn install
+
+  cd ../riot-desktop-${pkgver}
+  sed -i 's@"https://packages.riot.im/desktop/update/"@null@g' 
element.io/release/config.json
+  yarn install
+}
+
+build() {
+  cd riot-web-${pkgver}
+  yarn build
+
+  cd ../riot-desktop-${pkgver}
+  yarn run build:native
+  yarn run build
+}
+
+package_element-web() {
+  pkgdesc+="web version."
+  replaces=(riot-web vector-web)
+
+  cd riot-web-${pkgver}
+
+  install -d "${pkgdir}"/{usr/share/webapps,etc/webapps}/element
+
+  cp -r webapp/* "${pkgdir}"/usr/share/webapps/element/
+  install -Dm644 config.sample.json -t "${pkgdir}"/etc/webapps/element/
+  ln -s /etc/webapps/element/config.json "${pkgdir}"/usr/share/webapps/element/
+  echo "${pkgver}" > "${pkgdir}"/usr/share/webapps/element/version
+}
+
+package_element-desktop() {
+  pkgdesc+="desktop version."
+  replaces=(riot-desktop)
+  depends=("element-web=${pkgver}" electron sqlcipher)
+  backup=('etc/element/config.json')
+
+  cd riot-desktop-${pkgver}
+
+  install -d "${pkgdir}"{/usr/lib/element/,/etc/webapps/element}
+
+  # Install the app content, replace the webapp with a symlink to the system 
package
+  cp -r dist/linux-unpacked/resources/* "${pkgdir}"/usr/lib/element/
+  ln -s /usr/share/webapps/element "${pkgdir}"/usr/lib/element/webapp
+
+  # Config file
+  ln -s /etc/element/config.json "${pkgdir}"/etc/webapps/element/config.json
+  install -Dm644 element.io/release/config.json -t "${pkgdir}"/etc/element
+
+  # Required extras
+  install -Dm644 ../element.desktop 
"${pkgdir}"/usr/share/applications/element.desktop
+  install -Dm755 ../${pkgname}.sh "${pkgdir}"/usr/bin/${pkgname}
+
+  # Icons
+  install -Dm644 
../riot-web-${pkgver}/res/themes/element/img/logos/element-logo.svg 
"${pkgdir}"/usr/share/icons/hicolor/scalable/apps/element.svg
+  for i in 16 24 48 64 96 128 256 512; do
+install -Dm644 build/icons/${i}x${i}.png 
"${pkgdir}"/usr/share/icons/hicolor/${i}x${i}/apps/element.png
+  done
+}

Added: element.io/trunk/element-desktop.sh
===
--- element.io/trunk/element-desktop.sh (rev 0)
+++ element.io/trunk/element-desktop.sh 2020-07-17 00:27:01 UTC (rev 664240)
@@ -0,0 +1,3 @@
+#!/bin/bash
+
+electron /usr/lib/element/app.asar "$@"


Property changes on: element.io/trunk/element-desktop.sh
___
Added: svn:executable
## -0,0 +1 ##
+*
\ No newline at end of property
Added: element.io/trunk/element.desktop
===
--- element.io/trunk/element.desktop(rev 0)
+++ element.io/trunk/element.desktop2020-07-17 00:27:01 UTC (rev 664240)
@@ -0,0 +1,10 @@
+[Desktop E

[arch-commits] Commit in linux-firmware/repos (testing-any testing-any/PKGBUILD)

2020-07-16 Thread Jan Steffens via arch-commits
Date: Thursday, July 16, 2020 @ 23:38:15
  Author: heftig
Revision: 392013

archrelease: copy trunk to testing-any

Added:
  linux-firmware/repos/testing-any/
  linux-firmware/repos/testing-any/PKGBUILD
(from rev 392012, linux-firmware/trunk/PKGBUILD)

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

Copied: linux-firmware/repos/testing-any/PKGBUILD (from rev 392012, 
linux-firmware/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2020-07-16 23:38:15 UTC (rev 392013)
@@ -0,0 +1,87 @@
+# Maintainer: Thomas Bächler 
+
+pkgbase=linux-firmware
+pkgname=(linux-firmware amd-ucode)
+_commit=e96c1212f0c61505f3efe6e9db324735b15fd290  # tags/20200619^0
+pkgver=20200619.e96c121
+pkgrel=1
+pkgdesc="Firmware files for Linux"
+makedepends=('git')
+arch=('any')
+url="https://git.kernel.org/?p=linux/kernel/git/firmware/linux-firmware.git;a=summary";
+license=('GPL2' 'GPL3' 'custom')
+options=(!strip)
+source=("git+https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git#commit=${_commit}?signed";)
+sha256sums=('SKIP')
+validpgpkeys=('4CDE8575E547BF835FE15807A31B6BD72486CFD6') # Josh Boyer 

+
+prepare() {
+  cd ${pkgname}
+}
+
+pkgver() {
+  cd ${pkgname}
+
+  # Commit date + short rev
+  echo $(TZ=UTC git show -s --pretty=%cd --date=format-local:%Y%m%d 
HEAD).$(git rev-parse --short HEAD)
+}
+
+build() {
+  mkdir -p kernel/x86/microcode
+  cat ${pkgbase}/amd-ucode/microcode_amd*.bin > 
kernel/x86/microcode/AuthenticAMD.bin
+
+  # Reproducibility: set the timestamp on the bin file
+  if [[ -n $SOURCE_DATE_EPOCH ]]; then 
+touch -d @$SOURCE_DATE_EPOCH kernel/x86/microcode/AuthenticAMD.bin
+  fi
+
+  # Reproducibility: strip the inode and device numbers from the cpio archive
+  echo kernel/x86/microcode/AuthenticAMD.bin |
+bsdtar --uid 0 --gid 0 -cnf - -T - |
+bsdtar --null -cf - --format=newc @- > amd-ucode.img
+}
+
+package_linux-firmware() {
+  conflicts=('linux-firmware-git'
+ 'kernel26-firmware'
+ 'ar9170-fw'
+ 'iwlwifi-1000-ucode'
+ 'iwlwifi-3945-ucode'
+ 'iwlwifi-4965-ucode'
+ 'iwlwifi-5000-ucode'
+ 'iwlwifi-5150-ucode'
+ 'iwlwifi-6000-ucode'
+ 'rt2870usb-fw'
+ 'rt2x00-rt61-fw'
+ 'rt2x00-rt71w-fw')
+  replaces=('kernel26-firmware'
+'ar9170-fw'
+'iwlwifi-1000-ucode'
+'iwlwifi-3945-ucode'
+'iwlwifi-4965-ucode'
+'iwlwifi-5000-ucode'
+'iwlwifi-5150-ucode'
+'iwlwifi-6000-ucode'
+'rt2870usb-fw'
+'rt2x00-rt61-fw'
+'rt2x00-rt71w-fw')
+
+  cd ${pkgname}
+
+  make DESTDIR="${pkgdir}" FIRMWAREDIR=/usr/lib/firmware install
+
+  install -Dt "${pkgdir}/usr/share/licenses/${pkgname}" -m644 LICEN* WHENCE
+
+  # Trigger a microcode reload for configurations not using early updates
+  echo 'w /sys/devices/system/cpu/microcode/reload - - - - 1' |
+install -Dm644 /dev/stdin "${pkgdir}/usr/lib/tmpfiles.d/${pkgname}.conf"
+}
+
+package_amd-ucode() {
+  pkgdesc='Microcode update files for AMD CPUs'
+
+  install -Dt "${pkgdir}/boot" -m644 amd-ucode.img
+  install -Dm644 ${pkgbase}/LICENSE.amd-ucode 
"${pkgdir}/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:


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

2020-07-16 Thread Jan Steffens via arch-commits
Date: Thursday, July 16, 2020 @ 23:37:47
  Author: heftig
Revision: 392012

20200619.e96c121-1

Modified:
  linux-firmware/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-16 23:33:05 UTC (rev 392011)
+++ PKGBUILD2020-07-16 23:37:47 UTC (rev 392012)
@@ -2,8 +2,8 @@
 
 pkgbase=linux-firmware
 pkgname=(linux-firmware amd-ucode)
-_commit=8ba6fa665c52093ddc0d81137fc3c82cee2c5ef8  # tag 20200519
-pkgver=20200519.8ba6fa6
+_commit=e96c1212f0c61505f3efe6e9db324735b15fd290  # tags/20200619^0
+pkgver=20200619.e96c121
 pkgrel=1
 pkgdesc="Firmware files for Linux"
 makedepends=('git')


[arch-commits] Commit in mailman/repos/community-x86_64 (42 files)

2020-07-16 Thread Sébastien Luttringer via arch-commits
Date: Thursday, July 16, 2020 @ 22:36:18
  Author: seblu
Revision: 664239

archrelease: copy trunk to community-x86_64

Added:
  mailman/repos/community-x86_64/01-mailman-2.1-build.patch
(from rev 664238, mailman/trunk/01-mailman-2.1-build.patch)
  mailman/repos/community-x86_64/PKGBUILD
(from rev 664238, mailman/trunk/PKGBUILD)
  mailman/repos/community-x86_64/mailman-checkdbs.service
(from rev 664238, mailman/trunk/mailman-checkdbs.service)
  mailman/repos/community-x86_64/mailman-checkdbs.timer
(from rev 664238, mailman/trunk/mailman-checkdbs.timer)
  mailman/repos/community-x86_64/mailman-cullbadshunt.service
(from rev 664238, mailman/trunk/mailman-cullbadshunt.service)
  mailman/repos/community-x86_64/mailman-cullbadshunt.timer
(from rev 664238, mailman/trunk/mailman-cullbadshunt.timer)
  mailman/repos/community-x86_64/mailman-disabled.service
(from rev 664238, mailman/trunk/mailman-disabled.service)
  mailman/repos/community-x86_64/mailman-disabled.timer
(from rev 664238, mailman/trunk/mailman-disabled.timer)
  mailman/repos/community-x86_64/mailman-gatenews.service
(from rev 664238, mailman/trunk/mailman-gatenews.service)
  mailman/repos/community-x86_64/mailman-gatenews.timer
(from rev 664238, mailman/trunk/mailman-gatenews.timer)
  mailman/repos/community-x86_64/mailman-mailpasswds.service
(from rev 664238, mailman/trunk/mailman-mailpasswds.service)
  mailman/repos/community-x86_64/mailman-mailpasswds.timer
(from rev 664238, mailman/trunk/mailman-mailpasswds.timer)
  mailman/repos/community-x86_64/mailman-nightlygzip.service
(from rev 664238, mailman/trunk/mailman-nightlygzip.service)
  mailman/repos/community-x86_64/mailman-nightlygzip.timer
(from rev 664238, mailman/trunk/mailman-nightlygzip.timer)
  mailman/repos/community-x86_64/mailman-senddigests.service
(from rev 664238, mailman/trunk/mailman-senddigests.service)
  mailman/repos/community-x86_64/mailman-senddigests.timer
(from rev 664238, mailman/trunk/mailman-senddigests.timer)
  mailman/repos/community-x86_64/mailman.install
(from rev 664238, mailman/trunk/mailman.install)
  mailman/repos/community-x86_64/mailman.profile.csh
(from rev 664238, mailman/trunk/mailman.profile.csh)
  mailman/repos/community-x86_64/mailman.profile.sh
(from rev 664238, mailman/trunk/mailman.profile.sh)
  mailman/repos/community-x86_64/mailman.service
(from rev 664238, mailman/trunk/mailman.service)
  mailman/repos/community-x86_64/mailman.sysusers
(from rev 664238, mailman/trunk/mailman.sysusers)
Deleted:
  mailman/repos/community-x86_64/01-mailman-2.1-build.patch
  mailman/repos/community-x86_64/PKGBUILD
  mailman/repos/community-x86_64/mailman-checkdbs.service
  mailman/repos/community-x86_64/mailman-checkdbs.timer
  mailman/repos/community-x86_64/mailman-cullbadshunt.service
  mailman/repos/community-x86_64/mailman-cullbadshunt.timer
  mailman/repos/community-x86_64/mailman-disabled.service
  mailman/repos/community-x86_64/mailman-disabled.timer
  mailman/repos/community-x86_64/mailman-gatenews.service
  mailman/repos/community-x86_64/mailman-gatenews.timer
  mailman/repos/community-x86_64/mailman-mailpasswds.service
  mailman/repos/community-x86_64/mailman-mailpasswds.timer
  mailman/repos/community-x86_64/mailman-nightlygzip.service
  mailman/repos/community-x86_64/mailman-nightlygzip.timer
  mailman/repos/community-x86_64/mailman-senddigests.service
  mailman/repos/community-x86_64/mailman-senddigests.timer
  mailman/repos/community-x86_64/mailman.install
  mailman/repos/community-x86_64/mailman.profile.csh
  mailman/repos/community-x86_64/mailman.profile.sh
  mailman/repos/community-x86_64/mailman.service
  mailman/repos/community-x86_64/mailman.sysusers

--+
 01-mailman-2.1-build.patch   | 1388 -
 PKGBUILD |  258 +++
 mailman-checkdbs.service |   20 
 mailman-checkdbs.timer   |   20 
 mailman-cullbadshunt.service |   20 
 mailman-cullbadshunt.timer   |   20 
 mailman-disabled.service |   20 
 mailman-disabled.timer   |   20 
 mailman-gatenews.service |   20 
 mailman-gatenews.timer   |   20 
 mailman-mailpasswds.service  |   20 
 mailman-mailpasswds.timer|   20 
 mailman-nightlygzip.service  |   20 
 mailman-nightlygzip.timer|   20 
 mailman-senddigests.service  |   20 
 mailman-senddigests.timer|   20 
 mailman.install  |   32 
 mailman.profile.csh  |2 
 mailman.profile.sh   |6 
 mailman.service  |   34 -
 mailman.sysusers |2 
 21 files changed, 1001 insertions(+), 1001 deletions(-)

Deleted: 01-mailman-2.1-build.patch
===
--- 01-mailman-2.1-build.patch  2020-07-16 22:36:00 UTC (rev 664238)
+++ 01-mailman-2.1-build.patch  2020-07-16 22:36:18 UTC (rev 664239)
@@ -1,694 +0,0 @@
-diff -ruN mailman-2.1.12-a/bin/Makefile

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

2020-07-16 Thread Sébastien Luttringer via arch-commits
Date: Thursday, July 16, 2020 @ 22:36:00
  Author: seblu
Revision: 664238

upgpkg: mailman 2.1.34-1

Modified:
  mailman/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-16 22:34:17 UTC (rev 664237)
+++ PKGBUILD2020-07-16 22:36:00 UTC (rev 664238)
@@ -2,7 +2,7 @@
 # Contributor: Paul Mattal 
 
 pkgname=mailman
-pkgver=2.1.33
+pkgver=2.1.34
 pkgrel=1
 pkgdesc='The GNU Mailing List Manager'
 arch=(x86_64)
@@ -36,7 +36,7 @@
 '01-mailman-2.1-build.patch'
 )
 validpgpkeys=('C638CAEF0AC21563736B5A22555B975E953B8693') # Mark Sapiro 

-sha256sums=('6d7e81753c78120f479a275ea623194cac188a3daf301eb76aa9d39a942d5234'
+sha256sums=('daeec8917f75620be1397833fe81293b9a6af528aa1ed0020f5a888b86102389'
 'SKIP'
 '1af0e72434c6dbaada49df3b2b7de03ec4574f7534ce5545b4de26372241d9f4'
 '058d35874967ccd8b9a92fa40480c1350f4ef5ad2fa783e4baf1b0309f6782cb'


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

2020-07-16 Thread Sébastien Luttringer via arch-commits
Date: Thursday, July 16, 2020 @ 22:34:17
  Author: seblu
Revision: 664237

archrelease: copy trunk to community-any

Added:
  bashtop/repos/community-any/PKGBUILD
(from rev 664236, bashtop/trunk/PKGBUILD)
Deleted:
  bashtop/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-16 22:34:12 UTC (rev 664236)
+++ PKGBUILD2020-07-16 22:34:17 UTC (rev 664237)
@@ -1,33 +0,0 @@
-# Maintainer: Sébastien Luttringer
-
-pkgname=bashtop
-pkgver=0.9.12
-pkgrel=1
-pkgdesc='Linux resource monitor'
-arch=('any')
-url="https://github.com/aristocratos/bashtop";
-license=('Apache')
-depends=('bash' 'coreutils' 'grep' 'sed' 'gawk' 'procps-ng')
-makedepends=('git' 'sed')
-optdepends=(
-  'curl: themes download'
-  'lm_sensors: cpu temperatures'
-  'sysstat: disk read/write stats'
-  'python-psutil: use python for data collection'
-)
-source=("git+https://github.com/aristocratos/bashtop.git#tag=v$pkgver";)
-sha256sums=('SKIP')
-
-
-prepare() {
-  cd $pkgname
-  # disable update check
-  sed -ri 's,^update_check="true"$,update_check="false",' bashtop
-}
-
-package() {
-   cd $pkgname
-   install -Dm755 bashtop -t "$pkgdir/usr/bin"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: bashtop/repos/community-any/PKGBUILD (from rev 664236, 
bashtop/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-16 22:34:17 UTC (rev 664237)
@@ -0,0 +1,33 @@
+# Maintainer: Sébastien Luttringer
+
+pkgname=bashtop
+pkgver=0.9.24
+pkgrel=1
+pkgdesc='Linux resource monitor'
+arch=('any')
+url="https://github.com/aristocratos/bashtop";
+license=('Apache')
+depends=('bash' 'coreutils' 'grep' 'sed' 'gawk' 'procps-ng')
+makedepends=('git' 'sed')
+optdepends=(
+  'curl: themes download'
+  'lm_sensors: cpu temperatures'
+  'sysstat: disk read/write stats'
+  'python-psutil: use python for data collection'
+)
+source=("git+https://github.com/aristocratos/bashtop.git#tag=v$pkgver";)
+sha256sums=('SKIP')
+
+
+prepare() {
+  cd $pkgname
+  # disable update check
+  sed -ri 's,^update_check="true"$,update_check="false",' bashtop
+}
+
+package() {
+   cd $pkgname
+   install -Dm755 bashtop -t "$pkgdir/usr/bin"
+}
+
+# vim:set ts=2 sw=2 et:


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

2020-07-16 Thread Sébastien Luttringer via arch-commits
Date: Thursday, July 16, 2020 @ 22:34:12
  Author: seblu
Revision: 664236

upgpkg: bashtop 0.9.24-1

Modified:
  bashtop/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-16 22:23:47 UTC (rev 664235)
+++ PKGBUILD2020-07-16 22:34:12 UTC (rev 664236)
@@ -1,7 +1,7 @@
 # Maintainer: Sébastien Luttringer
 
 pkgname=bashtop
-pkgver=0.9.12
+pkgver=0.9.24
 pkgrel=1
 pkgdesc='Linux resource monitor'
 arch=('any')


[arch-commits] Commit in dkms/repos/extra-any (16 files)

2020-07-16 Thread Sébastien Luttringer via arch-commits
Date: Thursday, July 16, 2020 @ 22:32:22
  Author: seblu
Revision: 392010

archrelease: copy trunk to extra-any

Added:
  
dkms/repos/extra-any/0001-Revert-Make-newly-installed-modules-available-immedi.patch
(from rev 392009, 
dkms/trunk/0001-Revert-Make-newly-installed-modules-available-immedi.patch)
  dkms/repos/extra-any/PKGBUILD
(from rev 392009, dkms/trunk/PKGBUILD)
  dkms/repos/extra-any/PKGBUILD.26
(from rev 392009, dkms/trunk/PKGBUILD.26)
  dkms/repos/extra-any/dkms.install
(from rev 392009, dkms/trunk/dkms.install)
  dkms/repos/extra-any/hook.install
(from rev 392009, dkms/trunk/hook.install)
  dkms/repos/extra-any/hook.remove
(from rev 392009, dkms/trunk/hook.remove)
  dkms/repos/extra-any/hook.sh
(from rev 392009, dkms/trunk/hook.sh)
  dkms/repos/extra-any/hook.upgrade
(from rev 392009, dkms/trunk/hook.upgrade)
Deleted:
  
dkms/repos/extra-any/0001-Revert-Make-newly-installed-modules-available-immedi.patch
  dkms/repos/extra-any/PKGBUILD
  dkms/repos/extra-any/PKGBUILD.26
  dkms/repos/extra-any/dkms.install
  dkms/repos/extra-any/hook.install
  dkms/repos/extra-any/hook.remove
  dkms/repos/extra-any/hook.sh
  dkms/repos/extra-any/hook.upgrade

-+
 0001-Revert-Make-newly-installed-modules-available-immedi.patch |   62 -
 PKGBUILD|  146 +-
 PKGBUILD.26 |  138 +-
 dkms.install|   26 
 hook.install|   28 
 hook.remove |   26 
 hook.sh |  502 
+-
 hook.upgrade|   26 
 8 files changed, 477 insertions(+), 477 deletions(-)

Deleted: 0001-Revert-Make-newly-installed-modules-available-immedi.patch
===
--- 0001-Revert-Make-newly-installed-modules-available-immedi.patch 
2020-07-16 22:32:13 UTC (rev 392009)
+++ 0001-Revert-Make-newly-installed-modules-available-immedi.patch 
2020-07-16 22:32:22 UTC (rev 392010)
@@ -1,31 +0,0 @@
-From ca38ccd38c69a096dafa51c426ee3548980d5e2a Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?S=C3=A9bastien=20Luttringer?= 
-Date: Sat, 8 Jul 2017 15:50:55 +0200
-Subject: [PATCH] Revert "Make newly installed modules available immediately"
-To: dkms-de...@dell.com
-
-This reverts commit f5bfb12fef1fc06e56355cdba500eaa98d4e6aa8.

- dkms | 6 --
- 1 file changed, 6 deletions(-)
-
-diff --git a/dkms b/dkms
-index a6cedc8..3ff71d5 100644
 a/dkms
-+++ b/dkms
-@@ -1522,12 +1522,6 @@ install_module()
- exit 6
- }
- 
--# Make the newly installed modules available immediately
--find /sys/devices -name modalias -print0 | xargs -0 cat | xargs modprobe 
-a -b -q
--if [ -f /lib/systemd/system/systemd-modules-load.service ]; then
--systemctl restart systemd-modules-load.service
--fi
--
- # Do remake_initrd things (save old initrd)
- [[ $remake_initrd ]] && ! make_initrd "$kernelver" "$arch" && {
- do_uninstall "$kernelver" "$arch"
--- 
-Sébastien "Seblu" Luttringer
-

Copied: 
dkms/repos/extra-any/0001-Revert-Make-newly-installed-modules-available-immedi.patch
 (from rev 392009, 
dkms/trunk/0001-Revert-Make-newly-installed-modules-available-immedi.patch)
===
--- 0001-Revert-Make-newly-installed-modules-available-immedi.patch 
(rev 0)
+++ 0001-Revert-Make-newly-installed-modules-available-immedi.patch 
2020-07-16 22:32:22 UTC (rev 392010)
@@ -0,0 +1,31 @@
+From ca38ccd38c69a096dafa51c426ee3548980d5e2a Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?S=C3=A9bastien=20Luttringer?= 
+Date: Sat, 8 Jul 2017 15:50:55 +0200
+Subject: [PATCH] Revert "Make newly installed modules available immediately"
+To: dkms-de...@dell.com
+
+This reverts commit f5bfb12fef1fc06e56355cdba500eaa98d4e6aa8.
+---
+ dkms | 6 --
+ 1 file changed, 6 deletions(-)
+
+diff --git a/dkms b/dkms
+index a6cedc8..3ff71d5 100644
+--- a/dkms
 b/dkms
+@@ -1522,12 +1522,6 @@ install_module()
+ exit 6
+ }
+ 
+-# Make the newly installed modules available immediately
+-find /sys/devices -name modalias -print0 | xargs -0 cat | xargs modprobe 
-a -b -q
+-if [ -f /lib/systemd/system/systemd-modules-load.service ]; then
+-systemctl restart systemd-modules-load.service
+-fi
+-
+ # Do remake_initrd things (save old initrd)
+ [[ $remake_initrd ]] && ! make_initrd "$kernelver" "$arch" && {
+ do_uninstall "$kernelver" "$arch"
+-- 
+Sébastien "Seblu" Luttringer
+

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-16 22:32:13 UTC (rev 39200

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

2020-07-16 Thread Sébastien Luttringer via arch-commits
Date: Thursday, July 16, 2020 @ 22:32:13
  Author: seblu
Revision: 392009

upgpkg: dkms 2.8.3-1

Modified:
  dkms/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-16 22:19:01 UTC (rev 392008)
+++ PKGBUILD2020-07-16 22:32:13 UTC (rev 392009)
@@ -2,8 +2,8 @@
 # Contributor: Balwinder S "bsd" Dheeman (bdheeman AT gmail.com)
 
 pkgname=dkms
-pkgver=2.8.1
-pkgrel=4
+pkgver=2.8.3
+pkgrel=1
 pkgdesc='Dynamic Kernel Modules System'
 arch=('any')
 url='https://github.com/dell/dkms'


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

2020-07-16 Thread Daniel Bermond via arch-commits
Date: Thursday, July 16, 2020 @ 22:23:24
  Author: dbermond
Revision: 664234

upgpkg: cargo-c 0.6.9-1

Modified:
  cargo-c/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-16 22:23:02 UTC (rev 664233)
+++ PKGBUILD2020-07-16 22:23:24 UTC (rev 664234)
@@ -1,7 +1,7 @@
 # Maintainer: Daniel Bermond 
 
 pkgname=cargo-c
-pkgver=0.6.8
+pkgver=0.6.9
 pkgrel=1
 pkgdesc='A cargo subcommand to build and install C-ABI compatibile dynamic and 
static libraries'
 arch=('x86_64')
@@ -11,8 +11,8 @@
 makedepends=('rust')
 
source=("${pkgname}-${pkgver}.tar.gz"::"https://github.com/lu-zero/cargo-c/archive/v${pkgver}.tar.gz";
 
"${pkgname}-${pkgver}.Cargo.lock"::"https://github.com/lu-zero/cargo-c/releases/download/v${pkgver}/Cargo.lock";)
-sha256sums=('ca8cb5e08b0ba5b6eccea1481854829e1b411ebb9885be891a897c27b5a76cba'
-'f956c171676375ecdf5069d32896c8c8047001b207f377d1ba6442be449a3688')
+sha256sums=('d88bad2ada3432b15d2a871a5071f2bd7554beec5ecc4807c91599533de76cb4'
+'a12f2a572848fa18c502dc33f114307959554fe3311ee1dd7da0a2787e444912')
 
 prepare() {
 ln -sf "../${pkgname}-${pkgver}.Cargo.lock" 
"${pkgname}-${pkgver}/Cargo.lock"


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

2020-07-16 Thread Daniel Bermond via arch-commits
Date: Thursday, July 16, 2020 @ 22:23:47
  Author: dbermond
Revision: 664235

archrelease: copy trunk to community-x86_64

Added:
  cargo-c/repos/community-x86_64/PKGBUILD
(from rev 664234, cargo-c/trunk/PKGBUILD)
Deleted:
  cargo-c/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-16 22:23:24 UTC (rev 664234)
+++ PKGBUILD2020-07-16 22:23:47 UTC (rev 664235)
@@ -1,33 +0,0 @@
-# Maintainer: Daniel Bermond 
-
-pkgname=cargo-c
-pkgver=0.6.8
-pkgrel=1
-pkgdesc='A cargo subcommand to build and install C-ABI compatibile dynamic and 
static libraries'
-arch=('x86_64')
-url='https://github.com/lu-zero/cargo-c/'
-license=('MIT')
-depends=('curl' 'openssl' 'zlib')
-makedepends=('rust')
-source=("${pkgname}-${pkgver}.tar.gz"::"https://github.com/lu-zero/cargo-c/archive/v${pkgver}.tar.gz";
-
"${pkgname}-${pkgver}.Cargo.lock"::"https://github.com/lu-zero/cargo-c/releases/download/v${pkgver}/Cargo.lock";)
-sha256sums=('ca8cb5e08b0ba5b6eccea1481854829e1b411ebb9885be891a897c27b5a76cba'
-'f956c171676375ecdf5069d32896c8c8047001b207f377d1ba6442be449a3688')
-
-prepare() {
-ln -sf "../${pkgname}-${pkgver}.Cargo.lock" 
"${pkgname}-${pkgver}/Cargo.lock"
-cargo fetch --locked --manifest-path="${pkgname}-${pkgver}/Cargo.toml"
-}
-
-build() {
-cargo build --release --frozen 
--manifest-path="${pkgname}-${pkgver}/Cargo.toml"
-}
-
-check() {
-cargo test --release --frozen 
--manifest-path="${pkgname}-${pkgver}/Cargo.toml"
-}
-
-package() {
-install -D -m755 
"${pkgname}-${pkgver}/target/release/"cargo-c{build,install} -t 
"${pkgdir}/usr/bin"
-install -D -m644 "${pkgname}-${pkgver}/LICENSE" -t 
"${pkgdir}/usr/share/licenses/${pkgname}"
-}

Copied: cargo-c/repos/community-x86_64/PKGBUILD (from rev 664234, 
cargo-c/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-16 22:23:47 UTC (rev 664235)
@@ -0,0 +1,33 @@
+# Maintainer: Daniel Bermond 
+
+pkgname=cargo-c
+pkgver=0.6.9
+pkgrel=1
+pkgdesc='A cargo subcommand to build and install C-ABI compatibile dynamic and 
static libraries'
+arch=('x86_64')
+url='https://github.com/lu-zero/cargo-c/'
+license=('MIT')
+depends=('curl' 'openssl' 'zlib')
+makedepends=('rust')
+source=("${pkgname}-${pkgver}.tar.gz"::"https://github.com/lu-zero/cargo-c/archive/v${pkgver}.tar.gz";
+
"${pkgname}-${pkgver}.Cargo.lock"::"https://github.com/lu-zero/cargo-c/releases/download/v${pkgver}/Cargo.lock";)
+sha256sums=('d88bad2ada3432b15d2a871a5071f2bd7554beec5ecc4807c91599533de76cb4'
+'a12f2a572848fa18c502dc33f114307959554fe3311ee1dd7da0a2787e444912')
+
+prepare() {
+ln -sf "../${pkgname}-${pkgver}.Cargo.lock" 
"${pkgname}-${pkgver}/Cargo.lock"
+cargo fetch --locked --manifest-path="${pkgname}-${pkgver}/Cargo.toml"
+}
+
+build() {
+cargo build --release --frozen 
--manifest-path="${pkgname}-${pkgver}/Cargo.toml"
+}
+
+check() {
+cargo test --release --frozen 
--manifest-path="${pkgname}-${pkgver}/Cargo.toml"
+}
+
+package() {
+install -D -m755 
"${pkgname}-${pkgver}/target/release/"cargo-c{build,install} -t 
"${pkgdir}/usr/bin"
+install -D -m644 "${pkgname}-${pkgver}/LICENSE" -t 
"${pkgdir}/usr/share/licenses/${pkgname}"
+}


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

2020-07-16 Thread Levente Polyak via arch-commits
Date: Thursday, July 16, 2020 @ 22:23:02
  Author: anthraxx
Revision: 664233

archrelease: copy trunk to community-x86_64

Added:
  miniupnpc/repos/community-x86_64/PKGBUILD
(from rev 664232, miniupnpc/trunk/PKGBUILD)
Deleted:
  miniupnpc/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-16 22:22:58 UTC (rev 664232)
+++ PKGBUILD2020-07-16 22:23:02 UTC (rev 664233)
@@ -1,51 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Timothy Redaelli 
-# Contributor: Florian Loitsch 
-
-pkgbase=miniupnpc
-pkgname=(miniupnpc python-miniupnpc)
-pkgver=2.1.20190408
-pkgrel=4
-pkgdesc='Small UPnP client library/tool to access Internet Gateway Devices'
-url='https://miniupnp.tuxfamily.org/'
-arch=('x86_64')
-license=('BSD')
-depends=('sh')
-makedepends=('lsb-release' 'python-setuptools')
-provides=('libminiupnpc.so')
-source=(https://miniupnp.tuxfamily.org/files/${pkgname}-${pkgver}.tar.gz{,.sig})
-sha256sums=('a0c46bcf6065d6351a8fa6a0a18dc57d10a16908dbb470908fd2e423511514ec'
-'SKIP')
-sha512sums=('faa0f1363ebb59ca636b6c974188c52903ad07652f8268563c9c1a5826fafc2458d9f521efd3546fbbd4b71b3b14a50ba89dda52757adad1db81c31d9ba0987a'
-'SKIP')
-validpgpkeys=('BEB7EA42900FF505B7907AE50FF11B67A5C0863C') # miniupnp (miniupnp 
!) 
-
-build() {
-  cd ${pkgname}-${pkgver}
-  make
-  python setup.py build
-}
-
-check() {
-  cd ${pkgname}-${pkgver}
-  make test
-}
-
-package_miniupnpc() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-  install -Dm 644 man3/miniupnpc.3 -t "${pkgdir}/usr/share/man/man3"
-  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
-}
-
-package_python-miniupnpc() {
-  pkgdesc='Python bindings for miniupnpc'
-  depends=(python)
-  provides=()
-
-  cd ${pkgbase}-${pkgver}
-  python setup.py install --optimize=1 --skip-build --root="$pkgdir"
-  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
-}
-
-# vim: ts=2 sw=2 et:

Copied: miniupnpc/repos/community-x86_64/PKGBUILD (from rev 664232, 
miniupnpc/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-16 22:23:02 UTC (rev 664233)
@@ -0,0 +1,51 @@
+# Maintainer: Levente Polyak 
+# Contributor: Timothy Redaelli 
+# Contributor: Florian Loitsch 
+
+pkgbase=miniupnpc
+pkgname=(miniupnpc python-miniupnpc)
+pkgver=2.1.20191224
+pkgrel=1
+pkgdesc='Small UPnP client library/tool to access Internet Gateway Devices'
+url='https://miniupnp.tuxfamily.org/'
+arch=('x86_64')
+license=('BSD')
+makedepends=('sh' 'glibc' 'lsb-release' 'python' 'python-setuptools')
+source=(https://miniupnp.tuxfamily.org/files/${pkgname}-${pkgver}.tar.gz{,.sig})
+sha512sums=('d362f914ce9177c1bc46f1f3ae59069c61c0c9c1b6ea7e78003d6b46445d3550835ffc541c2649b5fbc997d035357b461148edb3648135f33d0ce98b54961917'
+'SKIP')
+b2sums=('85c0b3eb678685bc7192dbee9440ec5f5be80cbac4d6a4e0a6473662c66f05ef512322cd535a142ffe16d3099a86f78ea70645a7eb2979c373e7a486aeab0cd5'
+'SKIP')
+validpgpkeys=('BEB7EA42900FF505B7907AE50FF11B67A5C0863C') # miniupnp (miniupnp 
!) 
+
+build() {
+  cd ${pkgname}-${pkgver}
+  make
+  python setup.py build
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  make test
+}
+
+package_miniupnpc() {
+  depends=(sh glibc)
+  provides=(libminiupnpc.so)
+
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  install -Dm 644 man3/miniupnpc.3 -t "${pkgdir}/usr/share/man/man3"
+  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+package_python-miniupnpc() {
+  pkgdesc='Python bindings for miniupnpc'
+  depends=(python glibc)
+
+  cd ${pkgbase}-${pkgver}
+  python setup.py install --optimize=1 --skip-build --root="$pkgdir"
+  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:


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

2020-07-16 Thread Levente Polyak via arch-commits
Date: Thursday, July 16, 2020 @ 22:22:58
  Author: anthraxx
Revision: 664232

upgpkg: miniupnpc 2.1.20191224-1

Modified:
  miniupnpc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-16 22:06:38 UTC (rev 664231)
+++ PKGBUILD2020-07-16 22:22:58 UTC (rev 664232)
@@ -4,20 +4,18 @@
 
 pkgbase=miniupnpc
 pkgname=(miniupnpc python-miniupnpc)
-pkgver=2.1.20190408
-pkgrel=4
+pkgver=2.1.20191224
+pkgrel=1
 pkgdesc='Small UPnP client library/tool to access Internet Gateway Devices'
 url='https://miniupnp.tuxfamily.org/'
 arch=('x86_64')
 license=('BSD')
-depends=('sh')
-makedepends=('lsb-release' 'python-setuptools')
-provides=('libminiupnpc.so')
+makedepends=('sh' 'glibc' 'lsb-release' 'python' 'python-setuptools')
 
source=(https://miniupnp.tuxfamily.org/files/${pkgname}-${pkgver}.tar.gz{,.sig})
-sha256sums=('a0c46bcf6065d6351a8fa6a0a18dc57d10a16908dbb470908fd2e423511514ec'
+sha512sums=('d362f914ce9177c1bc46f1f3ae59069c61c0c9c1b6ea7e78003d6b46445d3550835ffc541c2649b5fbc997d035357b461148edb3648135f33d0ce98b54961917'
 'SKIP')
-sha512sums=('faa0f1363ebb59ca636b6c974188c52903ad07652f8268563c9c1a5826fafc2458d9f521efd3546fbbd4b71b3b14a50ba89dda52757adad1db81c31d9ba0987a'
-'SKIP')
+b2sums=('85c0b3eb678685bc7192dbee9440ec5f5be80cbac4d6a4e0a6473662c66f05ef512322cd535a142ffe16d3099a86f78ea70645a7eb2979c373e7a486aeab0cd5'
+'SKIP')
 validpgpkeys=('BEB7EA42900FF505B7907AE50FF11B67A5C0863C') # miniupnp (miniupnp 
!) 
 
 build() {
@@ -32,6 +30,9 @@
 }
 
 package_miniupnpc() {
+  depends=(sh glibc)
+  provides=(libminiupnpc.so)
+
   cd ${pkgname}-${pkgver}
   make DESTDIR="${pkgdir}" install
   install -Dm 644 man3/miniupnpc.3 -t "${pkgdir}/usr/share/man/man3"
@@ -40,8 +41,7 @@
 
 package_python-miniupnpc() {
   pkgdesc='Python bindings for miniupnpc'
-  depends=(python)
-  provides=()
+  depends=(python glibc)
 
   cd ${pkgbase}-${pkgver}
   python setup.py install --optimize=1 --skip-build --root="$pkgdir"


[arch-commits] Commit in bind/repos/extra-x86_64 (18 files)

2020-07-16 Thread Sébastien Luttringer via arch-commits
Date: Thursday, July 16, 2020 @ 22:19:01
  Author: seblu
Revision: 392008

archrelease: copy trunk to extra-x86_64

Added:
  bind/repos/extra-x86_64/127.0.0.zone
(from rev 392007, bind/trunk/127.0.0.zone)
  bind/repos/extra-x86_64/PKGBUILD
(from rev 392007, bind/trunk/PKGBUILD)
  bind/repos/extra-x86_64/bind.install
(from rev 392007, bind/trunk/bind.install)
  bind/repos/extra-x86_64/localhost.ip6.zone
(from rev 392007, bind/trunk/localhost.ip6.zone)
  bind/repos/extra-x86_64/localhost.zone
(from rev 392007, bind/trunk/localhost.zone)
  bind/repos/extra-x86_64/named.conf
(from rev 392007, bind/trunk/named.conf)
  bind/repos/extra-x86_64/named.service
(from rev 392007, bind/trunk/named.service)
  bind/repos/extra-x86_64/sysusers.conf
(from rev 392007, bind/trunk/sysusers.conf)
  bind/repos/extra-x86_64/tmpfiles.conf
(from rev 392007, bind/trunk/tmpfiles.conf)
Deleted:
  bind/repos/extra-x86_64/127.0.0.zone
  bind/repos/extra-x86_64/PKGBUILD
  bind/repos/extra-x86_64/bind.install
  bind/repos/extra-x86_64/localhost.ip6.zone
  bind/repos/extra-x86_64/localhost.zone
  bind/repos/extra-x86_64/named.conf
  bind/repos/extra-x86_64/named.service
  bind/repos/extra-x86_64/sysusers.conf
  bind/repos/extra-x86_64/tmpfiles.conf

+
 127.0.0.zone   |   20 ++--
 PKGBUILD   |  252 +--
 bind.install   |   20 ++--
 localhost.ip6.zone |   20 ++--
 localhost.zone |   22 ++--
 named.conf |  114 +++
 named.service  |   20 ++--
 sysusers.conf  |2 
 tmpfiles.conf  |2 
 9 files changed, 236 insertions(+), 236 deletions(-)

Deleted: 127.0.0.zone
===
--- 127.0.0.zone2020-07-16 22:18:51 UTC (rev 392007)
+++ 127.0.0.zone2020-07-16 22:19:01 UTC (rev 392008)
@@ -1,10 +0,0 @@
-@   1D IN SOA   localhost. root.localhost. (
-42; serial (mmdd##)
-3H; refresh
-15M   ; retry
-1W; expiry
-1D )  ; minimum ttl
-
-1D  IN  NS  localhost.
-
-1.0.0.127.in-addr.arpa. 1D  IN  PTR localhost.

Copied: bind/repos/extra-x86_64/127.0.0.zone (from rev 392007, 
bind/trunk/127.0.0.zone)
===
--- 127.0.0.zone(rev 0)
+++ 127.0.0.zone2020-07-16 22:19:01 UTC (rev 392008)
@@ -0,0 +1,10 @@
+@   1D IN SOA   localhost. root.localhost. (
+42; serial (mmdd##)
+3H; refresh
+15M   ; retry
+1W; expiry
+1D )  ; minimum ttl
+
+1D  IN  NS  localhost.
+
+1.0.0.127.in-addr.arpa. 1D  IN  PTR localhost.

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-16 22:18:51 UTC (rev 392007)
+++ PKGBUILD2020-07-16 22:19:01 UTC (rev 392008)
@@ -1,126 +0,0 @@
-# Maintainer: Sébastien Luttringer
-# Contributor: Gaetan Bisson 
-# Contributor: judd 
-# Contributor: Mario Vazquez 
-
-pkgbase=bind
-pkgname=(bind bind-tools)
-_pkgver=9.16.4
-pkgver=${_pkgver//-/.}
-pkgrel=1
-url='https://www.isc.org/software/bind/'
-license=('MPL2')
-arch=('x86_64')
-options=('!emptydirs')
-makedepends=('libcap' 'libxml2' 'zlib' 'krb5' 'e2fsprogs' 'openssl' 'readline'
-  'libidn2' 'dnssec-anchors' 'python' 'json-c' 'python-ply' 'lmdb' 'zlib' 'icu'
-  'xz' 'libmaxminddb' 'libnsl' 'libuv')
-validpgpkeys=('AE3FAC796711EC59FC007AA474BB6B9A4CBB3D38') #ISC Code Signing 
Key 2019 – 2020 (codes...@isc.org)
-source=("https://ftp.isc.org/isc/bind9/${_pkgver}/bind-${_pkgver}.tar.xz"{,.asc}
-'tmpfiles.conf'
-'sysusers.conf'
-'named.conf'
-'named.service'
-'localhost.zone'
-'localhost.ip6.zone'
-'127.0.0.zone')
-sha256sums=('7522088d3daac8bcabaae37998178e09139ef5ccae6631cb1d8a625b770f370a'
-'SKIP'
-'f0423c4ee8495da487e07e9144bec1d25f46a0cd2dfa7cfd7a761ef15bfefc98'
-'7c0acefcfcc3ae093550caed7ec90fe84bec8f7477459ffa7e71dda76bcbdb2c'
-'e08a01d41b18bdb771d534daca99642314939aafdb088e5cfcf0ef2d33f8e7eb'
-'3f0f8db0a1deae270dd166b4750be7c1041b4b44891176f35a8df7dd55d24d34'
-'0011708e516128647dd25b59b6ebc465f36e85bbe0a8fbdc3eb04b7f28c2197f'
-'c06fc270e32a843c8b6d86335a2ec607d405dfba6875de8d8a9abde39a9e2c17'
-'b88fd2b99e7d42d414b329b814b9ff3304fa0ef9c67df81bde235bbfa0f3a3b8')
-
-prepare() {
-  cd bind-$_pkgver
-  # apply patch from the sour

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

2020-07-16 Thread Sébastien Luttringer via arch-commits
Date: Thursday, July 16, 2020 @ 22:18:51
  Author: seblu
Revision: 392007

upgpkg: bind 9.16.5-1

Modified:
  bind/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-16 21:48:39 UTC (rev 392006)
+++ PKGBUILD2020-07-16 22:18:51 UTC (rev 392007)
@@ -5,7 +5,7 @@
 
 pkgbase=bind
 pkgname=(bind bind-tools)
-_pkgver=9.16.4
+_pkgver=9.16.5
 pkgver=${_pkgver//-/.}
 pkgrel=1
 url='https://www.isc.org/software/bind/'
@@ -24,7 +24,7 @@
 'localhost.zone'
 'localhost.ip6.zone'
 '127.0.0.zone')
-sha256sums=('7522088d3daac8bcabaae37998178e09139ef5ccae6631cb1d8a625b770f370a'
+sha256sums=('6378b3e51fef11a8be4794dc48e8111ba92d211c0dfd129a0c296ed06a3dc075'
 'SKIP'
 'f0423c4ee8495da487e07e9144bec1d25f46a0cd2dfa7cfd7a761ef15bfefc98'
 '7c0acefcfcc3ae093550caed7ec90fe84bec8f7477459ffa7e71dda76bcbdb2c'


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

2020-07-16 Thread Levente Polyak via arch-commits
Date: Thursday, July 16, 2020 @ 22:06:38
  Author: anthraxx
Revision: 664231

archrelease: copy trunk to community-x86_64

Added:
  tcpreplay/repos/community-x86_64/PKGBUILD
(from rev 664230, tcpreplay/trunk/PKGBUILD)
Deleted:
  tcpreplay/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-16 22:06:34 UTC (rev 664230)
+++ PKGBUILD2020-07-16 22:06:38 UTC (rev 664231)
@@ -1,51 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Timothy Redaelli 
-# Contributor: Sébastien Duquette 
-# Contributor: Dawid Wrobel 
-
-pkgname=tcpreplay
-pkgver=4.3.2
-pkgrel=2
-pkgdesc='Gives the ability to replay previously captured traffic in a libpcap 
format'
-url='https://tcpreplay.appneta.com'
-arch=('x86_64')
-license=('GPL3')
-depends=('libpcap' 'libdnet' 'autogen')
-makedepends=('tcpdump')
-optdepends=('tcpdump: decoding of packets support')
-options=('!emptydirs')
-source=(https://github.com/appneta/tcpreplay/releases/download/v${pkgver}/${pkgname}-${pkgver}.tar.gz{,.asc})
-sha512sums=('211158d39ec48cefe11f0681f38eb1ab6a8302c5ef0e97dbff7d3230defe63e34d8d5755c21f1fe3fc061c4a0caf48ea0b86ae7d444ca68529a96386ea97b8fe'
-'SKIP')
-validpgpkeys=('84E4FA215C934A7D97DC76D5E9E2149793BDE17E') # Fred Klassen 

-
-prepare() {
-  cd ${pkgname}-${pkgver}
-  autoreconf -fiv
-}
-
-build() {
-  cd ${pkgname}-${pkgver}
-  CFLAGS+=' -fcommon' # 
https://wiki.gentoo.org/wiki/Gcc_10_porting_notes/fno_common
-  ./configure \
---prefix=/usr \
---disable-local-libopts \
---enable-dynamic-link \
---enable-shared \
---with-libdnet \
---with-tcpdump=/usr/bin/tcpdump \
-ac_cv_header_net_bpf_h=n
-  make
-}
-
-check() {
-  cd ${pkgname}-${pkgver}
-  make -j1 -C test tcpprep
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-}
-
-# vim: ts=2 sw=2 et:

Copied: tcpreplay/repos/community-x86_64/PKGBUILD (from rev 664230, 
tcpreplay/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-16 22:06:38 UTC (rev 664231)
@@ -0,0 +1,53 @@
+# Maintainer: Levente Polyak 
+# Contributor: Timothy Redaelli 
+# Contributor: Sébastien Duquette 
+# Contributor: Dawid Wrobel 
+
+pkgname=tcpreplay
+pkgver=4.3.3
+pkgrel=1
+pkgdesc='Gives the ability to replay previously captured traffic in a libpcap 
format'
+url='https://tcpreplay.appneta.com'
+arch=('x86_64')
+license=('GPL3')
+depends=('libpcap' 'libdnet' 'autogen')
+makedepends=('tcpdump')
+optdepends=('tcpdump: decoding of packets support')
+options=('!emptydirs')
+source=(https://github.com/appneta/tcpreplay/releases/download/v${pkgver}/${pkgname}-${pkgver}.tar.gz{,.asc})
+sha512sums=('ac31a767bc3c2033391f37c8d99bc9446e8284c661e4fbbd0fffa1b20b98bff70c0628d573581d260b1ed1a0a1a348177a691ae37ce4c9c48d9dbaabd7d3ff11'
+'SKIP')
+b2sums=('3968fe96c8e8477cd5dc9fb8ee606264c0212dea139e54ccde2e42d184340ba1fa80c7c175340cb9f84f6c05a7a4ea745a7211286e2df44c6dabe24344f0c5f0'
+'SKIP')
+validpgpkeys=('84E4FA215C934A7D97DC76D5E9E2149793BDE17E') # Fred Klassen 

+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  autoreconf -fiv
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  CFLAGS+=' -fcommon' # 
https://wiki.gentoo.org/wiki/Gcc_10_porting_notes/fno_common
+  ./configure \
+--prefix=/usr \
+--disable-local-libopts \
+--enable-dynamic-link \
+--enable-shared \
+--with-libdnet \
+--with-tcpdump=/usr/bin/tcpdump \
+ac_cv_header_net_bpf_h=n
+  make
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  make -j1 -C test tcpprep
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim: ts=2 sw=2 et:


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

2020-07-16 Thread Levente Polyak via arch-commits
Date: Thursday, July 16, 2020 @ 22:06:34
  Author: anthraxx
Revision: 664230

upgpkg: tcpreplay 4.3.3-1

Modified:
  tcpreplay/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-16 22:02:00 UTC (rev 664229)
+++ PKGBUILD2020-07-16 22:06:34 UTC (rev 664230)
@@ -4,8 +4,8 @@
 # Contributor: Dawid Wrobel 
 
 pkgname=tcpreplay
-pkgver=4.3.2
-pkgrel=2
+pkgver=4.3.3
+pkgrel=1
 pkgdesc='Gives the ability to replay previously captured traffic in a libpcap 
format'
 url='https://tcpreplay.appneta.com'
 arch=('x86_64')
@@ -15,8 +15,10 @@
 optdepends=('tcpdump: decoding of packets support')
 options=('!emptydirs')
 
source=(https://github.com/appneta/tcpreplay/releases/download/v${pkgver}/${pkgname}-${pkgver}.tar.gz{,.asc})
-sha512sums=('211158d39ec48cefe11f0681f38eb1ab6a8302c5ef0e97dbff7d3230defe63e34d8d5755c21f1fe3fc061c4a0caf48ea0b86ae7d444ca68529a96386ea97b8fe'
+sha512sums=('ac31a767bc3c2033391f37c8d99bc9446e8284c661e4fbbd0fffa1b20b98bff70c0628d573581d260b1ed1a0a1a348177a691ae37ce4c9c48d9dbaabd7d3ff11'
 'SKIP')
+b2sums=('3968fe96c8e8477cd5dc9fb8ee606264c0212dea139e54ccde2e42d184340ba1fa80c7c175340cb9f84f6c05a7a4ea745a7211286e2df44c6dabe24344f0c5f0'
+'SKIP')
 validpgpkeys=('84E4FA215C934A7D97DC76D5E9E2149793BDE17E') # Fred Klassen 

 
 prepare() {


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

2020-07-16 Thread Antonio Rojas via arch-commits
Date: Thursday, July 16, 2020 @ 22:01:51
  Author: arojas
Revision: 664227

Update to 2.0.1

Modified:
  nicotine+/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-16 22:01:47 UTC (rev 664226)
+++ PKGBUILD2020-07-16 22:01:51 UTC (rev 664227)
@@ -5,8 +5,8 @@
 # Contributor: Andrew Wright 
 
 pkgname=nicotine+
-pkgver=2.0.0
-pkgrel=2
+pkgver=2.0.1
+pkgrel=1
 pkgdesc='Soulseek music-sharing client, written in python'
 arch=(any)
 url='https://github.com/Nicotine-Plus/nicotine-plus'
@@ -14,7 +14,7 @@
 depends=(python-mutagen python-gobject python-miniupnpc gtk3 gsound gspell 
libnotify)
 optdepends=('libappindicator-gtk3: tray icon')
 
source=("https://github.com/Nicotine-Plus/nicotine-plus/releases/download/$pkgver/nicotine-$pkgver.tar.gz";)
-sha256sums=('06b1f343089a93bd07e6394926d71793aa615c55d593e0be81df24d6ed2caa66')
+sha256sums=('73cd135d0022ef65140427eb5d4741798733f45443e6a3d76178b0f2f33d8107')
 
 package() {
   cd nicotine-$pkgver


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

2020-07-16 Thread Levente Polyak via arch-commits
Date: Thursday, July 16, 2020 @ 22:01:47
  Author: anthraxx
Revision: 664226

upgpkg: metasploit 5.0.99-1

Modified:
  metasploit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-16 21:46:16 UTC (rev 664225)
+++ PKGBUILD2020-07-16 22:01:47 UTC (rev 664226)
@@ -3,7 +3,7 @@
 # Contributor: Tobias Veit - nIcE 
 
 pkgname=metasploit
-pkgver=5.0.88
+pkgver=5.0.99
 pkgrel=1
 pkgdesc='Advanced open-source platform for developing, testing, and using 
exploit code'
 url='https://www.metasploit.com/'
@@ -12,8 +12,8 @@
 depends=('ruby' 'libpcap' 'postgresql-libs' 'ruby-bundler' 'sqlite' 'libxslt' 
'libxml2' 'inetutils' 'git')
 options=('!strip' '!emptydirs')
 
source=(https://github.com/rapid7/metasploit-framework/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha512sums=('7f7fb87cc54702f9b1a6792b41101fdd944db0fe037d7ffb5d833d042d5acc639a2abfbfa9e65e22ad44040385496ca975f682a5da22a01fdb7cb2b2fb4eee84')
-b2sums=('4056e442986321efd8a150565d33861bc86a364379958c10ba71712a46713b077d0b8752f452098ebde269aa312d36c9a4b1be8d8960bb819fde4393cb8418c7')
+sha512sums=('7f52253a1dac2fae94e06b889de62f4413cb0fade422facf72f2b3bfef36d77139793cbcd74096d94ec0924cb8884fd3be7048294e92929d0f8505bba2c26f45')
+b2sums=('d49dcb46ec810a64d2a30b64af7e041bfb1b9f11106b8c0642531f072426d5110f1cb474a1c53d952e3832462c3e449c33c1b48372e3e3682df8460659759bdb')
 
 prepare() {
   cd ${pkgname}-framework-${pkgver}


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

2020-07-16 Thread Levente Polyak via arch-commits
Date: Thursday, July 16, 2020 @ 22:01:52
  Author: anthraxx
Revision: 664228

archrelease: copy trunk to community-x86_64

Added:
  metasploit/repos/community-x86_64/PKGBUILD
(from rev 664226, metasploit/trunk/PKGBUILD)
Deleted:
  metasploit/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-16 22:01:51 UTC (rev 664227)
+++ PKGBUILD2020-07-16 22:01:52 UTC (rev 664228)
@@ -1,64 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Sabart Otto - Seberm 
-# Contributor: Tobias Veit - nIcE 
-
-pkgname=metasploit
-pkgver=5.0.88
-pkgrel=1
-pkgdesc='Advanced open-source platform for developing, testing, and using 
exploit code'
-url='https://www.metasploit.com/'
-arch=('x86_64')
-license=('BSD')
-depends=('ruby' 'libpcap' 'postgresql-libs' 'ruby-bundler' 'sqlite' 'libxslt' 
'libxml2' 'inetutils' 'git')
-options=('!strip' '!emptydirs')
-source=(https://github.com/rapid7/metasploit-framework/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha512sums=('7f7fb87cc54702f9b1a6792b41101fdd944db0fe037d7ffb5d833d042d5acc639a2abfbfa9e65e22ad44040385496ca975f682a5da22a01fdb7cb2b2fb4eee84')
-b2sums=('4056e442986321efd8a150565d33861bc86a364379958c10ba71712a46713b077d0b8752f452098ebde269aa312d36c9a4b1be8d8960bb819fde4393cb8418c7')
-
-prepare() {
-  cd ${pkgname}-framework-${pkgver}
-
-  # https://github.com/bundler/bundler/issues/6882
-  sed -e '/BUNDLED WITH/,+1d' -i Gemfile.lock
-
-  bundle config build.nokogiri --use-system-libraries
-  sed 's|git ls-files|find -type f|' -i metasploit-framework.gemspec
-}
-
-build() {
-  cd ${pkgname}-framework-${pkgver}
-  CFLAGS+=" -I/usr/include/libxml2"
-  bundle install -j"$(nproc)" --no-cache --deployment
-  find vendor/bundle/ruby -exec chmod o+r '{}' \;
-  find vendor/bundle/ruby \( -name gem_make.out -or -name mkmf.log \) -delete
-}
-
-package() {
-  cd ${pkgname}-framework-${pkgver}
-
-  install -d "${pkgdir}/opt/${pkgname}" "${pkgdir}/usr/bin"
-  cp -r . "${pkgdir}/opt/${pkgname}"
-
-  for f in "${pkgdir}"/opt/${pkgname}/msf*; do
-local _msffile="${pkgdir}/usr/bin/`basename "${f}"`"
-echo -e "#!/bin/sh\nBUNDLE_GEMFILE=/opt/${pkgname}/Gemfile bundle exec 
ruby /opt/${pkgname}/`basename "${f}"` \"\$@\"" > "${_msffile}"
-chmod 755 "${_msffile}"
-  done
-
-  (cd "${pkgdir}/opt/${pkgname}"
-for f in tools/*/*.rb; do
-  install -Dm 755 "${f}" ".${f}"
-  echo -e "#!/bin/sh\nBUNDLE_GEMFILE=/opt/${pkgname}/Gemfile bundle exec 
ruby /opt/${pkgname}/."${f}" \"\$@\"" > "${f}"
-  chmod 755 "${f}"
-done
-  )
-
-  install -Dm 644 external/zsh/_* -t "${pkgdir}/usr/share/zsh/site-functions"
-  install -Dm 644 LICENSE COPYING -t "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -d "${pkgdir}/usr/share/doc"
-  mv "${pkgdir}/opt/${pkgname}/documentation" 
"${pkgdir}/usr/share/doc/${pkgname}"
-  rm "${pkgdir}/usr/bin/msfupdate"
-  rm -r "${pkgdir}"/opt/metasploit/vendor/bundle/ruby/*/cache
-}
-
-# vim: ts=2 sw=2 et:

Copied: metasploit/repos/community-x86_64/PKGBUILD (from rev 664226, 
metasploit/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-16 22:01:52 UTC (rev 664228)
@@ -0,0 +1,64 @@
+# Maintainer: Levente Polyak 
+# Contributor: Sabart Otto - Seberm 
+# Contributor: Tobias Veit - nIcE 
+
+pkgname=metasploit
+pkgver=5.0.99
+pkgrel=1
+pkgdesc='Advanced open-source platform for developing, testing, and using 
exploit code'
+url='https://www.metasploit.com/'
+arch=('x86_64')
+license=('BSD')
+depends=('ruby' 'libpcap' 'postgresql-libs' 'ruby-bundler' 'sqlite' 'libxslt' 
'libxml2' 'inetutils' 'git')
+options=('!strip' '!emptydirs')
+source=(https://github.com/rapid7/metasploit-framework/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha512sums=('7f52253a1dac2fae94e06b889de62f4413cb0fade422facf72f2b3bfef36d77139793cbcd74096d94ec0924cb8884fd3be7048294e92929d0f8505bba2c26f45')
+b2sums=('d49dcb46ec810a64d2a30b64af7e041bfb1b9f11106b8c0642531f072426d5110f1cb474a1c53d952e3832462c3e449c33c1b48372e3e3682df8460659759bdb')
+
+prepare() {
+  cd ${pkgname}-framework-${pkgver}
+
+  # https://github.com/bundler/bundler/issues/6882
+  sed -e '/BUNDLED WITH/,+1d' -i Gemfile.lock
+
+  bundle config build.nokogiri --use-system-libraries
+  sed 's|git ls-files|find -type f|' -i metasploit-framework.gemspec
+}
+
+build() {
+  cd ${pkgname}-framework-${pkgver}
+  CFLAGS+=" -I/usr/include/libxml2"
+  bundle install -j"$(nproc)" --no-cache --deployment
+  find vendor/bundle/ruby -exec chmod o+r '{}' \;
+  find vendor/bundle/ruby \( -name gem_make.out -or -name mkmf.log \) -delete
+}
+
+package() {
+  cd ${pkgname}-framework-${pkgver}
+
+  install -d "${pkgdir}/opt/${pkgname}" "${pkgdir}/usr/bin"
+  cp -r . "${pkgdir}/opt/${pkgname}"
+
+  f

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

2020-07-16 Thread Antonio Rojas via arch-commits
Date: Thursday, July 16, 2020 @ 22:02:00
  Author: arojas
Revision: 664229

archrelease: copy trunk to community-any

Added:
  nicotine+/repos/community-any/PKGBUILD
(from rev 664228, nicotine+/trunk/PKGBUILD)
Deleted:
  nicotine+/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-16 22:01:52 UTC (rev 664228)
+++ PKGBUILD2020-07-16 22:02:00 UTC (rev 664229)
@@ -1,23 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Contributor: Alexander Rødseth 
-# Contributor: Angel Velasquez 
-# Contributor: Hugo Doria 
-# Contributor: Andrew Wright 
-
-pkgname=nicotine+
-pkgver=2.0.0
-pkgrel=2
-pkgdesc='Soulseek music-sharing client, written in python'
-arch=(any)
-url='https://github.com/Nicotine-Plus/nicotine-plus'
-license=(GPL)
-depends=(python-mutagen python-gobject python-miniupnpc gtk3 gsound gspell 
libnotify)
-optdepends=('libappindicator-gtk3: tray icon')
-source=("https://github.com/Nicotine-Plus/nicotine-plus/releases/download/$pkgver/nicotine-$pkgver.tar.gz";)
-sha256sums=('06b1f343089a93bd07e6394926d71793aa615c55d593e0be81df24d6ed2caa66')
-
-package() {
-  cd nicotine-$pkgver
-
-  python setup.py install --root="$pkgdir"
-}

Copied: nicotine+/repos/community-any/PKGBUILD (from rev 664228, 
nicotine+/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-16 22:02:00 UTC (rev 664229)
@@ -0,0 +1,23 @@
+# Maintainer: Antonio Rojas 
+# Contributor: Alexander Rødseth 
+# Contributor: Angel Velasquez 
+# Contributor: Hugo Doria 
+# Contributor: Andrew Wright 
+
+pkgname=nicotine+
+pkgver=2.0.1
+pkgrel=1
+pkgdesc='Soulseek music-sharing client, written in python'
+arch=(any)
+url='https://github.com/Nicotine-Plus/nicotine-plus'
+license=(GPL)
+depends=(python-mutagen python-gobject python-miniupnpc gtk3 gsound gspell 
libnotify)
+optdepends=('libappindicator-gtk3: tray icon')
+source=("https://github.com/Nicotine-Plus/nicotine-plus/releases/download/$pkgver/nicotine-$pkgver.tar.gz";)
+sha256sums=('73cd135d0022ef65140427eb5d4741798733f45443e6a3d76178b0f2f33d8107')
+
+package() {
+  cd nicotine-$pkgver
+
+  python setup.py install --root="$pkgdir"
+}


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

2020-07-16 Thread Levente Polyak via arch-commits
Date: Thursday, July 16, 2020 @ 21:48:35
  Author: anthraxx
Revision: 392005

upgpkg: nasm 2.15.02-1

Modified:
  nasm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-16 21:38:31 UTC (rev 392004)
+++ PKGBUILD2020-07-16 21:48:35 UTC (rev 392005)
@@ -2,8 +2,8 @@
 # Contributor: Eric Bélanger 
 
 pkgname=nasm
-pkgver=2.14.02
-pkgrel=2
+pkgver=2.15.02
+pkgrel=1
 pkgdesc='80x86 assembler designed for portability and modularity'
 url='https://www.nasm.us'
 arch=('x86_64')
@@ -12,7 +12,8 @@
 makedepends=('perl-font-ttf' 'perl-sort-versions' 'fontconfig' 
'adobe-source-sans-pro-fonts'
  'ttf-liberation' 'ghostscript' 'xmlto' 'asciidoc')
 
source=(https://www.nasm.us/pub/nasm/releasebuilds/${pkgver}/${pkgname}-${pkgver}.tar.xz)
-sha512sums=('c7a228095f37321d57f2813d04f58ee66949e8f81fc49ef6c4ecd391301e308217583ce1a265d4fe8c13d54b5b9c72aeb132caa3caee36e31b6555fbfff34c81')
+sha512sums=('7375f970ca0c6c31fe2cb5c8c2b5a0f854eaff374b1e7bc9e09546246a84fe73a2ba6073e63d9287444cf17c9e2d342c3ff73ca961c2c0e3e2a9c3aba77114c7')
+b2sums=('e325ef3b59582b1e3bd6503ec8c5b8a7abf92c98a0234451a3695ecd3102674a34d7cd260a50278b8d98f4663651de058e858e58e6dfda8ae33d1cdb8bb2fe3f')
 
 build() {
   cd ${pkgname}-${pkgver}


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

2020-07-16 Thread Levente Polyak via arch-commits
Date: Thursday, July 16, 2020 @ 21:48:39
  Author: anthraxx
Revision: 392006

archrelease: copy trunk to extra-x86_64

Added:
  nasm/repos/extra-x86_64/PKGBUILD
(from rev 392005, nasm/trunk/PKGBUILD)
Deleted:
  nasm/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-16 21:48:35 UTC (rev 392005)
+++ PKGBUILD2020-07-16 21:48:39 UTC (rev 392006)
@@ -1,30 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Eric Bélanger 
-
-pkgname=nasm
-pkgver=2.14.02
-pkgrel=2
-pkgdesc='80x86 assembler designed for portability and modularity'
-url='https://www.nasm.us'
-arch=('x86_64')
-license=('BSD')
-depends=('glibc')
-makedepends=('perl-font-ttf' 'perl-sort-versions' 'fontconfig' 
'adobe-source-sans-pro-fonts'
- 'ttf-liberation' 'ghostscript' 'xmlto' 'asciidoc')
-source=(https://www.nasm.us/pub/nasm/releasebuilds/${pkgver}/${pkgname}-${pkgver}.tar.xz)
-sha512sums=('c7a228095f37321d57f2813d04f58ee66949e8f81fc49ef6c4ecd391301e308217583ce1a265d4fe8c13d54b5b9c72aeb132caa3caee36e31b6555fbfff34c81')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr
-  make
-  make -C doc
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install install_rdf
-  install -Dm 644 LICENSE -t "${pkgdir}"/usr/share/licenses/nasm
-}
-
-# vim: ts=2 sw=2 et:

Copied: nasm/repos/extra-x86_64/PKGBUILD (from rev 392005, nasm/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-16 21:48:39 UTC (rev 392006)
@@ -0,0 +1,31 @@
+# Maintainer: Levente Polyak 
+# Contributor: Eric Bélanger 
+
+pkgname=nasm
+pkgver=2.15.02
+pkgrel=1
+pkgdesc='80x86 assembler designed for portability and modularity'
+url='https://www.nasm.us'
+arch=('x86_64')
+license=('BSD')
+depends=('glibc')
+makedepends=('perl-font-ttf' 'perl-sort-versions' 'fontconfig' 
'adobe-source-sans-pro-fonts'
+ 'ttf-liberation' 'ghostscript' 'xmlto' 'asciidoc')
+source=(https://www.nasm.us/pub/nasm/releasebuilds/${pkgver}/${pkgname}-${pkgver}.tar.xz)
+sha512sums=('7375f970ca0c6c31fe2cb5c8c2b5a0f854eaff374b1e7bc9e09546246a84fe73a2ba6073e63d9287444cf17c9e2d342c3ff73ca961c2c0e3e2a9c3aba77114c7')
+b2sums=('e325ef3b59582b1e3bd6503ec8c5b8a7abf92c98a0234451a3695ecd3102674a34d7cd260a50278b8d98f4663651de058e858e58e6dfda8ae33d1cdb8bb2fe3f')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+  make -C doc
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install install_rdf
+  install -Dm 644 LICENSE -t "${pkgdir}"/usr/share/licenses/nasm
+}
+
+# vim: ts=2 sw=2 et:


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

2020-07-16 Thread Levente Polyak via arch-commits
Date: Thursday, July 16, 2020 @ 21:46:16
  Author: anthraxx
Revision: 664225

archrelease: copy trunk to community-x86_64

Added:
  hexer/repos/community-x86_64/PKGBUILD
(from rev 664224, hexer/trunk/PKGBUILD)
Deleted:
  hexer/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-16 21:46:12 UTC (rev 664224)
+++ PKGBUILD2020-07-16 21:46:16 UTC (rev 664225)
@@ -1,32 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Magnus Therning 
-# Contributor: Anton Bazhenov 
-
-pkgname=hexer
-pkgver=1.0.5
-pkgrel=2
-pkgdesc='Multi buffer editor for binary files with vi-like interface'
-url='https://devel.ringlet.net/editors/hexer/'
-arch=('x86_64')
-license=('custom')
-depends=('ncurses')
-source=(https://devel.ringlet.net/files/editors/${pkgname}/${pkgname}-${pkgver}.tar.gz{,.asc})
-sha256sums=('41b20dfbef8d979ad3ca1b8b0447ae9fcfe51c317ebbcc95f31cde4b08c15fb4'
-'SKIP')
-sha512sums=('bc26d2dc7cb89555769b950af35e65ae9650cce315b47d360e564eeb4353a90064d60eb340aea00151944602ef4fe9635bd2a131024b072336da1e36b365da06'
-'SKIP')
-validpgpkeys=('2EE7A7A517FC124CF115C354651EEFB02527DF13') # Peter Pentchev 

-
-build() {
-  cd ${pkgname}-${pkgver}
-  CFLAGS+=' -fcommon' # 
https://wiki.gentoo.org/wiki/Gcc_10_porting_notes/fno_common
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" PREFIX=/usr MANDIR=/usr/share/man/man1 install
-  install -Dm 644 COPYRIGHT -t "${pkgdir}/usr/share/licenses/${pkgname}"
-}
-
-# vim: ts=2 sw=2 et:

Copied: hexer/repos/community-x86_64/PKGBUILD (from rev 664224, 
hexer/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-16 21:46:16 UTC (rev 664225)
@@ -0,0 +1,32 @@
+# Maintainer: Levente Polyak 
+# Contributor: Magnus Therning 
+# Contributor: Anton Bazhenov 
+
+pkgname=hexer
+pkgver=1.0.6
+pkgrel=1
+pkgdesc='Multi buffer editor for binary files with vi-like interface'
+url='https://devel.ringlet.net/editors/hexer/'
+arch=('x86_64')
+license=('custom')
+depends=('ncurses')
+source=(https://devel.ringlet.net/files/editors/${pkgname}/${pkgname}-${pkgver}.tar.gz{,.asc})
+sha256sums=('fff00fbb0eb0eee959c08455861916ea672462d9bcc5580207eb41123e188129'
+'SKIP')
+sha512sums=('fc34037fa815b6f360572aa488a0a19d831d7f4d8a4d71f8882c75f727752b5381a84338a0eba077487e468f443ce954f854e80df710802ea94d6a23ee871630'
+'SKIP')
+validpgpkeys=('2EE7A7A517FC124CF115C354651EEFB02527DF13') # Peter Pentchev 

+
+build() {
+  cd ${pkgname}-${pkgver}
+  CFLAGS+=' -fcommon' # 
https://wiki.gentoo.org/wiki/Gcc_10_porting_notes/fno_common
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" PREFIX=/usr MANDIR=/usr/share/man/man1 install
+  install -Dm 644 COPYRIGHT -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:


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

2020-07-16 Thread Levente Polyak via arch-commits
Date: Thursday, July 16, 2020 @ 21:46:12
  Author: anthraxx
Revision: 664224

upgpkg: hexer 1.0.6-1

Modified:
  hexer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-16 21:41:17 UTC (rev 664223)
+++ PKGBUILD2020-07-16 21:46:12 UTC (rev 664224)
@@ -3,8 +3,8 @@
 # Contributor: Anton Bazhenov 
 
 pkgname=hexer
-pkgver=1.0.5
-pkgrel=2
+pkgver=1.0.6
+pkgrel=1
 pkgdesc='Multi buffer editor for binary files with vi-like interface'
 url='https://devel.ringlet.net/editors/hexer/'
 arch=('x86_64')
@@ -11,9 +11,9 @@
 license=('custom')
 depends=('ncurses')
 
source=(https://devel.ringlet.net/files/editors/${pkgname}/${pkgname}-${pkgver}.tar.gz{,.asc})
-sha256sums=('41b20dfbef8d979ad3ca1b8b0447ae9fcfe51c317ebbcc95f31cde4b08c15fb4'
+sha256sums=('fff00fbb0eb0eee959c08455861916ea672462d9bcc5580207eb41123e188129'
 'SKIP')
-sha512sums=('bc26d2dc7cb89555769b950af35e65ae9650cce315b47d360e564eeb4353a90064d60eb340aea00151944602ef4fe9635bd2a131024b072336da1e36b365da06'
+sha512sums=('fc34037fa815b6f360572aa488a0a19d831d7f4d8a4d71f8882c75f727752b5381a84338a0eba077487e468f443ce954f854e80df710802ea94d6a23ee871630'
 'SKIP')
 validpgpkeys=('2EE7A7A517FC124CF115C354651EEFB02527DF13') # Peter Pentchev 

 


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

2020-07-16 Thread Levente Polyak via arch-commits
Date: Thursday, July 16, 2020 @ 21:41:17
  Author: anthraxx
Revision: 664223

archrelease: copy trunk to community-any

Added:
  catch2/repos/community-any/PKGBUILD
(from rev 664222, catch2/trunk/PKGBUILD)
Deleted:
  catch2/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-16 21:41:13 UTC (rev 664222)
+++ PKGBUILD2020-07-16 21:41:17 UTC (rev 664223)
@@ -1,51 +0,0 @@
-# Maintainer: Baptiste Jonglez 
-# Maintainer: Levente Polyak 
-# Contributor: Bart Verhagen 
-
-pkgname=catch2
-_gitcommit=b1b5cb812277f367387844aab46eb2d3b15d03cd
-pkgver=2.12.2
-pkgrel=1
-pkgdesc="Modern, C++-native, header-only, test framework for unit-tests, TDD 
and BDD"
-arch=('any')
-url="https://github.com/catchorg/catch2";
-license=('Boost')
-makedepends=('git' 'cmake' 'python') # python seems to be necessary for 
building tests (FS#60273)
-source=(${pkgname}::"git+https://github.com/catchorg/Catch2#commit=${_gitcommit}?signed";)
-sha256sums=('SKIP')
-validpgpkeys=(
-  E29C46F3B8A7502860793B7DECC9C20E314B2360 # Martin Hořeňovský
-  81E70B717FFB27AFDB45F52090BBFF120F9C087B # Jozef Grajciar
-)
-
-pkgver() {
-  cd ${pkgname}
-  git describe --tags --match 'v*' | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
-}
-
-build() {
-  cd ${pkgname}
-  export CFLAGS+=" ${CPPFLAGS}"
-  export CXXFLAGS+=" ${CPPFLAGS}"
-  cmake -B build \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DCATCH_USE_VALGRIND=OFF \
--DCATCH_BUILD_EXAMPLES=OFF \
--DCATCH_ENABLE_COVERAGE=OFF \
--DCATCH_ENABLE_WERROR=OFF \
--DBUILD_TESTING=ON
-  make -C build
-}
-
-check() {
-  cd ${pkgname}
-  make -C build test
-}
-
-package() {
-  cd ${pkgname}
-  make -C build DESTDIR="$pkgdir" install
-}
-
-# vim: ts=2 sw=2 et:

Copied: catch2/repos/community-any/PKGBUILD (from rev 664222, 
catch2/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-16 21:41:17 UTC (rev 664223)
@@ -0,0 +1,51 @@
+# Maintainer: Baptiste Jonglez 
+# Maintainer: Levente Polyak 
+# Contributor: Bart Verhagen 
+
+pkgname=catch2
+_gitcommit=7f21cc6c5599f59835f769debf13b4c3e6148a28
+pkgver=2.13.0
+pkgrel=1
+pkgdesc="Modern, C++-native, header-only, test framework for unit-tests, TDD 
and BDD"
+arch=('any')
+url="https://github.com/catchorg/catch2";
+license=('Boost')
+makedepends=('git' 'cmake' 'python') # python seems to be necessary for 
building tests (FS#60273)
+source=(${pkgname}::"git+https://github.com/catchorg/Catch2#commit=${_gitcommit}?signed";)
+sha512sums=('SKIP')
+validpgpkeys=(
+  E29C46F3B8A7502860793B7DECC9C20E314B2360 # Martin Hořeňovský
+  81E70B717FFB27AFDB45F52090BBFF120F9C087B # Jozef Grajciar
+)
+
+pkgver() {
+  cd ${pkgname}
+  git describe --tags --match 'v*' | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
+}
+
+build() {
+  cd ${pkgname}
+  export CFLAGS+=" ${CPPFLAGS}"
+  export CXXFLAGS+=" ${CPPFLAGS}"
+  cmake -B build \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DCATCH_USE_VALGRIND=OFF \
+-DCATCH_BUILD_EXAMPLES=OFF \
+-DCATCH_ENABLE_COVERAGE=OFF \
+-DCATCH_ENABLE_WERROR=OFF \
+-DBUILD_TESTING=ON
+  make -C build
+}
+
+check() {
+  cd ${pkgname}
+  make -C build test
+}
+
+package() {
+  cd ${pkgname}
+  make -C build DESTDIR="$pkgdir" install
+}
+
+# vim: ts=2 sw=2 et:


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

2020-07-16 Thread Levente Polyak via arch-commits
Date: Thursday, July 16, 2020 @ 21:41:13
  Author: anthraxx
Revision: 664222

upgpkg: catch2 2.13.0-1

Modified:
  catch2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-16 21:19:37 UTC (rev 664221)
+++ PKGBUILD2020-07-16 21:41:13 UTC (rev 664222)
@@ -3,8 +3,8 @@
 # Contributor: Bart Verhagen 
 
 pkgname=catch2
-_gitcommit=b1b5cb812277f367387844aab46eb2d3b15d03cd
-pkgver=2.12.2
+_gitcommit=7f21cc6c5599f59835f769debf13b4c3e6148a28
+pkgver=2.13.0
 pkgrel=1
 pkgdesc="Modern, C++-native, header-only, test framework for unit-tests, TDD 
and BDD"
 arch=('any')
@@ -12,7 +12,7 @@
 license=('Boost')
 makedepends=('git' 'cmake' 'python') # python seems to be necessary for 
building tests (FS#60273)
 
source=(${pkgname}::"git+https://github.com/catchorg/Catch2#commit=${_gitcommit}?signed";)
-sha256sums=('SKIP')
+sha512sums=('SKIP')
 validpgpkeys=(
   E29C46F3B8A7502860793B7DECC9C20E314B2360 # Martin Hořeňovský
   81E70B717FFB27AFDB45F52090BBFF120F9C087B # Jozef Grajciar


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

2020-07-16 Thread Levente Polyak via arch-commits
Date: Thursday, July 16, 2020 @ 21:38:06
  Author: anthraxx
Revision: 392001

upgpkg: dash 0.5.11.1-1

Modified:
  dash/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-16 21:24:08 UTC (rev 392000)
+++ PKGBUILD2020-07-16 21:38:06 UTC (rev 392001)
@@ -2,7 +2,7 @@
 # Maintainer: Dan McGee 
 
 pkgname=dash
-pkgver=0.5.11
+pkgver=0.5.11.1
 pkgrel=1
 pkgdesc='POSIX compliant shell that aims to be as small as possible'
 url='http://gondor.apana.org.au/~herbert/dash/'
@@ -10,10 +10,15 @@
 license=('BSD')
 depends=('glibc')
 install=dash.install
-source=(http://gondor.apana.org.au/~herbert/dash/files/${pkgname}-${pkgver}.tar.gz)
-sha512sums=('41c3afa8aa4788f7899b9a4c1bce2dc8629f4405184cdc7269993e72c695cf9537c9e68b654d56f06c604a82ffa73c9160b91368e82a3593a12ff7dea10505d1')
-b2sums=('0d399b35c10a33f6a22f51f7b74b9e092fb11d47ae45948f43fab0dd1416061145e7f930f0f0d1119d02cc45790ba19ce040c951322c131e706e5f3f32f2612b')
+source=(https://git.kernel.org/pub/scm/utils/dash/dash.git/snapshot/${pkgname}-${pkgver}.tar.gz)
+sha512sums=('da5126ebd17b1114e7a7da3a982f2de5e1a403c0a65f26f428043317129213126bccb8c9c9a7c2994ac1de2a27dcdce04ba51d1bc1a779ffe689a9ae974c0c36')
+b2sums=('a1a6a7dfc9797506759ca4ae8726cac913a66b55a6491a8b18ee15c4a2ba0044abc7ebb137fae39361495921e360176e7118772d80829fce55edfff0b8bdd3a0')
 
+prepare() {
+  cd ${pkgname}-${pkgver}
+  autoreconf -fiv
+}
+
 build() {
   cd ${pkgname}-${pkgver}
   ./configure \
@@ -22,7 +27,7 @@
 --mandir=/usr/share/man \
 --exec-prefix="" \
 --with-libedit
-  make
+  make V=1
 }
 
 package() {


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

2020-07-16 Thread Levente Polyak via arch-commits
Date: Thursday, July 16, 2020 @ 21:38:25
  Author: anthraxx
Revision: 392003

upgpkg: avidemux 2.7.6-1

Modified:
  avidemux/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-16 21:38:10 UTC (rev 392002)
+++ PKGBUILD2020-07-16 21:38:25 UTC (rev 392003)
@@ -3,8 +3,8 @@
 
 pkgbase=avidemux
 pkgname=('avidemux-cli' 'avidemux-qt')
-pkgver=2.7.4
-pkgrel=5
+pkgver=2.7.6
+pkgrel=1
 pkgdesc='Graphical tool to edit video (filter/re-encode/split)'
 url='http://fixounet.free.fr/avidemux/'
 arch=('x86_64')
@@ -16,10 +16,10 @@
 options=('!emptydirs')
 source=(https://downloads.sourceforge.net/avidemux/avidemux_${pkgver}.tar.gz
 log.diff qt-5.15.diff)
-sha256sums=('7db0ac01c8255279a2c360ecb2725c27ea8a2c5bd1f38aeafabfed33ea588da9'
+sha256sums=('9a88741f3535443d4bde35d4207ca2ff96d3b136db2e7232cb50dd6b4eb293cf'
 '8b751d137037f22fd4ae6750709014bcf61269a18f1c32e1a91f481285c807aa'
 '255a2446d493503dc237482f6fe26e2186f0ea0ef43ac9e17b8059fe232aad43')
-sha512sums=('e6d0a9eb525d82d0bdecb41b50eaa5894134064148a1889e4bba704d512bb53f871f797444668a0601fecf4e0e61a1f1727b1c59d543860bb64c1a294eb9bf42'
+sha512sums=('7f40b48a6c688a5a847e46118aef822a0f5f1dfb50b6223ce8a825d9e3817a9114bc3400aa7b7286a495051912b4b54cf1b86ea7064e6164f7ca7455e5a714ee'
 
'bbae5b4a549113b12e728c4c0ac8c1c92a0b7500be8dcecc791c16c9a913406feaa9f7bc477985970a920d2df391cc9392457512d84b9c4b829981cc072f2b2e'
 
'ed78c2a3e4ede4fed1d3ea353c7dc350dc73050f76c8112cb24d97b3eda01f7c186d5db199f71f56953c5e5d8104de44dc0e84e1bfa01b6647c050c11fc375f2')
 
@@ -74,7 +74,6 @@
   cd ${pkgbase}_${pkgver}
   make -C buildQt5 DESTDIR="${pkgdir}" install
   make -C buildPluginsQt5 DESTDIR="${pkgdir}" install
-  #install -Dm 644 avidemux-qt.desktop -t "${pkgdir}/usr/share/applications"
 }
 
 # vim: ts=2 sw=2 et:


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

2020-07-16 Thread Levente Polyak via arch-commits
Date: Thursday, July 16, 2020 @ 21:38:31
  Author: anthraxx
Revision: 392004

archrelease: copy trunk to extra-x86_64

Added:
  avidemux/repos/extra-x86_64/PKGBUILD
(from rev 392003, avidemux/trunk/PKGBUILD)
  avidemux/repos/extra-x86_64/log.diff
(from rev 392003, avidemux/trunk/log.diff)
  avidemux/repos/extra-x86_64/qt-5.15.diff
(from rev 392003, avidemux/trunk/qt-5.15.diff)
Deleted:
  avidemux/repos/extra-x86_64/PKGBUILD
  avidemux/repos/extra-x86_64/log.diff
  avidemux/repos/extra-x86_64/qt-5.15.diff

--+
 PKGBUILD |  159 -
 log.diff |   24 
 qt-5.15.diff |   22 +++
 3 files changed, 102 insertions(+), 103 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-16 21:38:25 UTC (rev 392003)
+++ PKGBUILD2020-07-16 21:38:31 UTC (rev 392004)
@@ -1,80 +0,0 @@
-# Maintainer: Levente Polyak 
-# Maintainer: Eric Bélanger 
-
-pkgbase=avidemux
-pkgname=('avidemux-cli' 'avidemux-qt')
-pkgver=2.7.4
-pkgrel=5
-pkgdesc='Graphical tool to edit video (filter/re-encode/split)'
-url='http://fixounet.free.fr/avidemux/'
-arch=('x86_64')
-license=('GPL2')
-makedepends=('cmake' 'libxslt' 'qt5-base' 'jack' 'libvorbis' 'libxv' 'opus' 
'desktop-file-utils'
- 'alsa-lib' 'lame' 'xvidcore' 'faad2' 'faac' 'x264' 'x265' 
'libsamplerate'
- 'opencore-amr' 'yasm' 'mesa' 'libvpx' 'libpulse' 'libva' 
'intltool' 'sqlite'
- 'libvdpau' 'libdca' 'fribidi' 'glu' 'qt5-tools' 'twolame' 
'libfdk-aac' 'libass')
-options=('!emptydirs')
-source=(https://downloads.sourceforge.net/avidemux/avidemux_${pkgver}.tar.gz
-log.diff qt-5.15.diff)
-sha256sums=('7db0ac01c8255279a2c360ecb2725c27ea8a2c5bd1f38aeafabfed33ea588da9'
-'8b751d137037f22fd4ae6750709014bcf61269a18f1c32e1a91f481285c807aa'
-'255a2446d493503dc237482f6fe26e2186f0ea0ef43ac9e17b8059fe232aad43')
-sha512sums=('e6d0a9eb525d82d0bdecb41b50eaa5894134064148a1889e4bba704d512bb53f871f797444668a0601fecf4e0e61a1f1727b1c59d543860bb64c1a294eb9bf42'
-
'bbae5b4a549113b12e728c4c0ac8c1c92a0b7500be8dcecc791c16c9a913406feaa9f7bc477985970a920d2df391cc9392457512d84b9c4b829981cc072f2b2e'
-
'ed78c2a3e4ede4fed1d3ea353c7dc350dc73050f76c8112cb24d97b3eda01f7c186d5db199f71f56953c5e5d8104de44dc0e84e1bfa01b6647c050c11fc375f2')
-
-prepare() {
-  cd ${pkgbase}_${pkgver}
-  patch -Np1 -i ../log.diff  # don't hide the build output
-  patch -Np1 -i ../qt-5.15.diff  # fix build against Qt 5.15.0
-  sed -i 's|../avidemux/qt4|../avidemux/qt4 
-DLRELEASE_EXECUTABLE=/usr/bin/lrelease-qt5|' bootStrap.bash
-  sed -e 's|0.19|1.0|' -i avidemux_plugins/ADM_videoFilters6/ass/CMakeLists.txt
-}
-
-build() {
-  cd ${pkgbase}_${pkgver}
-  bash bootStrap.bash --with-core --with-cli --with-plugins
-}
-
-package_avidemux-cli() {
-  depends=('libxml2' 'fontconfig' 'sqlite' 'libvpx' 'libva' 'libvdpau')
-  optdepends=('lame: for the corresponding audio encoder plugin'
-  'faac: for the corresponding audio encoder plugin'
-  'faad2: for the corresponding audio decoder plugin'
-  'opus: for the corresponding audio decoder plugin'
-  'opencore-amr: for the corresponding audio decoder plugin'
-  'jack: for the corresponding audio device plugin'
-  'libpulse: for the corresponding audio device plugin'
-  'x264: for the corresponding video encoder plugin'
-  'libx264: for the corresponding video encoder plugin'
-  'x265: for the corresponding video encoder plugin'
-  'xvidcore: for the corresponding video encoder plugin'
-  'qt5-base: for the QtScript scripting support'
-  'libdca: for the corresponding audio decoder plugin'
-  'libfdk-aac: for the corresponding audio decoder plugin'
-  'twolame: for the corresponding audio decoder plugin'
-  'libass: for the corresponding video filter plugin'
-  'fribidi: for the corresponding video filter plugin')
-
-  cd ${pkgbase}_${pkgver}
-  make -C buildCli DESTDIR="${pkgdir}" install
-  make -C buildCore DESTDIR="${pkgdir}" install
-  make -C buildPluginsCLI DESTDIR="${pkgdir}" install
-  make -C buildPluginsCommon DESTDIR="${pkgdir}" install
-
-  install -Dm 644 avidemux_icon.png "${pkgdir}/usr/share/pixmaps/avidemux.png"
-  install -Dm 644 man/avidemux.1 -t "${pkgdir}/usr/share/man/man1"
-}
-
-package_avidemux-qt() {
-  pkgdesc='Graphical tool to edit video (filter/re-encode/split) - Qt GUI'
-  depends=("avidemux-cli=${pkgver}" 'qt5-base' 'x264' 'x265' 'glu' 'libxv' 
'desktop-file-utils')
-  replaces=('avidemux-gtk')
-
-  cd ${pkgbase}_${pkgver}
-  make -C buildQt5 DESTDIR="${pkgdir}" install
-  make -C buildPluginsQt5 DESTDIR="${pkgdir}" install
-  #install -Dm 644 avidemux-qt.desktop -t "${pkgdir}/usr/share/applications"
-}
-
-# vim: ts=2 sw=2 et:

Copied: 

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

2020-07-16 Thread Levente Polyak via arch-commits
Date: Thursday, July 16, 2020 @ 21:38:10
  Author: anthraxx
Revision: 392002

archrelease: copy trunk to testing-x86_64

Added:
  dash/repos/testing-x86_64/
  dash/repos/testing-x86_64/PKGBUILD
(from rev 392001, dash/trunk/PKGBUILD)
  dash/repos/testing-x86_64/dash.install
(from rev 392001, dash/trunk/dash.install)

--+
 PKGBUILD |   37 +
 dash.install |   11 +++
 2 files changed, 48 insertions(+)

Copied: dash/repos/testing-x86_64/PKGBUILD (from rev 392001, 
dash/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-07-16 21:38:10 UTC (rev 392002)
@@ -0,0 +1,37 @@
+# Maintainer: Levente Polyak 
+# Maintainer: Dan McGee 
+
+pkgname=dash
+pkgver=0.5.11.1
+pkgrel=1
+pkgdesc='POSIX compliant shell that aims to be as small as possible'
+url='http://gondor.apana.org.au/~herbert/dash/'
+arch=('x86_64')
+license=('BSD')
+depends=('glibc')
+install=dash.install
+source=(https://git.kernel.org/pub/scm/utils/dash/dash.git/snapshot/${pkgname}-${pkgver}.tar.gz)
+sha512sums=('da5126ebd17b1114e7a7da3a982f2de5e1a403c0a65f26f428043317129213126bccb8c9c9a7c2994ac1de2a27dcdce04ba51d1bc1a779ffe689a9ae974c0c36')
+b2sums=('a1a6a7dfc9797506759ca4ae8726cac913a66b55a6491a8b18ee15c4a2ba0044abc7ebb137fae39361495921e360176e7118772d80829fce55edfff0b8bdd3a0')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  autoreconf -fiv
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure \
+--prefix=/usr \
+--bindir=/usr/bin \
+--mandir=/usr/share/man \
+--exec-prefix="" \
+--with-libedit
+  make V=1
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  install -Dm 644 COPYING -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}

Copied: dash/repos/testing-x86_64/dash.install (from rev 392001, 
dash/trunk/dash.install)
===
--- testing-x86_64/dash.install (rev 0)
+++ testing-x86_64/dash.install 2020-07-16 21:38:10 UTC (rev 392002)
@@ -0,0 +1,11 @@
+post_install() {
+   grep -q '/bin/dash' etc/shells || echo '/bin/dash' >> etc/shells
+}
+
+post_upgrade() {
+   post_install
+}
+
+pre_remove() {
+   sed -i '/^\/bin\/dash/d' etc/shells
+}


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

2020-07-16 Thread Jan Steffens via arch-commits
Date: Thursday, July 16, 2020 @ 21:24:08
  Author: heftig
Revision: 392000

archrelease: copy trunk to extra-x86_64

Added:
  rust/repos/extra-x86_64/PKGBUILD
(from rev 391999, rust/trunk/PKGBUILD)
Deleted:
  rust/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |  298 ++---
 1 file changed, 150 insertions(+), 148 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-16 21:23:39 UTC (rev 391999)
+++ PKGBUILD2020-07-16 21:24:08 UTC (rev 392000)
@@ -1,148 +0,0 @@
-# Maintainer: Johannes Löthberg 
-# Contributor: Alexander F Rødseth 
-# Contributor: Daniel Micay 
-# Contributor: userwithuid 
-
-pkgname=('rust' 'lib32-rust-libs' 'rust-docs')
-epoch=1
-pkgver=1.45.0
-pkgrel=1
-
-_llvm_ver=10.0.0
-
-pkgdesc='Systems programming language focused on safety, speed and concurrency'
-url='https://www.rust-lang.org/'
-arch=('x86_64')
-license=('MIT' 'Apache')
-
-makedepends=('rust' "llvm=$_llvm_ver" 'libffi' 'lib32-gcc-libs' 'perl' 
'python' 'curl' 'cmake')
-checkdepends=('procps-ng' 'gdb')
-
-options=('!emptydirs' '!strip')
-
-source=("https://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc}
-
"https://github.com/llvm/llvm-project/releases/download/llvmorg-$_llvm_ver/compiler-rt-$_llvm_ver.src.tar.xz"{,.sig})
-
-sha256sums=('ba0495f12c7d4e8735f3fa9e036bfafd1ae58c26910393201e95b9d13c80cd7c'
-'SKIP'
-'6a7da64d3a0a7320577b68b9ca4933bdcab676e898b759850e827333c3282c75'
-'SKIP')
-validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE'  # Rust Language (Tag 
and Release Signing Key) 
-  '474E22316ABF4785A88C6E8EA2C794A986419D8A'  # Tom Stellard 

-  'B6C8F98282B944E3B0D5C2530FC3042E345AD05D') # Hans Wennborg 

-
-prepare() {
-  cd "rustc-$pkgver-src"
-
-  cat >config.toml 

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

2020-07-16 Thread Jan Steffens via arch-commits
Date: Thursday, July 16, 2020 @ 21:23:39
  Author: heftig
Revision: 391999

1.45.0-2: FS#67301 restore clippy

Modified:
  rust/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-16 21:22:33 UTC (rev 391998)
+++ PKGBUILD2020-07-16 21:23:39 UTC (rev 391999)
@@ -1,4 +1,5 @@
 # Maintainer: Johannes Löthberg 
+# Maintainer: Jan Alexander Steffens (heftig) 
 # Contributor: Alexander F Rødseth 
 # Contributor: Daniel Micay 
 # Contributor: userwithuid 
@@ -6,7 +7,7 @@
 pkgname=('rust' 'lib32-rust-libs' 'rust-docs')
 epoch=1
 pkgver=1.45.0
-pkgrel=1
+pkgrel=2
 
 _llvm_ver=10.0.0
 
@@ -40,6 +41,7 @@
 
 [build]
 target = ["x86_64-unknown-linux-gnu", "i686-unknown-linux-gnu"]
+tools = ["cargo", "rls", "clippy", "miri", "rustfmt", "analysis", "src"]
 cargo = "/usr/bin/cargo"
 rustc = "/usr/bin/rustc"
 python = "/usr/bin/python"
@@ -105,7 +107,7 @@
 
   cd "rustc-$pkgver-src"
 
-  mv dest-rust/* "$pkgdir"
+  cp -a dest-rust/* "$pkgdir"
   install -Dm644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE*
 
   # delete unnecesary files, e.g. components and manifest files only used for 
the uninstall script
@@ -116,8 +118,8 @@
   # overwrite them with symlinks to the per-architecture versions
   ln -srft "$pkgdir"/usr/lib x86_64-unknown-linux-gnu/lib/*.so
 
-  install -d "$pkgdir"/usr/share/bash-completion
-  mv "$pkgdir"/etc/bash_completion.d/ 
"$pkgdir"/usr/share/bash-completion/completions/
+  install -d "$pkgdir"/usr/share/bash-completion/
+  mv "$pkgdir"/etc/bash_completion.d 
"$pkgdir"/usr/share/bash-completion/completions
 }
 
 package_lib32-rust-libs() {
@@ -131,7 +133,7 @@
   install -Dm644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE*
 
   install -d "$pkgdir"/usr/lib/rustlib/ "$pkgdir"/usr/lib32/
-  mv dest-i686 "$pkgdir"/usr/lib/rustlib/i686-unknown-linux-gnu
+  cp -a dest-i686 "$pkgdir"/usr/lib/rustlib/i686-unknown-linux-gnu
   ln -srft "$pkgdir"/usr/lib32 
"$pkgdir"/usr/lib/rustlib/i686-unknown-linux-gnu/lib/*.so
 }
 
@@ -141,8 +143,8 @@
   cd "rustc-$pkgver-src"
   install -Dm644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE*
 
-  install -d "$pkgdir"/usr/share/doc
-  mv dest-doc/* "$pkgdir"/usr/share/doc
+  install -d "$pkgdir"/usr/share/
+  cp -a dest-doc "$pkgdir"/usr/share/doc
 }
 
 # vim:set ts=2 sw=2 et:


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

2020-07-16 Thread Levente Polyak via arch-commits
Date: Thursday, July 16, 2020 @ 21:22:33
  Author: anthraxx
Revision: 391998

archrelease: copy trunk to extra-x86_64

Added:
  libbpf/repos/extra-x86_64/PKGBUILD
(from rev 391997, libbpf/trunk/PKGBUILD)
Deleted:
  libbpf/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-16 21:22:29 UTC (rev 391997)
+++ PKGBUILD2020-07-16 21:22:33 UTC (rev 391998)
@@ -1,30 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor:  Adrian Bacircea 
-
-pkgname=libbpf
-pkgver=0.0.8
-pkgrel=1
-pkgdesc='Library for loading eBPF programs and reading and manipulating eBPF 
objects from user-space'
-url='https://github.com/libbpf/libbpf'
-arch=('x86_64')
-license=('LGPL2.1')
-depends=('libelf' 'linux-api-headers')
-makedepends=('rsync')
-provides=('libbpf.so')
-source=(https://github.com/libbpf/libbpf/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha512sums=('1074fb52b7a158e4e2713c4c7083528ccf2d99b899853078f230234ba112071bfa66e174d8800d36516e26d5bf06da44d100a5b2f866d267f62c9308f431220c')
-b2sums=('2a3620c97834cc23e716476b6966c1c65c1c82064b3ba1ae4ab4906ae362a777d9aa7ae40620f9a259fe969a5a897e97c14d97f627f39c47fa28c89abb1efa9a')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  make -C src
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make -C src DESTDIR="${pkgdir}" LIBSUBDIR=lib install install_headers
-  install -Dm 644 LICENSE* -t "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -Dm 644 README.md src/README.rst -t 
"${pkgdir}/usr/share/doc/${pkgname}"
-}
-
-# vim: ts=2 sw=2 et:

Copied: libbpf/repos/extra-x86_64/PKGBUILD (from rev 391997, 
libbpf/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-16 21:22:33 UTC (rev 391998)
@@ -0,0 +1,30 @@
+# Maintainer: Levente Polyak 
+# Contributor:  Adrian Bacircea 
+
+pkgname=libbpf
+pkgver=0.0.9
+pkgrel=1
+pkgdesc='Library for loading eBPF programs and reading and manipulating eBPF 
objects from user-space'
+url='https://github.com/libbpf/libbpf'
+arch=('x86_64')
+license=('LGPL2.1')
+depends=('libelf' 'linux-api-headers')
+makedepends=('rsync')
+provides=('libbpf.so')
+source=(https://github.com/libbpf/libbpf/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha512sums=('d54bbdee6f7ea83ffef3fd0abe07f71644bcf83e5cf4a307fb4e03d885503617f1af2d324cc869f0f01a92bcb58836780a4802ac4db83b9f037ea196edc1131a')
+b2sums=('1277ce5b9dab9037e287910c43a71ee33cd6607d7cbe59d40c6930bf49407e04fcdfa6f4795f98202930fd564c1569c2feef0bca73294334f00abd601a288ed0')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  make -C src
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make -C src DESTDIR="${pkgdir}" LIBSUBDIR=lib install install_headers
+  install -Dm 644 LICENSE* -t "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -Dm 644 README.md src/README.rst -t 
"${pkgdir}/usr/share/doc/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:


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

2020-07-16 Thread Levente Polyak via arch-commits
Date: Thursday, July 16, 2020 @ 21:22:29
  Author: anthraxx
Revision: 391997

upgpkg: libbpf 0.0.9-1

Modified:
  libbpf/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-16 21:07:41 UTC (rev 391996)
+++ PKGBUILD2020-07-16 21:22:29 UTC (rev 391997)
@@ -2,7 +2,7 @@
 # Contributor:  Adrian Bacircea 
 
 pkgname=libbpf
-pkgver=0.0.8
+pkgver=0.0.9
 pkgrel=1
 pkgdesc='Library for loading eBPF programs and reading and manipulating eBPF 
objects from user-space'
 url='https://github.com/libbpf/libbpf'
@@ -12,8 +12,8 @@
 makedepends=('rsync')
 provides=('libbpf.so')
 
source=(https://github.com/libbpf/libbpf/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha512sums=('1074fb52b7a158e4e2713c4c7083528ccf2d99b899853078f230234ba112071bfa66e174d8800d36516e26d5bf06da44d100a5b2f866d267f62c9308f431220c')
-b2sums=('2a3620c97834cc23e716476b6966c1c65c1c82064b3ba1ae4ab4906ae362a777d9aa7ae40620f9a259fe969a5a897e97c14d97f627f39c47fa28c89abb1efa9a')
+sha512sums=('d54bbdee6f7ea83ffef3fd0abe07f71644bcf83e5cf4a307fb4e03d885503617f1af2d324cc869f0f01a92bcb58836780a4802ac4db83b9f037ea196edc1131a')
+b2sums=('1277ce5b9dab9037e287910c43a71ee33cd6607d7cbe59d40c6930bf49407e04fcdfa6f4795f98202930fd564c1569c2feef0bca73294334f00abd601a288ed0')
 
 build() {
   cd ${pkgname}-${pkgver}


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

2020-07-16 Thread Levente Polyak via arch-commits
Date: Thursday, July 16, 2020 @ 21:19:37
  Author: anthraxx
Revision: 664221

archrelease: copy trunk to community-x86_64

Added:
  smplayer/repos/community-x86_64/PKGBUILD
(from rev 664220, smplayer/trunk/PKGBUILD)
Deleted:
  smplayer/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-16 21:19:33 UTC (rev 664220)
+++ PKGBUILD2020-07-16 21:19:37 UTC (rev 664221)
@@ -1,46 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Ionut Biru 
-# Contributor: Allan McRae 
-# Contributor: Alessio 'mOLOk' Bolognino 
-# Contributor: shamrok 
-
-pkgname=smplayer
-pkgver=20.4.2
-pkgrel=1
-pkgdesc='Media player with built-in codecs that can play virtually all video 
and audio formats'
-url='https://www.smplayer.info/'
-arch=('x86_64')
-license=('GPL')
-depends=('glibc' 'qt5-script' 'qt5-base' 'mpv' 'libx11' 'zlib' 'gcc-libs' 
'hicolor-icon-theme')
-makedepends=('qt5-tools')
-optdepends=('smplayer-themes: icon themes collection'
-'smplayer-skins: skin themes collection'
-'smtube: browse and play youtube videos'
-'youtube-dl: youtube videos and streaming'
-'mplayer: alternative multimedia engine')
-source=(https://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2)
-sha512sums=('03404c2e7ba00d257ab2db82fe837eb4ab314c2b32a262ad18e75b245d43f812533f7e4609a6fe335c5c2e370cfb5fac8f0b3b8917c33a22c5b84f0074039156')
-b2sums=('fe5f3ce279be478f93a71c521070e2564df331c56c6ac9410e0707101b7e662a16cbe65b439a194d253d3c4f49ce8e735eb19ad9a195e0e1f5d42461d3162925')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-  # make build reproducible, we compress ourselves
-  sed '/gzip -9/d' -i Makefile
-}
-
-build() {
-  cd ${pkgname}-${pkgver}
-  export CXXFLAGS="${CXXFLAGS} ${CPPFLAGS}"
-  make PREFIX=/usr \
-DOC_PATH="\\\"/usr/share/doc/smplayer\\\"" \
-QMAKE_OPTS=DEFINES+=NO_DEBUG_ON_CONSOLE \
-CFLAGS_EXTRA="${CFLAGS} ${CPPFLAGS} ${LDFLAGS}"
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DOC_PATH=/usr/share/doc/smplayer \
-DESTDIR="${pkgdir}" PREFIX=/usr -j1 install
-}
-
-# vim: ts=2 sw=2 et:

Copied: smplayer/repos/community-x86_64/PKGBUILD (from rev 664220, 
smplayer/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-16 21:19:37 UTC (rev 664221)
@@ -0,0 +1,46 @@
+# Maintainer: Levente Polyak 
+# Contributor: Ionut Biru 
+# Contributor: Allan McRae 
+# Contributor: Alessio 'mOLOk' Bolognino 
+# Contributor: shamrok 
+
+pkgname=smplayer
+pkgver=20.6.0
+pkgrel=1
+pkgdesc='Media player with built-in codecs that can play virtually all video 
and audio formats'
+url='https://www.smplayer.info/'
+arch=('x86_64')
+license=('GPL')
+depends=('glibc' 'qt5-script' 'qt5-base' 'mpv' 'libx11' 'zlib' 'gcc-libs' 
'hicolor-icon-theme')
+makedepends=('qt5-tools')
+optdepends=('smplayer-themes: icon themes collection'
+'smplayer-skins: skin themes collection'
+'smtube: browse and play youtube videos'
+'youtube-dl: youtube videos and streaming'
+'mplayer: alternative multimedia engine')
+source=(https://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2)
+sha512sums=('2cf7b7abf44b301331a5389e1ca512bd41928724b412d8cf55d77cb5cde87a4fdb9038d77c31da14b548d38ebfadd461d588d60a6b6f13b1781b9b961e81637d')
+b2sums=('5cf77acd7098aa81d1bd40c62d6cf5cd743167ee07a86f9d0d856eba5e7ce1befe4e7a384126dc3b244588758ab40b19804bfc3e0ff8e17d1e0d5d504e57c0ae')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  # make build reproducible, we compress ourselves
+  sed '/gzip -9/d' -i Makefile
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  export CXXFLAGS="${CXXFLAGS} ${CPPFLAGS}"
+  make PREFIX=/usr \
+DOC_PATH="\\\"/usr/share/doc/smplayer\\\"" \
+QMAKE_OPTS=DEFINES+=NO_DEBUG_ON_CONSOLE \
+CFLAGS_EXTRA="${CFLAGS} ${CPPFLAGS} ${LDFLAGS}"
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DOC_PATH=/usr/share/doc/smplayer \
+DESTDIR="${pkgdir}" PREFIX=/usr -j1 install
+}
+
+# vim: ts=2 sw=2 et:


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

2020-07-16 Thread Levente Polyak via arch-commits
Date: Thursday, July 16, 2020 @ 21:19:33
  Author: anthraxx
Revision: 664220

upgpkg: smplayer 20.6.0-1

Modified:
  smplayer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-16 21:16:40 UTC (rev 664219)
+++ PKGBUILD2020-07-16 21:19:33 UTC (rev 664220)
@@ -5,7 +5,7 @@
 # Contributor: shamrok 
 
 pkgname=smplayer
-pkgver=20.4.2
+pkgver=20.6.0
 pkgrel=1
 pkgdesc='Media player with built-in codecs that can play virtually all video 
and audio formats'
 url='https://www.smplayer.info/'
@@ -19,8 +19,8 @@
 'youtube-dl: youtube videos and streaming'
 'mplayer: alternative multimedia engine')
 
source=(https://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2)
-sha512sums=('03404c2e7ba00d257ab2db82fe837eb4ab314c2b32a262ad18e75b245d43f812533f7e4609a6fe335c5c2e370cfb5fac8f0b3b8917c33a22c5b84f0074039156')
-b2sums=('fe5f3ce279be478f93a71c521070e2564df331c56c6ac9410e0707101b7e662a16cbe65b439a194d253d3c4f49ce8e735eb19ad9a195e0e1f5d42461d3162925')
+sha512sums=('2cf7b7abf44b301331a5389e1ca512bd41928724b412d8cf55d77cb5cde87a4fdb9038d77c31da14b548d38ebfadd461d588d60a6b6f13b1781b9b961e81637d')
+b2sums=('5cf77acd7098aa81d1bd40c62d6cf5cd743167ee07a86f9d0d856eba5e7ce1befe4e7a384126dc3b244588758ab40b19804bfc3e0ff8e17d1e0d5d504e57c0ae')
 
 prepare() {
   cd ${pkgname}-${pkgver}


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

2020-07-16 Thread Levente Polyak via arch-commits
Date: Thursday, July 16, 2020 @ 21:16:40
  Author: anthraxx
Revision: 664219

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-16 21:16:36 UTC (rev 664218)
+++ PKGBUILD2020-07-16 21:16:40 UTC (rev 664219)
@@ -1,71 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: arch3y 
-
-_gitname=yara-python
-pkgbase=python-yara
-pkgname=('python-yara' 'python2-yara')
-pkgver=4.0.1
-_gitcommit=286897d41e4d38d74f31142251d785598fc8f223
-pkgrel=1
-pkgdesc='Tool aimed at helping malware researchers to identify and classify 
malware samples'
-url='https://github.com/VirusTotal/yara-python'
-arch=('x86_64')
-license=('Apache')
-makedepends=('git' 'yara' 'glibc'
- 'python' 'python-setuptools'
- 'python2' 'python2-setuptools')
-source=(${pkgbase}::git+"https://github.com/VirusTotal/${_gitname}#commit=${_gitcommit}";)
-sha512sums=('SKIP')
-
-pkgver() {
-  cd ${pkgbase}
-  git describe --tags --match 'v*' | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
-}
-
-prepare() {
-  cp -a ${pkgbase}{,-py2}
-}
-
-build() {
-  echo 'Building python...'
-  (cd ${pkgbase}
-python setup.py build --dynamic-linking
-  )
-  echo 'Building python2...'
-  (cd ${pkgbase}-py2
-python2 setup.py build --dynamic-linking
-  )
-}
-
-check() {
-  echo 'Checking python...'
-  (cd ${pkgbase}
-local PYTHONVERSION="$(python -c 'import sys; 
print("{}.{}".format(sys.version_info.major, sys.version_info.minor))')"
-PYTHONPATH="build/lib.linux-${CARCH}-${PYTHONVERSION}" \
-  python tests.py
-  )
-  echo 'Checking python2...'
-  (cd ${pkgbase}-py2
-local PYTHONVERSION="$(python2 -c 'import sys; 
print("{}.{}".format(sys.version_info.major, sys.version_info.minor))')"
-PYTHONPATH="build/lib.linux-${CARCH}-${PYTHONVERSION}" \
-  python2 tests.py
-  )
-}
-
-package_python-yara() {
-  depends=('python' 'yara' 'libyara.so' 'glibc')
-  cd ${pkgbase}
-  python setup.py install --root="${pkgdir}" -O1 --skip-build
-  install -Dm 644 README.rst -t "${pkgdir}/usr/share/doc/${pkgname}"
-  ln -s /usr/share/doc/yara/docs "${pkgdir}/usr/share/doc/${pkgname}/docs"
-}
-
-package_python2-yara() {
-  depends=('python2' 'yara' 'libyara.so' 'glibc')
-  cd ${pkgbase}-py2
-  python2 setup.py install --root="${pkgdir}" -O1 --skip-build
-  install -Dm 644 README.rst -t "${pkgdir}/usr/share/doc/${pkgname}"
-  ln -s /usr/share/doc/yara/docs "${pkgdir}/usr/share/doc/${pkgname}/docs"
-}
-
-# vim: ts=2 sw=2 et:

Copied: python-yara/repos/community-x86_64/PKGBUILD (from rev 664218, 
python-yara/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-16 21:16:40 UTC (rev 664219)
@@ -0,0 +1,71 @@
+# Maintainer: Levente Polyak 
+# Contributor: arch3y 
+
+_gitname=yara-python
+pkgbase=python-yara
+pkgname=('python-yara' 'python2-yara')
+pkgver=4.0.2
+_gitcommit=a1ed3cb54e8361a24e185183fccd888d99b15ae5
+pkgrel=1
+pkgdesc='Tool aimed at helping malware researchers to identify and classify 
malware samples'
+url='https://github.com/VirusTotal/yara-python'
+arch=('x86_64')
+license=('Apache')
+makedepends=('git' 'yara' 'glibc'
+ 'python' 'python-setuptools'
+ 'python2' 'python2-setuptools')
+source=(${pkgbase}::git+"https://github.com/VirusTotal/${_gitname}#commit=${_gitcommit}";)
+sha512sums=('SKIP')
+
+pkgver() {
+  cd ${pkgbase}
+  git describe --tags --match 'v*' | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
+}
+
+prepare() {
+  cp -a ${pkgbase}{,-py2}
+}
+
+build() {
+  echo 'Building python...'
+  (cd ${pkgbase}
+python setup.py build --dynamic-linking
+  )
+  echo 'Building python2...'
+  (cd ${pkgbase}-py2
+python2 setup.py build --dynamic-linking
+  )
+}
+
+check() {
+  echo 'Checking python...'
+  (cd ${pkgbase}
+local PYTHONVERSION="$(python -c 'import sys; 
print("{}.{}".format(sys.version_info.major, sys.version_info.minor))')"
+PYTHONPATH="build/lib.linux-${CARCH}-${PYTHONVERSION}" \
+  python tests.py
+  )
+  echo 'Checking python2...'
+  (cd ${pkgbase}-py2
+local PYTHONVERSION="$(python2 -c 'import sys; 
print("{}.{}".format(sys.version_info.major, sys.version_info.minor))')"
+PYTHONPATH="build/lib.linux-${CARCH}-${PYTHONVERSION}" \
+  python2 tests.py
+  )
+}
+
+package_python-yara() {
+  depends=('python' 'yara' 'libyara.so' 'glibc')
+  cd ${pkgbase}
+  python setup.py install --root="${pkgdir}" -O1 --skip-build
+  install -Dm 644 README.rst -t "${pkgdir}/usr/share/doc/${pkgname}"
+  ln -s /usr/share/doc/yara/docs "${pkgdir}/usr/share/doc/${pkgname}/docs"
+}
+
+package_pytho

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

2020-07-16 Thread Levente Polyak via arch-commits
Date: Thursday, July 16, 2020 @ 21:16:36
  Author: anthraxx
Revision: 664218

upgpkg: python-yara 4.0.2-1

Modified:
  python-yara/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-16 21:14:35 UTC (rev 664217)
+++ PKGBUILD2020-07-16 21:16:36 UTC (rev 664218)
@@ -4,8 +4,8 @@
 _gitname=yara-python
 pkgbase=python-yara
 pkgname=('python-yara' 'python2-yara')
-pkgver=4.0.1
-_gitcommit=286897d41e4d38d74f31142251d785598fc8f223
+pkgver=4.0.2
+_gitcommit=a1ed3cb54e8361a24e185183fccd888d99b15ae5
 pkgrel=1
 pkgdesc='Tool aimed at helping malware researchers to identify and classify 
malware samples'
 url='https://github.com/VirusTotal/yara-python'


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

2020-07-16 Thread Levente Polyak via arch-commits
Date: Thursday, July 16, 2020 @ 21:14:31
  Author: anthraxx
Revision: 664216

upgpkg: yara 4.0.2-1

Modified:
  yara/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-16 21:13:58 UTC (rev 664215)
+++ PKGBUILD2020-07-16 21:14:31 UTC (rev 664216)
@@ -3,7 +3,7 @@
 # Contributor: fnord0 
 
 pkgname=yara
-pkgver=4.0.1
+pkgver=4.0.2
 pkgrel=1
 pkgdesc='Tool aimed at helping malware researchers to identify and classify 
malware samples'
 url='https://github.com/VirusTotal/yara'
@@ -12,8 +12,8 @@
 depends=('openssl' 'file')
 provides=('libyara.so')
 
source=(https://github.com/VirusTotal/${pkgname}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha512sums=('5d91b8df242299084916d9634e950359e7a9df26a7964ca2ca52cecf79a969d5aefd1c2dd89f5e762cf3a3c907cd616bd738b540f8600ad94522cbc3f1b031d3')
-b2sums=('d56ba0c989f28c802b4474832f595360a246740a67aff8106a7ded8ce0c4636afac487d17b1e2470ee21741d95b71b78dbd7679e71bc1f84dbfc9d2f2c0d48ed')
+sha512sums=('22575cb7b48eead3b5051ce13beb3deef88a1b605de20ec8e5fc2651c0dd0009eb6c0ecddb8600a43a757ceb6ea298e94f71a26d2f9acb31a73830e18c81d10c')
+b2sums=('37f29c75c832f2d2c17aaf51ef443266e354018a07212b1df696cc083a2abebdf091c4fbdd53e32e5a9f7e53fa3be378c79794923f3100068de86d56077d7be3')
 
 prepare() {
   cd ${pkgname}-${pkgver}


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

2020-07-16 Thread Levente Polyak via arch-commits
Date: Thursday, July 16, 2020 @ 21:14:35
  Author: anthraxx
Revision: 664217

archrelease: copy trunk to community-x86_64

Added:
  yara/repos/community-x86_64/PKGBUILD
(from rev 664216, yara/trunk/PKGBUILD)
Deleted:
  yara/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-16 21:14:31 UTC (rev 664216)
+++ PKGBUILD2020-07-16 21:14:35 UTC (rev 664217)
@@ -1,40 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: bitwave 
-# Contributor: fnord0 
-
-pkgname=yara
-pkgver=4.0.1
-pkgrel=1
-pkgdesc='Tool aimed at helping malware researchers to identify and classify 
malware samples'
-url='https://github.com/VirusTotal/yara'
-arch=('x86_64')
-license=('BSD')
-depends=('openssl' 'file')
-provides=('libyara.so')
-source=(https://github.com/VirusTotal/${pkgname}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha512sums=('5d91b8df242299084916d9634e950359e7a9df26a7964ca2ca52cecf79a969d5aefd1c2dd89f5e762cf3a3c907cd616bd738b540f8600ad94522cbc3f1b031d3')
-b2sums=('d56ba0c989f28c802b4474832f595360a246740a67aff8106a7ded8ce0c4636afac487d17b1e2470ee21741d95b71b78dbd7679e71bc1f84dbfc9d2f2c0d48ed')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-  autoreconf -fiv
-}
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure \
---prefix=/usr \
---with-crypto \
---enable-magic
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-  install -Dm 644 COPYING -t "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
-  cp -r docs "${pkgdir}/usr/share/doc/${pkgname}"
-}
-
-# vim: ts=2 sw=2 et:

Copied: yara/repos/community-x86_64/PKGBUILD (from rev 664216, 
yara/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-16 21:14:35 UTC (rev 664217)
@@ -0,0 +1,40 @@
+# Maintainer: Levente Polyak 
+# Contributor: bitwave 
+# Contributor: fnord0 
+
+pkgname=yara
+pkgver=4.0.2
+pkgrel=1
+pkgdesc='Tool aimed at helping malware researchers to identify and classify 
malware samples'
+url='https://github.com/VirusTotal/yara'
+arch=('x86_64')
+license=('BSD')
+depends=('openssl' 'file')
+provides=('libyara.so')
+source=(https://github.com/VirusTotal/${pkgname}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha512sums=('22575cb7b48eead3b5051ce13beb3deef88a1b605de20ec8e5fc2651c0dd0009eb6c0ecddb8600a43a757ceb6ea298e94f71a26d2f9acb31a73830e18c81d10c')
+b2sums=('37f29c75c832f2d2c17aaf51ef443266e354018a07212b1df696cc083a2abebdf091c4fbdd53e32e5a9f7e53fa3be378c79794923f3100068de86d56077d7be3')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  autoreconf -fiv
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure \
+--prefix=/usr \
+--with-crypto \
+--enable-magic
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  install -Dm 644 COPYING -t "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+  cp -r docs "${pkgdir}/usr/share/doc/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:


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

2020-07-16 Thread Morten Linderud via arch-commits
Date: Thursday, July 16, 2020 @ 21:13:52
  Author: foxboron
Revision: 664214

upgpkg: hy 0.19.0-2

Modified:
  hy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-16 21:10:30 UTC (rev 664213)
+++ PKGBUILD2020-07-16 21:13:52 UTC (rev 664214)
@@ -2,7 +2,7 @@
 # Contributor: JP Cimalando 
 
 pkgname=hy
-pkgver=0.18.0
+pkgver=0.19.0
 pkgrel=2
 pkgdesc="A dialect of Lisp that's embedded in Python"
 arch=('any')
@@ -12,7 +12,7 @@
 makedepends=('python-setuptools')
 checkdepends=('python-pytest' 'python-pytest-runner')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/hylang/hy/archive/$pkgver.tar.gz";)
-sha256sums=('0712b601e604bd9829d516a4a6092399bc344e7e00de71a62629c5630af889b5')
+sha256sums=('3a24f02a22ab8679783b1b817eba5fd1cfa1b9fb334e16fad74fc1887d257efc')
 
 prepare() {
 cd "$pkgname-$pkgver"


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

2020-07-16 Thread Morten Linderud via arch-commits
Date: Thursday, July 16, 2020 @ 21:13:58
  Author: foxboron
Revision: 664215

archrelease: copy trunk to community-any

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

--+
 PKGBUILD |  126 ++---
 1 file changed, 63 insertions(+), 63 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-16 21:13:52 UTC (rev 664214)
+++ PKGBUILD2020-07-16 21:13:58 UTC (rev 664215)
@@ -1,63 +0,0 @@
-# Maintainer: Morten Linderud 
-# Contributor: JP Cimalando 
-
-pkgname=hy
-pkgver=0.18.0
-pkgrel=2
-pkgdesc="A dialect of Lisp that's embedded in Python"
-arch=('any')
-url="http://hylang.org/";
-license=('MIT')
-depends=('python-rply' 'python-astor' 'python-clint' 'python-funcparserlib')
-makedepends=('python-setuptools')
-checkdepends=('python-pytest' 'python-pytest-runner')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/hylang/hy/archive/$pkgver.tar.gz";)
-sha256sums=('0712b601e604bd9829d516a4a6092399bc344e7e00de71a62629c5630af889b5')
-
-prepare() {
-cd "$pkgname-$pkgver"
-
-# usually generated from git metadata and aded to PyPI sdist
-# PyPI does not include testsuite files.
-echo "__version__ = '$pkgver'" > hy/version.py
-}
-
-build() {
-cd "$pkgname-$pkgver"
-python setup.py build
-}
-
-check(){
-cd "$pkgname-$pkgver"
-
-python setup.py develop --user
-PATH="$HOME/.local/bin:$PATH"
-python setup.py pytest #--addopts "-k 'not test_bin'"
-
-# Hy does magic to the bytecode, but we need this gone from check.
-# this should be generated as part of the build step
-for file in hy/contrib/__pycache__/__init__.cpython-*.pyc \
-   hy/contrib/__pycache__/hy_repr.cpython-*.pyc \
-   hy/contrib/__pycache__/loop.cpython-*.pyc \
-   hy/contrib/__pycache__/sequences.cpython-*.pyc \
-   hy/contrib/__pycache__/walk.cpython-*.pyc \
-   hy/core/__pycache__/__init__.cpython-*.pyc \
-   hy/core/__pycache__/bootstrap.cpython-*.pyc \
-   hy/core/__pycache__/language.cpython-*.pyc \
-   hy/core/__pycache__/macros.cpython-*.pyc \
-   hy/core/__pycache__/shadow.cpython-*.pyc \
-   hy/extra/__pycache__/__init__.cpython-*.pyc \
-   hy/extra/__pycache__/anaphoric.cpython-*.pyc \
-   hy/extra/__pycache__/reserved.cpython-*.pyc
-do
-rm "$file"
-done
-
-}
-
-package() {
-cd "$pkgname-$pkgver"
-python setup.py install --root="$pkgdir/" --optimize=1 --skip-build
-install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-rm -rf "$pkgdir/usr/get_version"
-}

Copied: hy/repos/community-any/PKGBUILD (from rev 664214, hy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-16 21:13:58 UTC (rev 664215)
@@ -0,0 +1,63 @@
+# Maintainer: Morten Linderud 
+# Contributor: JP Cimalando 
+
+pkgname=hy
+pkgver=0.19.0
+pkgrel=2
+pkgdesc="A dialect of Lisp that's embedded in Python"
+arch=('any')
+url="http://hylang.org/";
+license=('MIT')
+depends=('python-rply' 'python-astor' 'python-clint' 'python-funcparserlib')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest' 'python-pytest-runner')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/hylang/hy/archive/$pkgver.tar.gz";)
+sha256sums=('3a24f02a22ab8679783b1b817eba5fd1cfa1b9fb334e16fad74fc1887d257efc')
+
+prepare() {
+cd "$pkgname-$pkgver"
+
+# usually generated from git metadata and aded to PyPI sdist
+# PyPI does not include testsuite files.
+echo "__version__ = '$pkgver'" > hy/version.py
+}
+
+build() {
+cd "$pkgname-$pkgver"
+python setup.py build
+}
+
+check(){
+cd "$pkgname-$pkgver"
+
+python setup.py develop --user
+PATH="$HOME/.local/bin:$PATH"
+python setup.py pytest #--addopts "-k 'not test_bin'"
+
+# Hy does magic to the bytecode, but we need this gone from check.
+# this should be generated as part of the build step
+for file in hy/contrib/__pycache__/__init__.cpython-*.pyc \
+   hy/contrib/__pycache__/hy_repr.cpython-*.pyc \
+   hy/contrib/__pycache__/loop.cpython-*.pyc \
+   hy/contrib/__pycache__/sequences.cpython-*.pyc \
+   hy/contrib/__pycache__/walk.cpython-*.pyc \
+   hy/core/__pycache__/__init__.cpython-*.pyc \
+   hy/core/__pycache__/bootstrap.cpython-*.pyc \
+   hy/core/__pycache__/language.cpython-*.pyc \
+   hy/core/__pycache__/macros.cpython-*.pyc \
+   hy/core/__pycache__/shadow.cpython-*.pyc \
+   hy/extra/__pycache__/__init__.cpython-*.pyc \
+   hy/extra/__pycache__/anaphoric.cpython-*.pyc \
+   hy/extra/__pycache__/reserved.cpython-*.pyc
+do
+rm "$file"
+done
+
+}
+
+package() {
+cd "$pkgname-$pkgver"
+python setup.py install --root="$pkgdir/" --optimize=1 --skip-build
+install -D -m

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

2020-07-16 Thread Morten Linderud via arch-commits
Date: Thursday, July 16, 2020 @ 21:10:23
  Author: foxboron
Revision: 664212

upgpkg: barrier 2.3.3-1 - fix build

Modified:
  barrier/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-16 21:07:31 UTC (rev 664211)
+++ PKGBUILD2020-07-16 21:10:23 UTC (rev 664212)
@@ -2,8 +2,8 @@
 # Contributor: Tilman BLUMENBACH 
 
 pkgname=(barrier barrier-headless)
-pkgver=2.3.2
-pkgrel=2
+pkgver=2.3.3
+pkgrel=1
 pkgdesc="Open-source KVM software based on Synergy"
 arch=(x86_64)
 url="https://github.com/debauchee/barrier";
@@ -12,10 +12,17 @@
 depends=(curl avahi libx11 libxrandr libxext
 libxinerama xorgproto libxtst libxi
 libsm libice openssl)
-makedepends=(cmake qt5-base hicolor-icon-theme)
+makedepends=(cmake qt5-base hicolor-icon-theme gtest gmock)
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/debauchee/barrier/archive/v${pkgver}.tar.gz";)
-sha256sums=('6b92a70c5f4d625065842d133386982ec2ad1db2a809af47e46ab8ce2acd39b5')
+sha256sums=('259e75c150ca16d9db51870b026dc7aad56c410fa3d2f5fdccc19d4b6024bdc5')
 
+prepare() {
+cd "barrier-${pkgver}"
+# Doesn't build!
+rm -rf ext/{gmock,gtest}
+sed -i 's|add_library.*||g' src/test/CMakeLists.txt 
+sed -i 's|set_target_properties.*||g' src/test/CMakeLists.txt 
+}
 
 build() {
 cd "barrier-${pkgver}"
@@ -32,6 +39,7 @@
 make
 }
 
+
 _package_common() {
 # Install binaries:
 cd "barrier-${pkgver}/build"


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

2020-07-16 Thread Morten Linderud via arch-commits
Date: Thursday, July 16, 2020 @ 21:10:30
  Author: foxboron
Revision: 664213

archrelease: copy trunk to community-x86_64

Added:
  barrier/repos/community-x86_64/CHANGELOG.rst
(from rev 664212, barrier/trunk/CHANGELOG.rst)
  barrier/repos/community-x86_64/PKGBUILD
(from rev 664212, barrier/trunk/PKGBUILD)
Deleted:
  barrier/repos/community-x86_64/CHANGELOG.rst
  barrier/repos/community-x86_64/PKGBUILD

---+
 CHANGELOG.rst |  120 ++---
 PKGBUILD  |  180 +---
 2 files changed, 154 insertions(+), 146 deletions(-)

Deleted: CHANGELOG.rst
===
--- CHANGELOG.rst   2020-07-16 21:10:23 UTC (rev 664212)
+++ CHANGELOG.rst   2020-07-16 21:10:30 UTC (rev 664213)
@@ -1,60 +0,0 @@
-Changelog for package base ``barrier``
-==
-
-2.3.2-1 - 2019-10-12
-
-
-- Updated to upstream release 2.3.2_, for which there is no upstream
-  changelog available (apart from the VCS history).
-
-2.3.1-1 - 2019-09-25
-
-
-- Updated to upstream release 2.3.1_.
-
-  Upstream release notes since version 2.1.2_:
-
-  * Fixes for the international US keyboard (2.3.1_)
-  * Misc. Fixes and Improvements (2.3.0_)
-
-2.1.2-2 - 2018-12-29
-
-
-- The ``barrier`` package now only contains the Barrier GUI, while
-  a new package ``barrier-headless`` contains the server and client
-  CLI binaries. Users that don't require the GUI can now install only
-  the ``barrier-headless`` package and avoid the ``qt5-base`` dependency
-  required by the Barrier GUI.
-
-  The ``barrier`` package automatically pulls in the ``barrier-headless``
-  package.
-
-2.1.2-1 - 2018-12-29
-
-
-- Updated to upstream release 2.1.2_, for which there is no upstream
-  changelog available (apart from the VCS history).
-
-**Note:** While this release has been tagged as ``2.1.2`` by upstream,
-the actual version number shown by the Barrier programs is ``2.2.0``.
-
-2.1.1-2 - 2018-05-30
-
-
-- Work around Barrier `issue 49`_.
-
-2.1.1-1 - 2018-05-20
-
-
-- Updated to upstream release 2.1.1_, which contains the following
-  changes:
-
-  * Fixed ``.desktop`` file.
-
-
-.. _2.1.1: https://github.com/debauchee/barrier/releases/tag/v2.1.1
-.. _2.1.2: https://github.com/debauchee/barrier/releases/tag/v2.1.2
-.. _2.3.0: https://github.com/debauchee/barrier/releases/tag/v2.3.0
-.. _2.3.1: https://github.com/debauchee/barrier/releases/tag/v2.3.1
-.. _2.3.2: https://github.com/debauchee/barrier/releases/tag/v2.3.2
-.. _issue 49: https://github.com/debauchee/barrier/issues/49

Copied: barrier/repos/community-x86_64/CHANGELOG.rst (from rev 664212, 
barrier/trunk/CHANGELOG.rst)
===
--- CHANGELOG.rst   (rev 0)
+++ CHANGELOG.rst   2020-07-16 21:10:30 UTC (rev 664213)
@@ -0,0 +1,60 @@
+Changelog for package base ``barrier``
+==
+
+2.3.2-1 - 2019-10-12
+
+
+- Updated to upstream release 2.3.2_, for which there is no upstream
+  changelog available (apart from the VCS history).
+
+2.3.1-1 - 2019-09-25
+
+
+- Updated to upstream release 2.3.1_.
+
+  Upstream release notes since version 2.1.2_:
+
+  * Fixes for the international US keyboard (2.3.1_)
+  * Misc. Fixes and Improvements (2.3.0_)
+
+2.1.2-2 - 2018-12-29
+
+
+- The ``barrier`` package now only contains the Barrier GUI, while
+  a new package ``barrier-headless`` contains the server and client
+  CLI binaries. Users that don't require the GUI can now install only
+  the ``barrier-headless`` package and avoid the ``qt5-base`` dependency
+  required by the Barrier GUI.
+
+  The ``barrier`` package automatically pulls in the ``barrier-headless``
+  package.
+
+2.1.2-1 - 2018-12-29
+
+
+- Updated to upstream release 2.1.2_, for which there is no upstream
+  changelog available (apart from the VCS history).
+
+**Note:** While this release has been tagged as ``2.1.2`` by upstream,
+the actual version number shown by the Barrier programs is ``2.2.0``.
+
+2.1.1-2 - 2018-05-30
+
+
+- Work around Barrier `issue 49`_.
+
+2.1.1-1 - 2018-05-20
+
+
+- Updated to upstream release 2.1.1_, which contains the following
+  changes:
+
+  * Fixed ``.desktop`` file.
+
+
+.. _2.1.1: https://github.com/debauchee/barrier/releases/tag/v2.1.1
+.. _2.1.2: https://github.com/debauchee/barrier/releases/tag/v2.1.2
+.. _2.3.0: https://github.com/debauchee/barrier/releases/tag/v2.3.0
+.. _2.3.1: https://github.com/debauchee/barrier/releases/tag/v2.3.1
+.. _2.3.2: https://github.com/debauchee/barrier/releases/tag/v2.3.2
+.. _issue 49: https://github.com/debauchee/barrier/issues/49

Deleted: PKGBUIL

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

2020-07-16 Thread Jan Steffens via arch-commits
Date: Thursday, July 16, 2020 @ 21:07:31
  Author: heftig
Revision: 664210

archrelease: copy trunk to community-testing-x86_64

Added:
  deepin-anything-arch/repos/community-testing-x86_64/
  deepin-anything-arch/repos/community-testing-x86_64/0001-linux-5.6.patch
(from rev 664207, deepin-anything-arch/trunk/0001-linux-5.6.patch)
  deepin-anything-arch/repos/community-testing-x86_64/PKGBUILD
(from rev 664207, deepin-anything-arch/trunk/PKGBUILD)

--+
 0001-linux-5.6.patch |   40 
 PKGBUILD |   36 
 2 files changed, 76 insertions(+)

Copied: 
deepin-anything-arch/repos/community-testing-x86_64/0001-linux-5.6.patch (from 
rev 664207, deepin-anything-arch/trunk/0001-linux-5.6.patch)
===
--- community-testing-x86_64/0001-linux-5.6.patch   
(rev 0)
+++ community-testing-x86_64/0001-linux-5.6.patch   2020-07-16 21:07:31 UTC 
(rev 664210)
@@ -0,0 +1,40 @@
+diff --git a/kernelmod/vfs_change.c b/kernelmod/vfs_change.c
+index 6a0e334..e25faf4 100644
+--- a/kernelmod/vfs_change.c
 b/kernelmod/vfs_change.c
+@@ -125,7 +125,11 @@ static ssize_t copy_vfs_changes(struct TIMESTRUCT *last, 
char* buf, size_t size)
+   ))
+   continue;
+ 
++#if LINUX_VERSION_CODE < KERNEL_VERSION(5, 6, 0)
+   time_t shifted_secs = vc->ts.tv_sec + hour_shift*3600;
++#else
++  time64_t shifted_secs = vc->ts.tv_sec + hour_shift*3600;
++#endif
+   struct tm ts;
+ #if LINUX_VERSION_CODE < KERNEL_VERSION(4, 20, 0)
+   time_to_tm(shifted_secs, 0, &ts);
+@@ -333,6 +337,7 @@ static long ioctl_vfs_changes(struct file* filp, unsigned 
int cmd, unsigned long
+   }
+ }
+ 
++#if LINUX_VERSION_CODE < KERNEL_VERSION(5, 6, 0)
+ static struct file_operations procfs_ops = {
+   .owner = THIS_MODULE,
+   .open = open_vfs_changes,
+@@ -342,6 +347,15 @@ static struct file_operations procfs_ops = {
+   //.llseek = generic_file_llseek,
+   .release = release_vfs_changes,
+ };
++#else
++static struct proc_ops procfs_ops = {
++  .proc_open = open_vfs_changes,
++  .proc_read = read_vfs_changes,
++  .proc_ioctl = ioctl_vfs_changes,
++  .proc_lseek = no_llseek,
++  .proc_release = release_vfs_changes,
++};
++#endif
+ 
+ int __init init_vfs_changes(void)
+ {

Copied: deepin-anything-arch/repos/community-testing-x86_64/PKGBUILD (from rev 
664207, deepin-anything-arch/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-07-16 21:07:31 UTC (rev 664210)
@@ -0,0 +1,36 @@
+# Maintainer: Felix Yan 
+
+pkgname=deepin-anything-arch
+pkgver=5.0.1
+pkgrel=93
+pkgdesc="Deepin Anything file search tool, kernel module for Arch kernel"
+arch=('x86_64')
+url="https://github.com/linuxdeepin/deepin-anything";
+license=('GPL3')
+makedepends=('linux-headers')
+provides=('DEEPIN-ANYTHING-MODULE')
+replaces=('deepin-anything-module')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/deepin-anything/archive/$pkgver.tar.gz";
+'0001-linux-5.6.patch')
+sha512sums=('f79b4db917cce2611bd6964d00ae0e162fc500fa7ca76a987145456a9ee81296c776d2b83cf6492a4224c4e4fd95df3ad95a25c1c14d2d4e6865f5bbd639be14'
+
'5ddbd2d968bc5b01dbc99648cec81ea072675d7fe7198835649d5b581997945d32bd842dd7ebf60185aa84722b94575ac7aeb5e4616945e22fae53272907305b')
+
+prepare() {
+  cd deepin-anything-$pkgver
+  patch -Np1 < ../0001-linux-5.6.patch
+}
+
+build() {
+  cd deepin-anything-$pkgver
+  make -C kernelmod kdir=/usr/src/linux
+}
+
+package() {
+  depends=('linux')
+
+  cd deepin-anything-$pkgver
+  local extradir=/usr/lib/modules/$(

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

2020-07-16 Thread Jan Steffens via arch-commits
Date: Thursday, July 16, 2020 @ 21:07:31
  Author: heftig
Revision: 391993

archrelease: copy trunk to testing-x86_64

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

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

Copied: wireguard-lts/repos/testing-x86_64/PKGBUILD (from rev 391991, 
wireguard-lts/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-07-16 21:07:31 UTC (rev 391993)
@@ -0,0 +1,35 @@
+# Maintainer: Christian Hesse 
+
+pkgname=wireguard-lts
+pkgver=1.0.20200712
+pkgrel=2
+pkgdesc='Wireguard module for LTS Kernel'
+url='https://www.wireguard.com/'
+arch=('x86_64')
+license=('GPL')
+makedepends=('linux-lts-headers' "wireguard-dkms=$pkgver")
+conflicts=('wireguard-dkms')
+provides=('WIREGUARD-MODULE')
+
+build() {
+_kernver="$(

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

2020-07-16 Thread Jan Steffens via arch-commits
Date: Thursday, July 16, 2020 @ 21:07:28
  Author: heftig
Revision: 391991

archrelease: copy trunk to testing-x86_64

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

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

Copied: nvidia-lts/repos/testing-x86_64/PKGBUILD (from rev 391990, 
nvidia-lts/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-07-16 21:07:28 UTC (rev 391991)
@@ -0,0 +1,43 @@
+# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Eric Bélanger 
+
+pkgname=nvidia-lts
+pkgver=450.57
+pkgrel=3
+epoch=1
+pkgdesc="NVIDIA drivers for linux-lts"
+arch=('x86_64')
+url="https://www.nvidia.com/";
+makedepends=('linux-lts-headers' "nvidia-dkms=$pkgver")
+provides=('NVIDIA-MODULE')
+license=('custom')
+options=('!strip')
+
+build() {
+_kernver=$(

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

2020-07-16 Thread Jan Steffens via arch-commits
Date: Thursday, July 16, 2020 @ 21:07:29
  Author: heftig
Revision: 391992

archrelease: copy trunk to testing-x86_64

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

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

Copied: nvidia/repos/testing-x86_64/PKGBUILD (from rev 391990, 
nvidia/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-07-16 21:07:29 UTC (rev 391992)
@@ -0,0 +1,40 @@
+# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Felix Yan 
+# Contributor: Thomas Baechler 
+
+pkgname=nvidia
+pkgver=450.57
+pkgrel=3
+pkgdesc="NVIDIA drivers for linux"
+arch=('x86_64')
+url="https://www.nvidia.com/";
+makedepends=('linux-headers' "nvidia-dkms=$pkgver")
+provides=('NVIDIA-MODULE')
+license=('custom')
+options=('!strip')
+
+build() {
+_kernver=$(

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

2020-07-16 Thread Jan Steffens via arch-commits
Date: Thursday, July 16, 2020 @ 21:07:22
  Author: heftig
Revision: 664205

archrelease: copy trunk to community-testing-x86_64

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

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

Copied: r8168-lts/repos/community-testing-x86_64/PKGBUILD (from rev 664201, 
r8168-lts/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-07-16 21:07:22 UTC (rev 664205)
@@ -0,0 +1,35 @@
+# Maintainer: Massimiliano Torromeo 
+
+pkgname=r8168-lts
+pkgver=8.048.03
+pkgrel=10
+pkgdesc="A kernel module for Realtek 8168 network cards for linux-lts"
+url="http://www.realtek.com.tw";
+license=("GPL")
+arch=('x86_64')
+makedepends=('linux-lts-headers')
+source=(https://github.com/mtorromeo/r8168/archive/$pkgver/r8168-$pkgver.tar.gz)
+sha256sums=('0f191c4dc2f2e1aef6789d34820305fae27690d20212f2ac12ded634eb786d8c')
+
+build() {
+   cd "r8168-$pkgver"
+   # avoid using the Makefile directly -- it doesn't understand
+   # any kernel but the current.
+   make -C /usr/src/linux-lts M="$PWD/src" \
+   EXTRA_CFLAGS="-DCONFIG_R8168_NAPI -DCONFIG_R8168_VLAN" \
+   modules
+}
+
+package() {
+   depends=('glibc' 'linux-lts')
+
+   local 
extradir=/usr/lib/modules/$(

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

2020-07-16 Thread Jan Steffens via arch-commits
Date: Thursday, July 16, 2020 @ 21:07:41
  Author: heftig
Revision: 391996

archrelease: copy trunk to testing-x86_64

Added:
  linux/repos/testing-x86_64/
  linux/repos/testing-x86_64/PKGBUILD
(from rev 391993, linux/trunk/PKGBUILD)
  linux/repos/testing-x86_64/config
(from rev 391994, linux/trunk/config)
  linux/repos/testing-x86_64/sphinx-workaround.patch
(from rev 391994, linux/trunk/sphinx-workaround.patch)

-+
 PKGBUILD|  199 
 config  |10861 ++
 sphinx-workaround.patch |   13 
 3 files changed, 11073 insertions(+)

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


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

2020-07-16 Thread Jan Steffens via arch-commits
Date: Thursday, July 16, 2020 @ 21:07:30
  Author: heftig
Revision: 664209

archrelease: copy trunk to community-testing-x86_64

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

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

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

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

2020-07-16 Thread Jan Steffens via arch-commits
Date: Thursday, July 16, 2020 @ 21:07:39
  Author: heftig
Revision: 391995

archrelease: copy trunk to testing-x86_64

Added:
  linux-zen/repos/testing-x86_64/
  linux-zen/repos/testing-x86_64/PKGBUILD
(from rev 391993, linux-zen/trunk/PKGBUILD)
  linux-zen/repos/testing-x86_64/config
(from rev 391993, linux-zen/trunk/config)
  linux-zen/repos/testing-x86_64/sphinx-workaround.patch
(from rev 391993, linux-zen/trunk/sphinx-workaround.patch)

-+
 PKGBUILD|  199 
 config  |10898 ++
 sphinx-workaround.patch |   13 
 3 files changed, 0 insertions(+)

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


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

2020-07-16 Thread Jan Steffens via arch-commits
Date: Thursday, July 16, 2020 @ 21:07:37
  Author: heftig
Revision: 391994

archrelease: copy trunk to testing-x86_64

Added:
  linux-lts/repos/testing-x86_64/
  
linux-lts/repos/testing-x86_64/0001-ZEN-Add-sysctl-and-CONFIG-to-disallow-unprivileged-C.patch
(from rev 391993, 
linux-lts/trunk/0001-ZEN-Add-sysctl-and-CONFIG-to-disallow-unprivileged-C.patch)
  
linux-lts/repos/testing-x86_64/0002-virt-vbox-Add-support-for-the-new-VBG_IOCTL_ACQUIRE_.patch
(from rev 391993, 
linux-lts/trunk/0002-virt-vbox-Add-support-for-the-new-VBG_IOCTL_ACQUIRE_.patch)
  linux-lts/repos/testing-x86_64/PKGBUILD
(from rev 391993, linux-lts/trunk/PKGBUILD)
  linux-lts/repos/testing-x86_64/config
(from rev 391993, linux-lts/trunk/config)
  linux-lts/repos/testing-x86_64/sphinx-workaround.patch
(from rev 391993, linux-lts/trunk/sphinx-workaround.patch)

-+
 0001-ZEN-Add-sysctl-and-CONFIG-to-disallow-unprivileged-C.patch |  132 
 0002-virt-vbox-Add-support-for-the-new-VBG_IOCTL_ACQUIRE_.patch |  784 
 PKGBUILD|  197 
 config  |10596 
++
 sphinx-workaround.patch |   15 
 5 files changed, 11724 insertions(+)

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


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

2020-07-16 Thread Jan Steffens via arch-commits
Date: Thursday, July 16, 2020 @ 21:07:22
  Author: heftig
Revision: 664204

archrelease: copy trunk to community-testing-x86_64

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

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

Copied: vhba-module/repos/community-testing-x86_64/60-vhba.rules (from rev 
664198, vhba-module/trunk/60-vhba.rules)
===
--- community-testing-x86_64/60-vhba.rules  (rev 0)
+++ community-testing-x86_64/60-vhba.rules  2020-07-16 21:07:22 UTC (rev 
664204)
@@ -0,0 +1 @@
+ACTION=="add", KERNEL=="vhba_ctl", NAME="vhba_ctl", MODE="0660", OWNER="root", 
GROUP="cdemu", TAG+="uaccess"

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

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

2020-07-16 Thread Jan Steffens via arch-commits
Date: Thursday, July 16, 2020 @ 21:07:31
  Author: heftig
Revision: 664211

archrelease: copy trunk to community-testing-x86_64

Added:
  bbswitch/repos/community-testing-x86_64/
  bbswitch/repos/community-testing-x86_64/0001-proc_ops-struct.patch
(from rev 664207, bbswitch/trunk/0001-proc_ops-struct.patch)
  bbswitch/repos/community-testing-x86_64/0002-kernel-5.7.patch
(from rev 664207, bbswitch/trunk/0002-kernel-5.7.patch)
  bbswitch/repos/community-testing-x86_64/PKGBUILD
(from rev 664207, bbswitch/trunk/PKGBUILD)

+
 0001-proc_ops-struct.patch |   36 ++
 0002-kernel-5.7.patch  |   11 +
 PKGBUILD   |   50 +++
 3 files changed, 97 insertions(+)

Copied: bbswitch/repos/community-testing-x86_64/0001-proc_ops-struct.patch 
(from rev 664207, bbswitch/trunk/0001-proc_ops-struct.patch)
===
--- community-testing-x86_64/0001-proc_ops-struct.patch 
(rev 0)
+++ community-testing-x86_64/0001-proc_ops-struct.patch 2020-07-16 21:07:31 UTC 
(rev 664211)
@@ -0,0 +1,36 @@
+diff --unified --recursive --text bbswitch-0.8.orig/bbswitch.c 
bbswitch-0.8.new/bbswitch.c
+--- bbswitch-0.8.orig/bbswitch.c   2013-12-04 21:22:06.0 -0200
 bbswitch-0.8.new/bbswitch.c2020-04-01 12:02:35.518754892 -0300
+@@ -35,6 +35,7 @@
+ #include 
+ #include 
+ #include 
++#include 
+ 
+ #define BBSWITCH_VERSION "0.8"
+ 
+@@ -375,13 +376,23 @@
+ return 0;
+ }
+ 
++#if LINUX_VERSION_CODE >= KERNEL_VERSION(5, 6, 0)
++static struct proc_ops bbswitch_fops = {
++.proc_open   = bbswitch_proc_open,
++.proc_read   = seq_read,
++.proc_write  = bbswitch_proc_write,
++.proc_lseek = seq_lseek,
++.proc_release= single_release
++};
++#else
+ static struct file_operations bbswitch_fops = {
+ .open   = bbswitch_proc_open,
+ .read   = seq_read,
+ .write  = bbswitch_proc_write,
+ .llseek = seq_lseek,
+ .release= single_release
+-};
++ };
++#endif
+ 
+ static struct notifier_block nb = {
+ .notifier_call = &bbswitch_pm_handler

Copied: bbswitch/repos/community-testing-x86_64/0002-kernel-5.7.patch (from rev 
664207, bbswitch/trunk/0002-kernel-5.7.patch)
===
--- community-testing-x86_64/0002-kernel-5.7.patch  
(rev 0)
+++ community-testing-x86_64/0002-kernel-5.7.patch  2020-07-16 21:07:31 UTC 
(rev 664211)
@@ -0,0 +1,11 @@
+diff -u -r bbswitch-0.8/bbswitch.c bbswitch-0.8-5.7/bbswitch.c
+--- bbswitch-0.8/bbswitch.c2020-06-02 00:34:20.370571802 +
 bbswitch-0.8-5.7/bbswitch.c2020-06-02 00:35:18.161403639 +
+@@ -29,6 +29,7 @@
+ #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
+ 
+ #include 
++#include 
+ #include 
+ #include 
+ #include 

Copied: bbswitch/repos/community-testing-x86_64/PKGBUILD (from rev 664207, 
bbswitch/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-07-16 21:07:31 UTC (rev 664211)
@@ -0,0 +1,50 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: M0Rf30
+# Contributor: Samsagax 
+
+pkgbase=bbswitch
+pkgname=(bbswitch bbswitch-dkms)
+pkgver=0.8
+pkgrel=333
+pkgdesc="Kernel module allowing to switch dedicated graphics card on Optimus 
laptops"
+arch=('x86_64')
+url="http://github.com/Bumblebee-Project/bbswitch";
+license=('GPL')
+makedepends=('linux-headers')
+source=("${pkgbase}-${pkgver}.tar.gz::https://github.com/Bumblebee-Project/bbswitch/archive/v${pkgver}.tar.gz";
+0001-proc_ops-struct.patch 0002-kernel-5.7.patch)
+sha512sums=('11ab163931feb6c0e202d04c4552b848e999fedea9990390c26b28abdb4a69081ccfb5a22d1e390cc274f1c0cfc9adedc719c5fece14738b17aaa93e28865b7c'
+
'993a2895c37ea213c105be668f794af54838d8015d6f561ee6bc7ce65583425515931c83c2487ab97c14454105f233f089e8bdc90ea5ed9576be767335f57ad1'
+
'2eeae463b2f83e7744ff1a769cb6186389e026fc78668e836525dfd16a56abfae01cfb150c9bb46af74ec42e87ebea91636118fe0c773e7eaa7ea671b25d2e04')
+
+prepare() {
+  cd ${pkgbase}-${pkgver}
+  patch -Np1 < ../0001-proc_ops-struct.patch
+  patch -Np1 < ../0002-kernel-5.7.patch
+}
+
+build() {
+  cd ${pkgbase}-${pkgver}
+  make KDIR=/usr/src/linux
+}
+
+package_bbswitch() {
+  depends=('linux')
+
+  cd ${pkgbase}-${pkgver}
+  _extradir="/usr/lib/modules/$(

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

2020-07-16 Thread Jan Steffens via arch-commits
Date: Thursday, July 16, 2020 @ 21:07:29
  Author: heftig
Revision: 664208

archrelease: copy trunk to community-testing-x86_64

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

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

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

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

2020-07-16 Thread Jan Steffens via arch-commits
Date: Thursday, July 16, 2020 @ 21:07:19
  Author: heftig
Revision: 664200

archrelease: copy trunk to community-testing-x86_64

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

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

Copied: acpi_call/repos/community-testing-x86_64/PKGBUILD (from rev 664198, 
acpi_call/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-07-16 21:07:19 UTC (rev 664200)
@@ -0,0 +1,36 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: mortzu 
+# Contributor: fnord0 
+
+pkgname=acpi_call
+pkgver=1.1.0
+pkgrel=332
+pkgdesc='A linux kernel module that enables calls to ACPI methods through 
/proc/acpi/call'
+url='https://github.com/mkottman/acpi_call'
+arch=('x86_64')
+license=('GPL')
+makedepends=('linux-headers' "acpi_call-dkms=$pkgver")
+conflicts=('acpi_call-dkms')
+
+build() {
+  _kernver=$(

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

2020-07-16 Thread Levente Polyak via arch-commits
Date: Thursday, July 16, 2020 @ 21:06:22
  Author: anthraxx
Revision: 391989

upgpkg: java8-openjdk 8.u262-1

Modified:
  java8-openjdk/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-16 21:05:40 UTC (rev 391988)
+++ PKGBUILD2020-07-16 21:06:22 UTC (rev 391989)
@@ -5,8 +5,8 @@
 pkgname=('jre8-openjdk-headless' 'jre8-openjdk' 'jdk8-openjdk' 'openjdk8-src' 
'openjdk8-doc')
 pkgbase=java8-openjdk
 _java_ver=8
-_jdk_update=252
-_jdk_build=09
+_jdk_update=262
+_jdk_build=10
 pkgver=${_java_ver}.u${_jdk_update}
 _repo_ver=jdk${_java_ver}u${_jdk_update}-b${_jdk_build}
 pkgrel=1
@@ -25,14 +25,14 @@
 
langtools-${_repo_ver}.tar.gz::${_url_src}/langtools/archive/${_repo_ver}.tar.gz
 
nashorn-${_repo_ver}.tar.gz::${_url_src}/nashorn/archive/${_repo_ver}.tar.gz)
 
-sha256sums=('a5f8d6ba216c30c93ee49324a077791df3bc0a0ac8b9560e06c37f2e8c68c005'
-'5d75faf658e2a969c75921621a64125f9248686888186c36622dd54b73c14497'
-'d9951b6e0c8396a4442d548ca3e585a4e32391c78d3c772f0f57074ab15103cf'
-'c127845fc1dcc2e5da1e6fdd3f760630cbb3f40c25b5f7330cacae8526a7e27d'
-'62431eb8144ff34e26256fb0e79f72c5ce589bdc7a14c780ca1cc6ff4407f884'
-'128c9a2603461a5fd970bbe6dc99256ed4d996455fe04aa65853833824c8d77d'
-'1900dd43ecd44fad6a766049c68b443063be0e47088b84a30e6056deb775ee27'
-'7d7697216420e16343f50849ef2f05b540f4087243445889353d2bef8aec8fe7')
+sha256sums=('0561cef4ceed6450fd0e3c2cdf743c3cd89ee067507647ea32a1c2ccc294cbe6'
+'6dcf3a2fb2a6ee6ffe9262f12a890764730d02eeccf8701a18a7bde9012c225f'
+'a14e9f6cd5db33635bd73ebf717251ab48efff29a47537fec3c6c54190b7d753'
+'a5f92765f66c77adf358f81c5c116c4df099f3c19070e42068b77aea0fa34b1a'
+'32d0ad87d2a5cd03b3699ecfe43ed08085fb287edfa84424c7a3a951d7fd222a'
+'d5a7b4dc51dc3bd656bfce0c60471dd1bc662e46d159353d2091becddc5ac72f'
+'edf7d08b6abc3be55ec07f43f144edd54f85bf3d7e031ac4f78e818e009c582b'
+'2d8199f04ab3d0d44253d855006dd80db99c043f43a5f881d03283d4440c9c1f')
 
 case "${CARCH}" in
   'x86_64') _JARCH=amd64 ; _DOC_ARCH=x86_64 ;;


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

2020-07-16 Thread Jan Steffens via arch-commits
Date: Thursday, July 16, 2020 @ 21:07:26
  Author: heftig
Revision: 664207

archrelease: copy trunk to community-testing-x86_64

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

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

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

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

2020-07-16 Thread Jan Steffens via arch-commits
Date: Thursday, July 16, 2020 @ 21:07:20
  Author: heftig
Revision: 664201

archrelease: copy trunk to community-testing-x86_64

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

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

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

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

2020-07-16 Thread Levente Polyak via arch-commits
Date: Thursday, July 16, 2020 @ 21:06:29
  Author: anthraxx
Revision: 391990

archrelease: copy trunk to extra-x86_64

Added:
  java8-openjdk/repos/extra-x86_64/PKGBUILD
(from rev 391989, java8-openjdk/trunk/PKGBUILD)
  java8-openjdk/repos/extra-x86_64/install_jdk8-openjdk.sh
(from rev 391989, java8-openjdk/trunk/install_jdk8-openjdk.sh)
  java8-openjdk/repos/extra-x86_64/install_jre8-openjdk-headless.sh
(from rev 391989, java8-openjdk/trunk/install_jre8-openjdk-headless.sh)
  java8-openjdk/repos/extra-x86_64/install_jre8-openjdk.sh
(from rev 391989, java8-openjdk/trunk/install_jre8-openjdk.sh)
Deleted:
  java8-openjdk/repos/extra-x86_64/PKGBUILD
  java8-openjdk/repos/extra-x86_64/install_jdk8-openjdk.sh
  java8-openjdk/repos/extra-x86_64/install_jre8-openjdk-headless.sh
  java8-openjdk/repos/extra-x86_64/install_jre8-openjdk.sh

--+
 PKGBUILD |  550 ++---
 install_jdk8-openjdk.sh  |  100 +++---
 install_jre8-openjdk-headless.sh |   96 +++---
 install_jre8-openjdk.sh  |   84 ++---
 4 files changed, 415 insertions(+), 415 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-16 21:06:22 UTC (rev 391989)
+++ PKGBUILD2020-07-16 21:06:29 UTC (rev 391990)
@@ -1,275 +0,0 @@
-# Maintainer: Levente Polyak 
-# Maintainer: Guillaume ALAUX 
-# Contributor: Boyan Ding 
-
-pkgname=('jre8-openjdk-headless' 'jre8-openjdk' 'jdk8-openjdk' 'openjdk8-src' 
'openjdk8-doc')
-pkgbase=java8-openjdk
-_java_ver=8
-_jdk_update=252
-_jdk_build=09
-pkgver=${_java_ver}.u${_jdk_update}
-_repo_ver=jdk${_java_ver}u${_jdk_update}-b${_jdk_build}
-pkgrel=1
-arch=('x86_64')
-url='https://openjdk.java.net/'
-license=('custom')
-makedepends=('java-environment=8' 'ccache' 'cpio' 'unzip' 'zip'
- 'libxrender' 'libxtst' 'fontconfig' 'libcups' 'alsa-lib')
-_url_src=https://hg.openjdk.java.net/jdk8u/jdk8u
-source=(jdk8u-${_repo_ver}.tar.gz::${_url_src}/archive/${_repo_ver}.tar.gz
-
corba-${_repo_ver}.tar.gz::${_url_src}/corba/archive/${_repo_ver}.tar.gz
-
hotspot-${_repo_ver}.tar.gz::${_url_src}/hotspot/archive/${_repo_ver}.tar.gz
-jdk-${_repo_ver}.tar.gz::${_url_src}/jdk/archive/${_repo_ver}.tar.gz
-
jaxws-${_repo_ver}.tar.gz::${_url_src}/jaxws/archive/${_repo_ver}.tar.gz
-jaxp-${_repo_ver}.tar.gz::${_url_src}/jaxp/archive/${_repo_ver}.tar.gz
-
langtools-${_repo_ver}.tar.gz::${_url_src}/langtools/archive/${_repo_ver}.tar.gz
-
nashorn-${_repo_ver}.tar.gz::${_url_src}/nashorn/archive/${_repo_ver}.tar.gz)
-
-sha256sums=('a5f8d6ba216c30c93ee49324a077791df3bc0a0ac8b9560e06c37f2e8c68c005'
-'5d75faf658e2a969c75921621a64125f9248686888186c36622dd54b73c14497'
-'d9951b6e0c8396a4442d548ca3e585a4e32391c78d3c772f0f57074ab15103cf'
-'c127845fc1dcc2e5da1e6fdd3f760630cbb3f40c25b5f7330cacae8526a7e27d'
-'62431eb8144ff34e26256fb0e79f72c5ce589bdc7a14c780ca1cc6ff4407f884'
-'128c9a2603461a5fd970bbe6dc99256ed4d996455fe04aa65853833824c8d77d'
-'1900dd43ecd44fad6a766049c68b443063be0e47088b84a30e6056deb775ee27'
-'7d7697216420e16343f50849ef2f05b540f4087243445889353d2bef8aec8fe7')
-
-case "${CARCH}" in
-  'x86_64') _JARCH=amd64 ; _DOC_ARCH=x86_64 ;;
-  'i686'  ) _JARCH=i386  ; _DOC_ARCH=x86;;
-esac
-
-_jdkname=openjdk8
-_jvmdir=/usr/lib/jvm/java-8-openjdk
-_prefix="jdk8u-${_repo_ver}/image"
-_imgdir="${_prefix}/jvm/openjdk-1.8.0_$(printf '%.2d' ${_jdk_update})"
-_nonheadless=(bin/policytool
-  lib/${_JARCH}/libjsound.so
-  lib/${_JARCH}/libjsoundalsa.so
-  lib/${_JARCH}/libsplashscreen.so)
-
-prepare() {
-  cd jdk8u-${_repo_ver}
-  for subrepo in corba hotspot jdk jaxws jaxp langtools nashorn; do
-ln -s ../${subrepo}-${_repo_ver} ${subrepo}
-  done
-}
-
-build() {
-  cd jdk8u-${_repo_ver}
-
-  unset JAVA_HOME
-  # http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=1346
-  export MAKEFLAGS=${MAKEFLAGS/-j*}
-
-  # Avoid optimization of HotSpot being lowered from O3 to O2
-  export CFLAGS="${CFLAGS//-O2/-O3} ${CPPFLAGS} 
-Wno-error=deprecated-declarations -Wno-error=stringop-overflow= 
-Wno-error=return-type -Wno-error=cpp -fno-lifetime-dse 
-fno-delete-null-pointer-checks -fcommon"
-  export CXXFLAGS="${CXXFLAGS} ${CPPFLAGS} -fcommon"
-
-  install -d -m 755 "${srcdir}/${_prefix}/"
-  sh configure \
---prefix="${srcdir}/${_prefix}" \
---with-update-version="${_jdk_update}" \
---with-build-number="b${_jdk_build}" \
---with-milestone="fcs" \
---enable-unlimited-crypto \
---with-zlib=system \
---with-extra-cflags="${CFLAGS}" \
---with-extra-cxxflags="${CXXFLAGS}" \
---with-extra-ldflags="${LDFLAGS}"
-
-  # TODO OpenJDK does not want last version of giflib (add 'giflib' as 
dependency once fixed)
-  #--with-giflib=system \
-
-  # These help to debug builds: LOG

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

2020-07-16 Thread Jan Steffens via arch-commits
Date: Thursday, July 16, 2020 @ 21:07:21
  Author: heftig
Revision: 664203

archrelease: copy trunk to community-testing-x86_64

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

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

Copied: virtualbox-host-modules-arch/repos/community-testing-x86_64/PKGBUILD 
(from rev 664199, virtualbox-host-modules-arch/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-07-16 21:07:21 UTC (rev 664203)
@@ -0,0 +1,41 @@
+# Maintainer: Sébastien Luttringer
+# Contributor: Ionut Biru 
+
+pkgname='virtualbox-host-modules-arch'
+pkgver=6.1.12
+pkgrel=2
+pkgdesc='Virtualbox host kernel modules for Arch Kernel'
+arch=('x86_64')
+url='https://virtualbox.org/'
+license=('GPL')
+makedepends=('linux-headers'
+ "virtualbox-host-dkms=$pkgver")
+replaces=('virtualbox-modules' 'virtualbox-host-modules')
+conflicts=('virtualbox-modules' 'virtualbox-host-modules'
+   'virtualbox-host-dkms')
+provides=('VIRTUALBOX-HOST-MODULES')
+
+build() {
+  _kernver="$(

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

2020-07-16 Thread Jan Steffens via arch-commits
Date: Thursday, July 16, 2020 @ 21:07:25
  Author: heftig
Revision: 664206

archrelease: copy trunk to community-testing-x86_64

Added:
  ndiswrapper-arch/repos/community-testing-x86_64/
  ndiswrapper-arch/repos/community-testing-x86_64/PKGBUILD
(from rev 664198, ndiswrapper-arch/trunk/PKGBUILD)
  ndiswrapper-arch/repos/community-testing-x86_64/kernel-5.3.patch
(from rev 664199, ndiswrapper-arch/trunk/kernel-5.3.patch)
  ndiswrapper-arch/repos/community-testing-x86_64/kernel-5.4.patch
(from rev 664201, ndiswrapper-arch/trunk/kernel-5.4.patch)
  ndiswrapper-arch/repos/community-testing-x86_64/kernel-5.5.patch
(from rev 664203, ndiswrapper-arch/trunk/kernel-5.5.patch)
  ndiswrapper-arch/repos/community-testing-x86_64/kernel-5.6.patch
(from rev 664205, ndiswrapper-arch/trunk/kernel-5.6.patch)

--+
 PKGBUILD |   45 
 kernel-5.3.patch |   69 +++
 kernel-5.4.patch |   22 +
 kernel-5.5.patch |   72 
 kernel-5.6.patch |   85 +
 5 files changed, 293 insertions(+)

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

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

2020-07-16 Thread Jan Steffens via arch-commits
Date: Thursday, July 16, 2020 @ 21:07:19
  Author: heftig
Revision: 664199

archrelease: copy trunk to community-testing-x86_64

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

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

Copied: r8168/repos/community-testing-x86_64/PKGBUILD (from rev 664198, 
r8168/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-07-16 21:07:19 UTC (rev 664199)
@@ -0,0 +1,38 @@
+# Maintainer: Massimiliano Torromeo 
+# Contributor: Bob Fanger < bfanger(at)gmail >
+# Contributor: Filip , Det < nimetonmaili(at)gmail >
+
+pkgname=r8168
+pkgver=8.048.03
+pkgrel=11
+pkgdesc="A kernel module for Realtek 8168 network cards"
+url="http://www.realtek.com.tw";
+license=("GPL")
+arch=('x86_64')
+makedepends=('linux-headers')
+source=(https://github.com/mtorromeo/r8168/archive/$pkgver/$pkgname-$pkgver.tar.gz)
+sha256sums=('0f191c4dc2f2e1aef6789d34820305fae27690d20212f2ac12ded634eb786d8c')
+
+build() {
+   cd "$pkgname-$pkgver"
+   # avoid using the Makefile directly -- it doesn't understand
+   # any kernel but the current.
+   make -C /usr/src/linux M="$PWD/src" \
+   EXTRA_CFLAGS="-DCONFIG_R8168_NAPI -DCONFIG_R8168_VLAN" \
+   modules
+}
+
+package() {
+   depends=('glibc' 'linux')
+
+   local extradir=/usr/lib/modules/$(

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

2020-07-16 Thread Jan Steffens via arch-commits
Date: Thursday, July 16, 2020 @ 21:07:20
  Author: heftig
Revision: 664202

archrelease: copy trunk to community-testing-x86_64

Added:
  netfilter-fullconenat/repos/community-testing-x86_64/
  netfilter-fullconenat/repos/community-testing-x86_64/Kbuild
(from rev 664198, netfilter-fullconenat/trunk/Kbuild)
  netfilter-fullconenat/repos/community-testing-x86_64/PKGBUILD
(from rev 664198, netfilter-fullconenat/trunk/PKGBUILD)
  
netfilter-fullconenat/repos/community-testing-x86_64/netfilter-fullconenat.conf
(from rev 664198, netfilter-fullconenat/trunk/netfilter-fullconenat.conf)

+
 Kbuild |1 +
 PKGBUILD   |   41 +
 netfilter-fullconenat.conf |1 +
 3 files changed, 43 insertions(+)

Copied: netfilter-fullconenat/repos/community-testing-x86_64/Kbuild (from rev 
664198, netfilter-fullconenat/trunk/Kbuild)
===
--- community-testing-x86_64/Kbuild (rev 0)
+++ community-testing-x86_64/Kbuild 2020-07-16 21:07:20 UTC (rev 664202)
@@ -0,0 +1 @@
+obj-m = xt_FULLCONENAT.o

Copied: netfilter-fullconenat/repos/community-testing-x86_64/PKGBUILD (from rev 
664198, netfilter-fullconenat/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-07-16 21:07:20 UTC (rev 664202)
@@ -0,0 +1,41 @@
+# Maintainer: Felix Yan 
+# Contributor: Edward Pacman 
+
+pkgname=netfilter-fullconenat
+pkgver=r73.0cf3b48
+pkgrel=32
+pkgdesc="A kernel module that turns MASQUERADE into full cone SNAT"
+arch=('x86_64')
+url="https://github.com/Chion82/netfilter-full-cone-nat";
+license=('GPL2')
+depends=("linux")
+makedepends=('linux-headers' 'git')
+source=("netfilter-fullconenat.conf" Kbuild
+
"${pkgname}::git+https://github.com/Chion82/netfilter-full-cone-nat.git";)
+sha256sums=('a17dfdf1fd046219daeacc60065e3a81c80c2eb2cfdf6d8068278c509577f571'
+'7ff12ad066a68c65f23fc7e01654ca459ce3458172e3dce30f42553fa44dd7c2'
+'SKIP')
+
+pkgver() {
+  cd "$srcdir/${pkgname}"
+  ( set -o pipefail
+git describe --long 2>/dev/null | sed 's/\([^-]*-g\)/r\1/;s/-/./g' ||
+printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short 
HEAD)"
+  )
+}
+
+build() {
+  cd $pkgname
+  ln -s ../Kbuild
+  make -C /usr/src/linux M=$PWD modules
+}
+
+package() {
+  # Install modules-load.conf
+  install -Dm644 netfilter-fullconenat.conf 
"${pkgdir}/usr/lib/modules-load.d/netfilter-fullconenat.conf"
+
+  install -Dt 
"${pkgdir}/usr/lib/modules/$(

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

2020-07-16 Thread Jan Steffens via arch-commits
Date: Thursday, July 16, 2020 @ 21:05:37
  Author: heftig
Revision: 664195

20200106-56: linux 5.7.9.arch1-1

Modified:
  vhba-module/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-16 21:05:36 UTC (rev 664194)
+++ PKGBUILD2020-07-16 21:05:37 UTC (rev 664195)
@@ -5,7 +5,7 @@
 pkgbase=vhba-module
 pkgname=(vhba-module vhba-module-dkms)
 pkgver=20200106
-pkgrel=55
+pkgrel=56
 pkgdesc="Kernel module that emulates SCSI devices"
 url="https://cdemu.sourceforge.io/";
 arch=(x86_64)


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

2020-07-16 Thread Jan Steffens via arch-commits
Date: Thursday, July 16, 2020 @ 21:05:40
  Author: heftig
Revision: 391988

450.57-3: linux 5.7.9.arch1-1

Modified:
  nvidia/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-16 21:05:18 UTC (rev 391987)
+++ PKGBUILD2020-07-16 21:05:40 UTC (rev 391988)
@@ -4,7 +4,7 @@
 
 pkgname=nvidia
 pkgver=450.57
-pkgrel=2
+pkgrel=3
 pkgdesc="NVIDIA drivers for linux"
 arch=('x86_64')
 url="https://www.nvidia.com/";
@@ -37,3 +37,4 @@
 /usr/share/licenses/nvidia-dkms/LICENSE
 }
 
+


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

2020-07-16 Thread Jan Steffens via arch-commits
Date: Thursday, July 16, 2020 @ 21:05:43
  Author: heftig
Revision: 664198

5.0.1-93: linux 5.7.9.arch1-1

Modified:
  deepin-anything-arch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-16 21:05:41 UTC (rev 664197)
+++ PKGBUILD2020-07-16 21:05:43 UTC (rev 664198)
@@ -2,7 +2,7 @@
 
 pkgname=deepin-anything-arch
 pkgver=5.0.1
-pkgrel=92
+pkgrel=93
 pkgdesc="Deepin Anything file search tool, kernel module for Arch kernel"
 arch=('x86_64')
 url="https://github.com/linuxdeepin/deepin-anything";


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

2020-07-16 Thread Jan Steffens via arch-commits
Date: Thursday, July 16, 2020 @ 21:05:38
  Author: heftig
Revision: 664196

1.1.0-332: linux 5.7.9.arch1-1

Modified:
  acpi_call/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-16 21:05:37 UTC (rev 664195)
+++ PKGBUILD2020-07-16 21:05:38 UTC (rev 664196)
@@ -4,7 +4,7 @@
 
 pkgname=acpi_call
 pkgver=1.1.0
-pkgrel=331
+pkgrel=332
 pkgdesc='A linux kernel module that enables calls to ACPI methods through 
/proc/acpi/call'
 url='https://github.com/mkottman/acpi_call'
 arch=('x86_64')
@@ -33,3 +33,4 @@
 # vim:set ts=2 sw=2 et:
 
 
+


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

2020-07-16 Thread Jan Steffens via arch-commits
Date: Thursday, July 16, 2020 @ 21:05:34
  Author: heftig
Revision: 664193

0.8-333: linux 5.7.9.arch1-1

Modified:
  bbswitch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-16 21:05:32 UTC (rev 664192)
+++ PKGBUILD2020-07-16 21:05:34 UTC (rev 664193)
@@ -5,7 +5,7 @@
 pkgbase=bbswitch
 pkgname=(bbswitch bbswitch-dkms)
 pkgver=0.8
-pkgrel=332
+pkgrel=333
 pkgdesc="Kernel module allowing to switch dedicated graphics card on Optimus 
laptops"
 arch=('x86_64')
 url="http://github.com/Bumblebee-Project/bbswitch";


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

2020-07-16 Thread Jan Steffens via arch-commits
Date: Thursday, July 16, 2020 @ 21:05:31
  Author: heftig
Revision: 664191

0.43-220: linux 5.7.9.arch1-1

Modified:
  tp_smapi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-16 21:05:29 UTC (rev 664190)
+++ PKGBUILD2020-07-16 21:05:31 UTC (rev 664191)
@@ -9,7 +9,7 @@
 
 pkgname=tp_smapi
 pkgver=0.43
-pkgrel=219
+pkgrel=220
 pkgdesc="Modules for ThinkPad's SMAPI functionality"
 arch=('x86_64')
 url='https://github.com/evgeni/tp_smapi'


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

2020-07-16 Thread Jan Steffens via arch-commits
Date: Thursday, July 16, 2020 @ 21:05:36
  Author: heftig
Revision: 664194

8.048.03-11: linux 5.7.9.arch1-1

Modified:
  r8168/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-16 21:05:34 UTC (rev 664193)
+++ PKGBUILD2020-07-16 21:05:36 UTC (rev 664194)
@@ -4,7 +4,7 @@
 
 pkgname=r8168
 pkgver=8.048.03
-pkgrel=10
+pkgrel=11
 pkgdesc="A kernel module for Realtek 8168 network cards"
 url="http://www.realtek.com.tw";
 license=("GPL")


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

2020-07-16 Thread Jan Steffens via arch-commits
Date: Thursday, July 16, 2020 @ 21:05:27
  Author: heftig
Revision: 664189

r73.0cf3b48-32: linux 5.7.9.arch1-1

Modified:
  netfilter-fullconenat/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-16 21:05:17 UTC (rev 664188)
+++ PKGBUILD2020-07-16 21:05:27 UTC (rev 664189)
@@ -3,7 +3,7 @@
 
 pkgname=netfilter-fullconenat
 pkgver=r73.0cf3b48
-pkgrel=31
+pkgrel=32
 pkgdesc="A kernel module that turns MASQUERADE into full cone SNAT"
 arch=('x86_64')
 url="https://github.com/Chion82/netfilter-full-cone-nat";


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

2020-07-16 Thread Jan Steffens via arch-commits
Date: Thursday, July 16, 2020 @ 21:05:32
  Author: heftig
Revision: 664192

6.30.223.271-213: linux 5.7.9.arch1-1

Modified:
  broadcom-wl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-16 21:05:31 UTC (rev 664191)
+++ PKGBUILD2020-07-16 21:05:32 UTC (rev 664192)
@@ -5,7 +5,7 @@
 #_kernelname=-custom  # Build against kernel with a different name
 pkgname=${_module}${_kernelname}
 pkgver=6.30.223.271
-pkgrel=212
+pkgrel=213
 pkgdesc='Broadcom 802.11 Linux STA wireless driver'
 arch=('x86_64')
 
url='https://www.broadcom.com/support/download-search/?pf=Wireless+LAN+Infrastructure'
@@ -41,3 +41,4 @@
 }
 
 
+


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

2020-07-16 Thread Jan Steffens via arch-commits
Date: Thursday, July 16, 2020 @ 21:05:18
  Author: heftig
Revision: 391987

1.0.20200712-2: linux-lts 5.4.52-1

Modified:
  wireguard-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-16 21:05:12 UTC (rev 391986)
+++ PKGBUILD2020-07-16 21:05:18 UTC (rev 391987)
@@ -2,7 +2,7 @@
 
 pkgname=wireguard-lts
 pkgver=1.0.20200712
-pkgrel=1
+pkgrel=2
 pkgdesc='Wireguard module for LTS Kernel'
 url='https://www.wireguard.com/'
 arch=('x86_64')
@@ -32,3 +32,4 @@
 # vim:set sw=2 et:
 
 
+


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

2020-07-16 Thread Jan Steffens via arch-commits
Date: Thursday, July 16, 2020 @ 21:05:41
  Author: heftig
Revision: 664197

1.62-72: linux 5.7.9.arch1-1

Modified:
  ndiswrapper-arch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-16 21:05:38 UTC (rev 664196)
+++ PKGBUILD2020-07-16 21:05:41 UTC (rev 664197)
@@ -3,7 +3,7 @@
 
 pkgname=ndiswrapper-arch
 pkgver=1.62
-pkgrel=71
+pkgrel=72
 pkgdesc="Module for NDIS (Windows Network Drivers) drivers supplied by 
vendors, kernel module for Arch kernel"
 arch=('x86_64')
 url="https://sourceforge.net/projects/ndiswrapper/";


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

2020-07-16 Thread Jan Steffens via arch-commits
Date: Thursday, July 16, 2020 @ 21:05:12
  Author: heftig
Revision: 391986

450.57-3: linux-lts 5.4.52-1

Modified:
  nvidia-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-16 21:03:51 UTC (rev 391985)
+++ PKGBUILD2020-07-16 21:05:12 UTC (rev 391986)
@@ -3,7 +3,7 @@
 
 pkgname=nvidia-lts
 pkgver=450.57
-pkgrel=2
+pkgrel=3
 epoch=1
 pkgdesc="NVIDIA drivers for linux-lts"
 arch=('x86_64')
@@ -40,3 +40,4 @@
 
 
 
+


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

2020-07-16 Thread Jan Steffens via arch-commits
Date: Thursday, July 16, 2020 @ 21:05:14
  Author: heftig
Revision: 664186

0.43-78: linux-lts 5.4.52-1

Modified:
  tp_smapi-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-16 20:57:13 UTC (rev 664185)
+++ PKGBUILD2020-07-16 21:05:14 UTC (rev 664186)
@@ -9,7 +9,7 @@
 
 pkgname=tp_smapi-lts
 pkgver=0.43
-pkgrel=77
+pkgrel=78
 pkgdesc="Modules for ThinkPad's SMAPI functionality"
 arch=('x86_64')
 url='https://github.com/evgeni/tp_smapi'


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

2020-07-16 Thread Jan Steffens via arch-commits
Date: Thursday, July 16, 2020 @ 21:05:17
  Author: heftig
Revision: 664188

8.048.03-10: linux-lts 5.4.52-1

Modified:
  r8168-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-16 21:05:15 UTC (rev 664187)
+++ PKGBUILD2020-07-16 21:05:17 UTC (rev 664188)
@@ -2,7 +2,7 @@
 
 pkgname=r8168-lts
 pkgver=8.048.03
-pkgrel=9
+pkgrel=10
 pkgdesc="A kernel module for Realtek 8168 network cards for linux-lts"
 url="http://www.realtek.com.tw";
 license=("GPL")


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

2020-07-16 Thread Jan Steffens via arch-commits
Date: Thursday, July 16, 2020 @ 21:05:15
  Author: heftig
Revision: 664187

1.1.0-159: linux-lts 5.4.52-1

Modified:
  acpi_call-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-16 21:05:14 UTC (rev 664186)
+++ PKGBUILD2020-07-16 21:05:15 UTC (rev 664187)
@@ -4,7 +4,7 @@
 
 pkgname=acpi_call-lts
 pkgver=1.1.0
-pkgrel=158
+pkgrel=159
 pkgdesc='A linux kernel module that enables calls to ACPI methods through 
/proc/acpi/call'
 url='https://github.com/mkottman/acpi_call'
 arch=('x86_64')


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

2020-07-16 Thread Jan Steffens via arch-commits
Date: Thursday, July 16, 2020 @ 21:05:29
  Author: heftig
Revision: 664190

6.1.12-2: linux 5.7.9.arch1-1

Modified:
  virtualbox-host-modules-arch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-16 21:05:27 UTC (rev 664189)
+++ PKGBUILD2020-07-16 21:05:29 UTC (rev 664190)
@@ -3,7 +3,7 @@
 
 pkgname='virtualbox-host-modules-arch'
 pkgver=6.1.12
-pkgrel=1
+pkgrel=2
 pkgdesc='Virtualbox host kernel modules for Arch Kernel'
 arch=('x86_64')
 url='https://virtualbox.org/'
@@ -38,3 +38,4 @@
 }
 
 
+


[arch-commits] Commit in java11-openjdk/repos/extra-x86_64 (14 files)

2020-07-16 Thread Levente Polyak via arch-commits
Date: Thursday, July 16, 2020 @ 21:03:51
  Author: anthraxx
Revision: 391985

archrelease: copy trunk to extra-x86_64

Added:
  java11-openjdk/repos/extra-x86_64/PKGBUILD
(from rev 391984, java11-openjdk/trunk/PKGBUILD)
  java11-openjdk/repos/extra-x86_64/freedesktop-java.desktop
(from rev 391984, java11-openjdk/trunk/freedesktop-java.desktop)
  java11-openjdk/repos/extra-x86_64/freedesktop-jconsole.desktop
(from rev 391984, java11-openjdk/trunk/freedesktop-jconsole.desktop)
  java11-openjdk/repos/extra-x86_64/freedesktop-jshell.desktop
(from rev 391984, java11-openjdk/trunk/freedesktop-jshell.desktop)
  java11-openjdk/repos/extra-x86_64/install_jdk-openjdk.sh
(from rev 391984, java11-openjdk/trunk/install_jdk-openjdk.sh)
  java11-openjdk/repos/extra-x86_64/install_jre-openjdk-headless.sh
(from rev 391984, java11-openjdk/trunk/install_jre-openjdk-headless.sh)
  java11-openjdk/repos/extra-x86_64/install_jre-openjdk.sh
(from rev 391984, java11-openjdk/trunk/install_jre-openjdk.sh)
Deleted:
  java11-openjdk/repos/extra-x86_64/PKGBUILD
  java11-openjdk/repos/extra-x86_64/freedesktop-java.desktop
  java11-openjdk/repos/extra-x86_64/freedesktop-jconsole.desktop
  java11-openjdk/repos/extra-x86_64/freedesktop-jshell.desktop
  java11-openjdk/repos/extra-x86_64/install_jdk-openjdk.sh
  java11-openjdk/repos/extra-x86_64/install_jre-openjdk-headless.sh
  java11-openjdk/repos/extra-x86_64/install_jre-openjdk.sh

-+
 PKGBUILD|  552 +++---
 freedesktop-java.desktop|   24 -
 freedesktop-jconsole.desktop|   22 -
 freedesktop-jshell.desktop  |   18 -
 install_jdk-openjdk.sh  |  100 +++---
 install_jre-openjdk-headless.sh |   96 +++---
 install_jre-openjdk.sh  |   70 ++--
 7 files changed, 441 insertions(+), 441 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-16 21:03:43 UTC (rev 391984)
+++ PKGBUILD2020-07-16 21:03:51 UTC (rev 391985)
@@ -1,276 +0,0 @@
-# Maintainer: Levente Polyak 
-# Maintainer: Guillaume ALAUX 
-
-# TODO add test, see about packaging jtreg and using it here
-# TODO see about building with OpenJDK10
-# TODO add javazi
-# TODO when IcedTea provides it, package icedtea-web and add it as optdepends
-# TODO package OpenJFX for OpenJDK10 and add it as optdepends
-
-## EXPLORATIONS
-# TODO extract a jmods package from jdk10-openjdk?
-# TODO extract a jdk-headless package?
-
-pkgbase=java11-openjdk
-pkgname=('jre11-openjdk-headless' 'jre11-openjdk' 'jdk11-openjdk' 
'openjdk11-src' 'openjdk11-doc')
-_majorver=11
-_minorver=0
-_securityver=7
-_updatever=10
-pkgrel=1
-pkgver=${_majorver}.${_minorver}.${_securityver}.u${_updatever}
-_hg_tag=jdk-${_majorver}.${_minorver}.${_securityver}+${_updatever}
-arch=('x86_64')
-url='https://openjdk.java.net/'
-license=('custom')
-makedepends=('java-environment>=10' 'java-environment<12' 'cpio' 'unzip' 'zip' 
'libelf' 'libcups' 'libx11'
- 'libxrender' 'libxtst' 'libxt' 'libxext' 'libxrandr' 'alsa-lib' 
'pandoc'
- 'graphviz' 'freetype2' 'libjpeg-turbo' 'giflib' 'libpng' 'lcms2'
- 'libnet' 'bash')
-source=(https://hg.openjdk.java.net/jdk-updates/jdk${_majorver}u/archive/${_hg_tag}.tar.gz
-freedesktop-java.desktop
-freedesktop-jconsole.desktop
-freedesktop-jshell.desktop)
-sha256sums=('d105471d06568e4659c21518d1bf42b8ebab5c70539e9777d570549a98ed2a8a'
-'575587ad58dfa9908f046d307b9afc7b0b2eb20a1eb454f8fdbbd539ea7b3d01'
-'2f57b7c7dd671eabe9fa10c4f1283573e99d7f7c36eccd82c95b705979a2e8cb'
-'f271618a8c2a892b554caf26857af41efdf0d8bcb95d57ce7ba535d6979e96da')
-
-case "${CARCH}" in
-  x86_64) _JARCH='x86_64';;
-  i686)   _JARCH='x86';;
-esac
-
-_jvmdir=/usr/lib/jvm/java-${_majorver}-openjdk
-_jdkdir=jdk${_majorver}u-${_hg_tag}
-_imgdir=${_jdkdir}/build/linux-${_JARCH}-normal-server-release/images
-
-_nonheadless=(lib/libawt_xawt.{so,debuginfo}
-  lib/libjawt.{so,debuginfo}
-  lib/libjsound.{so,debuginfo}
-  lib/libsplashscreen.{so,debuginfo})
-
-build() {
-  cd ${_jdkdir}
-
-  NUM_PROC_OPT=''
-  MAKEFLAG_J=$(echo ${MAKEFLAGS} | sed -En 's/.*-j([0-9]+).*/\1/p')
-  if [ -n "${MAKEFLAG_J}" ]; then
-# 
http://hg.openjdk.java.net/jdk10/jdk10/file/85e6cb013b98/make/InitSupport.gmk#l105
-echo "Removing '-j${MAKEFLAG_J}' from MAKEFLAGS to prevent build fail. 
Passing it directly to ./configure."
-export MAKEFLAGS=${MAKEFLAGS/-j${MAKEFLAG_J}/}
-NUM_PROC_OPT="--with-num-cores=${MAKEFLAG_J}"
-  fi
-
-  # Avoid optimization of HotSpot being lowered from O3 to O2
-  local _CFLAGS="${CFLAGS//-O2/-O3} ${CPPFLAGS} -fcommon"
-  local _CXXFLAGS="${CXXFLAGS//-O2/-O3} ${CPPFLAGS} -fcommon"
-  local _LDFLAGS=${LDFLAGS}
-  if [[ ${CARCH} = i686 ]]; then
-echo "Removing '-fno-plt' from CFLAGS and CXXFLAGS to prevent build fail 
with t

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

2020-07-16 Thread Levente Polyak via arch-commits
Date: Thursday, July 16, 2020 @ 21:03:43
  Author: anthraxx
Revision: 391984

upgpkg: java11-openjdk 11.0.8.u10-1

Modified:
  java11-openjdk/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-16 21:01:36 UTC (rev 391983)
+++ PKGBUILD2020-07-16 21:03:43 UTC (rev 391984)
@@ -15,7 +15,7 @@
 pkgname=('jre11-openjdk-headless' 'jre11-openjdk' 'jdk11-openjdk' 
'openjdk11-src' 'openjdk11-doc')
 _majorver=11
 _minorver=0
-_securityver=7
+_securityver=8
 _updatever=10
 pkgrel=1
 pkgver=${_majorver}.${_minorver}.${_securityver}.u${_updatever}
@@ -31,7 +31,7 @@
 freedesktop-java.desktop
 freedesktop-jconsole.desktop
 freedesktop-jshell.desktop)
-sha256sums=('d105471d06568e4659c21518d1bf42b8ebab5c70539e9777d570549a98ed2a8a'
+sha256sums=('7fc124b5e20428cd5df42d78b001abc663558b0881e66a5def0892b98265b6e9'
 '575587ad58dfa9908f046d307b9afc7b0b2eb20a1eb454f8fdbbd539ea7b3d01'
 '2f57b7c7dd671eabe9fa10c4f1283573e99d7f7c36eccd82c95b705979a2e8cb'
 'f271618a8c2a892b554caf26857af41efdf0d8bcb95d57ce7ba535d6979e96da')


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

2020-07-16 Thread Levente Polyak via arch-commits
Date: Thursday, July 16, 2020 @ 21:01:28
  Author: anthraxx
Revision: 391982

upgpkg: java-openjdk 14.0.2.u12-1

Modified:
  java-openjdk/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-16 20:52:31 UTC (rev 391981)
+++ PKGBUILD2020-07-16 21:01:28 UTC (rev 391982)
@@ -7,8 +7,8 @@
 pkgname=('jre-openjdk-headless' 'jre-openjdk' 'jdk-openjdk' 'openjdk-src' 
'openjdk-doc')
 _majorver=14
 _minorver=0
-_securityver=1
-_updatever=7
+_securityver=2
+_updatever=12
 pkgrel=1
 pkgver=${_majorver}.${_minorver}.${_securityver}.u${_updatever}
 _hg_tag=jdk-${_majorver}.${_minorver}.${_securityver}+${_updatever}
@@ -22,13 +22,11 @@
 
source=(https://hg.openjdk.java.net/jdk-updates/jdk${_majorver}u/archive/${_hg_tag}.tar.gz
 freedesktop-java.desktop
 freedesktop-jconsole.desktop
-freedesktop-jshell.desktop
-
java-openjdk-make-4.3.patch::https://hg.openjdk.java.net/jdk/jdk/raw-rev/0743e1d49930)
-sha256sums=('301203cbda9c40a5fc496b3299806995ac4833b39c6d2e8470fd85a35461afd4'
+freedesktop-jshell.desktop)
+sha256sums=('dfb3607f1b675458f29a185a40f1dbbf896439cf33b3aa0f3d89df297e604935'
 '165273caba29f70496e697c9ed5bf61a4322ab324888f78559820f0032df48c9'
 '1e3decf29075b6f62238a5b2ac537679f00c185ce36d83db254004237cfe7084'
-'676c74c8aed53d6cd4c4755ece2b2e3ab1a72b1bd2ef53983dcad0229d91af3c'
-'c92e82183318afe9fdb621c238becba3e03cdc83ced714e871855fa1dc252f66')
+'676c74c8aed53d6cd4c4755ece2b2e3ab1a72b1bd2ef53983dcad0229d91af3c')
 
 case "${CARCH}" in
   x86_64) _JARCH='x86_64';;
@@ -44,12 +42,6 @@
   lib/libjsound.{so,debuginfo}
   lib/libsplashscreen.{so,debuginfo})
 
-prepare() {
-  cd ${_jdkdir}
-  # https://bugs.openjdk.java.net/browse/JDK-8237879
-  patch -Np1 < "${srcdir}/java-openjdk-make-4.3.patch"
-}
-
 build() {
   cd ${_jdkdir}
 


[arch-commits] Commit in java-openjdk/repos/extra-x86_64 (14 files)

2020-07-16 Thread Levente Polyak via arch-commits
Date: Thursday, July 16, 2020 @ 21:01:36
  Author: anthraxx
Revision: 391983

archrelease: copy trunk to extra-x86_64

Added:
  java-openjdk/repos/extra-x86_64/PKGBUILD
(from rev 391982, java-openjdk/trunk/PKGBUILD)
  java-openjdk/repos/extra-x86_64/freedesktop-java.desktop
(from rev 391982, java-openjdk/trunk/freedesktop-java.desktop)
  java-openjdk/repos/extra-x86_64/freedesktop-jconsole.desktop
(from rev 391982, java-openjdk/trunk/freedesktop-jconsole.desktop)
  java-openjdk/repos/extra-x86_64/freedesktop-jshell.desktop
(from rev 391982, java-openjdk/trunk/freedesktop-jshell.desktop)
  java-openjdk/repos/extra-x86_64/install_jdk-openjdk.sh
(from rev 391982, java-openjdk/trunk/install_jdk-openjdk.sh)
  java-openjdk/repos/extra-x86_64/install_jre-openjdk-headless.sh
(from rev 391982, java-openjdk/trunk/install_jre-openjdk-headless.sh)
  java-openjdk/repos/extra-x86_64/install_jre-openjdk.sh
(from rev 391982, java-openjdk/trunk/install_jre-openjdk.sh)
Deleted:
  java-openjdk/repos/extra-x86_64/PKGBUILD
  java-openjdk/repos/extra-x86_64/freedesktop-java.desktop
  java-openjdk/repos/extra-x86_64/freedesktop-jconsole.desktop
  java-openjdk/repos/extra-x86_64/freedesktop-jshell.desktop
  java-openjdk/repos/extra-x86_64/install_jdk-openjdk.sh
  java-openjdk/repos/extra-x86_64/install_jre-openjdk-headless.sh
  java-openjdk/repos/extra-x86_64/install_jre-openjdk.sh

-+
 PKGBUILD|  550 ++
 freedesktop-java.desktop|   24 -
 freedesktop-jconsole.desktop|   22 -
 freedesktop-jshell.desktop  |   18 -
 install_jdk-openjdk.sh  |  100 +++---
 install_jre-openjdk-headless.sh |   96 +++---
 install_jre-openjdk.sh  |   70 ++--
 7 files changed, 436 insertions(+), 444 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-16 21:01:28 UTC (rev 391982)
+++ PKGBUILD2020-07-16 21:01:36 UTC (rev 391983)
@@ -1,279 +0,0 @@
-# Maintainer: Levente Polyak 
-# Maintainer: Guillaume ALAUX 
-
-# TODO add test, see about packaging jtreg and using it here
-
-pkgbase=java-openjdk
-pkgname=('jre-openjdk-headless' 'jre-openjdk' 'jdk-openjdk' 'openjdk-src' 
'openjdk-doc')
-_majorver=14
-_minorver=0
-_securityver=1
-_updatever=7
-pkgrel=1
-pkgver=${_majorver}.${_minorver}.${_securityver}.u${_updatever}
-_hg_tag=jdk-${_majorver}.${_minorver}.${_securityver}+${_updatever}
-arch=('x86_64')
-url='https://openjdk.java.net/'
-license=('custom')
-makedepends=('java-environment>=11' 'cpio' 'unzip' 'zip' 'libelf' 'libcups' 
'libx11'
- 'libxrender' 'libxtst' 'libxt' 'libxext' 'libxrandr' 'alsa-lib' 
'pandoc'
- 'graphviz' 'freetype2' 'libjpeg-turbo' 'giflib' 'libpng' 'lcms2'
- 'libnet' 'bash')
-source=(https://hg.openjdk.java.net/jdk-updates/jdk${_majorver}u/archive/${_hg_tag}.tar.gz
-freedesktop-java.desktop
-freedesktop-jconsole.desktop
-freedesktop-jshell.desktop
-
java-openjdk-make-4.3.patch::https://hg.openjdk.java.net/jdk/jdk/raw-rev/0743e1d49930)
-sha256sums=('301203cbda9c40a5fc496b3299806995ac4833b39c6d2e8470fd85a35461afd4'
-'165273caba29f70496e697c9ed5bf61a4322ab324888f78559820f0032df48c9'
-'1e3decf29075b6f62238a5b2ac537679f00c185ce36d83db254004237cfe7084'
-'676c74c8aed53d6cd4c4755ece2b2e3ab1a72b1bd2ef53983dcad0229d91af3c'
-'c92e82183318afe9fdb621c238becba3e03cdc83ced714e871855fa1dc252f66')
-
-case "${CARCH}" in
-  x86_64) _JARCH='x86_64';;
-  i686)   _JARCH='x86';;
-esac
-
-_jvmdir=/usr/lib/jvm/java-${_majorver}-openjdk
-_jdkdir=jdk${_majorver}u-${_hg_tag}
-_imgdir=${_jdkdir}/build/linux-${_JARCH}-server-release/images
-
-_nonheadless=(lib/libawt_xawt.{so,debuginfo}
-  lib/libjawt.{so,debuginfo}
-  lib/libjsound.{so,debuginfo}
-  lib/libsplashscreen.{so,debuginfo})
-
-prepare() {
-  cd ${_jdkdir}
-  # https://bugs.openjdk.java.net/browse/JDK-8237879
-  patch -Np1 < "${srcdir}/java-openjdk-make-4.3.patch"
-}
-
-build() {
-  cd ${_jdkdir}
-
-  NUM_PROC_OPT=''
-  MAKEFLAG_J=$(echo ${MAKEFLAGS} | sed -En 's/.*-j([0-9]+).*/\1/p')
-  if [ -n "${MAKEFLAG_J}" ]; then
-# 
http://hg.openjdk.java.net/jdk10/jdk10/file/85e6cb013b98/make/InitSupport.gmk#l105
-echo "Removing '-j${MAKEFLAG_J}' from MAKEFLAGS to prevent build fail. 
Passing it directly to ./configure."
-export MAKEFLAGS=${MAKEFLAGS/-j${MAKEFLAG_J}/}
-NUM_PROC_OPT="--with-num-cores=${MAKEFLAG_J}"
-  fi
-
-  # Avoid optimization of HotSpot to be lowered from O3 to O2
-  local _CFLAGS="${CFLAGS//-O2/-O3} ${CPPFLAGS} -fcommon"
-  local _CXXFLAGS="${CXXFLAGS//-O2/-O3} ${CPPFLAGS} -fcommon"
-  local _LDFLAGS=${LDFLAGS}
-  if [[ ${CARCH} = i686 ]]; then
-echo "Removing '-fno-plt' from CFLAGS and CXXFLAGS to prevent build fail 
with this architecture"
-_CFLAGS=${CFLAGS/-fno-plt/}
-_CXXFLAGS=${CXXFLAGS/

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

2020-07-16 Thread Levente Polyak via arch-commits
Date: Thursday, July 16, 2020 @ 20:57:13
  Author: anthraxx
Revision: 664185

archrelease: copy trunk to community-x86_64

Added:
  nim/repos/community-x86_64/PKGBUILD
(from rev 664184, nim/trunk/PKGBUILD)
Deleted:
  nim/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-16 20:57:09 UTC (rev 664184)
+++ PKGBUILD2020-07-16 20:57:13 UTC (rev 664185)
@@ -1,108 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Alexander F Rødseth 
-# Contributor: Dominik Picheta 
-# Contributor: Sven-Hendrik Haase 
-# Contributor: Jesus Alvarez 
-
-pkgname=nim
-_pkgname=Nim
-pkgver=1.2.0
-_csourcesver=0.20.0
-pkgrel=1
-pkgdesc='Imperative, multi-paradigm, compiled programming language'
-url='https://nim-lang.org/'
-arch=('x86_64')
-license=('MIT')
-depends=('bash')
-makedepends=('git')
-optdepends=('nimble: Nim package manager')
-options=('!emptydirs')
-backup=(
-  etc/nim/nim.cfg
-  etc/nim/nimdoc.cfg
-  etc/nim/nimdoc.tex.cfg
-  etc/nim/rename.rules.cfg
-)
-source=(https://github.com/nim-lang/Nim/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz
-
https://github.com/nim-lang/csources/archive/v${_csourcesver}/csources-${_csourcesver}.tar.gz)
-sha256sums=('0920fe06b724de03ace28ec63db2e71734c1ab77499cafe08289bce25be8d8a4'
-'5e6fd15d90df1a8cb7614c4ffc70aa8c4198cd854d7742016202b96dd0228d3c')
-b2sums=('32b0425129c25348b9def0a117492be6e6f5cf8ad40187ab8c4f9a98bd4a80a3ba126d69f4406eb7d5ee80f38a9fc33f56f33aa7eaa219c84b3937b3aa675e65'
-
'a1c026aa4ecd676d938d00f13f749b7c21094f87de98055ef0002bc96cafb81a780b7d82adfa3927bb32b0eb52c8047ac2b2c98d0ab3b9af0dd8c8ebeffad50b')
-
-prepare() {
-  cd ${_pkgname}-${pkgver}
-  mv ../csources-${_csourcesver} csources
-  rm bin/empty.txt
-  for nimcfg in {compiler,config}/nim.cfg; do
-echo "gcc.options.always %= \"\${gcc.options.always} ${CFLAGS:-} 
${CPPFLAGS}\"" >> "${nimcfg}"
-echo "gcc.options.linker %= \"\${gcc.options.linker} ${LDFLAGS:-}\"" >> 
"${nimcfg}"
-  done
-}
-
-build() {
-  cd ${_pkgname}-${pkgver}
-  export PATH="${srcdir}/${_pkgname}-${pkgver}/bin:${PATH}"
-
-  msg2 "Building nim"
-  (cd csources
-sh build.sh
-  )
-  msg2 "Building koch"
-  nim c -d:release koch
-  ./koch boot -d:release -d:nativeStacktrace -d:useGnuReadline
-
-  msg2 "Building libs"
-  (cd lib
-nim c --app:lib -d:createNimRtl -d:release nimrtl.nim
-  )
-
-  msg2 "Building tools"
-  ./koch tools
-  (cd tools
-nim c -d:release nimgrep.nim
-  )
-  msg2 "Building nimsuggest"
-  nim c -d:release nimsuggest/nimsuggest.nim
-}
-
-package() {
-  cd ${_pkgname}-${pkgver}
-  export PATH="${srcdir}/${_pkgname}-${pkgver}/bin:${PATH}"
-
-  ./koch install "${pkgdir}"
-
-  install -d "${pkgdir}/usr/lib"
-  cp -a lib "${pkgdir}/usr/lib/nim"
-  cp -a compiler "${pkgdir}/usr/lib/nim"
-  install -Dm 644 compiler.nimble "${pkgdir}/usr/lib/nim/compiler"
-  install -m 755 lib/libnimrtl.so "${pkgdir}/usr/lib/libnimrtl.so"
-
-  # Fix FS#48118, related to the doc2 command
-  ln -s /usr/share/nim/doc "${pkgdir}/usr/lib/nim/doc"
-
-  install -Dm 644 config/* -t "${pkgdir}/etc/nim"
-  install -Dm 755 bin/* -t "${pkgdir}/usr/bin"
-
-  # Fix FS#50252, unusual placement of header files
-  install -d "${pkgdir}/usr/include"
-  cp -a "${pkgdir}/usr/lib/nim/"*.h "${pkgdir}/usr/include"
-
-  install -d "${pkgdir}/usr/share/nim/doc"
-  cp -a examples doc/* "${pkgdir}/usr/share/nim/doc"
-
-  install -Dm 644 copying.txt -t "${pkgdir}/usr/share/licenses/${pkgname}"
-
-  # completions
-  for comp in tools/*.bash-completion; do
-install -Dm 644 "${comp}" 
"${pkgdir}/usr/share/bash-completion/completions/$(basename 
"${comp/.bash-completion}")"
-  done
-  for comp in tools/*.zsh-completion; do
-install -Dm 644 "${comp}" 
"${pkgdir}/usr/share/zsh/site-functions/_$(basename "${comp/.zsh-completion}")"
-  done
-
-  rm -r "${pkgdir}/nim"
-  rm "${pkgdir}/usr/bin/nimble"
-}
-
-# vim: ts=2 sw=2 et:

Copied: nim/repos/community-x86_64/PKGBUILD (from rev 664184, 
nim/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-16 20:57:13 UTC (rev 664185)
@@ -0,0 +1,108 @@
+# Maintainer: Levente Polyak 
+# Contributor: Alexander F Rødseth 
+# Contributor: Dominik Picheta 
+# Contributor: Sven-Hendrik Haase 
+# Contributor: Jesus Alvarez 
+
+pkgname=nim
+_pkgname=Nim
+pkgver=1.2.4
+_csourcesver=0.20.0
+pkgrel=1
+pkgdesc='Imperative, multi-paradigm, compiled programming language'
+url='https://nim-lang.org/'
+arch=('x86_64')
+license=('MIT')
+depends=('bash')
+makedepends=('git')
+optdepends=('nimble: Nim package manager')
+options=('!emptydirs')
+backup=(
+  etc/nim/nim.cfg
+  etc/nim/nimdoc.cfg
+  etc/nim/nimdoc.tex.cfg
+  etc/nim/rename.rules.cfg
+)
+source=(https://github

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

2020-07-16 Thread Levente Polyak via arch-commits
Date: Thursday, July 16, 2020 @ 20:57:09
  Author: anthraxx
Revision: 664184

upgpkg: nim 1.2.4-1

Modified:
  nim/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-16 20:30:50 UTC (rev 664183)
+++ PKGBUILD2020-07-16 20:57:09 UTC (rev 664184)
@@ -6,7 +6,7 @@
 
 pkgname=nim
 _pkgname=Nim
-pkgver=1.2.0
+pkgver=1.2.4
 _csourcesver=0.20.0
 pkgrel=1
 pkgdesc='Imperative, multi-paradigm, compiled programming language'
@@ -25,9 +25,9 @@
 )
 
source=(https://github.com/nim-lang/Nim/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz
 
https://github.com/nim-lang/csources/archive/v${_csourcesver}/csources-${_csourcesver}.tar.gz)
-sha256sums=('0920fe06b724de03ace28ec63db2e71734c1ab77499cafe08289bce25be8d8a4'
+sha256sums=('1449469c1d29b990de110b32370170509fd16fe171744acd06d62b9a2e0ca84f'
 '5e6fd15d90df1a8cb7614c4ffc70aa8c4198cd854d7742016202b96dd0228d3c')
-b2sums=('32b0425129c25348b9def0a117492be6e6f5cf8ad40187ab8c4f9a98bd4a80a3ba126d69f4406eb7d5ee80f38a9fc33f56f33aa7eaa219c84b3937b3aa675e65'
+b2sums=('ed842c1b1d516c5e69f78f7449af01f70118dcb86be331fa1d463fa290bb8e4e2dca4f636efa73a5c8ec77658ed3ecf311eca5bbaf9436b5249088accf4f0dd6'
 
'a1c026aa4ecd676d938d00f13f749b7c21094f87de98055ef0002bc96cafb81a780b7d82adfa3927bb32b0eb52c8047ac2b2c98d0ab3b9af0dd8c8ebeffad50b')
 
 prepare() {


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

2020-07-16 Thread Jan Steffens via arch-commits
Date: Thursday, July 16, 2020 @ 20:52:23
  Author: heftig
Revision: 391979

5.4.52-1

Added:
  
linux-lts/trunk/0002-virt-vbox-Add-support-for-the-new-VBG_IOCTL_ACQUIRE_.patch
Modified:
  linux-lts/trunk/PKGBUILD
Deleted:
  
linux-lts/trunk/0002-Revert-ath9k-Fix-general-protection-fault-in-ath9k_h.patch

-+
 0002-Revert-ath9k-Fix-general-protection-fault-in-ath9k_h.patch |  254 ---
 0002-virt-vbox-Add-support-for-the-new-VBG_IOCTL_ACQUIRE_.patch |  784 
++
 PKGBUILD|8 
 3 files changed, 788 insertions(+), 258 deletions(-)

Deleted: 0002-Revert-ath9k-Fix-general-protection-fault-in-ath9k_h.patch
===
--- 0002-Revert-ath9k-Fix-general-protection-fault-in-ath9k_h.patch 
2020-07-16 20:24:10 UTC (rev 391978)
+++ 0002-Revert-ath9k-Fix-general-protection-fault-in-ath9k_h.patch 
2020-07-16 20:52:23 UTC (rev 391979)
@@ -1,254 +0,0 @@
-From  Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Viktor=20J=C3=A4gersk=C3=BCpper?=
- 
-Date: Wed, 1 Jul 2020 23:32:28 +0200
-Subject: [PATCH] Revert "ath9k: Fix general protection fault in
- ath9k_hif_usb_rx_cb"
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-This reverts commit 2bbcaaee1fcb ("ath9k: Fix general protection fault
-in ath9k_hif_usb_rx_cb") because the driver gets stuck like this:
-
-  [5.778803] usb 1-5: Manufacturer: ATHEROS
-  [   21.697488] usb 1-5: ath9k_htc: Firmware ath9k_htc/htc_9271-1.4.0.fw 
requested
-  [   21.701377] usbcore: registered new interface driver ath9k_htc
-  [   22.053705] usb 1-5: ath9k_htc: Transferred FW: 
ath9k_htc/htc_9271-1.4.0.fw, size: 51008
-  [   22.306182] ath9k_htc 1-5:1.0: ath9k_htc: HTC initialized with 33 credits
-  [  115.708513] ath9k_htc: Failed to initialize the device
-  [  115.708683] usb 1-5: ath9k_htc: USB layer deinitialized
-
-Reported-by: Roman Mamedov 
-Ref: https://bugzilla.kernel.org/show_bug.cgi?id=208251
-Fixes: 2bbcaaee1fcb ("ath9k: Fix general protection fault in 
ath9k_hif_usb_rx_cb")
-Tested-by: Viktor Jägersküpper 
-Signed-off-by: Viktor Jägersküpper 

- drivers/net/wireless/ath/ath9k/hif_usb.c | 48 ++--
- drivers/net/wireless/ath/ath9k/hif_usb.h |  5 ---
- 2 files changed, 11 insertions(+), 42 deletions(-)
-
-diff --git a/drivers/net/wireless/ath/ath9k/hif_usb.c 
b/drivers/net/wireless/ath/ath9k/hif_usb.c
-index 4ed21dad6a8e..6049d3766c64 100644
 a/drivers/net/wireless/ath/ath9k/hif_usb.c
-+++ b/drivers/net/wireless/ath/ath9k/hif_usb.c
-@@ -643,9 +643,9 @@ static void ath9k_hif_usb_rx_stream(struct hif_device_usb 
*hif_dev,
- 
- static void ath9k_hif_usb_rx_cb(struct urb *urb)
- {
--  struct rx_buf *rx_buf = (struct rx_buf *)urb->context;
--  struct hif_device_usb *hif_dev = rx_buf->hif_dev;
--  struct sk_buff *skb = rx_buf->skb;
-+  struct sk_buff *skb = (struct sk_buff *) urb->context;
-+  struct hif_device_usb *hif_dev =
-+  usb_get_intfdata(usb_ifnum_to_if(urb->dev, 0));
-   int ret;
- 
-   if (!skb)
-@@ -685,15 +685,14 @@ static void ath9k_hif_usb_rx_cb(struct urb *urb)
-   return;
- free:
-   kfree_skb(skb);
--  kfree(rx_buf);
- }
- 
- static void ath9k_hif_usb_reg_in_cb(struct urb *urb)
- {
--  struct rx_buf *rx_buf = (struct rx_buf *)urb->context;
--  struct hif_device_usb *hif_dev = rx_buf->hif_dev;
--  struct sk_buff *skb = rx_buf->skb;
-+  struct sk_buff *skb = (struct sk_buff *) urb->context;
-   struct sk_buff *nskb;
-+  struct hif_device_usb *hif_dev =
-+  usb_get_intfdata(usb_ifnum_to_if(urb->dev, 0));
-   int ret;
- 
-   if (!skb)
-@@ -751,7 +750,6 @@ static void ath9k_hif_usb_reg_in_cb(struct urb *urb)
-   return;
- free:
-   kfree_skb(skb);
--  kfree(rx_buf);
-   urb->context = NULL;
- }
- 
-@@ -797,7 +795,7 @@ static int ath9k_hif_usb_alloc_tx_urbs(struct 
hif_device_usb *hif_dev)
-   init_usb_anchor(&hif_dev->mgmt_submitted);
- 
-   for (i = 0; i < MAX_TX_URB_NUM; i++) {
--  tx_buf = kzalloc(sizeof(*tx_buf), GFP_KERNEL);
-+  tx_buf = kzalloc(sizeof(struct tx_buf), GFP_KERNEL);
-   if (!tx_buf)
-   goto err;
- 
-@@ -834,146 +832,122 @@ static void ath9k_hif_usb_dealloc_rx_urbs(struct 
hif_device_usb *hif_dev)
- 
- static int ath9k_hif_usb_alloc_rx_urbs(struct hif_device_usb *hif_dev)
- {
--  struct rx_buf *rx_buf = NULL;
--  struct sk_buff *skb = NULL;
-   struct urb *urb = NULL;
-+  struct sk_buff *skb = NULL;
-   int i, ret;
- 
-   init_usb_anchor(&hif_dev->rx_submitted);
-   spin_lock_init(&hif_dev->rx_lock);
- 
-   for (i = 0; i < MAX_RX_URB_NUM; i++) {
- 
--  rx_buf = kzalloc(sizeof(*rx_buf), GFP_KERNEL);
--  if (!rx_buf) {
--  

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

2020-07-16 Thread Jan Steffens via arch-commits
Date: Thursday, July 16, 2020 @ 20:52:28
  Author: heftig
Revision: 391980

5.7.9.arch1-1

Modified:
  linux/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-16 20:52:23 UTC (rev 391979)
+++ PKGBUILD2020-07-16 20:52:28 UTC (rev 391980)
@@ -1,7 +1,7 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
+# Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgbase=linux
-pkgver=5.7.8.arch1
+pkgver=5.7.9.arch1
 pkgrel=1
 pkgdesc='Linux'
 _srctag=v${pkgver%.*}-${pkgver##*.}


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

2020-07-16 Thread Jan Steffens via arch-commits
Date: Thursday, July 16, 2020 @ 20:52:31
  Author: heftig
Revision: 391981

5.7.9.zen1-1

Modified:
  linux-zen/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-16 20:52:28 UTC (rev 391980)
+++ PKGBUILD2020-07-16 20:52:31 UTC (rev 391981)
@@ -1,7 +1,7 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
+# Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgbase=linux-zen
-pkgver=5.7.8.zen2
+pkgver=5.7.9.zen1
 pkgrel=1
 pkgdesc='Linux ZEN'
 _srctag=v${pkgver%.*}-${pkgver##*.}


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

2020-07-16 Thread Jelle van der Waa via arch-commits
Date: Thursday, July 16, 2020 @ 20:30:50
  Author: jelle
Revision: 664183

archrelease: copy trunk to community-x86_64

Added:
  newsboat/repos/community-x86_64/PKGBUILD
(from rev 664182, newsboat/trunk/PKGBUILD)
  newsboat/repos/community-x86_64/newsboat.changelog
(from rev 664182, newsboat/trunk/newsboat.changelog)
Deleted:
  newsboat/repos/community-x86_64/PKGBUILD
  newsboat/repos/community-x86_64/newsboat.changelog

+
 PKGBUILD   |   67 +-
 newsboat.changelog |  180 +--
 2 files changed, 124 insertions(+), 123 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-16 20:30:43 UTC (rev 664182)
+++ PKGBUILD2020-07-16 20:30:50 UTC (rev 664183)
@@ -1,33 +0,0 @@
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: Sven Pfleiderer 
-
-pkgname=newsboat
-pkgver=2.20.1
-pkgrel=1
-pkgdesc="An RSS/Atom feed reader for text terminals"
-arch=('x86_64')
-url="https://newsboat.org/";
-license=('custom: MIT')
-depends=('curl' 'json-c' 'libxml2' 'sqlite' 'stfl')
-makedepends=('swig' 'gettext' 'asciidoc' 'rust' 'asciidoctor')
-replaces=('newsbeuter')
-changelog=$pkgname.changelog
-options=('!emptydirs')
-source=(https://newsboat.org/releases/$pkgver/$pkgname-$pkgver.tar.xz{,.asc})
-validpgpkeys=('B8B1756A0DDBF0760CE67CCF4ED6CD61932B9EBE') #Newsboat project 

-sha256sums=('82782079b75fe307f7a5a17dff9e712aa5975678fa550fb728d5a46867943566'
-'SKIP')
-
-build() {
-  cd "${srcdir}"/$pkgname-$pkgver
-
-  make prefix=/usr
-  make doc
-}
-
-package() {
-  cd "${srcdir}"/$pkgname-$pkgver
-
-  make prefix=/usr DESTDIR="${pkgdir}" install
-  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: newsboat/repos/community-x86_64/PKGBUILD (from rev 664182, 
newsboat/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-16 20:30:50 UTC (rev 664183)
@@ -0,0 +1,34 @@
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Sven Pfleiderer 
+
+pkgname=newsboat
+pkgver=2.20.1
+pkgrel=2
+pkgdesc="An RSS/Atom feed reader for text terminals"
+arch=('x86_64')
+url="https://newsboat.org/";
+license=('custom: MIT')
+depends=('curl' 'json-c' 'libxml2' 'sqlite' 'stfl')
+makedepends=('swig' 'gettext' 'asciidoc' 'rust' 'asciidoctor')
+replaces=('newsbeuter')
+changelog=$pkgname.changelog
+options=('!emptydirs')
+optdepends=('perl: pinboard.pl script')
+source=(https://newsboat.org/releases/$pkgver/$pkgname-$pkgver.tar.xz{,.asc})
+validpgpkeys=('B8B1756A0DDBF0760CE67CCF4ED6CD61932B9EBE') #Newsboat project 

+sha256sums=('82782079b75fe307f7a5a17dff9e712aa5975678fa550fb728d5a46867943566'
+'SKIP')
+
+build() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  make prefix=/usr
+  make doc
+}
+
+package() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  make prefix=/usr DESTDIR="${pkgdir}" install
+  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/$pkgname/LICENSE
+}

Deleted: newsboat.changelog
===
--- newsboat.changelog  2020-07-16 20:30:43 UTC (rev 664182)
+++ newsboat.changelog  2020-07-16 20:30:50 UTC (rev 664183)
@@ -1,90 +0,0 @@
-2020-06-24 Jaroslav Lichtblau 
-   * newsboat 2.20.1-1
-
-2020-06-21 Jaroslav Lichtblau 
-   * newsboat 2.20-1
-
-2020-03-23 Jaroslav Lichtblau 
-   * newsboat 2.19-1
-
-2019-12-23 Jaroslav Lichtblau 
-   * newsboat 2.18-1
-
-2019-08-06 Jaroslav Lichtblau 
-   * newsboat 2.16.1-1
-
-2019-03-30 Jaroslav Lichtblau 
-   * newsboat 2.15-1
-
-2019-02-10 Jaroslav Lichtblau 
-   * newsboat 2.14.1-1
-
-2019-01-01 Jaroslav Lichtblau 
-   * newsboat 2.14-1
-
-2018-09-29 Jaroslav Lichtblau 
-   * newsboat 2.13-1
-
-2018-04-10 Jaroslav Lichtblau 
-   * newsboat 2.11.1-1
-
-2018-03-26 Jaroslav Lichtblau 
-   * newsboat 2.11-1
-
-2017-12-27 Jaroslav Lichtblau 
-   * newsboat 2.10.2-1
-
-2017-12-02 Jaroslav Lichtblau 
-   * newsboat 2.10.1-2 FS#56519 fixed
-
-2017-10-21 Jaroslav Lichtblau 
-   * newsboat 2.10.1-1
-
-2017-10-21 Jaroslav Lichtblau 
-   * newsboat 2.10-1 moving over to the new maintained fork of newsbeuter
-
-2015-09-13 Jaroslav Lichtblau 
-   * newsbeuter 2.9-4 ncurses6 re-rebuild
-
-2015-09-13 Jaroslav Lichtblau 
-   * newsbeuter 2.9-3 segmentation fault on podcasts downloads #167 fix
-
-2015-02-19 Jaroslav Lichtblau 
-   * newsbeuter 2.9-1
-
-2014-01-27 Jaroslav Lichtblau 
-   * newsbeuter 2.8-1
-
-2013-09-02 Jaroslav Lichtblau 
-   * newsbeuter 2.7-1
-
-2013-03-28 Jaroslav Lichtblau 
-   * newsbeuter 2.6-1
-
-2013-03-07 Andrea Scarpino 
-   * ruby 2.0 rebuild
-
-2012-02-23 Jaroslav Lichtblau 
-   * newsbeuter 2.5-1
-
-2011-01-06 Jaroslav Lichtblau 
-   * newsbeuter 2.4-1
-
-2010-06-26 Jaroslav Lichtblau 
-   * Update to major release v2.3
-   * FS#

  1   2   3   >