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

2022-08-13 Thread Daniel M. Capella via arch-commits
Date: Sunday, August 14, 2022 @ 05:02:39
  Author: polyzen
Revision: 1266020

archrelease: copy trunk to community-any

Added:
  python-setuptools-scm/repos/community-any/PKGBUILD
(from rev 1266019, python-setuptools-scm/trunk/PKGBUILD)
Deleted:
  python-setuptools-scm/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-14 01:57:33 UTC (rev 1266019)
+++ PKGBUILD2022-08-14 05:02:39 UTC (rev 1266020)
@@ -1,43 +0,0 @@
-# Maintainer: Felix Yan 
-# Maintainer: Daniel M. Capella 
-# Contributor: Hugo Osvaldo Barrera 
-
-_name=setuptools_scm
-pkgname=python-setuptools-scm
-pkgver=7.0.4
-pkgrel=1
-pkgdesc="Handles managing your python package versions in scm metadata"
-arch=('any')
-url="https://github.com/pypa/setuptools_scm;
-license=('MIT')
-depends=('python-packaging' 'python-setuptools' 'python-tomli'
- 'python-typing_extensions')
-makedepends=('python-build' 'python-installer' 'python-wheel')
-checkdepends=('git' 'mercurial' 'python-pip' 'python-pytest'
-  'python-virtualenv')
-source=("https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz;)
-sha256sums=('c27bc1f48593cfc9527251f1f0fc41ce282ea57bbc7fd5a1ea3acb99325fab4c')
-b2sums=('07acfccdbeb0c7f6a6773ff93fa10c35aa8cc2451ede42cce269e2278606fed4acd17e8fda8294ac84b596e776a5ba02ae5ef1203dff42738291798e624cd991')
-
-build() {
-  cd $_name-$pkgver
-  python -m build --wheel --skip-dependency-check --no-isolation
-}
-
-check() {
- cd $_name-$pkgver
-  python -m venv --system-site-packages test-env
-  test-env/bin/python -m installer dist/*.whl
-  PYTHONPATH="$PWD/test-env/$site_packages"  test-env/bin/python -m pytest
-}
-
-package() {
-  cd $_name-$pkgver
-  python -m installer --destdir="$pkgdir" dist/*.whl
-
-  # Symlink license file
-  local site_packages=$(python -c "import site; 
print(site.getsitepackages()[0])")
-  install -d "$pkgdir"/usr/share/licenses/$pkgname
-  ln -s "$site_packages"/setuptools_scm-$pkgver.dist-info/LICENSE \
-"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-setuptools-scm/repos/community-any/PKGBUILD (from rev 1266019, 
python-setuptools-scm/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-14 05:02:39 UTC (rev 1266020)
@@ -0,0 +1,47 @@
+# Maintainer: Felix Yan 
+# Maintainer: Daniel M. Capella 
+# Contributor: Hugo Osvaldo Barrera 
+
+_name=setuptools_scm
+pkgname=python-setuptools-scm
+pkgver=7.0.5
+pkgrel=1
+pkgdesc="Handles managing your python package versions in scm metadata"
+arch=('any')
+url="https://github.com/pypa/setuptools_scm;
+license=('MIT')
+depends=('python-packaging' 'python-setuptools' 'python-tomli'
+ 'python-typing_extensions')
+makedepends=('python-build' 'python-installer' 'python-wheel')
+checkdepends=('git' 'mercurial' 'python-pip' 'python-pytest'
+  'python-virtualenv')
+source=("https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz;
+
"https://raw.githubusercontent.com/pypa/setuptools_scm/v$pkgver/.git_archival.txt;)
+sha256sums=('031e13af771d6f892b941adb6ea04545bbf91ebc5ce68c78aaf3fff6e1fb4844'
+'f145442cd29a4a4869c54d82f2e29e3db2e09e65140c6aeb735ef3f7c3077a4e')
+b2sums=('242809a32cd23d9d98e3326714d1435220907eacdb3127558987d0d8be95775b7f8ed284707421a9c52e401c1738c11a01782fee2c0635924122307d3308cc0c'
+
'204c07543d1c2a552aa2de95549fdef96307f4e8abef274b10685769704606209d52662946ba5883abf09c59ae7dae311936ed852a99e72d41c09f566d8d3ab4')
+
+build() {
+  cd $_name-$pkgver
+  python -m build --wheel --skip-dependency-check --no-isolation
+}
+
+check() {
+  cd $_name-$pkgver
+  python -m venv --system-site-packages test-env
+  test-env/bin/python -m installer dist/*.whl
+  ln ../.git_archival.txt test-env/lib/python3.10/site-packages/setuptools_scm
+  PYTHONPATH="$PWD/test-env/$site_packages"  test-env/bin/python -m pytest
+}
+
+package() {
+  cd $_name-$pkgver
+  python -m installer --destdir="$pkgdir" dist/*.whl
+
+  # Symlink license file
+  local site_packages=$(python -c "import site; 
print(site.getsitepackages()[0])")
+  install -d "$pkgdir"/usr/share/licenses/$pkgname
+  ln -s "$site_packages"/setuptools_scm-$pkgver.dist-info/LICENSE \
+"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}



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

2022-08-13 Thread Daniel M. Capella via arch-commits
Date: Sunday, August 14, 2022 @ 01:57:33
  Author: polyzen
Revision: 1266019

upgpkg: python-setuptools-scm 7.0.5-1

Modified:
  python-setuptools-scm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-14 01:46:32 UTC (rev 1266018)
+++ PKGBUILD2022-08-14 01:57:33 UTC (rev 1266019)
@@ -4,7 +4,7 @@
 
 _name=setuptools_scm
 pkgname=python-setuptools-scm
-pkgver=7.0.4
+pkgver=7.0.5
 pkgrel=1
 pkgdesc="Handles managing your python package versions in scm metadata"
 arch=('any')
@@ -15,9 +15,12 @@
 makedepends=('python-build' 'python-installer' 'python-wheel')
 checkdepends=('git' 'mercurial' 'python-pip' 'python-pytest'
   'python-virtualenv')
-source=("https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz;)
-sha256sums=('c27bc1f48593cfc9527251f1f0fc41ce282ea57bbc7fd5a1ea3acb99325fab4c')
-b2sums=('07acfccdbeb0c7f6a6773ff93fa10c35aa8cc2451ede42cce269e2278606fed4acd17e8fda8294ac84b596e776a5ba02ae5ef1203dff42738291798e624cd991')
+source=("https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz;
+
"https://raw.githubusercontent.com/pypa/setuptools_scm/v$pkgver/.git_archival.txt;)
+sha256sums=('031e13af771d6f892b941adb6ea04545bbf91ebc5ce68c78aaf3fff6e1fb4844'
+'f145442cd29a4a4869c54d82f2e29e3db2e09e65140c6aeb735ef3f7c3077a4e')
+b2sums=('242809a32cd23d9d98e3326714d1435220907eacdb3127558987d0d8be95775b7f8ed284707421a9c52e401c1738c11a01782fee2c0635924122307d3308cc0c'
+
'204c07543d1c2a552aa2de95549fdef96307f4e8abef274b10685769704606209d52662946ba5883abf09c59ae7dae311936ed852a99e72d41c09f566d8d3ab4')
 
 build() {
   cd $_name-$pkgver
@@ -25,9 +28,10 @@
 }
 
 check() {
- cd $_name-$pkgver
+  cd $_name-$pkgver
   python -m venv --system-site-packages test-env
   test-env/bin/python -m installer dist/*.whl
+  ln ../.git_archival.txt test-env/lib/python3.10/site-packages/setuptools_scm
   PYTHONPATH="$PWD/test-env/$site_packages"  test-env/bin/python -m pytest
 }
 



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

2022-08-13 Thread Chih-Hsuan Yen via arch-commits
Date: Sunday, August 14, 2022 @ 01:46:32
  Author: yan12125
Revision: 1266018

archrelease: copy trunk to community-any

Added:
  web-ext/repos/community-any/PKGBUILD
(from rev 1266017, web-ext/trunk/PKGBUILD)
Deleted:
  web-ext/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-14 01:45:53 UTC (rev 1266017)
+++ PKGBUILD2022-08-14 01:46:32 UTC (rev 1266018)
@@ -1,59 +0,0 @@
-# Maintainer: Chih-Hsuan Yen 
-
-pkgname=web-ext
-# https://github.com/mozilla/web-ext/releases
-pkgver=7.1.1
-pkgrel=1
-pkgdesc='A command line tool to help build, run, and test web extensions'
-arch=(any)
-url='https://developer.mozilla.org/en-US/Add-ons/WebExtensions'
-license=('MPL2')
-# See "engines" in https://github.com/mozilla/web-ext/blob/master/package.json
-depends=('nodejs>=14.0.0')
-makedepends=('npm' 'node-gyp')
-replaces=('nodejs-web-ext')
-provides=('nodejs-web-ext')
-conflicts=('nodejs-web-ext')
-# to speed up the build
-options=('!strip')
-# tarball on npmjs lacks scripts for building from sources
-source=("https://github.com/mozilla/web-ext/archive/$pkgver/web-ext-$pkgver.tar.gz;)
-sha256sums=('8bc989c4305f92ff7c2d53dea1e99bf2fa587ba7f16f1ca8f7cfbc5fee973690')
-
-prepare() {
-  cd "$srcdir"
-
-  # -build for running webpack and tests, and the original for actual packaging
-  cp -r $pkgname-$pkgver{,-build}
-}
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver-build"
-
-  npm install
-  NODE_ENV=production npm run build
-  cp -r lib "$srcdir/$pkgname-$pkgver"
-
-  cd "$srcdir/$pkgname-$pkgver"
-  npm install --production
-}
-
-check() {
-  cd "$srcdir/$pkgname-$pkgver-build"
-
-  # web-ext uses flow-bin, which does not support some architectures (e.g., 
RISC-V)
-  CI_SKIP_FLOWCHECK=y npm test
-}
-
-package() {
-  local _npmdir="$pkgdir/usr/lib/node_modules/"
-
-  install -Ddm755 "$_npmdir"
-  cp -r --no-preserve=ownership $pkgname-$pkgver "$_npmdir/$pkgname"
-
-  # dtrace-provider (brought in by bunyan) is not used on Linux, and its build 
artifacts makes this package unreproducible
-  rm -rv "$_npmdir"/web-ext/node_modules/dtrace-provider/build/
-
-  install -Ddm755 "$pkgdir/usr/bin"
-  ln -s "/usr/lib/node_modules/$pkgname/bin/$pkgname.js" 
"$pkgdir/usr/bin/$pkgname"
-}

Copied: web-ext/repos/community-any/PKGBUILD (from rev 1266017, 
web-ext/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-14 01:46:32 UTC (rev 1266018)
@@ -0,0 +1,59 @@
+# Maintainer: Chih-Hsuan Yen 
+
+pkgname=web-ext
+# https://github.com/mozilla/web-ext/releases
+pkgver=7.2.0
+pkgrel=1
+pkgdesc='A command line tool to help build, run, and test web extensions'
+arch=(any)
+url='https://developer.mozilla.org/en-US/Add-ons/WebExtensions'
+license=('MPL2')
+# See "engines" in https://github.com/mozilla/web-ext/blob/master/package.json
+depends=('nodejs>=14.0.0')
+makedepends=('npm' 'node-gyp')
+replaces=('nodejs-web-ext')
+provides=('nodejs-web-ext')
+conflicts=('nodejs-web-ext')
+# to speed up the build
+options=('!strip')
+# tarball on npmjs lacks scripts for building from sources
+source=("https://github.com/mozilla/web-ext/archive/$pkgver/web-ext-$pkgver.tar.gz;)
+sha256sums=('6950c49516c97d9506a222f7d875a5f4f5b241f2a037ec05a509a46229899a99')
+
+prepare() {
+  cd "$srcdir"
+
+  # -build for running webpack and tests, and the original for actual packaging
+  cp -r $pkgname-$pkgver{,-build}
+}
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver-build"
+
+  npm install
+  NODE_ENV=production npm run build
+  cp -r lib "$srcdir/$pkgname-$pkgver"
+
+  cd "$srcdir/$pkgname-$pkgver"
+  npm install --production
+}
+
+check() {
+  cd "$srcdir/$pkgname-$pkgver-build"
+
+  # web-ext uses flow-bin, which does not support some architectures (e.g., 
RISC-V)
+  CI_SKIP_FLOWCHECK=y npm test
+}
+
+package() {
+  local _npmdir="$pkgdir/usr/lib/node_modules/"
+
+  install -Ddm755 "$_npmdir"
+  cp -r --no-preserve=ownership $pkgname-$pkgver "$_npmdir/$pkgname"
+
+  # dtrace-provider (brought in by bunyan) is not used on Linux, and its build 
artifacts makes this package unreproducible
+  rm -rv "$_npmdir"/web-ext/node_modules/dtrace-provider/build/
+
+  install -Ddm755 "$pkgdir/usr/bin"
+  ln -s "/usr/lib/node_modules/$pkgname/bin/$pkgname.js" 
"$pkgdir/usr/bin/$pkgname"
+}



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

2022-08-13 Thread Chih-Hsuan Yen via arch-commits
Date: Sunday, August 14, 2022 @ 01:45:53
  Author: yan12125
Revision: 1266017

upgpkg: web-ext 7.2.0-1

Modified:
  web-ext/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-14 00:20:23 UTC (rev 1266016)
+++ PKGBUILD2022-08-14 01:45:53 UTC (rev 1266017)
@@ -2,7 +2,7 @@
 
 pkgname=web-ext
 # https://github.com/mozilla/web-ext/releases
-pkgver=7.1.1
+pkgver=7.2.0
 pkgrel=1
 pkgdesc='A command line tool to help build, run, and test web extensions'
 arch=(any)
@@ -18,7 +18,7 @@
 options=('!strip')
 # tarball on npmjs lacks scripts for building from sources
 
source=("https://github.com/mozilla/web-ext/archive/$pkgver/web-ext-$pkgver.tar.gz;)
-sha256sums=('8bc989c4305f92ff7c2d53dea1e99bf2fa587ba7f16f1ca8f7cfbc5fee973690')
+sha256sums=('6950c49516c97d9506a222f7d875a5f4f5b241f2a037ec05a509a46229899a99')
 
 prepare() {
   cd "$srcdir"



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

2022-08-13 Thread Jan Steffens via arch-commits
Date: Sunday, August 14, 2022 @ 00:42:03
  Author: heftig
Revision: 452695

archrelease: copy trunk to extra-any

Added:
  python-dbusmock/repos/extra-any/PKGBUILD
(from rev 452694, python-dbusmock/trunk/PKGBUILD)
Deleted:
  python-dbusmock/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-14 00:41:53 UTC (rev 452694)
+++ PKGBUILD2022-08-14 00:42:03 UTC (rev 452695)
@@ -1,29 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=python-dbusmock
-pkgver=0.28.1
-pkgrel=1
-pkgdesc="Mock D-Bus objects for tests"
-url="https://github.com/martinpitt/python-dbusmock;
-arch=(any)
-license=(LGPL3)
-depends=(python-dbus python-gobject)
-makedepends=(python-setuptools git)
-_commit=5a5766621e6677c9b4b81513fc3a37cad4c9414d  # tags/0.28.1^0
-source=("git+https://github.com/martinpitt/python-dbusmock#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/[^-]*-g/r&/;s/-/+/g'
-}
-
-build() {
-  cd $pkgname
-  python setup.py build
-}
-
-package() {
-  cd $pkgname
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}

Copied: python-dbusmock/repos/extra-any/PKGBUILD (from rev 452694, 
python-dbusmock/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-14 00:42:03 UTC (rev 452695)
@@ -0,0 +1,29 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=python-dbusmock
+pkgver=0.28.4
+pkgrel=1
+pkgdesc="Mock D-Bus objects for tests"
+url="https://github.com/martinpitt/python-dbusmock;
+arch=(any)
+license=(LGPL3)
+depends=(python-dbus python-gobject)
+makedepends=(python-setuptools git)
+_commit=b46214e03bb57dc7be8604d137b25b40d7482259  # tags/0.28.4^0
+source=("git+https://github.com/martinpitt/python-dbusmock#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/[^-]*-g/r&/;s/-/+/g'
+}
+
+build() {
+  cd $pkgname
+  python setup.py build
+}
+
+package() {
+  cd $pkgname
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}



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

2022-08-13 Thread Jan Steffens via arch-commits
Date: Sunday, August 14, 2022 @ 00:41:53
  Author: heftig
Revision: 452694

0.28.4-1

Modified:
  python-dbusmock/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-14 00:36:30 UTC (rev 452693)
+++ PKGBUILD2022-08-14 00:41:53 UTC (rev 452694)
@@ -1,7 +1,7 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgname=python-dbusmock
-pkgver=0.28.1
+pkgver=0.28.4
 pkgrel=1
 pkgdesc="Mock D-Bus objects for tests"
 url="https://github.com/martinpitt/python-dbusmock;
@@ -9,7 +9,7 @@
 license=(LGPL3)
 depends=(python-dbus python-gobject)
 makedepends=(python-setuptools git)
-_commit=5a5766621e6677c9b4b81513fc3a37cad4c9414d  # tags/0.28.1^0
+_commit=b46214e03bb57dc7be8604d137b25b40d7482259  # tags/0.28.4^0
 source=("git+https://github.com/martinpitt/python-dbusmock#commit=$_commit;)
 sha256sums=('SKIP')
 



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

2022-08-13 Thread Jan Steffens via arch-commits
Date: Sunday, August 14, 2022 @ 00:36:30
  Author: heftig
Revision: 452692

archrelease: copy trunk to extra-x86_64

Added:
  malcontent/repos/extra-x86_64/PKGBUILD
(from rev 452690, malcontent/trunk/PKGBUILD)
Deleted:
  malcontent/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-14 00:36:29 UTC (rev 452691)
+++ PKGBUILD2022-08-14 00:36:30 UTC (rev 452692)
@@ -1,67 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgbase=malcontent
-pkgname=(malcontent libmalcontent)
-pkgver=0.10.4
-pkgrel=1
-pkgdesc="Parental control support for applications"
-url="https://gitlab.freedesktop.org/pwithnall/malcontent;
-arch=(x86_64)
-license=(LGPL2.1)
-depends=(accountsservice dbus flatpak glib2 gtk3 polkit appstream-glib)
-makedepends=(git meson gobject-introspection gtk-doc libglib-testing 
yelp-tools)
-_commit=d9bcc0537baa73d2c9f63825f14134a629cf6eba  # tags/0.10.4^0
-source=("git+https://gitlab.freedesktop.org/pwithnall/malcontent.git#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/[^-]*-g/r&/;s/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-}
-
-build() {
-  arch-meson $pkgname build
-  meson compile -C build
-}
-
-check() {
-  meson test -C build --print-errorlogs
-}
-
-_pick() {
-  local p="$1" f d; shift
-  for f; do
-d="$srcdir/$p/${f#$pkgdir/}"
-mkdir -p "$(dirname "$d")"
-mv "$f" "$d"
-rmdir -p --ignore-fail-on-non-empty "$(dirname "$f")"
-  done
-}
-
-package_malcontent() {
-  depends+=("libmalcontent=$pkgver-$pkgrel")
-  groups=(gnome)
-
-  meson install -C build --destdir "$pkgdir"
-
-  cd "$pkgdir"
-
-  _pick libs usr/include
-  _pick libs usr/lib/{girepository-1.0,libmalcontent*,pkgconfig}
-  _pick libs usr/share/gir-1.0
-
-  install -d -o root -g 102 -m 750 usr/share/polkit-1/rules.d
-}
-
-package_libmalcontent() {
-  pkgdesc="Parental control library"
-  depends=(libg{lib,object,io}-2.0.so gcc-libs)
-  provides=(libmalcontent{,-ui}-${pkgver%%.*}.so)
-  mv libs/* "$pkgdir"
-}
-
-# vim:set sw=2 et:

Copied: malcontent/repos/extra-x86_64/PKGBUILD (from rev 452690, 
malcontent/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-14 00:36:30 UTC (rev 452692)
@@ -0,0 +1,68 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgbase=malcontent
+pkgname=(malcontent libmalcontent)
+pkgver=0.10.5
+pkgrel=1
+pkgdesc="Parental control support for applications"
+url="https://gitlab.freedesktop.org/pwithnall/malcontent;
+arch=(x86_64)
+license=(LGPL2.1)
+depends=(accountsservice dbus flatpak glib2 gtk3 polkit appstream-glib)
+makedepends=(git meson gobject-introspection gtk-doc libglib-testing 
yelp-tools)
+options=(debug)
+_commit=9d1e8ac3c5afc523413980456b50474c3e5956a5  # tags/0.10.5^0
+source=("git+https://gitlab.freedesktop.org/pwithnall/malcontent.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/[^-]*-g/r&/;s/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+}
+
+build() {
+  arch-meson $pkgname build
+  meson compile -C build
+}
+
+check() {
+  meson test -C build --print-errorlogs
+}
+
+_pick() {
+  local p="$1" f d; shift
+  for f; do
+d="$srcdir/$p/${f#$pkgdir/}"
+mkdir -p "$(dirname "$d")"
+mv "$f" "$d"
+rmdir -p --ignore-fail-on-non-empty "$(dirname "$f")"
+  done
+}
+
+package_malcontent() {
+  depends+=("libmalcontent=$pkgver-$pkgrel")
+  groups=(gnome)
+
+  meson install -C build --destdir "$pkgdir"
+
+  cd "$pkgdir"
+
+  _pick libs usr/include
+  _pick libs usr/lib/{girepository-1.0,libmalcontent*,pkgconfig}
+  _pick libs usr/share/gir-1.0
+
+  install -d -o root -g 102 -m 750 usr/share/polkit-1/rules.d
+}
+
+package_libmalcontent() {
+  pkgdesc="Parental control library"
+  depends=(libg{lib,object,io}-2.0.so gcc-libs)
+  provides=(libmalcontent{,-ui}-${pkgver%%.*}.so)
+  mv libs/* "$pkgdir"
+}
+
+# vim:set sw=2 et:



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

2022-08-13 Thread Jan Steffens via arch-commits
Date: Sunday, August 14, 2022 @ 00:36:30
  Author: heftig
Revision: 452693

archrelease: copy trunk to extra-x86_64

Added:
  librest/repos/extra-x86_64/PKGBUILD
(from rev 452690, librest/trunk/PKGBUILD)
Deleted:
  librest/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-14 00:36:30 UTC (rev 452692)
+++ PKGBUILD2022-08-14 00:36:30 UTC (rev 452693)
@@ -1,54 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgbase=librest
-pkgname=(librest librest-docs)
-pkgver=0.9.0
-pkgrel=1
-pkgdesc="Library for accessing RESTful web services"
-url="https://gitlab.gnome.org/GNOME/librest;
-arch=(x86_64)
-license=(LGPL2.1)
-depends=(glib2 libxml2 libsoup3 json-glib)
-makedepends=(gobject-introspection git meson gi-docgen vala)
-_commit=85bd00adfa6e06d3426ce7c9007e68e62f51be14  # tags/0.9.0^0
-source=("git+https://gitlab.gnome.org/GNOME/librest.git#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd librest
-  git describe --tags | sed 's/[^-]*-g/r&/;s/-/+/g'
-}
-
-prepare() {
-  cd librest
-  git tag -d 1.0.0 # Fixup tags
-}
-
-build() {
-  arch-meson librest build -D soup2=false
-  meson compile -C build
-}
-
-check() {
-  meson test -C build --print-errorlogs
-}
-
-package_librest() {
-  depends+=(libg{lib,object,io}-2.0.so libxml2.so libsoup-3.0.so
-libjson-glib-1.0.so)
-  provides+=(librest{,-extras}-1.0.so)
-
-  meson install -C build --destdir "$pkgdir"
-
-  mkdir -p doc/usr/share
-  mv {"$pkgdir",doc}/usr/share/doc
-}
-
-package_librest-docs() {
-  pkgdesc+=" (documentation)"
-  depends=()
-
-  mv doc/* "$pkgdir"
-}
-
-# vim:set sw=2 et:

Copied: librest/repos/extra-x86_64/PKGBUILD (from rev 452690, 
librest/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-14 00:36:30 UTC (rev 452693)
@@ -0,0 +1,74 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgbase=librest
+pkgname=(librest librest-docs librest-demos)
+pkgver=0.9.1
+pkgrel=1
+pkgdesc="Library for accessing RESTful web services"
+url="https://gitlab.gnome.org/GNOME/librest;
+arch=(x86_64)
+license=(LGPL)
+depends=(glib2 libxml2 libsoup3 json-glib)
+makedepends=(gobject-introspection git meson gi-docgen vala libadwaita
+ gtksourceview5)
+options=(debug)
+_commit=aa9e968e381ede159414c6338da24d61ad0b5d8b  # tags/0.9.1^0
+source=("git+https://gitlab.gnome.org/GNOME/librest.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd librest
+  git describe --tags | sed 's/[^-]*-g/r&/;s/-/+/g'
+}
+
+prepare() {
+  cd librest
+}
+
+build() {
+  arch-meson librest build
+  meson compile -C build
+}
+
+check() {
+  meson test -C build --print-errorlogs
+}
+
+_pick() {
+  local p="$1" f d; shift
+  for f; do
+d="$srcdir/$p/${f#$pkgdir/}"
+mkdir -p "$(dirname "$d")"
+mv "$f" "$d"
+rmdir -p --ignore-fail-on-non-empty "$(dirname "$f")"
+  done
+}
+
+package_librest() {
+  depends+=(libg{lib,object,io}-2.0.so libxml2.so libsoup-3.0.so
+libjson-glib-1.0.so)
+  provides+=(librest{,-extras}-1.0.so)
+
+  meson install -C build --destdir "$pkgdir"
+
+  cd "$pkgdir"
+
+  _pick docs usr/share/doc
+
+  _pick demo usr/bin/librest-demo
+  _pick demo usr/share/applications/org.gnome.RestDemo.desktop
+}
+
+package_librest-docs() {
+  pkgdesc+=" (documentation)"
+  depends=()
+  mv docs/* "$pkgdir"
+}
+
+package_librest-demos() {
+  pkgdesc+=" (demo applications)"
+  depends=(librest libadwaita gtksourceview5)
+  mv demo/* "$pkgdir"
+}
+
+# vim:set sw=2 et:



[arch-commits] Commit in ibus-typing-booster/repos/extra-any (PKGBUILD PKGBUILD)

2022-08-13 Thread Jan Steffens via arch-commits
Date: Sunday, August 14, 2022 @ 00:36:29
  Author: heftig
Revision: 452691

archrelease: copy trunk to extra-any

Added:
  ibus-typing-booster/repos/extra-any/PKGBUILD
(from rev 452690, ibus-typing-booster/trunk/PKGBUILD)
Deleted:
  ibus-typing-booster/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-14 00:36:07 UTC (rev 452690)
+++ PKGBUILD2022-08-14 00:36:29 UTC (rev 452691)
@@ -1,38 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=ibus-typing-booster
-pkgver=2.17.1
-pkgrel=1
-pkgdesc="Predictive input method for the IBus platform"
-url="https://mike-fabian.github.io/ibus-typing-booster/;
-arch=(any)
-license=(GPL3 Apache)
-depends=(ibus python-gobject python-dbus python-pyenchant m17n-lib sqlite)
-makedepends=(git)
-_commit=d1fac473f2b0cbad72ffcd71ef20a9a441b56df0  # tags/2.17.1
-source=("git+https://github.com/mike-fabian/ibus-typing-booster#commit=$_commit;)
-sha512sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/[^-]*-g/r&/;s/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  autoreconf -fvi
-}
-
-build() {
-  cd $pkgname
-  ./configure --prefix=/usr --libexec=/usr/lib/ibus
-  make
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-
-  cd "$pkgdir/usr/share/$pkgname/data"
-  gzip -nf --best *.{txt,json} annotations{,Derived}/*.xml
-}

Copied: ibus-typing-booster/repos/extra-any/PKGBUILD (from rev 452690, 
ibus-typing-booster/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-14 00:36:29 UTC (rev 452691)
@@ -0,0 +1,38 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=ibus-typing-booster
+pkgver=2.18.9
+pkgrel=1
+pkgdesc="Predictive input method for the IBus platform"
+url="https://mike-fabian.github.io/ibus-typing-booster/;
+arch=(any)
+license=(GPL3 Apache)
+depends=(ibus python-gobject python-dbus python-pyenchant m17n-lib sqlite)
+makedepends=(git)
+_commit=cd005d19c79260d297dbbf74ffbdd678db71bd73  # tags/2.18.9
+source=("git+https://github.com/mike-fabian/ibus-typing-booster#commit=$_commit;)
+sha512sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/[^-]*-g/r&/;s/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  autoreconf -fvi
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr --libexec=/usr/lib/ibus
+  make
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+
+  cd "$pkgdir/usr/share/$pkgname/data"
+  gzip -nf --best *.{txt,json} annotations{,Derived}/*.xml
+}



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

2022-08-13 Thread Jan Steffens via arch-commits
Date: Sunday, August 14, 2022 @ 00:36:07
  Author: heftig
Revision: 452690

0.9.1-1

Modified:
  librest/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-14 00:27:38 UTC (rev 452689)
+++ PKGBUILD2022-08-14 00:36:07 UTC (rev 452690)
@@ -1,16 +1,18 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgbase=librest
-pkgname=(librest librest-docs)
-pkgver=0.9.0
+pkgname=(librest librest-docs librest-demos)
+pkgver=0.9.1
 pkgrel=1
 pkgdesc="Library for accessing RESTful web services"
 url="https://gitlab.gnome.org/GNOME/librest;
 arch=(x86_64)
-license=(LGPL2.1)
+license=(LGPL)
 depends=(glib2 libxml2 libsoup3 json-glib)
-makedepends=(gobject-introspection git meson gi-docgen vala)
-_commit=85bd00adfa6e06d3426ce7c9007e68e62f51be14  # tags/0.9.0^0
+makedepends=(gobject-introspection git meson gi-docgen vala libadwaita
+ gtksourceview5)
+options=(debug)
+_commit=aa9e968e381ede159414c6338da24d61ad0b5d8b  # tags/0.9.1^0
 source=("git+https://gitlab.gnome.org/GNOME/librest.git#commit=$_commit;)
 sha256sums=('SKIP')
 
@@ -21,11 +23,10 @@
 
 prepare() {
   cd librest
-  git tag -d 1.0.0 # Fixup tags
 }
 
 build() {
-  arch-meson librest build -D soup2=false
+  arch-meson librest build
   meson compile -C build
 }
 
@@ -33,6 +34,16 @@
   meson test -C build --print-errorlogs
 }
 
+_pick() {
+  local p="$1" f d; shift
+  for f; do
+d="$srcdir/$p/${f#$pkgdir/}"
+mkdir -p "$(dirname "$d")"
+mv "$f" "$d"
+rmdir -p --ignore-fail-on-non-empty "$(dirname "$f")"
+  done
+}
+
 package_librest() {
   depends+=(libg{lib,object,io}-2.0.so libxml2.so libsoup-3.0.so
 libjson-glib-1.0.so)
@@ -40,15 +51,24 @@
 
   meson install -C build --destdir "$pkgdir"
 
-  mkdir -p doc/usr/share
-  mv {"$pkgdir",doc}/usr/share/doc
+  cd "$pkgdir"
+
+  _pick docs usr/share/doc
+
+  _pick demo usr/bin/librest-demo
+  _pick demo usr/share/applications/org.gnome.RestDemo.desktop
 }
 
 package_librest-docs() {
   pkgdesc+=" (documentation)"
   depends=()
+  mv docs/* "$pkgdir"
+}
 
-  mv doc/* "$pkgdir"
+package_librest-demos() {
+  pkgdesc+=" (demo applications)"
+  depends=(librest libadwaita gtksourceview5)
+  mv demo/* "$pkgdir"
 }
 
 # vim:set sw=2 et:



[arch-commits] Commit in ibus-typing-booster/trunk (PKGBUILD)

2022-08-13 Thread Jan Steffens via arch-commits
Date: Sunday, August 14, 2022 @ 00:27:38
  Author: heftig
Revision: 452689

2.18.9-1

Modified:
  ibus-typing-booster/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-14 00:26:01 UTC (rev 452688)
+++ PKGBUILD2022-08-14 00:27:38 UTC (rev 452689)
@@ -1,7 +1,7 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgname=ibus-typing-booster
-pkgver=2.17.1
+pkgver=2.18.9
 pkgrel=1
 pkgdesc="Predictive input method for the IBus platform"
 url="https://mike-fabian.github.io/ibus-typing-booster/;
@@ -9,7 +9,7 @@
 license=(GPL3 Apache)
 depends=(ibus python-gobject python-dbus python-pyenchant m17n-lib sqlite)
 makedepends=(git)
-_commit=d1fac473f2b0cbad72ffcd71ef20a9a441b56df0  # tags/2.17.1
+_commit=cd005d19c79260d297dbbf74ffbdd678db71bd73  # tags/2.18.9
 
source=("git+https://github.com/mike-fabian/ibus-typing-booster#commit=$_commit;)
 sha512sums=('SKIP')
 



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

2022-08-13 Thread Jan Steffens via arch-commits
Date: Sunday, August 14, 2022 @ 00:26:01
  Author: heftig
Revision: 452688

0.10.5-1

Modified:
  malcontent/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-14 00:21:02 UTC (rev 452687)
+++ PKGBUILD2022-08-14 00:26:01 UTC (rev 452688)
@@ -2,7 +2,7 @@
 
 pkgbase=malcontent
 pkgname=(malcontent libmalcontent)
-pkgver=0.10.4
+pkgver=0.10.5
 pkgrel=1
 pkgdesc="Parental control support for applications"
 url="https://gitlab.freedesktop.org/pwithnall/malcontent;
@@ -10,7 +10,8 @@
 license=(LGPL2.1)
 depends=(accountsservice dbus flatpak glib2 gtk3 polkit appstream-glib)
 makedepends=(git meson gobject-introspection gtk-doc libglib-testing 
yelp-tools)
-_commit=d9bcc0537baa73d2c9f63825f14134a629cf6eba  # tags/0.10.4^0
+options=(debug)
+_commit=9d1e8ac3c5afc523413980456b50474c3e5956a5  # tags/0.10.5^0
 
source=("git+https://gitlab.freedesktop.org/pwithnall/malcontent.git#commit=$_commit;)
 sha256sums=('SKIP')
 



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

2022-08-13 Thread Jan Steffens via arch-commits
Date: Sunday, August 14, 2022 @ 00:00:09
  Author: heftig
Revision: 452683

archrelease: copy trunk to extra-any

Added:
  meld/repos/extra-any/PKGBUILD
(from rev 452682, meld/trunk/PKGBUILD)
Deleted:
  meld/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-14 00:00:04 UTC (rev 452682)
+++ PKGBUILD2022-08-14 00:00:09 UTC (rev 452683)
@@ -1,42 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Gaetan Bisson 
-# Contributor: Daniel J Griffiths 
-# Contributor: Douglas Soares de Andrade 
-
-pkgname=meld
-pkgver=3.21.3
-pkgrel=1
-pkgdesc="Compare files, directories and working copies"
-url="https://meldmerge.org/;
-license=(GPL)
-arch=(any)
-depends=(python-gobject python-cairo gtksourceview4 gsettings-desktop-schemas
- dconf)
-makedepends=(meson yelp-tools git)
-_commit=3f2842c666902bd96c2e0d9097c399542a7d9fe5  # tags/3.21.3^0
-source=("git+https://gitlab.gnome.org/GNOME/meld.git#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd meld
-  git describe --tags | sed 's/[^-]*-g/r&/;s/-/+/g'
-}
-
-prepare() {
-  cd meld
-}
-
-build() {
-  arch-meson meld build
-  meson compile -C build
-}
-
-check() {
-  meson test -C build --print-errorlogs
-}
-
-package() {
-  meson install -C build --destdir "$pkgdir"
-  python -m compileall -d /usr/lib "$pkgdir/usr/lib"
-  python -O -m compileall -d /usr/lib "$pkgdir/usr/lib"
-}

Copied: meld/repos/extra-any/PKGBUILD (from rev 452682, meld/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-14 00:00:09 UTC (rev 452683)
@@ -0,0 +1,43 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Gaetan Bisson 
+# Contributor: Daniel J Griffiths 
+# Contributor: Douglas Soares de Andrade 
+
+pkgname=meld
+pkgver=3.21.3
+pkgrel=2
+pkgdesc="Compare files, directories and working copies"
+url="https://meldmerge.org/;
+license=(GPL)
+arch=(any)
+depends=(python-gobject python-cairo gtksourceview4 gsettings-desktop-schemas
+ dconf)
+makedepends=(meson yelp-tools git)
+_commit=3f2842c666902bd96c2e0d9097c399542a7d9fe5  # tags/3.21.3^0
+source=("git+https://gitlab.gnome.org/GNOME/meld.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd meld
+  git describe --tags | sed 's/[^-]*-g/r&/;s/-/+/g'
+}
+
+prepare() {
+  cd meld
+}
+
+build() {
+  arch-meson meld build
+  meson compile -C build
+}
+
+check() {
+  meson test -C build --print-errorlogs
+}
+
+package() {
+  meson install -C build --destdir "$pkgdir"
+  python -m compileall -d /usr/lib "$pkgdir/usr/lib"
+  python -O -m compileall -d /usr/lib "$pkgdir/usr/lib"
+  chmod +x "$pkgdir/usr/bin/meld"
+}



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

2022-08-13 Thread Jan Steffens via arch-commits
Date: Sunday, August 14, 2022 @ 00:00:04
  Author: heftig
Revision: 452682

3.21.3-2: fix mode

Modified:
  meld/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-13 23:56:54 UTC (rev 452681)
+++ PKGBUILD2022-08-14 00:00:04 UTC (rev 452682)
@@ -5,7 +5,7 @@
 
 pkgname=meld
 pkgver=3.21.3
-pkgrel=1
+pkgrel=2
 pkgdesc="Compare files, directories and working copies"
 url="https://meldmerge.org/;
 license=(GPL)
@@ -39,4 +39,5 @@
   meson install -C build --destdir "$pkgdir"
   python -m compileall -d /usr/lib "$pkgdir/usr/lib"
   python -O -m compileall -d /usr/lib "$pkgdir/usr/lib"
+  chmod +x "$pkgdir/usr/bin/meld"
 }



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

2022-08-13 Thread Jan Steffens via arch-commits
Date: Saturday, August 13, 2022 @ 23:56:54
  Author: heftig
Revision: 452681

archrelease: copy trunk to extra-any

Added:
  meld/repos/extra-any/PKGBUILD
(from rev 452680, meld/trunk/PKGBUILD)
Deleted:
  meld/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-13 23:56:44 UTC (rev 452680)
+++ PKGBUILD2022-08-13 23:56:54 UTC (rev 452681)
@@ -1,42 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Gaetan Bisson 
-# Contributor: Daniel J Griffiths 
-# Contributor: Douglas Soares de Andrade 
-
-pkgname=meld
-pkgver=3.21.2
-pkgrel=1
-pkgdesc="Compare files, directories and working copies"
-url="https://meldmerge.org/;
-license=(GPL)
-arch=(any)
-depends=(python-gobject python-cairo gtksourceview4 gsettings-desktop-schemas
- dconf)
-makedepends=(meson yelp-tools git)
-_commit=29f751b10d5eb661878f416a0dc3b424442b0521  # tags/3.21.2^0
-source=("git+https://gitlab.gnome.org/GNOME/meld.git#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd meld
-  git describe --tags | sed 's/[^-]*-g/r&/;s/-/+/g'
-}
-
-prepare() {
-  cd meld
-}
-
-build() {
-  arch-meson meld build
-  meson compile -C build
-}
-
-check() {
-  meson test -C build --print-errorlogs
-}
-
-package() {
-  meson install -C build --destdir "$pkgdir"
-  python -m compileall -d /usr/lib "$pkgdir/usr/lib"
-  python -O -m compileall -d /usr/lib "$pkgdir/usr/lib"
-}

Copied: meld/repos/extra-any/PKGBUILD (from rev 452680, meld/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-13 23:56:54 UTC (rev 452681)
@@ -0,0 +1,42 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Gaetan Bisson 
+# Contributor: Daniel J Griffiths 
+# Contributor: Douglas Soares de Andrade 
+
+pkgname=meld
+pkgver=3.21.3
+pkgrel=1
+pkgdesc="Compare files, directories and working copies"
+url="https://meldmerge.org/;
+license=(GPL)
+arch=(any)
+depends=(python-gobject python-cairo gtksourceview4 gsettings-desktop-schemas
+ dconf)
+makedepends=(meson yelp-tools git)
+_commit=3f2842c666902bd96c2e0d9097c399542a7d9fe5  # tags/3.21.3^0
+source=("git+https://gitlab.gnome.org/GNOME/meld.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd meld
+  git describe --tags | sed 's/[^-]*-g/r&/;s/-/+/g'
+}
+
+prepare() {
+  cd meld
+}
+
+build() {
+  arch-meson meld build
+  meson compile -C build
+}
+
+check() {
+  meson test -C build --print-errorlogs
+}
+
+package() {
+  meson install -C build --destdir "$pkgdir"
+  python -m compileall -d /usr/lib "$pkgdir/usr/lib"
+  python -O -m compileall -d /usr/lib "$pkgdir/usr/lib"
+}



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

2022-08-13 Thread Jan Steffens via arch-commits
Date: Saturday, August 13, 2022 @ 23:56:44
  Author: heftig
Revision: 452680

3.21.3-1

Modified:
  meld/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-13 15:56:54 UTC (rev 452679)
+++ PKGBUILD2022-08-13 23:56:44 UTC (rev 452680)
@@ -4,7 +4,7 @@
 # Contributor: Douglas Soares de Andrade 
 
 pkgname=meld
-pkgver=3.21.2
+pkgver=3.21.3
 pkgrel=1
 pkgdesc="Compare files, directories and working copies"
 url="https://meldmerge.org/;
@@ -13,7 +13,7 @@
 depends=(python-gobject python-cairo gtksourceview4 gsettings-desktop-schemas
  dconf)
 makedepends=(meson yelp-tools git)
-_commit=29f751b10d5eb661878f416a0dc3b424442b0521  # tags/3.21.2^0
+_commit=3f2842c666902bd96c2e0d9097c399542a7d9fe5  # tags/3.21.3^0
 source=("git+https://gitlab.gnome.org/GNOME/meld.git#commit=$_commit;)
 sha256sums=('SKIP')
 



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

2022-08-13 Thread Sébastien Luttringer via arch-commits
Date: Saturday, August 13, 2022 @ 23:34:20
  Author: seblu
Revision: 1266007

archrelease: copy trunk to community-x86_64

Added:
  iperf/repos/community-x86_64/PKGBUILD
(from rev 1266006, iperf/trunk/PKGBUILD)
  iperf/repos/community-x86_64/iperf-tcp.service
(from rev 1266006, iperf/trunk/iperf-tcp.service)
  iperf/repos/community-x86_64/iperf-udp.service
(from rev 1266006, iperf/trunk/iperf-udp.service)
  iperf/repos/community-x86_64/iperf.install
(from rev 1266006, iperf/trunk/iperf.install)
Deleted:
  iperf/repos/community-x86_64/PKGBUILD
  iperf/repos/community-x86_64/iperf-tcp.service
  iperf/repos/community-x86_64/iperf-udp.service
  iperf/repos/community-x86_64/iperf.install

---+
 PKGBUILD  |  108 ++--
 iperf-tcp.service |   18 
 iperf-udp.service |   18 
 iperf.install |   22 +-
 4 files changed, 83 insertions(+), 83 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-13 23:34:12 UTC (rev 1266006)
+++ PKGBUILD2022-08-13 23:34:20 UTC (rev 1266007)
@@ -1,54 +0,0 @@
-# Maintainer: Sébastien Luttringer
-# Contributor: Giovanni Scafora 
-# Contributor: Dale Blount 
-
-pkgname=iperf
-pkgver=2.1.7
-pkgrel=1
-pkgdesc='A tool to measure maximum TCP bandwidth'
-arch=('x86_64')
-license=('custom')
-url='https://sourceforge.net/projects/iperf2/'
-depends=('gcc-libs')
-install=iperf.install
-source=("https://downloads.sourceforge.net/iperf2/iperf-$pkgver.tar.gz;
-'iperf-tcp.service'
-'iperf-udp.service')
-sha256sums=('1aba2e1d7aa43641ef841951ed88e16cffba898460e0c51e6b2806f3ff20e9d4'
-'5bfeaf4b7fc9bcc424cfc2257c6eefd21ed491bd140e9ae5562b270dcf84d794'
-'fec34a6f352619caaf4ed3bc23f75a3ffb6b3ab5c2947cd2c24c6be36851738c')
-prepare() {
-  cd $pkgname-$pkgver
-  # apply patch from the source array (should be a pacman feature)
-  local src
-  for src in "${source[@]}"; do
-src="${src%%::*}"
-src="${src##*/}"
-[[ $src = *.patch ]] || continue
-echo "Applying patch $src..."
-patch -Np1 < "../$src"
-  done
-  :
-}
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr \
-  --enable-ipv6 \
-  --enable-multicast \
-  --enable-threads \
-  --enable-fastsampling
-  make
-}
-
-package() {
-  pushd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/iperf/LICENSE"
-  popd
-  # systemd
-  install -Dm644 iperf-tcp.service 
"$pkgdir/usr/lib/systemd/system/iperf-tcp.service"
-  install -Dm644 iperf-udp.service 
"$pkgdir/usr/lib/systemd/system/iperf-udp.service"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: iperf/repos/community-x86_64/PKGBUILD (from rev 1266006, 
iperf/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-13 23:34:20 UTC (rev 1266007)
@@ -0,0 +1,54 @@
+# Maintainer: Sébastien Luttringer
+# Contributor: Giovanni Scafora 
+# Contributor: Dale Blount 
+
+pkgname=iperf
+pkgver=2.1.8
+pkgrel=1
+pkgdesc='A tool to measure maximum TCP bandwidth'
+arch=('x86_64')
+license=('custom')
+url='https://sourceforge.net/projects/iperf2/'
+depends=('gcc-libs')
+install=iperf.install
+source=("https://downloads.sourceforge.net/iperf2/iperf-$pkgver.tar.gz;
+'iperf-tcp.service'
+'iperf-udp.service')
+sha256sums=('8e2cf2fbc9d0d4d1cf9d109b1e328459f9622993dc9a4c5a7dc8a2088fb7beaf'
+'5bfeaf4b7fc9bcc424cfc2257c6eefd21ed491bd140e9ae5562b270dcf84d794'
+'fec34a6f352619caaf4ed3bc23f75a3ffb6b3ab5c2947cd2c24c6be36851738c')
+prepare() {
+  cd $pkgname-$pkgver
+  # apply patch from the source array (should be a pacman feature)
+  local src
+  for src in "${source[@]}"; do
+src="${src%%::*}"
+src="${src##*/}"
+[[ $src = *.patch ]] || continue
+echo "Applying patch $src..."
+patch -Np1 < "../$src"
+  done
+  :
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr \
+  --enable-ipv6 \
+  --enable-multicast \
+  --enable-threads \
+  --enable-fastsampling
+  make
+}
+
+package() {
+  pushd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/iperf/LICENSE"
+  popd
+  # systemd
+  install -Dm644 iperf-tcp.service 
"$pkgdir/usr/lib/systemd/system/iperf-tcp.service"
+  install -Dm644 iperf-udp.service 
"$pkgdir/usr/lib/systemd/system/iperf-udp.service"
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: iperf-tcp.service
===
--- iperf-tcp.service   2022-08-13 23:34:12 UTC (rev 1266006)
+++ iperf-tcp.service   2022-08-13 23:34:20 UTC (rev 1266007)
@@ -1,9 +0,0 @@
-[Unit]
-Description=Iperf TCP Server
-After=network.target
-
-[Service]
-ExecStart=/usr/bin/iperf -s -V
-

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

2022-08-13 Thread Sébastien Luttringer via arch-commits
Date: Saturday, August 13, 2022 @ 23:34:12
  Author: seblu
Revision: 1266006

upgpkg: iperf 2.1.8-1

Modified:
  iperf/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-13 22:37:04 UTC (rev 1266005)
+++ PKGBUILD2022-08-13 23:34:12 UTC (rev 1266006)
@@ -3,7 +3,7 @@
 # Contributor: Dale Blount 
 
 pkgname=iperf
-pkgver=2.1.7
+pkgver=2.1.8
 pkgrel=1
 pkgdesc='A tool to measure maximum TCP bandwidth'
 arch=('x86_64')
@@ -14,7 +14,7 @@
 source=("https://downloads.sourceforge.net/iperf2/iperf-$pkgver.tar.gz;
 'iperf-tcp.service'
 'iperf-udp.service')
-sha256sums=('1aba2e1d7aa43641ef841951ed88e16cffba898460e0c51e6b2806f3ff20e9d4'
+sha256sums=('8e2cf2fbc9d0d4d1cf9d109b1e328459f9622993dc9a4c5a7dc8a2088fb7beaf'
 '5bfeaf4b7fc9bcc424cfc2257c6eefd21ed491bd140e9ae5562b270dcf84d794'
 'fec34a6f352619caaf4ed3bc23f75a3ffb6b3ab5c2947cd2c24c6be36851738c')
 prepare() {



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

2022-08-13 Thread Sven-Hendrik Haase via arch-commits
Date: Saturday, August 13, 2022 @ 22:37:04
  Author: svenstaro
Revision: 1266005

archrelease: copy trunk to community-x86_64

Added:
  python-pytorch/repos/community-x86_64/PKGBUILD
(from rev 1266004, python-pytorch/trunk/PKGBUILD)
  python-pytorch/repos/community-x86_64/ffmpeg4.4.patch
(from rev 1266004, python-pytorch/trunk/ffmpeg4.4.patch)
  python-pytorch/repos/community-x86_64/fix-building-for-torchvision.patch
(from rev 1266004, python-pytorch/trunk/fix-building-for-torchvision.patch)
  python-pytorch/repos/community-x86_64/fix_include_system.patch
(from rev 1266004, python-pytorch/trunk/fix_include_system.patch)
  python-pytorch/repos/community-x86_64/test.py
(from rev 1266004, python-pytorch/trunk/test.py)
  python-pytorch/repos/community-x86_64/use-system-libuv.patch
(from rev 1266004, python-pytorch/trunk/use-system-libuv.patch)
Deleted:
  python-pytorch/repos/community-x86_64/PKGBUILD
  python-pytorch/repos/community-x86_64/ffmpeg4.4.patch
  python-pytorch/repos/community-x86_64/fix-building-for-torchvision.patch
  python-pytorch/repos/community-x86_64/fix_include_system.patch
  python-pytorch/repos/community-x86_64/test.py
  python-pytorch/repos/community-x86_64/use-system-libuv.patch

+
 PKGBUILD   |  651 +--
 ffmpeg4.4.patch|  102 ++---
 fix-building-for-torchvision.patch |   50 +-
 fix_include_system.patch   |   26 -
 test.py|   14 
 use-system-libuv.patch |   26 -
 6 files changed, 436 insertions(+), 433 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-13 22:35:22 UTC (rev 1266004)
+++ PKGBUILD2022-08-13 22:37:04 UTC (rev 1266005)
@@ -1,324 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Stephen Zhang 
-
-_pkgname=pytorch
-pkgbase="python-${_pkgname}"
-pkgname=("${pkgbase}" "${pkgbase}-opt" "${pkgbase}-cuda" "${pkgbase}-opt-cuda")
-pkgver=1.12.0
-_pkgver=1.12.0
-pkgrel=3
-_pkgdesc='Tensors and Dynamic neural networks in Python with strong GPU 
acceleration'
-pkgdesc="${_pkgdesc}"
-arch=('x86_64')
-url="https://pytorch.org;
-license=('BSD')
-depends=('google-glog' 'gflags' 'opencv' 'openmp' 'nccl' 'pybind11' 'python' 
'python-yaml' 'libuv'
- 'python-numpy' 'protobuf' 'ffmpeg4.4' 'python-future' 'qt5-base' 
'intel-oneapi-mkl'
- 'python-typing_extensions')
-makedepends=('python' 'python-setuptools' 'python-yaml' 'python-numpy' 'cmake' 
'cuda'
- 'cudnn' 'git' 'magma' 'ninja' 'pkgconfig' 'doxygen' 'gcc11')
-source=("${_pkgname}-${pkgver}::git+https://github.com/pytorch/pytorch.git#tag=v$_pkgver;
-# generated using parse-submodules
-"${pkgname}-ios-cmake::git+https://github.com/Yangqing/ios-cmake.git;
-
"${pkgname}-pthreadpool::git+https://github.com/Maratyszcza/pthreadpool.git;
-"${pkgname}-NNPACK::git+https://github.com/Maratyszcza/NNPACK.git;
-"${pkgname}-psimd::git+https://github.com/Maratyszcza/psimd.git;
-"${pkgname}-FP16::git+https://github.com/Maratyszcza/FP16.git;
-"${pkgname}-FXdiv::git+https://github.com/Maratyszcza/FXdiv.git;
-"${pkgname}-cpuinfo::git+https://github.com/pytorch/cpuinfo.git;
-"${pkgname}-enum34::git+https://github.com/PeachPy/enum34.git;
-"${pkgname}-gloo::git+https://github.com/facebookincubator/gloo;
-"${pkgname}-PeachPy::git+https://github.com/malfet/PeachPy.git;
-"${pkgname}-cub::git+https://github.com/NVlabs/cub.git;
-"${pkgname}-six::git+https://github.com/benjaminp/six.git;
-"${pkgname}-QNNPACK::git+https://github.com/pytorch/QNNPACK;
-
"${pkgname}-ARM_NEON_2_x86_SSE::git+https://github.com/intel/ARM_NEON_2_x86_SSE.git;
-"${pkgname}-onnx-tensorrt::git+https://github.com/onnx/onnx-tensorrt;
-"${pkgname}-ideep::git+https://github.com/intel/ideep;
-"${pkgname}-sleef::git+https://github.com/shibatch/sleef;
-"${pkgname}-foxi::git+https://github.com/houseroad/foxi.git;
-"${pkgname}-benchmark::git+https://github.com/google/benchmark.git;
-"${pkgname}-nccl::git+https://github.com/NVIDIA/nccl;
-"${pkgname}-gemmlowp::git+https://github.com/google/gemmlowp.git;
-
"${pkgname}-cudnn-frontend::git+https://github.com/NVIDIA/cudnn-frontend.git;
-"${pkgname}-googletest::git+https://github.com/google/googletest.git;
-"${pkgname}-fbjni::git+https://github.com/facebookincubator/fbjni.git;
-"${pkgname}-pocketfft::git+https://github.com/mreineck/pocketfft;
-"${pkgname}-fbgemm::git+https://github.com/pytorch/fbgemm;
-"${pkgname}-tensorpipe::git+https://github.com/pytorch/tensorpipe.git;
-"${pkgname}-onnx::git+https://github.com/onnx/onnx.git;
-"${pkgname}-tbb::git+https://github.com/01org/tbb;
-

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

2022-08-13 Thread Sven-Hendrik Haase via arch-commits
Date: Saturday, August 13, 2022 @ 22:35:22
  Author: svenstaro
Revision: 1266004

upgpkg: python-pytorch 1.12.1-1

Modified:
  python-pytorch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-13 21:32:36 UTC (rev 1266003)
+++ PKGBUILD2022-08-13 22:35:22 UTC (rev 1266004)
@@ -4,9 +4,9 @@
 _pkgname=pytorch
 pkgbase="python-${_pkgname}"
 pkgname=("${pkgbase}" "${pkgbase}-opt" "${pkgbase}-cuda" "${pkgbase}-opt-cuda")
-pkgver=1.12.0
-_pkgver=1.12.0
-pkgrel=3
+pkgver=1.12.1
+_pkgver=1.12.1
+pkgrel=1
 _pkgdesc='Tensors and Dynamic neural networks in Python with strong GPU 
acceleration'
 pkgdesc="${_pkgdesc}"
 arch=('x86_64')
@@ -19,44 +19,45 @@
  'cudnn' 'git' 'magma' 'ninja' 'pkgconfig' 'doxygen' 'gcc11')
 
source=("${_pkgname}-${pkgver}::git+https://github.com/pytorch/pytorch.git#tag=v$_pkgver;
 # generated using parse-submodules
+"${pkgname}-cub::git+https://github.com/NVlabs/cub.git;
+"${pkgname}-NNPACK::git+https://github.com/Maratyszcza/NNPACK.git;
 "${pkgname}-ios-cmake::git+https://github.com/Yangqing/ios-cmake.git;
 
"${pkgname}-pthreadpool::git+https://github.com/Maratyszcza/pthreadpool.git;
-"${pkgname}-NNPACK::git+https://github.com/Maratyszcza/NNPACK.git;
-"${pkgname}-psimd::git+https://github.com/Maratyszcza/psimd.git;
-"${pkgname}-FP16::git+https://github.com/Maratyszcza/FP16.git;
 "${pkgname}-FXdiv::git+https://github.com/Maratyszcza/FXdiv.git;
-"${pkgname}-cpuinfo::git+https://github.com/pytorch/cpuinfo.git;
+"${pkgname}-gloo::git+https://github.com/facebookincubator/gloo;
+"${pkgname}-benchmark::git+https://github.com/google/benchmark.git;
+"${pkgname}-pybind11::git+https://github.com/pybind/pybind11.git;
+"${pkgname}-googletest::git+https://github.com/google/googletest.git;
 "${pkgname}-enum34::git+https://github.com/PeachPy/enum34.git;
-"${pkgname}-gloo::git+https://github.com/facebookincubator/gloo;
-"${pkgname}-PeachPy::git+https://github.com/malfet/PeachPy.git;
-"${pkgname}-cub::git+https://github.com/NVlabs/cub.git;
 "${pkgname}-six::git+https://github.com/benjaminp/six.git;
-"${pkgname}-QNNPACK::git+https://github.com/pytorch/QNNPACK;
-
"${pkgname}-ARM_NEON_2_x86_SSE::git+https://github.com/intel/ARM_NEON_2_x86_SSE.git;
-"${pkgname}-onnx-tensorrt::git+https://github.com/onnx/onnx-tensorrt;
+"${pkgname}-cpuinfo::git+https://github.com/pytorch/cpuinfo.git;
+
"${pkgname}-protobuf::git+https://github.com/protocolbuffers/protobuf.git;
+"${pkgname}-foxi::git+https://github.com/houseroad/foxi.git;
+"${pkgname}-sleef::git+https://github.com/shibatch/sleef;
 "${pkgname}-ideep::git+https://github.com/intel/ideep;
-"${pkgname}-sleef::git+https://github.com/shibatch/sleef;
-"${pkgname}-foxi::git+https://github.com/houseroad/foxi.git;
-"${pkgname}-benchmark::git+https://github.com/google/benchmark.git;
 "${pkgname}-nccl::git+https://github.com/NVIDIA/nccl;
+"${pkgname}-zstd::git+https://github.com/facebook/zstd.git;
 "${pkgname}-gemmlowp::git+https://github.com/google/gemmlowp.git;
+"${pkgname}-QNNPACK::git+https://github.com/pytorch/QNNPACK;
+"${pkgname}-onnx-tensorrt::git+https://github.com/onnx/onnx-tensorrt;
+"${pkgname}-onnx::git+https://github.com/onnx/onnx.git;
 
"${pkgname}-cudnn-frontend::git+https://github.com/NVIDIA/cudnn-frontend.git;
-"${pkgname}-googletest::git+https://github.com/google/googletest.git;
+
"${pkgname}-ARM_NEON_2_x86_SSE::git+https://github.com/intel/ARM_NEON_2_x86_SSE.git;
+"${pkgname}-ittapi::git+https://github.com/intel/ittapi.git;
 "${pkgname}-fbjni::git+https://github.com/facebookincubator/fbjni.git;
-"${pkgname}-pocketfft::git+https://github.com/mreineck/pocketfft;
+"${pkgname}-json::git+https://github.com/nlohmann/json.git;
 "${pkgname}-fbgemm::git+https://github.com/pytorch/fbgemm;
-"${pkgname}-tensorpipe::git+https://github.com/pytorch/tensorpipe.git;
-"${pkgname}-onnx::git+https://github.com/onnx/onnx.git;
-"${pkgname}-tbb::git+https://github.com/01org/tbb;
 "${pkgname}-fmt::git+https://github.com/fmtlib/fmt.git;
 "${pkgname}-kineto::git+https://github.com/pytorch/kineto;
-
"${pkgname}-protobuf::git+https://github.com/protocolbuffers/protobuf.git;
-"${pkgname}-json::git+https://github.com/nlohmann/json.git;
+"${pkgname}-tbb::git+https://github.com/01org/tbb;
+"${pkgname}-tensorpipe::git+https://github.com/pytorch/tensorpipe.git;
+"${pkgname}-psimd::git+https://github.com/Maratyszcza/psimd.git;
+

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

2022-08-13 Thread Jelle van der Waa via arch-commits
Date: Saturday, August 13, 2022 @ 21:32:36
  Author: jelle
Revision: 1266003

archrelease: copy trunk to community-any

Added:
  esptool/repos/community-any/PKGBUILD
(from rev 1266002, esptool/trunk/PKGBUILD)
Deleted:
  esptool/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-13 21:32:05 UTC (rev 1266002)
+++ PKGBUILD2022-08-13 21:32:36 UTC (rev 1266003)
@@ -1,26 +0,0 @@
-# Maintainer: Jelle van der Waa 
-# Contributor: Marcin (CTRL) Wieczorek 
-# Contributor: Marcin Kornat 
-# Contributor: MatejSpindler 
-
-pkgname=esptool
-pkgver=4.2
-pkgrel=2
-pkgdesc="A cute Python utility to communicate with the ROM bootloader in 
Espressif ESP8266"
-arch=('any')
-url="https://github.com/espressif/esptool;
-license=('GPL2')
-makedepends=('git' 'python-setuptools' 'python-pip')
-depends=('python-pyserial' 'python-ecdsa' 'python-pyaes' 'python-bitstring' 
'python-reedsolo' 'python-cryptography')
-source=("https://github.com/espressif/esptool/archive/v${pkgver}.tar.gz;)
-sha512sums=('4d4f8e130dbf04dbb582e6e1fdc9b74df7f56a7ca227cca62772592b1d5fa23cbe1de6c16e79d0a10e155f983f1e76752d025ed0e8da6735cdd417e4104321dc')
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  python3 setup.py build
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  python3 setup.py install --root="$pkgdir/" --optimize=1 --skip-build
-}

Copied: esptool/repos/community-any/PKGBUILD (from rev 1266002, 
esptool/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-13 21:32:36 UTC (rev 1266003)
@@ -0,0 +1,26 @@
+# Maintainer: Jelle van der Waa 
+# Contributor: Marcin (CTRL) Wieczorek 
+# Contributor: Marcin Kornat 
+# Contributor: MatejSpindler 
+
+pkgname=esptool
+pkgver=4.2.1
+pkgrel=1
+pkgdesc="A cute Python utility to communicate with the ROM bootloader in 
Espressif ESP8266"
+arch=('any')
+url="https://github.com/espressif/esptool;
+license=('GPL2')
+makedepends=('git' 'python-setuptools' 'python-pip')
+depends=('python-pyserial' 'python-ecdsa' 'python-pyaes' 'python-bitstring' 
'python-reedsolo' 'python-cryptography')
+source=("https://github.com/espressif/esptool/archive/v${pkgver}.tar.gz;)
+sha512sums=('b2b7209371330ae0764da5650b48a37ec750a3514951b8e39576b4e54ea682e2a43faf56ce95327071fe88bf4f74762a39483e1edfe2bdf9c5457537888c469f')
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  python3 setup.py build
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  python3 setup.py install --root="$pkgdir/" --optimize=1 --skip-build
+}



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

2022-08-13 Thread Jelle van der Waa via arch-commits
Date: Saturday, August 13, 2022 @ 21:32:05
  Author: jelle
Revision: 1266002

upgpkg: esptool 4.2.1-1

Modified:
  esptool/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-13 19:49:52 UTC (rev 1266001)
+++ PKGBUILD2022-08-13 21:32:05 UTC (rev 1266002)
@@ -4,8 +4,8 @@
 # Contributor: MatejSpindler 
 
 pkgname=esptool
-pkgver=4.2
-pkgrel=2
+pkgver=4.2.1
+pkgrel=1
 pkgdesc="A cute Python utility to communicate with the ROM bootloader in 
Espressif ESP8266"
 arch=('any')
 url="https://github.com/espressif/esptool;
@@ -13,7 +13,7 @@
 makedepends=('git' 'python-setuptools' 'python-pip')
 depends=('python-pyserial' 'python-ecdsa' 'python-pyaes' 'python-bitstring' 
'python-reedsolo' 'python-cryptography')
 source=("https://github.com/espressif/esptool/archive/v${pkgver}.tar.gz;)
-sha512sums=('4d4f8e130dbf04dbb582e6e1fdc9b74df7f56a7ca227cca62772592b1d5fa23cbe1de6c16e79d0a10e155f983f1e76752d025ed0e8da6735cdd417e4104321dc')
+sha512sums=('b2b7209371330ae0764da5650b48a37ec750a3514951b8e39576b4e54ea682e2a43faf56ce95327071fe88bf4f74762a39483e1edfe2bdf9c5457537888c469f')
 
 build() {
   cd "${pkgname}-${pkgver}"



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

2022-08-13 Thread Daniel M. Capella via arch-commits
Date: Saturday, August 13, 2022 @ 19:49:52
  Author: polyzen
Revision: 1266001

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-13 19:49:29 UTC (rev 1266000)
+++ PKGBUILD2022-08-13 19:49:52 UTC (rev 1266001)
@@ -1,42 +0,0 @@
-# Maintainer: Daniel M. Capella 
-
-_name=asttokens
-pkgname=python-asttokens
-pkgver=2.0.5
-pkgrel=2
-pkgdesc='Get the currently executing AST node of a frame, and other 
information'
-arch=('any')
-url=https://github.com/alexmojaki/executing
-license=('Apache')
-depends=('python-six')
-makedepends=('python-build' 'python-install' 'python-setuptools-scm'
- 'python-wheel')
-checkdepends=('python-astroid' 'python-pytest')
-source=("https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz;)
-sha256sums=('9a54c114f02c7a9480d56550932546a3f1fe71d8a02f1bc7ccd0ee3ee35cf4d5')
-b2sums=('44fd821230dbec4b2e4182872bd3509becb4669c6c1d3a143a33a86cd2b8d7fd94e8cee77390834475d9290ac3723735a7d6ba3b3695758a89c46a106a56501a')
-
-build() {
-  cd "$_name-$pkgver"
-  python -m build --wheel --skip-dependency-check --no-isolation
-}
-
-check() {
-  cd "$_name-$pkgver"
-  python -m venv --system-site-packages test-env
-  test-env/bin/python -m install --optimize=1 dist/*.whl
-  test-env/bin/python -m pytest
-}
-
-package() {
-  cd "$_name-$pkgver"
-  python -m install --optimize=1 --destdir="$pkgdir" dist/*.whl
-
-  # Symlink license file
-  local site_packages=$(python -c "import site; 
print(site.getsitepackages()[0])")
-  install -d "$pkgdir"/usr/share/licenses/$pkgname
-  ln -s "$site_packages"/$_name-$pkgver.dist-info/LICENSE \
-"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-asttokens/repos/community-any/PKGBUILD (from rev 1266000, 
python-asttokens/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-13 19:49:52 UTC (rev 1266001)
@@ -0,0 +1,40 @@
+# Maintainer: Daniel M. Capella 
+
+_name=asttokens
+pkgname=python-asttokens
+pkgver=2.0.7
+pkgrel=1
+pkgdesc='Get the currently executing AST node of a frame, and other 
information'
+arch=('any')
+url=https://github.com/gristlabs/asttokens
+license=('Apache')
+depends=('python-six')
+makedepends=('python-build' 'python-installer' 'python-setuptools-scm'
+ 'python-wheel')
+#checkdepends=('python-astroid' 'python-pytest')
+source=("https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz;)
+sha256sums=('8444353e4e2a99661c8dfb85ec9c02eedded08f0006234bff7db44a06840acc2')
+b2sums=('845445b83db124025b1d6908a455faea440111e33e45b376ad5038598a5f285d55104ce9334cf53084c09c3d6a0eff06650df1a16ea14df696779f72beca2eac')
+
+build() {
+  cd "$_name-$pkgver"
+  python -m build --wheel --skip-dependency-check --no-isolation
+}
+
+#check() {
+#  cd "$_name-$pkgver"
+#  python -m venv --system-site-packages test-env
+#  test-env/bin/python -m installer dist/*.whl
+#  test-env/bin/python -m pytest
+#}
+
+package() {
+  cd "$_name-$pkgver"
+  python -m installer --destdir="$pkgdir" dist/*.whl
+
+  # Symlink license file
+  local site_packages=$(python -c "import site; 
print(site.getsitepackages()[0])")
+  install -d "$pkgdir"/usr/share/licenses/$pkgname
+  ln -s "$site_packages"/$_name-$pkgver.dist-info/LICENSE \
+"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}



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

2022-08-13 Thread Daniel M. Capella via arch-commits
Date: Saturday, August 13, 2022 @ 19:49:29
  Author: polyzen
Revision: 1266000

upgpkg: python-asttokens 2.0.7-1 & disable check

astroid<=2.5.3 needed for tests to pass:
https://github.com/gristlabs/asttokens/blob/2.0.7/setup.cfg#L42
https://github.com/gristlabs/asttokens/commit/cbd8d8e9bc2c1f650e6206c9037845460efbc1fe

Modified:
  python-asttokens/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-13 19:36:53 UTC (rev 1265999)
+++ PKGBUILD2022-08-13 19:49:29 UTC (rev 1266000)
@@ -2,8 +2,8 @@
 
 _name=asttokens
 pkgname=python-asttokens
-pkgver=2.0.5
-pkgrel=2
+pkgver=2.0.7
+pkgrel=1
 pkgdesc='Get the currently executing AST node of a frame, and other 
information'
 arch=('any')
 url=https://github.com/gristlabs/asttokens
@@ -11,10 +11,10 @@
 depends=('python-six')
 makedepends=('python-build' 'python-installer' 'python-setuptools-scm'
  'python-wheel')
-checkdepends=('python-astroid' 'python-pytest')
+#checkdepends=('python-astroid' 'python-pytest')
 
source=("https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz;)
-sha256sums=('9a54c114f02c7a9480d56550932546a3f1fe71d8a02f1bc7ccd0ee3ee35cf4d5')
-b2sums=('44fd821230dbec4b2e4182872bd3509becb4669c6c1d3a143a33a86cd2b8d7fd94e8cee77390834475d9290ac3723735a7d6ba3b3695758a89c46a106a56501a')
+sha256sums=('8444353e4e2a99661c8dfb85ec9c02eedded08f0006234bff7db44a06840acc2')
+b2sums=('845445b83db124025b1d6908a455faea440111e33e45b376ad5038598a5f285d55104ce9334cf53084c09c3d6a0eff06650df1a16ea14df696779f72beca2eac')
 
 build() {
   cd "$_name-$pkgver"
@@ -21,12 +21,12 @@
   python -m build --wheel --skip-dependency-check --no-isolation
 }
 
-check() {
-  cd "$_name-$pkgver"
-  python -m venv --system-site-packages test-env
-  test-env/bin/python -m installer dist/*.whl
-  test-env/bin/python -m pytest
-}
+#check() {
+#  cd "$_name-$pkgver"
+#  python -m venv --system-site-packages test-env
+#  test-env/bin/python -m installer dist/*.whl
+#  test-env/bin/python -m pytest
+#}
 
 package() {
   cd "$_name-$pkgver"
@@ -38,5 +38,3 @@
   ln -s "$site_packages"/$_name-$pkgver.dist-info/LICENSE \
 "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
 }
-
-# vim:set ts=2 sw=2 et:



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

2022-08-13 Thread Anatol Pomozov via arch-commits
Date: Saturday, August 13, 2022 @ 19:36:53
  Author: anatolik
Revision: 1265999

archrelease: copy trunk to community-x86_64

Added:
  tarantool/repos/community-x86_64/PKGBUILD
(from rev 1265998, tarantool/trunk/PKGBUILD)
  tarantool/repos/community-x86_64/tarantool.sysusers
(from rev 1265998, tarantool/trunk/tarantool.sysusers)
Deleted:
  tarantool/repos/community-x86_64/PKGBUILD
  tarantool/repos/community-x86_64/tarantool.sysusers

+
 PKGBUILD   |  226 +--
 tarantool.sysusers |4 
 2 files changed, 115 insertions(+), 115 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-13 19:36:29 UTC (rev 1265998)
+++ PKGBUILD2022-08-13 19:36:53 UTC (rev 1265999)
@@ -1,113 +0,0 @@
-# Maintainer: Anatol Pomozov 
-
-pkgname=tarantool
-pkgver=2.10.0
-pkgrel=1
-pkgdesc='Lua application server integrated with a database management system'
-arch=(x86_64)
-url='https://www.tarantool.org'
-license=(BSD)
-depends=(readline ncurses zlib libyaml openssl libunwind icu)
-makedepends=(git cmake systemd)
-checkdepends=(python-gevent python-tarantool)
-source=(git+https://github.com/tarantool/tarantool.git#tag=$pkgver
-git+https://github.com/tarantool/luajit.git#branch=tarantool-1.7
-git+https://github.com/tarantool/libyaml.git
-git+https://github.com/tarantool/msgpuck.git
-git+https://github.com/luafun/luafun.git
-git+https://github.com/tarantool/test-run.git
-git+https://github.com/tarantool/small.git
-git+https://github.com/tarantool/zstd.git
-
git+https://github.com/tarantool/luarocks.git#branch=luarocks-3.1.1-tarantool
-git+https://github.com/tarantool/decNumber.git
-git+https://github.com/tarantool/curl.git
-git+https://github.com/tarantool/c-ares.git
-git+https://github.com/tarantool/xxHash
-git+https://github.com/tarantool/c-dt.git
-git+https://github.com/tarantool/lua-zlib.git
-git+https://github.com/tarantool/luazip.git
-git+https://github.com/tarantool/nghttp2.git
-
git+https://github.com/tarantool/libunwind.git#branch=libunwind-1.6.2-tarantool
-git+https://github.com/tarantool/tz.git
-tarantool.sysusers)
-sha256sums=('SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'2feccda75effbd44b40e43608e56395376ea7b9039a09aada91a05f9559b12fe')
-
-prepare() {
-  cd tarantool
-
-  git submodule init
-  git config -f .gitmodules 'submodule.third_party/luajit.url' "$srcdir/luajit"
-  git config -f .gitmodules 'submodule.third_party/libyaml.url' 
"$srcdir/libyaml"
-  git config -f .gitmodules 'submodule.src/lib/msgpuck.url' "$srcdir/msgpuck"
-  git config -f .gitmodules 'submodule.third_party/luafun.url' "$srcdir/luafun"
-  git config -f .gitmodules 'submodule.test-run.url' "$srcdir/test-run"
-  git config -f .gitmodules 'submodule.src/lib/small.url' "$srcdir/small"
-  git config -f .gitmodules 'submodule.third_party/zstd.url' "$srcdir/zstd"
-  git config -f .gitmodules 'submodule.third_party/luarocks.url' 
"$srcdir/luarocks"
-  git config -f .gitmodules 'submodule.third_party/decNumber.url' 
"$srcdir/decNumber"
-  git config -f .gitmodules 'submodule.third_party/curl.url' "$srcdir/curl"
-  git config -f .gitmodules 'submodule.third_party/c-ares.url' "$srcdir/c-ares"
-  git config -f .gitmodules 'submodule.third_party/xxHash.url' "$srcdir/xxHash"
-  git config -f .gitmodules 'submodule.third_party/c-dt.url' "$srcdir/c-dt"
-  git config -f .gitmodules 'submodule.third_party/lua-zlib.url' 
"$srcdir/lua-zlib"
-  git config -f .gitmodules 'submodule.third_party/luazip.url' "$srcdir/luazip"
-  git config -f .gitmodules 'submodule.third_party/nghttp2.url' 
"$srcdir/nghttp2"
-  git config -f .gitmodules 'submodule.third_party/libunwind.url' 
"$srcdir/libunwind"
-  git config -f .gitmodules 'submodule.third_party/tz.url' "$srcdir/tz"
-
-  git submodule sync
-  git submodule update
-}
-
-build() {
-  cd tarantool
-
-  # tarantool uses git submodule, handle this
-  cmake \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_BINDIR=/usr/bin \
--DCMAKE_INSTALL_SYSCONFDIR=/etc \
--DCMAKE_INSTALL_LIBDIR=/usr/lib \
--DCMAKE_BUILD_TYPE=RelWithDebInfo \
--DCMAKE_SKIP_RPATH=ON \
--DENABLE_BACKTRACE:BOOL=ON \
--DWITH_SYSTEMD:BOOL=ON \
--DENABLE_DIST:BOOL=ON \
--DENABLE_LTO:BOOL=ON \
-.
-  make
-}
-
-check() {
-  cd "$srcdir/tarantool/test"
-  python test-run.py --suite box
-}
-
-package() {
-  cd tarantool
-  make install DESTDIR="$pkgdir"
-
-  sed 's|/var/run/|/run/|' -i 

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

2022-08-13 Thread Anatol Pomozov via arch-commits
Date: Saturday, August 13, 2022 @ 19:36:29
  Author: anatolik
Revision: 1265998

upgpkg: tarantool 2.10.1-1

Modified:
  tarantool/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-13 19:21:54 UTC (rev 1265997)
+++ PKGBUILD2022-08-13 19:36:29 UTC (rev 1265998)
@@ -1,7 +1,7 @@
 # Maintainer: Anatol Pomozov 
 
 pkgname=tarantool
-pkgver=2.10.0
+pkgver=2.10.1
 pkgrel=1
 pkgdesc='Lua application server integrated with a database management system'
 arch=(x86_64)
@@ -18,7 +18,7 @@
 git+https://github.com/tarantool/test-run.git
 git+https://github.com/tarantool/small.git
 git+https://github.com/tarantool/zstd.git
-
git+https://github.com/tarantool/luarocks.git#branch=luarocks-3.1.1-tarantool
+
git+https://github.com/tarantool/luarocks.git#branch=luarocks-3.1.3-tarantool
 git+https://github.com/tarantool/decNumber.git
 git+https://github.com/tarantool/curl.git
 git+https://github.com/tarantool/c-ares.git



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

2022-08-13 Thread Daniel M. Capella via arch-commits
Date: Saturday, August 13, 2022 @ 19:20:28
  Author: polyzen
Revision: 1265996

archrelease: copy trunk to community-any

Added:
  python-stack-data/repos/community-any/PKGBUILD
(from rev 1265995, python-stack-data/trunk/PKGBUILD)
Deleted:
  python-stack-data/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-13 19:20:09 UTC (rev 1265995)
+++ PKGBUILD2022-08-13 19:20:28 UTC (rev 1265996)
@@ -1,43 +0,0 @@
-# Maintainer: Daniel M. Capella 
-
-_name=stack_data
-pkgname=python-stack-data
-pkgver=0.3.0
-pkgrel=1
-pkgdesc='Extract data from python stack frames and tracebacks for informative 
displays'
-arch=('any')
-url=https://github.com/alexmojaki/stack_data
-license=('MIT')
-depends=('python-asttokens' 'python-executing' 'python-pure-eval')
-makedepends=('python-build' 'python-installer' 'python-setuptools-scm'
- 'python-wheel')
-checkdepends=('cython' 'python-littleutils' 'python-pygments' 'python-pytest'
-  'python-typeguard')
-source=("https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz;)
-sha256sums=('77bec1402dcd0987e9022326473fdbcc767304892a533ed8c29888dacb7dddbc')
-b2sums=('9202ddb2e6e8c8c9e050e085cfe6e1bdbf26124eb85c19516558336d46876aba5ede1b6a87cf17e09c2b44629063a8f5e1f558fdaf64db2db029978a5860cd99')
-
-build() {
-  cd "$_name-$pkgver"
-  python -m build --wheel --skip-dependency-check --no-isolation
-}
-
-check() {
-  cd "$_name-$pkgver"
-  python -m venv --system-site-packages test-env
-  test-env/bin/python -m installer dist/*.whl
-  test-env/bin/python -m pytest
-}
-
-package() {
-  cd "$_name-$pkgver"
-  python -m installer --destdir="$pkgdir" dist/*.whl
-
-  # Symlink license file
-  local site_packages=$(python -c "import site; 
print(site.getsitepackages()[0])")
-  install -d "$pkgdir"/usr/share/licenses/$pkgname
-  ln -s "$site_packages"/$_name-$pkgver.dist-info/LICENSE.txt \
-"$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-stack-data/repos/community-any/PKGBUILD (from rev 1265995, 
python-stack-data/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-13 19:20:28 UTC (rev 1265996)
@@ -0,0 +1,41 @@
+# Maintainer: Daniel M. Capella 
+
+_name=stack_data
+pkgname=python-stack-data
+pkgver=0.4.0
+pkgrel=1
+pkgdesc='Extract data from python stack frames and tracebacks for informative 
displays'
+arch=('any')
+url=https://github.com/alexmojaki/stack_data
+license=('MIT')
+depends=('python-asttokens' 'python-executing' 'python-pure-eval')
+makedepends=('python-build' 'python-installer' 'python-setuptools-scm'
+ 'python-wheel')
+checkdepends=('cython' 'python-littleutils' 'python-pygments' 'python-pytest'
+  'python-typeguard')
+source=("https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz;)
+sha256sums=('a90ae7e260f7d15aefeceb46f0a028d4ccb9eb8856475c53e341945342d41ea7')
+b2sums=('1395ce2ba5ce12af2ab4e9c3d4b42c2b5c14fe09013469fb8c659899b0d9a78ce9d12b4a37223d651d4e8bafeb5c1d97437690084dc4592cf8c04fb7236f5b0d')
+
+build() {
+  cd "$_name-$pkgver"
+  python -m build --wheel --skip-dependency-check --no-isolation
+}
+
+check() {
+  cd "$_name-$pkgver"
+  python -m venv --system-site-packages test-env
+  test-env/bin/python -m installer dist/*.whl
+  test-env/bin/python -m pytest
+}
+
+package() {
+  cd "$_name-$pkgver"
+  python -m installer --destdir="$pkgdir" dist/*.whl
+
+  # Symlink license file
+  local site_packages=$(python -c "import site; 
print(site.getsitepackages()[0])")
+  install -d "$pkgdir"/usr/share/licenses/$pkgname
+  ln -s "$site_packages"/$_name-$pkgver.dist-info/LICENSE.txt \
+"$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt
+}



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

2022-08-13 Thread Daniel M. Capella via arch-commits
Date: Saturday, August 13, 2022 @ 19:20:09
  Author: polyzen
Revision: 1265995

upgpkg: python-stack-data 0.4.0-1

Modified:
  python-stack-data/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-13 19:19:42 UTC (rev 1265994)
+++ PKGBUILD2022-08-13 19:20:09 UTC (rev 1265995)
@@ -2,7 +2,7 @@
 
 _name=stack_data
 pkgname=python-stack-data
-pkgver=0.3.0
+pkgver=0.4.0
 pkgrel=1
 pkgdesc='Extract data from python stack frames and tracebacks for informative 
displays'
 arch=('any')
@@ -14,8 +14,8 @@
 checkdepends=('cython' 'python-littleutils' 'python-pygments' 'python-pytest'
   'python-typeguard')
 
source=("https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz;)
-sha256sums=('77bec1402dcd0987e9022326473fdbcc767304892a533ed8c29888dacb7dddbc')
-b2sums=('9202ddb2e6e8c8c9e050e085cfe6e1bdbf26124eb85c19516558336d46876aba5ede1b6a87cf17e09c2b44629063a8f5e1f558fdaf64db2db029978a5860cd99')
+sha256sums=('a90ae7e260f7d15aefeceb46f0a028d4ccb9eb8856475c53e341945342d41ea7')
+b2sums=('1395ce2ba5ce12af2ab4e9c3d4b42c2b5c14fe09013469fb8c659899b0d9a78ce9d12b4a37223d651d4e8bafeb5c1d97437690084dc4592cf8c04fb7236f5b0d')
 
 build() {
   cd "$_name-$pkgver"
@@ -39,5 +39,3 @@
   ln -s "$site_packages"/$_name-$pkgver.dist-info/LICENSE.txt \
 "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt
 }
-
-# vim:set ts=2 sw=2 et:



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

2022-08-13 Thread Daniel M. Capella via arch-commits
Date: Saturday, August 13, 2022 @ 19:19:42
  Author: polyzen
Revision: 1265994

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-13 19:19:23 UTC (rev 1265993)
+++ PKGBUILD2022-08-13 19:19:42 UTC (rev 1265994)
@@ -1,41 +0,0 @@
-# Maintainer: Daniel M. Capella 
-
-_name=executing
-pkgname=python-executing
-pkgver=0.9.1
-pkgrel=1
-pkgdesc='Get the currently executing AST node of a frame, and other 
information'
-arch=('any')
-url=https://github.com/alexmojaki/executing
-license=('MIT')
-depends=('python')
-makedepends=('python-build' 'python-installer' 'python-setuptools-scm'
- 'python-wheel')
-checkdepends=('python-asttokens' 'python-littleutils' 'python-pytest')
-source=("https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz;)
-sha256sums=('ea278e2cf90cbbacd24f1080dd1f0ac25b71b2e21f50ab439b7ba45dd3195587')
-b2sums=('2fe01efab3d6ed268651c5b4b5765bb928d8af7c3674993e321306853cf66c6dbb25c77a167f6236578a0a628dbf4126834bffeb2370f529396759e81a1b51cc')
-
-build() {
-  cd "$_name-$pkgver"
-  python -m build --wheel --skip-dependency-check --no-isolation
-}
-
-check() {
-  cd "$_name-$pkgver"
-  python -m venv --system-site-packages test-env
-  test-env/bin/python -m installer dist/*.whl
-  test-env/bin/python tests/test_main.py
-  test-env/bin/python -m pytest tests/test_pytest.py
-}
-
-package() {
-  cd "$_name-$pkgver"
-  python -m installer --destdir="$pkgdir" dist/*.whl
-
-  # Symlink license file
-  local site_packages=$(python -c "import site; 
print(site.getsitepackages()[0])")
-  install -d "$pkgdir"/usr/share/licenses/$pkgname
-  ln -s "$site_packages"/$_name-$pkgver.dist-info/LICENSE.txt \
-"$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt
-}

Copied: python-executing/repos/community-any/PKGBUILD (from rev 1265993, 
python-executing/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-13 19:19:42 UTC (rev 1265994)
@@ -0,0 +1,41 @@
+# Maintainer: Daniel M. Capella 
+
+_name=executing
+pkgname=python-executing
+pkgver=0.10.0
+pkgrel=1
+pkgdesc='Get the currently executing AST node of a frame, and other 
information'
+arch=('any')
+url=https://github.com/alexmojaki/executing
+license=('MIT')
+depends=('python')
+makedepends=('python-build' 'python-installer' 'python-setuptools-scm'
+ 'python-wheel')
+checkdepends=('python-asttokens' 'python-littleutils' 'python-pytest')
+source=("https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz;)
+sha256sums=('d1cd87c2e371e9966261410c5b3769d6df2f9e4a79a83eebd2662dd3388f9833')
+b2sums=('99842e3d096fe5d89ff517d13491c7f9be1646e4c7f4d3bb7994fade59d498b0a62efaac44546d0ba27e36b293bf2e2bbba019b0229d8857b6867c1cffa541ec')
+
+build() {
+  cd "$_name-$pkgver"
+  python -m build --wheel --skip-dependency-check --no-isolation
+}
+
+check() {
+  cd "$_name-$pkgver"
+  python -m venv --system-site-packages test-env
+  test-env/bin/python -m installer dist/*.whl
+  test-env/bin/python tests/test_main.py
+  test-env/bin/python -m pytest tests/test_pytest.py
+}
+
+package() {
+  cd "$_name-$pkgver"
+  python -m installer --destdir="$pkgdir" dist/*.whl
+
+  # Symlink license file
+  local site_packages=$(python -c "import site; 
print(site.getsitepackages()[0])")
+  install -d "$pkgdir"/usr/share/licenses/$pkgname
+  ln -s "$site_packages"/$_name-$pkgver.dist-info/LICENSE.txt \
+"$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt
+}



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

2022-08-13 Thread Daniel M. Capella via arch-commits
Date: Saturday, August 13, 2022 @ 19:19:23
  Author: polyzen
Revision: 1265993

upgpkg: python-executing 0.10.0-1

Modified:
  python-executing/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-13 19:13:30 UTC (rev 1265992)
+++ PKGBUILD2022-08-13 19:19:23 UTC (rev 1265993)
@@ -2,7 +2,7 @@
 
 _name=executing
 pkgname=python-executing
-pkgver=0.9.1
+pkgver=0.10.0
 pkgrel=1
 pkgdesc='Get the currently executing AST node of a frame, and other 
information'
 arch=('any')
@@ -13,8 +13,8 @@
  'python-wheel')
 checkdepends=('python-asttokens' 'python-littleutils' 'python-pytest')
 
source=("https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz;)
-sha256sums=('ea278e2cf90cbbacd24f1080dd1f0ac25b71b2e21f50ab439b7ba45dd3195587')
-b2sums=('2fe01efab3d6ed268651c5b4b5765bb928d8af7c3674993e321306853cf66c6dbb25c77a167f6236578a0a628dbf4126834bffeb2370f529396759e81a1b51cc')
+sha256sums=('d1cd87c2e371e9966261410c5b3769d6df2f9e4a79a83eebd2662dd3388f9833')
+b2sums=('99842e3d096fe5d89ff517d13491c7f9be1646e4c7f4d3bb7994fade59d498b0a62efaac44546d0ba27e36b293bf2e2bbba019b0229d8857b6867c1cffa541ec')
 
 build() {
   cd "$_name-$pkgver"



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

2022-08-13 Thread Daniel M. Capella via arch-commits
Date: Saturday, August 13, 2022 @ 19:13:30
  Author: polyzen
Revision: 1265992

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-13 19:13:11 UTC (rev 1265991)
+++ PKGBUILD2022-08-13 19:13:30 UTC (rev 1265992)
@@ -1,41 +0,0 @@
-# Maintainer: Daniel M. Capella 
-
-_name=tzdata
-pkgname=python-tzdata
-pkgver=2022.1
-pkgrel=1
-pkgdesc='Provider of IANA time zone data'
-arch=('any')
-url=https://github.com/python/tzdata
-license=('Apache')
-depends=('python')
-makedepends=('python-build' 'python-installer' 'python-setuptools' 
'python-wheel')
-checkdepends=('python-pytest' 'python-pytest-subtests')
-source=("https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz;)
-sha256sums=('8b536a8ec63dc0751342b3984193a3118f8fca2afe25752bb9b7fffd398552d3')
-b2sums=('b3062514e0ce8a9c3e68cd6b5969292f1a8aafceb37f3bc5518ad37024f08c508e4dad00f477bdaaa2d187fcef7e650cc949af9d273d2d90c3017f4bf3628f0c')
-
-build() {
-  cd $_name-$pkgver
-  python -m build --wheel --skip-dependency-check --no-isolation
-}
-
-check() {
-  cd $_name-$pkgver
-  python -m venv --system-site-packages test-env
-  test-env/bin/python -m installer dist/*.whl
-  test-env/bin/python -m pytest
-}
-
-package() {
-  cd $_name-$pkgver
-  python -m installer --destdir="$pkgdir" dist/*.whl
-
-  # Symlink license file
-  local site_packages=$(python -c "import site; 
print(site.getsitepackages()[0])")
-  install -d "$pkgdir"/usr/share/licenses/$pkgname
-  ln -s "$site_packages"/$_name-$pkgver.dist-info/LICENSE \
-"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-tzdata/repos/community-any/PKGBUILD (from rev 1265991, 
python-tzdata/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-13 19:13:30 UTC (rev 1265992)
@@ -0,0 +1,39 @@
+# Maintainer: Daniel M. Capella 
+
+_name=tzdata
+pkgname=python-tzdata
+pkgver=2022.2
+pkgrel=1
+pkgdesc='Provider of IANA time zone data'
+arch=('any')
+url=https://github.com/python/tzdata
+license=('Apache')
+depends=('python')
+makedepends=('python-build' 'python-installer' 'python-setuptools' 
'python-wheel')
+checkdepends=('python-pytest' 'python-pytest-subtests')
+source=("https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz;)
+sha256sums=('21f4f0d7241572efa7f7a4fdabb052e61b55dc48274e6842697ccdf5253e5451')
+b2sums=('5822553a06c3a9f28839e4b07ac10571ad0e122f7dd73f5de889d7a4104465291ab744a604f2d077f75c00538b628b7e325a1ee6efb275b7d9cfa13057b0b59a')
+
+build() {
+  cd $_name-$pkgver
+  python -m build --wheel --skip-dependency-check --no-isolation
+}
+
+check() {
+  cd $_name-$pkgver
+  python -m venv --system-site-packages test-env
+  test-env/bin/python -m installer dist/*.whl
+  test-env/bin/python -m pytest
+}
+
+package() {
+  cd $_name-$pkgver
+  python -m installer --destdir="$pkgdir" dist/*.whl
+
+  # Symlink license file
+  local site_packages=$(python -c "import site; 
print(site.getsitepackages()[0])")
+  install -d "$pkgdir"/usr/share/licenses/$pkgname
+  ln -s "$site_packages"/$_name-$pkgver.dist-info/LICENSE \
+"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}



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

2022-08-13 Thread Daniel M. Capella via arch-commits
Date: Saturday, August 13, 2022 @ 19:13:11
  Author: polyzen
Revision: 1265991

upgpkg: python-tzdata 2022.2-1

Modified:
  python-tzdata/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-13 18:38:35 UTC (rev 1265990)
+++ PKGBUILD2022-08-13 19:13:11 UTC (rev 1265991)
@@ -2,7 +2,7 @@
 
 _name=tzdata
 pkgname=python-tzdata
-pkgver=2022.1
+pkgver=2022.2
 pkgrel=1
 pkgdesc='Provider of IANA time zone data'
 arch=('any')
@@ -12,8 +12,8 @@
 makedepends=('python-build' 'python-installer' 'python-setuptools' 
'python-wheel')
 checkdepends=('python-pytest' 'python-pytest-subtests')
 
source=("https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz;)
-sha256sums=('8b536a8ec63dc0751342b3984193a3118f8fca2afe25752bb9b7fffd398552d3')
-b2sums=('b3062514e0ce8a9c3e68cd6b5969292f1a8aafceb37f3bc5518ad37024f08c508e4dad00f477bdaaa2d187fcef7e650cc949af9d273d2d90c3017f4bf3628f0c')
+sha256sums=('21f4f0d7241572efa7f7a4fdabb052e61b55dc48274e6842697ccdf5253e5451')
+b2sums=('5822553a06c3a9f28839e4b07ac10571ad0e122f7dd73f5de889d7a4104465291ab744a604f2d077f75c00538b628b7e325a1ee6efb275b7d9cfa13057b0b59a')
 
 build() {
   cd $_name-$pkgver
@@ -37,5 +37,3 @@
   ln -s "$site_packages"/$_name-$pkgver.dist-info/LICENSE \
 "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
 }
-
-# vim:set ts=2 sw=2 et:



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

2022-08-13 Thread Felix Yan via arch-commits
Date: Saturday, August 13, 2022 @ 18:38:35
  Author: felixonmars
Revision: 1265990

archrelease: copy trunk to community-x86_64

Added:
  rime-cantonese/repos/community-x86_64/PKGBUILD
(from rev 1265989, rime-cantonese/trunk/PKGBUILD)
Deleted:
  rime-cantonese/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-13 18:38:20 UTC (rev 1265989)
+++ PKGBUILD2022-08-13 18:38:35 UTC (rev 1265990)
@@ -1,35 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=rime-cantonese
-pkgver=0.0.0.20220105
-_commit=2dd3594056731543ccc8d96fbdb0c1dba99206aa
-pkgrel=1
-pkgdesc="Cantonese input for rime"
-arch=('x86_64')
-url="https://github.com/rime/rime-cantonese;
-license=('CCPL:cc-by')
-# dependency for reverse lookup
-depends=('rime-cangjie' 'rime-emoji' 'rime-loengfan' 'rime-luna-pinyin' 
'rime-stroke')
-makedepends=('librime' 'rime-prelude' 'rime-essay')
-source=("https://github.com/rime/rime-cantonese/archive/$_commit/rime-cantonese-$_commit.tar.gz;)
-sha512sums=('e268ea99257dc3ba36d9df8ef9177928aabb1c35f2a6cc8df76a6733d621dfd4729798e55c375b4a8ee5eaa6b268d9feec98b2c4bc62f3cc08f56b19002f2840')
-
-prepare() {
-  cd $pkgname-$_commit
-  # Link essentials
-  for _f in $(pacman -Qql rime-prelude rime-essay | grep -v "/$"); do ln -sf 
$_f; done
-}
-
-build(){
-  cd $pkgname-$_commit
-  for _s in $(ls *.schema.yaml); do rime_deployer --compile $_s; done
-}
-
-package() {
-  cd $pkgname-$_commit
-  find . -type l -delete
-  rm build/*.txt
-  install -Dm644 *.yaml -t "$pkgdir"/usr/share/rime-data/
-  install -Dm644 build/* -t "$pkgdir"/usr/share/rime-data/build/
-  install -Dm644 opencc/* -t "$pkgdir"/usr/share/rime-data/opencc/
-}

Copied: rime-cantonese/repos/community-x86_64/PKGBUILD (from rev 1265989, 
rime-cantonese/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-13 18:38:35 UTC (rev 1265990)
@@ -0,0 +1,35 @@
+# Maintainer: Felix Yan 
+
+pkgname=rime-cantonese
+pkgver=0.0.0.20220317
+_commit=b06434eb77f975d5ae9a9fddf866c9a78766dca5
+pkgrel=1
+pkgdesc="Cantonese input for rime"
+arch=('x86_64')
+url="https://github.com/rime/rime-cantonese;
+license=('CCPL:cc-by')
+# dependency for reverse lookup
+depends=('rime-cangjie' 'rime-emoji' 'rime-loengfan' 'rime-luna-pinyin' 
'rime-stroke')
+makedepends=('librime' 'rime-prelude' 'rime-essay')
+source=("https://github.com/rime/rime-cantonese/archive/$_commit/rime-cantonese-$_commit.tar.gz;)
+sha512sums=('b7661d43df9bdd0d91b4bcdcd08ee728c4a5fb0b964f5114d2fba963dd75ba42608785a22cd9245868927a59a0bb3d686db80ee031eed48d0bd947f32ac0138a')
+
+prepare() {
+  cd $pkgname-$_commit
+  # Link essentials
+  for _f in $(pacman -Qql rime-prelude rime-essay | grep -v "/$"); do ln -sf 
$_f; done
+}
+
+build(){
+  cd $pkgname-$_commit
+  for _s in $(ls *.schema.yaml); do rime_deployer --compile $_s; done
+}
+
+package() {
+  cd $pkgname-$_commit
+  find . -type l -delete
+  rm build/*.txt
+  install -Dm644 *.yaml -t "$pkgdir"/usr/share/rime-data/
+  install -Dm644 build/* -t "$pkgdir"/usr/share/rime-data/build/
+  install -Dm644 opencc/* -t "$pkgdir"/usr/share/rime-data/opencc/
+}



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

2022-08-13 Thread Felix Yan via arch-commits
Date: Saturday, August 13, 2022 @ 18:38:20
  Author: felixonmars
Revision: 1265989

upgpkg: rime-cantonese 0.0.0.20220317-1

Modified:
  rime-cantonese/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-13 18:38:10 UTC (rev 1265988)
+++ PKGBUILD2022-08-13 18:38:20 UTC (rev 1265989)
@@ -1,8 +1,8 @@
 # Maintainer: Felix Yan 
 
 pkgname=rime-cantonese
-pkgver=0.0.0.20220105
-_commit=2dd3594056731543ccc8d96fbdb0c1dba99206aa
+pkgver=0.0.0.20220317
+_commit=b06434eb77f975d5ae9a9fddf866c9a78766dca5
 pkgrel=1
 pkgdesc="Cantonese input for rime"
 arch=('x86_64')
@@ -12,7 +12,7 @@
 depends=('rime-cangjie' 'rime-emoji' 'rime-loengfan' 'rime-luna-pinyin' 
'rime-stroke')
 makedepends=('librime' 'rime-prelude' 'rime-essay')
 
source=("https://github.com/rime/rime-cantonese/archive/$_commit/rime-cantonese-$_commit.tar.gz;)
-sha512sums=('e268ea99257dc3ba36d9df8ef9177928aabb1c35f2a6cc8df76a6733d621dfd4729798e55c375b4a8ee5eaa6b268d9feec98b2c4bc62f3cc08f56b19002f2840')
+sha512sums=('b7661d43df9bdd0d91b4bcdcd08ee728c4a5fb0b964f5114d2fba963dd75ba42608785a22cd9245868927a59a0bb3d686db80ee031eed48d0bd947f32ac0138a')
 
 prepare() {
   cd $pkgname-$_commit



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

2022-08-13 Thread Felix Yan via arch-commits
Date: Saturday, August 13, 2022 @ 18:38:10
  Author: felixonmars
Revision: 1265988

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-13 18:37:55 UTC (rev 1265987)
+++ PKGBUILD2022-08-13 18:38:10 UTC (rev 1265988)
@@ -1,30 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Stéphane Gaudreault 
-
-pkgname=python-pytools
-pkgver=2022.1.8
-pkgrel=1
-pkgdesc="A collection of tools for Python"
-arch=('any')
-url="https://mathema.tician.de/software/pytools;
-license=('MIT')
-depends=('python-numpy' 'python-platformdirs' 'python-typing_extensions')
-makedepends=('python-setuptools')
-checkdepends=('python-pytest')
-source=("https://pypi.io/packages/source/p/pytools/pytools-$pkgver.tar.gz;)
-sha512sums=('eef882303ecd7b7a9fb6669eaf6d70cb0ede5860e5011a4a5873df1ef9694e4726c70c61e614a48c007052e42bdd0b762aacefc8547969e8babecc3c19c95b5c')
-
-build() {
-  cd pytools-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd pytools-$pkgver
-  python -m pytest
-}
-
-package(){
-  cd pytools-$pkgver
-  python setup.py install --prefix=/usr --root="$pkgdir" --skip-build 
--optimize=1
-}

Copied: python-pytools/repos/community-any/PKGBUILD (from rev 1265987, 
python-pytools/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-13 18:38:10 UTC (rev 1265988)
@@ -0,0 +1,30 @@
+# Maintainer: Felix Yan 
+# Contributor: Stéphane Gaudreault 
+
+pkgname=python-pytools
+pkgver=2022.1.9
+pkgrel=1
+pkgdesc="A collection of tools for Python"
+arch=('any')
+url="https://mathema.tician.de/software/pytools;
+license=('MIT')
+depends=('python-numpy' 'python-platformdirs' 'python-typing_extensions')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest')
+source=("https://pypi.io/packages/source/p/pytools/pytools-$pkgver.tar.gz;)
+sha512sums=('242b41010db581ad18bc96572bd8f25b15ff4228e1ea3ad8eca2016a36d6a2b55bcc570437821eb40605ab45f574b738f8364adbfd0cac28c2b12fb75e75dd14')
+
+build() {
+  cd pytools-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd pytools-$pkgver
+  python -m pytest
+}
+
+package(){
+  cd pytools-$pkgver
+  python setup.py install --prefix=/usr --root="$pkgdir" --skip-build 
--optimize=1
+}



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

2022-08-13 Thread Felix Yan via arch-commits
Date: Saturday, August 13, 2022 @ 18:37:55
  Author: felixonmars
Revision: 1265987

upgpkg: python-pytools 2022.1.9-1

Modified:
  python-pytools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-13 17:52:06 UTC (rev 1265986)
+++ PKGBUILD2022-08-13 18:37:55 UTC (rev 1265987)
@@ -2,7 +2,7 @@
 # Contributor: Stéphane Gaudreault 
 
 pkgname=python-pytools
-pkgver=2022.1.8
+pkgver=2022.1.9
 pkgrel=1
 pkgdesc="A collection of tools for Python"
 arch=('any')
@@ -12,7 +12,7 @@
 makedepends=('python-setuptools')
 checkdepends=('python-pytest')
 source=("https://pypi.io/packages/source/p/pytools/pytools-$pkgver.tar.gz;)
-sha512sums=('eef882303ecd7b7a9fb6669eaf6d70cb0ede5860e5011a4a5873df1ef9694e4726c70c61e614a48c007052e42bdd0b762aacefc8547969e8babecc3c19c95b5c')
+sha512sums=('242b41010db581ad18bc96572bd8f25b15ff4228e1ea3ad8eca2016a36d6a2b55bcc570437821eb40605ab45f574b738f8364adbfd0cac28c2b12fb75e75dd14')
 
 build() {
   cd pytools-$pkgver



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

2022-08-13 Thread Felix Yan via arch-commits
Date: Saturday, August 13, 2022 @ 17:32:59
  Author: felixonmars
Revision: 1265983

archrelease: copy trunk to community-staging-x86_64

Added:
  taskell/repos/community-staging-x86_64/
  taskell/repos/community-staging-x86_64/PKGBUILD
(from rev 1265982, taskell/trunk/PKGBUILD)

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

Copied: taskell/repos/community-staging-x86_64/PKGBUILD (from rev 1265982, 
taskell/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-08-13 17:32:59 UTC (rev 1265983)
@@ -0,0 +1,44 @@
+# Maintainer: Jelle van der Waa https://hackage.haskell.org/package/$pkgname;
+depends=(ghc-libs haskell-aeson haskell-attoparsec haskell-brick 
haskell-config-ini haskell-file-embed haskell-fold-debounce haskell-http-client 
haskell-http-conduit haskell-http-types haskell-lens haskell-tz haskell-vty 
haskell-classy-prelude)
+makedepends=(ghc haskell-classy-prelude haskell-raw-strings-qq haskell-tasty 
haskell-tasty-discover haskell-tasty-expected-failure haskell-tasty-hunit)
+source=(https://hackage.haskell.org/packages/archive/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz)
+sha512sums=('34d75d01c8e88fbbb932dbe6394e570b454156f1ad02173616616c493f65bfc5c4d28ed4089312410f8cb1760a523052fe132bfcd44b8bbf42e912fe9da2cc10')
+
+build() {
+  cd $pkgname-$pkgver
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --datasubdir=$pkgname 
--enable-tests \
+--datasubdir=$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid 
--ghc-option=-fllvm \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+  runhaskell Setup build $MAKEFLAGS
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+  cd $pkgname-$pkgver
+  runhaskell Setup test --show-details=direct
+}
+
+package() {
+  cd $pkgname-$pkgver
+  runghc Setup.hs copy --destdir="$pkgdir"
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+  # Doc only contains the license
+  rm -rf "$pkgdir/usr/share/doc"
+}
+
+# vim: ts=2 sw=2 et:



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

2022-08-13 Thread Felix Yan via arch-commits
Date: Saturday, August 13, 2022 @ 17:32:45
  Author: felixonmars
Revision: 1265982

upgpkg: taskell 1.11.4-199: rebuild with tzdata 0.2.20220810.0

Modified:
  taskell/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-13 17:31:25 UTC (rev 1265981)
+++ PKGBUILD2022-08-13 17:32:45 UTC (rev 1265982)
@@ -2,7 +2,7 @@
 
 pkgname=taskell
 pkgver=1.11.4
-pkgrel=198
+pkgrel=199
 pkgdesc='A command-line kanban board/task manager'
 license=(BSD)
 arch=(x86_64)



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

2022-08-13 Thread Felix Yan via arch-commits
Date: Saturday, August 13, 2022 @ 17:31:25
  Author: felixonmars
Revision: 1265981

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-tz/repos/community-staging-x86_64/PKGBUILD (from rev 1265980, 
haskell-tz/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-08-13 17:31:25 UTC (rev 1265981)
@@ -0,0 +1,50 @@
+# Maintainer: Jelle van der Waa 
+
+_hkgname=tz
+pkgname=haskell-tz
+pkgver=0.1.3.6
+pkgrel=35
+pkgdesc='Efficient time zone handling'
+arch=(x86_64)
+url='https://github.com/ysangkok/haskell-tz'
+license=(BSD)
+depends=(ghc-libs haskell-vector haskell-data-default haskell-tzdata)
+checkdepends=(haskell-tasty haskell-tasty-th haskell-hunit haskell-quickcheck
+  haskell-tasty-quickcheck haskell-tasty-hunit)
+makedepends=(ghc)
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+sha512sums=('d9b7b8964dbaa1bb4d9f805e01d3029313c676743b28c336d17ae98bb984ad8671a1712e9b927588b823ece68805eec8d637f3d8161cb3b63cfc0e609e3c7df3')
+
+build() {
+  cd $_hkgname-$pkgver
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --datasubdir=$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid 
--ghc-option=-fllvm \
+--enable-tests \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+
+  runhaskell Setup build $MAKEFLAGS
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+  cd $_hkgname-$pkgver
+  runhaskell Setup test --show-details=direct
+}
+
+package() {
+  cd $_hkgname-$pkgver
+
+  install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh
+  install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+  runhaskell Setup copy --destdir="$pkgdir"
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+  rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}
+
+# vim: ts=2 sw=2 et:



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

2022-08-13 Thread Felix Yan via arch-commits
Date: Saturday, August 13, 2022 @ 17:31:11
  Author: felixonmars
Revision: 1265980

upgpkg: haskell-tz 0.1.3.6-35: rebuild with tzdata 0.2.20220810.0

Modified:
  haskell-tz/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-13 17:30:31 UTC (rev 1265979)
+++ PKGBUILD2022-08-13 17:31:11 UTC (rev 1265980)
@@ -3,7 +3,7 @@
 _hkgname=tz
 pkgname=haskell-tz
 pkgver=0.1.3.6
-pkgrel=34
+pkgrel=35
 pkgdesc='Efficient time zone handling'
 arch=(x86_64)
 url='https://github.com/ysangkok/haskell-tz'



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

2022-08-13 Thread Felix Yan via arch-commits
Date: Saturday, August 13, 2022 @ 17:30:31
  Author: felixonmars
Revision: 1265979

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-tzdata/repos/community-staging-x86_64/PKGBUILD (from rev 
1265978, haskell-tzdata/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-08-13 17:30:31 UTC (rev 1265979)
@@ -0,0 +1,41 @@
+# Maintainer: Felix Yan 
+
+_hkgname=tzdata
+pkgname=haskell-tzdata
+pkgver=0.2.20220810.0
+pkgrel=1
+pkgdesc="Haskell package that distributes the standard time zone database"
+url="https://github.com/ysangkok/haskell-tzdata;
+license=('Apache')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-vector')
+makedepends=('ghc' 'haskell-hunit' 'haskell-tasty' 'haskell-tasty-hunit' 
'haskell-tasty-th')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('fe7cd37bb4d72739cfde8c96e749c1871d8503884e59372e0865eb5f91ad659ca8694744b0c0e54219f22dab37f413a5159a89c445ef364cd837a847a41c1e5c')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --datasubdir=$pkgname 
--enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid 
--ghc-option=-fllvm
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test --show-details=direct
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}



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

2022-08-13 Thread Felix Yan via arch-commits
Date: Saturday, August 13, 2022 @ 17:30:17
  Author: felixonmars
Revision: 1265978

upgpkg: haskell-tzdata 0.2.20220810.0-1: rebuild with tzdata 0.2.20220810.0

Modified:
  haskell-tzdata/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-13 15:55:08 UTC (rev 1265977)
+++ PKGBUILD2022-08-13 17:30:17 UTC (rev 1265978)
@@ -2,8 +2,8 @@
 
 _hkgname=tzdata
 pkgname=haskell-tzdata
-pkgver=0.2.20220315.0
-pkgrel=25
+pkgver=0.2.20220810.0
+pkgrel=1
 pkgdesc="Haskell package that distributes the standard time zone database"
 url="https://github.com/ysangkok/haskell-tzdata;
 license=('Apache')
@@ -11,7 +11,7 @@
 depends=('ghc-libs' 'haskell-vector')
 makedepends=('ghc' 'haskell-hunit' 'haskell-tasty' 'haskell-tasty-hunit' 
'haskell-tasty-th')
 
source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
-sha512sums=('70a1a45a216f09be4776c66b398cf37f13b4a6780d10d7260592995da72c4ecd69d7fcdd24dddbe11179b5cbd37305963309f3901b330e630b439cc6b6fa60b4')
+sha512sums=('fe7cd37bb4d72739cfde8c96e749c1871d8503884e59372e0865eb5f91ad659ca8694744b0c0e54219f22dab37f413a5159a89c445ef364cd837a847a41c1e5c')
 
 build() {
 cd $_hkgname-$pkgver



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

2022-08-13 Thread Felix Yan via arch-commits
Date: Saturday, August 13, 2022 @ 15:46:27
  Author: felixonmars
Revision: 1265974

archrelease: copy trunk to community-x86_64

Added:
  z3/repos/community-x86_64/PKGBUILD
(from rev 1265973, z3/trunk/PKGBUILD)
Deleted:
  z3/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-13 15:46:03 UTC (rev 1265973)
+++ PKGBUILD2022-08-13 15:46:27 UTC (rev 1265974)
@@ -1,52 +0,0 @@
-# Maintainer: Felix Yan 
-# Maintainer: Levente Polyak 
-# Contributor: rudy.matela
-
-pkgbase=z3
-pkgname=('z3' 'python-z3')
-pkgver=4.9.0
-pkgrel=1
-pkgdesc='High-performance theorem prover'
-url='https://github.com/Z3Prover/z3'
-arch=('x86_64')
-license=('MIT')
- # 'java-environment-common' 'mono' 'ocaml' 'ocaml-findlib'
-makedepends=('glibc' 'cmake' 'ninja' 'python' 'python-setuptools' 'gcc-libs')
-source=(https://github.com/Z3Prover/z3/archive/z3-$pkgver.tar.gz)
-sha512sums=('ddfe9901ea9fb4d23761cb6bbd534ffadaa4ba8264c8e2893b08d65f4e2e4b8aa7d824dc54e00480e9121be9b27ac42db7abcce778d86eb23465046405cc8594')
-b2sums=('97ee7f7ec6fbeddd01de0200149af6095bb9a7ba841b79320bf49fe6d34e7288a396db1fa4d4045b5fbaf33aba3046f736e8ca367ac7dade8a440302801b2ed6')
-
-build() {
-  cd $pkgbase-z3-$pkgver
-  cmake \
--Bbuild \
--GNinja \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DZ3_LINK_TIME_OPTIMIZATION=1 \
--DZ3_BUILD_PYTHON_BINDINGS=1 \
--DPYTHON_EXECUTABLE=/usr/bin/python
-  ninja -C build
-}
-
-package_z3() {
-  depends=('glibc' 'gcc-libs')
-  provides=('libz3' 'libz3.so')
-  cd $pkgbase-z3-$pkgver
-  DESTDIR="${pkgdir}" ninja -C build install
-  install -Dm 644 LICENSE.txt -t "$pkgdir"/usr/share/licenses/$pkgname
-  rm -r "$pkgdir"/usr/lib/python*
-}
-
-package_python-z3() {
-  depends=('python' 'z3')
-  cd $pkgbase-z3-$pkgver
-  DESTDIR="${pkgdir}" ninja -C build install
-  install -Dm 644 LICENSE.txt -t "$pkgdir"/usr/share/licenses/$pkgname
-  cd "$pkgdir"
-  rm -r usr/include usr/bin usr/lib/{cmake,pkgconfig,lib*}
-  python -m compileall .
-  python -O -m compileall .
-}
-
-# vim: ts=2 sw=2 et:

Copied: z3/repos/community-x86_64/PKGBUILD (from rev 1265973, z3/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-13 15:46:27 UTC (rev 1265974)
@@ -0,0 +1,52 @@
+# Maintainer: Felix Yan 
+# Maintainer: Levente Polyak 
+# Contributor: rudy.matela
+
+pkgbase=z3
+pkgname=('z3' 'python-z3')
+pkgver=4.9.1
+pkgrel=1
+pkgdesc='High-performance theorem prover'
+url='https://github.com/Z3Prover/z3'
+arch=('x86_64')
+license=('MIT')
+ # 'java-environment-common' 'mono' 'ocaml' 'ocaml-findlib'
+makedepends=('glibc' 'cmake' 'ninja' 'python' 'python-setuptools' 'gcc-libs')
+source=(https://github.com/Z3Prover/z3/archive/z3-$pkgver.tar.gz)
+sha512sums=('0c44e10d039c3bf16591a7b94e3a3209bc334635106ac7ae4afda95541d13d4fc39214646662683c26b4874846e0d83813215e189ce5422d13f8ce7c2ac4db51')
+b2sums=('b707084424b615a43dcefbc395d6cf0519f3d6ea3ab1cc8b34b1810d5eb241afa22eae694e4dfc756fff42179a5dabe10052f88aab02953154ada8334f7e0b64')
+
+build() {
+  cd $pkgbase-z3-$pkgver
+  cmake \
+-Bbuild \
+-GNinja \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DZ3_LINK_TIME_OPTIMIZATION=1 \
+-DZ3_BUILD_PYTHON_BINDINGS=1 \
+-DPYTHON_EXECUTABLE=/usr/bin/python
+  ninja -C build
+}
+
+package_z3() {
+  depends=('glibc' 'gcc-libs')
+  provides=('libz3' 'libz3.so')
+  cd $pkgbase-z3-$pkgver
+  DESTDIR="${pkgdir}" ninja -C build install
+  install -Dm 644 LICENSE.txt -t "$pkgdir"/usr/share/licenses/$pkgname
+  rm -r "$pkgdir"/usr/lib/python*
+}
+
+package_python-z3() {
+  depends=('python' 'z3')
+  cd $pkgbase-z3-$pkgver
+  DESTDIR="${pkgdir}" ninja -C build install
+  install -Dm 644 LICENSE.txt -t "$pkgdir"/usr/share/licenses/$pkgname
+  cd "$pkgdir"
+  rm -r usr/include usr/bin usr/lib/{cmake,pkgconfig,lib*}
+  python -m compileall .
+  python -O -m compileall .
+}
+
+# vim: ts=2 sw=2 et:



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

2022-08-13 Thread Felix Yan via arch-commits
Date: Saturday, August 13, 2022 @ 15:46:03
  Author: felixonmars
Revision: 1265973

upgpkg: z3 4.9.1-1

Modified:
  z3/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-13 15:24:15 UTC (rev 1265972)
+++ PKGBUILD2022-08-13 15:46:03 UTC (rev 1265973)
@@ -4,7 +4,7 @@
 
 pkgbase=z3
 pkgname=('z3' 'python-z3')
-pkgver=4.9.0
+pkgver=4.9.1
 pkgrel=1
 pkgdesc='High-performance theorem prover'
 url='https://github.com/Z3Prover/z3'
@@ -13,8 +13,8 @@
  # 'java-environment-common' 'mono' 'ocaml' 'ocaml-findlib'
 makedepends=('glibc' 'cmake' 'ninja' 'python' 'python-setuptools' 'gcc-libs')
 source=(https://github.com/Z3Prover/z3/archive/z3-$pkgver.tar.gz)
-sha512sums=('ddfe9901ea9fb4d23761cb6bbd534ffadaa4ba8264c8e2893b08d65f4e2e4b8aa7d824dc54e00480e9121be9b27ac42db7abcce778d86eb23465046405cc8594')
-b2sums=('97ee7f7ec6fbeddd01de0200149af6095bb9a7ba841b79320bf49fe6d34e7288a396db1fa4d4045b5fbaf33aba3046f736e8ca367ac7dade8a440302801b2ed6')
+sha512sums=('0c44e10d039c3bf16591a7b94e3a3209bc334635106ac7ae4afda95541d13d4fc39214646662683c26b4874846e0d83813215e189ce5422d13f8ce7c2ac4db51')
+b2sums=('b707084424b615a43dcefbc395d6cf0519f3d6ea3ab1cc8b34b1810d5eb241afa22eae694e4dfc756fff42179a5dabe10052f88aab02953154ada8334f7e0b64')
 
 build() {
   cd $pkgbase-z3-$pkgver



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

2022-08-13 Thread Alexander Rødseth via arch-commits
Date: Saturday, August 13, 2022 @ 15:24:15
  Author: arodseth
Revision: 1265972

archrelease: copy trunk to community-x86_64

Added:
  raylib/repos/community-x86_64/PKGBUILD
(from rev 1265971, raylib/trunk/PKGBUILD)
Deleted:
  raylib/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-13 15:24:09 UTC (rev 1265971)
+++ PKGBUILD2022-08-13 15:24:15 UTC (rev 1265972)
@@ -1,40 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Contributor: Wilhem Barbier 
-
-pkgname=raylib
-pkgver=4.0.0
-pkgrel=2
-pkgdesc='Simple and easy-to-use game programming library'
-arch=(x86_64)
-url='https://www.raylib.com'
-license=(ZLIB)
-depends=(glfw)
-makedepends=(cmake git libx11 libxcursor libxinerama libxrandr ninja 
vulkan-headers xorg-server-devel xorg-xinput)
-source=("git+https://github.com/raysan5/raylib#commit=0851960397f02a477d80eda2239f90fae14dec64;)
 # tag: 4.0.0
-b2sums=('SKIP')
-
-build() {
-  cmake \
--B build \
--D BUILD_EXAMPLES=OFF \
--D BUILD_SHARED_LIBS=ON \
--D CMAKE_BUILD_TYPE=Release \
--D CMAKE_C_FLAGS="$CFLAGS -fPIC -w" \
--D CMAKE_INSTALL_LIBDIR=lib \
--D CMAKE_INSTALL_PREFIX=/usr \
--D OpenGL_GL_PREFERENCE=GLVND \
--D USE_EXTERNAL_GLFW=ON \
--D WITH_PIC=ON \
--G Ninja \
--S $pkgname \
--Wno-dev
-  ninja -C build
-}
-
-package() {
-  DESTDIR="$pkgdir" ninja -C build install
-  install -Dm 644 "$pkgname/LICENSE" \
-"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# getver: github.com/raysan5/raylib/releases

Copied: raylib/repos/community-x86_64/PKGBUILD (from rev 1265971, 
raylib/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-13 15:24:15 UTC (rev 1265972)
@@ -0,0 +1,39 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: Wilhem Barbier 
+
+pkgname=raylib
+pkgver=4.2.0
+pkgrel=1
+pkgdesc='Simple and easy-to-use game programming library'
+arch=(x86_64)
+url='https://www.raylib.com'
+license=(ZLIB)
+makedepends=(cmake git libx11 libxcursor libxinerama libxrandr ninja 
vulkan-headers xorg-server-devel xorg-xinput)
+source=("git+https://github.com/raysan5/raylib#commit=d658e6772d75bce52fbe46cc9789f0b33500bc0f;)
 # tag: 4.2.0
+b2sums=('SKIP')
+
+build() {
+  cmake \
+-B build \
+-D BUILD_EXAMPLES=OFF \
+-D BUILD_SHARED_LIBS=ON \
+-D CMAKE_BUILD_TYPE=Release \
+-D CMAKE_C_FLAGS="$CFLAGS -fPIC -w" \
+-D CMAKE_INSTALL_LIBDIR=lib \
+-D CMAKE_INSTALL_PREFIX=/usr \
+-D OpenGL_GL_PREFERENCE=GLVND \
+-D USE_EXTERNAL_GLFW=OFF \
+-D WITH_PIC=ON \
+-G Ninja \
+-S $pkgname \
+-W no-dev
+  ninja -C build
+}
+
+package() {
+  DESTDIR="$pkgdir" ninja -C build install
+  install -Dm 644 "$pkgname/LICENSE" \
+"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# getver: github.com/raysan5/raylib/releases



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

2022-08-13 Thread Alexander Rødseth via arch-commits
Date: Saturday, August 13, 2022 @ 15:24:09
  Author: arodseth
Revision: 1265971

upgpkg: raylib 4.2.0-1

Modified:
  raylib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-13 15:15:18 UTC (rev 1265970)
+++ PKGBUILD2022-08-13 15:24:09 UTC (rev 1265971)
@@ -2,15 +2,14 @@
 # Contributor: Wilhem Barbier 
 
 pkgname=raylib
-pkgver=4.0.0
-pkgrel=2
+pkgver=4.2.0
+pkgrel=1
 pkgdesc='Simple and easy-to-use game programming library'
 arch=(x86_64)
 url='https://www.raylib.com'
 license=(ZLIB)
-depends=(glfw)
 makedepends=(cmake git libx11 libxcursor libxinerama libxrandr ninja 
vulkan-headers xorg-server-devel xorg-xinput)
-source=("git+https://github.com/raysan5/raylib#commit=0851960397f02a477d80eda2239f90fae14dec64;)
 # tag: 4.0.0
+source=("git+https://github.com/raysan5/raylib#commit=d658e6772d75bce52fbe46cc9789f0b33500bc0f;)
 # tag: 4.2.0
 b2sums=('SKIP')
 
 build() {
@@ -23,11 +22,11 @@
 -D CMAKE_INSTALL_LIBDIR=lib \
 -D CMAKE_INSTALL_PREFIX=/usr \
 -D OpenGL_GL_PREFERENCE=GLVND \
--D USE_EXTERNAL_GLFW=ON \
+-D USE_EXTERNAL_GLFW=OFF \
 -D WITH_PIC=ON \
 -G Ninja \
 -S $pkgname \
--Wno-dev
+-W no-dev
   ninja -C build
 }
 



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

2022-08-13 Thread Alexander Rødseth via arch-commits
Date: Saturday, August 13, 2022 @ 15:15:18
  Author: arodseth
Revision: 1265970

archrelease: copy trunk to community-x86_64

Added:
  opam/repos/community-x86_64/PKGBUILD
(from rev 1265969, opam/trunk/PKGBUILD)
Deleted:
  opam/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-13 15:15:10 UTC (rev 1265969)
+++ PKGBUILD2022-08-13 15:15:18 UTC (rev 1265970)
@@ -1,29 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Contributor: Vincent B. 
-
-pkgname=opam
-pkgver=2.1.2
-pkgrel=1
-pkgdesc='OCaml package manager'
-arch=(x86_64)
-url='https://opam.ocaml.org/'
-license=(GPL)
-depends=(bubblewrap ocaml-compiler-libs unzip)
-optdepends=('darcs: For downloading packages with darcs'
-'git: For downloading packages with git'
-'mercurial: For downloading packages with mercurial'
-'rsync: For downloading packages with rsync')
-source=("https://github.com/ocaml/opam/releases/download/$pkgver/opam-full-$pkgver.tar.gz;)
-b2sums=('fe5447fe8f9bcedb30bf455e93b54a37e950e2944f6f501545bdccf6d989de2da90106938efb6a12c1b9454ecefed5be9906d65a15a4d0244302ad7ccff170db')
-
-build() {
-  cd opam-full-$pkgver
-  ./configure --prefix=/usr
-  make lib-ext all -j1 \
-OCAMLC='ocamlc -unsafe-string' \
-OCAMLOPT='ocamlopt -unsafe-string'
-}
-
-package() {
-  make -C opam-full-$pkgver DESTDIR="$pkgdir" install
-}

Copied: opam/repos/community-x86_64/PKGBUILD (from rev 1265969, 
opam/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-13 15:15:18 UTC (rev 1265970)
@@ -0,0 +1,29 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: Vincent B. 
+
+pkgname=opam
+pkgver=2.1.3
+pkgrel=1
+pkgdesc='OCaml package manager'
+arch=(x86_64)
+url='https://opam.ocaml.org/'
+license=(GPL)
+depends=(bubblewrap ocaml-compiler-libs unzip)
+optdepends=('darcs: For downloading packages with darcs'
+'git: For downloading packages with git'
+'mercurial: For downloading packages with mercurial'
+'rsync: For downloading packages with rsync')
+source=("https://github.com/ocaml/opam/releases/download/$pkgver/opam-full-$pkgver.tar.gz;)
+b2sums=('6f33e70c2e59be87b643840128b46441828d3d83888f5d321ac23d33b2fbc4d3163cb4303ac82a7f863abcc9300227bbc48bca3b8db5d6fbcebf0e6cf8869a5d')
+
+build() {
+  cd opam-full-$pkgver
+  ./configure --prefix=/usr
+  make lib-ext all -j1 \
+OCAMLC='ocamlc -unsafe-string' \
+OCAMLOPT='ocamlopt -unsafe-string'
+}
+
+package() {
+  make -C opam-full-$pkgver DESTDIR="$pkgdir" install
+}



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

2022-08-13 Thread Alexander Rødseth via arch-commits
Date: Saturday, August 13, 2022 @ 15:15:10
  Author: arodseth
Revision: 1265969

upgpkg: opam 2.1.3-1

Modified:
  opam/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-13 15:11:59 UTC (rev 1265968)
+++ PKGBUILD2022-08-13 15:15:10 UTC (rev 1265969)
@@ -2,7 +2,7 @@
 # Contributor: Vincent B. 
 
 pkgname=opam
-pkgver=2.1.2
+pkgver=2.1.3
 pkgrel=1
 pkgdesc='OCaml package manager'
 arch=(x86_64)
@@ -14,7 +14,7 @@
 'mercurial: For downloading packages with mercurial'
 'rsync: For downloading packages with rsync')
 
source=("https://github.com/ocaml/opam/releases/download/$pkgver/opam-full-$pkgver.tar.gz;)
-b2sums=('fe5447fe8f9bcedb30bf455e93b54a37e950e2944f6f501545bdccf6d989de2da90106938efb6a12c1b9454ecefed5be9906d65a15a4d0244302ad7ccff170db')
+b2sums=('6f33e70c2e59be87b643840128b46441828d3d83888f5d321ac23d33b2fbc4d3163cb4303ac82a7f863abcc9300227bbc48bca3b8db5d6fbcebf0e6cf8869a5d')
 
 build() {
   cd opam-full-$pkgver



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

2022-08-13 Thread Alexander Rødseth via arch-commits
Date: Saturday, August 13, 2022 @ 15:11:59
  Author: arodseth
Revision: 1265968

archrelease: copy trunk to community-x86_64

Added:
  hwinfo/repos/community-x86_64/PKGBUILD
(from rev 1265967, hwinfo/trunk/PKGBUILD)
  hwinfo/repos/community-x86_64/custom_ioctl.patch
(from rev 1265967, hwinfo/trunk/custom_ioctl.patch)
Deleted:
  hwinfo/repos/community-x86_64/PKGBUILD
  hwinfo/repos/community-x86_64/custom_ioctl.patch

+
 PKGBUILD   |   84 +--
 custom_ioctl.patch |   40 
 2 files changed, 62 insertions(+), 62 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-13 15:11:51 UTC (rev 1265967)
+++ PKGBUILD2022-08-13 15:11:59 UTC (rev 1265968)
@@ -1,42 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Contributor: Kaiting Chen 
-# Contributor: Gergely Imreh 
-# Contributor: champus
-# Contributor: madeye
-# Contributor: ranguvar
-# Contributor: ninja_pt
-
-pkgname=hwinfo
-pkgver=22.0
-pkgrel=1
-pkgdesc='Hardware detection tool from openSUSE'
-arch=(x86_64)
-url='https://github.com/openSUSE/hwinfo'
-license=(GPL2)
-depends=('libx86emu=3.5' perl-xml-parser perl-xml-writer)
-makedepends=(flex git sysfsutils)
-options=(!emptydirs)
-source=(custom_ioctl.patch
-"git+$url#commit=febb0dc3e5fe77f17e7a655c8a1e2f7d23f42686") # tag: 22.0
-b2sums=('2b1bd3b53bbfc1e545e1a70ffd6cca08f704639a104928b2c02ccca3e82000f07a470fbdf129566ece6dfb2b98fdad0e82f18cc5c2016ebfeed043b4edb295b4'
-'SKIP')
-
-prepare() {
-  cd $pkgname
-  patch -p1 -i ../custom_ioctl.patch
-  echo touch changelog > git2log
-  sed -i '/linux\/fs.h/d' src/hd/hd.c
-}
-
-build() {
-  make -C $pkgname -j1 \
-CFLAGS+="-fPIC -I$srcdir/$pkgname/src/hd -w" \
-HWINFO_VERSION="$pkgver" \
-LIBDIR=/usr/lib
-}
-
-package() {
-  make -C $pkgname DESTDIR="$pkgdir" LIBDIR=/usr/lib install
-  mv "$pkgdir/usr/sbin" "$pkgdir/usr/bin"
-  rmdir "$pkgdir/sbin"
-}

Copied: hwinfo/repos/community-x86_64/PKGBUILD (from rev 1265967, 
hwinfo/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-13 15:11:59 UTC (rev 1265968)
@@ -0,0 +1,42 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: Kaiting Chen 
+# Contributor: Gergely Imreh 
+# Contributor: champus
+# Contributor: madeye
+# Contributor: ranguvar
+# Contributor: ninja_pt
+
+pkgname=hwinfo
+pkgver=22.1
+pkgrel=1
+pkgdesc='Hardware detection tool from openSUSE'
+arch=(x86_64)
+url='https://github.com/openSUSE/hwinfo'
+license=(GPL2)
+depends=('libx86emu=3.5' perl-xml-parser perl-xml-writer)
+makedepends=(flex git sysfsutils)
+options=(!emptydirs)
+source=(custom_ioctl.patch
+"git+$url#commit=a321dc3491f59bc10b1dd3d88dabd8b30a33c25b") # tag: 22.1
+b2sums=('2b1bd3b53bbfc1e545e1a70ffd6cca08f704639a104928b2c02ccca3e82000f07a470fbdf129566ece6dfb2b98fdad0e82f18cc5c2016ebfeed043b4edb295b4'
+'SKIP')
+
+prepare() {
+  cd $pkgname
+  patch -p1 -i ../custom_ioctl.patch
+  echo touch changelog > git2log
+  sed -i '/linux\/fs.h/d' src/hd/hd.c
+}
+
+build() {
+  make -C $pkgname -j1 \
+CFLAGS+="-fPIC -I$srcdir/$pkgname/src/hd -w" \
+HWINFO_VERSION="$pkgver" \
+LIBDIR=/usr/lib
+}
+
+package() {
+  make -C $pkgname DESTDIR="$pkgdir" LIBDIR=/usr/lib install
+  mv "$pkgdir/usr/sbin" "$pkgdir/usr/bin"
+  rmdir "$pkgdir/sbin"
+}

Deleted: custom_ioctl.patch
===
--- custom_ioctl.patch  2022-08-13 15:11:51 UTC (rev 1265967)
+++ custom_ioctl.patch  2022-08-13 15:11:59 UTC (rev 1265968)
@@ -1,20 +0,0 @@
-diff --git a/src/hd/kbd.c b/src/hd/kbd.c
-index fa08817..184ac08 100644
 a/src/hd/kbd.c
-+++ b/src/hd/kbd.c
-@@ -134,6 +134,7 @@ void add_serial_console(hd_data_t *hd_data)
-   }
- 
-   if(!dev && (fd = open(DEV_CONSOLE, O_RDWR | O_NONBLOCK | O_NOCTTY)) >= 0) {
-+/* Removing since TIOCGDEV is not supported by the mainline kernel
- if(ioctl(fd, TIOCGDEV, ) != -1) {
-   tty_major = (u >> 8) & 0xfff;
-   tty_minor = (u & 0xff) | ((u >> 12) & 0xfff00);
-@@ -152,6 +153,7 @@ void add_serial_console(hd_data_t *hd_data)
-   free_mem(dev_link);
-   free_mem(dev_name);
- }
-+*/
- 
- if (dev)
-   ;

Copied: hwinfo/repos/community-x86_64/custom_ioctl.patch (from rev 1265967, 
hwinfo/trunk/custom_ioctl.patch)
===
--- custom_ioctl.patch  (rev 0)
+++ custom_ioctl.patch  2022-08-13 15:11:59 UTC (rev 1265968)
@@ -0,0 +1,20 @@
+diff --git a/src/hd/kbd.c b/src/hd/kbd.c
+index fa08817..184ac08 100644
+--- a/src/hd/kbd.c
 b/src/hd/kbd.c
+@@ -134,6 +134,7 @@ void add_serial_console(hd_data_t *hd_data)
+   }
+ 
+   if(!dev && (fd = open(DEV_CONSOLE, O_RDWR | O_NONBLOCK | O_NOCTTY)) >= 0) {
++/* Removing since TIOCGDEV is not supported 

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

2022-08-13 Thread Alexander Rødseth via arch-commits
Date: Saturday, August 13, 2022 @ 15:11:51
  Author: arodseth
Revision: 1265967

upgpkg: hwinfo 22.1-1

Modified:
  hwinfo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-13 14:50:32 UTC (rev 1265966)
+++ PKGBUILD2022-08-13 15:11:51 UTC (rev 1265967)
@@ -7,7 +7,7 @@
 # Contributor: ninja_pt
 
 pkgname=hwinfo
-pkgver=22.0
+pkgver=22.1
 pkgrel=1
 pkgdesc='Hardware detection tool from openSUSE'
 arch=(x86_64)
@@ -17,7 +17,7 @@
 makedepends=(flex git sysfsutils)
 options=(!emptydirs)
 source=(custom_ioctl.patch
-"git+$url#commit=febb0dc3e5fe77f17e7a655c8a1e2f7d23f42686") # tag: 22.0
+"git+$url#commit=a321dc3491f59bc10b1dd3d88dabd8b30a33c25b") # tag: 22.1
 
b2sums=('2b1bd3b53bbfc1e545e1a70ffd6cca08f704639a104928b2c02ccca3e82000f07a470fbdf129566ece6dfb2b98fdad0e82f18cc5c2016ebfeed043b4edb295b4'
 'SKIP')
 



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

2022-08-13 Thread Alexander Rødseth via arch-commits
Date: Saturday, August 13, 2022 @ 14:50:32
  Author: arodseth
Revision: 1265966

archrelease: copy trunk to community-any

Added:
  leiningen/repos/community-any/PKGBUILD
(from rev 1265965, leiningen/trunk/PKGBUILD)
  leiningen/repos/community-any/keys/
Deleted:
  leiningen/repos/community-any/PKGBUILD
  leiningen/repos/community-any/keys/

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-13 14:50:25 UTC (rev 1265965)
+++ PKGBUILD2022-08-13 14:50:32 UTC (rev 1265966)
@@ -1,29 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Contributor: Marcel Campello 
-
-pkgname=leiningen
-pkgver=2.9.10
-pkgrel=1
-arch=(any)
-url='https://github.com/technomancy/leiningen'
-license=(EPL)
-depends=(java-environment java-runtime)
-makedepends=(git)
-optdepends=('leiningen-completions: completion scripts'
-'rlwrap: for readline support')
-noextract=("$pkgname-$pkgver-standalone.jar")
-source=("$url/releases/download/$pkgver/$pkgname-$pkgver-standalone.jar"{,.asc}
-"git+$url#commit=27e04f41501e8b9a153e7b654837067881ecd704") # tag: 
2.9.10
-validpgpkeys=('6A2D483DB59437EBB97D09B1040193357D0606ED') # Phil Hagelberg 

-b2sums=('70e0614a2516e04047fadce10ace583bd84e68e8bff96efcab7a3cea4d687bb91e5317d326a9fabfa7413a1e11d45be6abc9062934a5b09be8010f50d23b2467'
-'SKIP'
-'SKIP')
-
-package() {
-  install -Dm755 $pkgname/bin/lein "$pkgdir/usr/bin/lein"
-  install -Dm644 $pkgname/doc/lein.1 "$pkgdir/usr/share/man/man1/lein.1"
-  install -Dm644 $pkgname-$pkgver-standalone.jar \
- "$pkgdir/usr/share/java/$pkgname-$pkgver-standalone.jar"
-}
-
-# getver: github.com/technomancy/leiningen/releases

Copied: leiningen/repos/community-any/PKGBUILD (from rev 1265965, 
leiningen/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-13 14:50:32 UTC (rev 1265966)
@@ -0,0 +1,30 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: Marcel Campello 
+
+pkgname=leiningen
+pkgver=2.9.10
+pkgrel=2
+pkgdesc='Automate Clojure projects'
+arch=(any)
+url='https://github.com/technomancy/leiningen'
+license=(EPL)
+depends=(java-environment java-runtime)
+makedepends=(git)
+optdepends=('leiningen-completions: completion scripts'
+'rlwrap: for readline support')
+noextract=("$pkgname-$pkgver-standalone.jar")
+source=("$url/releases/download/$pkgver/$pkgname-$pkgver-standalone.jar"{,.asc}
+"git+$url#commit=27e04f41501e8b9a153e7b654837067881ecd704") # tag: 
2.9.10
+validpgpkeys=('6A2D483DB59437EBB97D09B1040193357D0606ED') # Phil Hagelberg 

+b2sums=('70e0614a2516e04047fadce10ace583bd84e68e8bff96efcab7a3cea4d687bb91e5317d326a9fabfa7413a1e11d45be6abc9062934a5b09be8010f50d23b2467'
+'SKIP'
+'SKIP')
+
+package() {
+  install -Dm755 $pkgname/bin/lein "$pkgdir/usr/bin/lein"
+  install -Dm644 $pkgname/doc/lein.1 "$pkgdir/usr/share/man/man1/lein.1"
+  install -Dm644 $pkgname-$pkgver-standalone.jar \
+ "$pkgdir/usr/share/java/$pkgname-$pkgver-standalone.jar"
+}
+
+# getver: github.com/technomancy/leiningen/releases



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

2022-08-13 Thread Alexander Rødseth via arch-commits
Date: Saturday, August 13, 2022 @ 14:50:25
  Author: arodseth
Revision: 1265965

upgpkg: leiningen 2.9.10-2

Added:
  leiningen/trunk/keys/pgp/
  leiningen/trunk/keys/pgp/6A2D483DB59437EBB97D09B1040193357D0606ED.asc
Modified:
  leiningen/trunk/PKGBUILD
Deleted:
  leiningen/trunk/keys/pgp/

---+
 PKGBUILD  |3 ++-
 keys/pgp/6A2D483DB59437EBB97D09B1040193357D0606ED.asc |1 +
 2 files changed, 3 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-08-13 14:46:03 UTC (rev 1265964)
+++ PKGBUILD2022-08-13 14:50:25 UTC (rev 1265965)
@@ -3,7 +3,8 @@
 
 pkgname=leiningen
 pkgver=2.9.10
-pkgrel=1
+pkgrel=2
+pkgdesc='Automate Clojure projects'
 arch=(any)
 url='https://github.com/technomancy/leiningen'
 license=(EPL)

Added: keys/pgp/6A2D483DB59437EBB97D09B1040193357D0606ED.asc
===
(Binary files differ)

Index: leiningen/trunk/keys/pgp/6A2D483DB59437EBB97D09B1040193357D0606ED.asc
===
--- keys/pgp/6A2D483DB59437EBB97D09B1040193357D0606ED.asc   2022-08-13 
14:46:03 UTC (rev 1265964)
+++ keys/pgp/6A2D483DB59437EBB97D09B1040193357D0606ED.asc   2022-08-13 
14:50:25 UTC (rev 1265965)

Property changes on: 
leiningen/trunk/keys/pgp/6A2D483DB59437EBB97D09B1040193357D0606ED.asc
___
Added: svn:mime-type
## -0,0 +1 ##
+application/pgp-keys
\ No newline at end of property


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

2022-08-13 Thread Alexander Rødseth via arch-commits
Date: Saturday, August 13, 2022 @ 14:46:03
  Author: arodseth
Revision: 1265964

archrelease: copy trunk to community-any

Added:
  leiningen/repos/community-any/PKGBUILD
(from rev 1265963, leiningen/trunk/PKGBUILD)
  leiningen/repos/community-any/keys/
Deleted:
  leiningen/repos/community-any/PKGBUILD
  leiningen/repos/community-any/keys/

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-13 14:42:58 UTC (rev 1265963)
+++ PKGBUILD2022-08-13 14:46:03 UTC (rev 1265964)
@@ -1,29 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Contributor: Marcel Campello 
-
-pkgname=leiningen
-pkgver=2.9.10
-pkgrel=1
-arch=(any)
-url='https://github.com/technomancy/leiningen'
-license=(EPL)
-depends=(java-environment java-runtime)
-makedepends=(git)
-optdepends=('leiningen-completions: completion scripts'
-'rlwrap: for readline support')
-noextract=("$pkgname-$pkgver-standalone.jar")
-source=("$url/releases/download/$pkgver/$pkgname-$pkgver-standalone.jar"{,.asc}
-"git+$url#commit=27e04f41501e8b9a153e7b654837067881ecd704") # tag: 
2.9.10
-validpgpkeys=('6A2D483DB59437EBB97D09B1040193357D0606ED') # Phil Hagelberg 

-b2sums=('70e0614a2516e04047fadce10ace583bd84e68e8bff96efcab7a3cea4d687bb91e5317d326a9fabfa7413a1e11d45be6abc9062934a5b09be8010f50d23b2467'
-'SKIP'
-'SKIP')
-
-package() {
-  install -Dm755 $pkgname/bin/lein "$pkgdir/usr/bin/lein"
-  install -Dm644 $pkgname/doc/lein.1 "$pkgdir/usr/share/man/man1/lein.1"
-  install -Dm644 $pkgname-$pkgver-standalone.jar \
- "$pkgdir/usr/share/java/$pkgname-$pkgver-standalone.jar"
-}
-
-# getver: github.com/technomancy/leiningen/releases

Copied: leiningen/repos/community-any/PKGBUILD (from rev 1265963, 
leiningen/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-13 14:46:03 UTC (rev 1265964)
@@ -0,0 +1,29 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: Marcel Campello 
+
+pkgname=leiningen
+pkgver=2.9.10
+pkgrel=1
+arch=(any)
+url='https://github.com/technomancy/leiningen'
+license=(EPL)
+depends=(java-environment java-runtime)
+makedepends=(git)
+optdepends=('leiningen-completions: completion scripts'
+'rlwrap: for readline support')
+noextract=("$pkgname-$pkgver-standalone.jar")
+source=("$url/releases/download/$pkgver/$pkgname-$pkgver-standalone.jar"{,.asc}
+"git+$url#commit=27e04f41501e8b9a153e7b654837067881ecd704") # tag: 
2.9.10
+validpgpkeys=('6A2D483DB59437EBB97D09B1040193357D0606ED') # Phil Hagelberg 

+b2sums=('70e0614a2516e04047fadce10ace583bd84e68e8bff96efcab7a3cea4d687bb91e5317d326a9fabfa7413a1e11d45be6abc9062934a5b09be8010f50d23b2467'
+'SKIP'
+'SKIP')
+
+package() {
+  install -Dm755 $pkgname/bin/lein "$pkgdir/usr/bin/lein"
+  install -Dm644 $pkgname/doc/lein.1 "$pkgdir/usr/share/man/man1/lein.1"
+  install -Dm644 $pkgname-$pkgver-standalone.jar \
+ "$pkgdir/usr/share/java/$pkgname-$pkgver-standalone.jar"
+}
+
+# getver: github.com/technomancy/leiningen/releases



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

2022-08-13 Thread Alexander Rødseth via arch-commits
Date: Saturday, August 13, 2022 @ 14:42:58
  Author: arodseth
Revision: 1265963

archrelease: copy trunk to community-any

Added:
  leiningen/repos/community-any/PKGBUILD
(from rev 1265962, leiningen/trunk/PKGBUILD)
  leiningen/repos/community-any/keys/
Deleted:
  leiningen/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-13 14:42:51 UTC (rev 1265962)
+++ PKGBUILD2022-08-13 14:42:58 UTC (rev 1265963)
@@ -1,29 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Contributor: Marcel Campello 
-
-pkgname=leiningen
-pkgver=2.9.8
-pkgrel=2
-pkgdesc='Automate Clojure projects'
-arch=(any)
-url='https://github.com/technomancy/leiningen'
-license=(EPL)
-depends=(java-environment java-runtime)
-makedepends=(git)
-optdepends=('leiningen-completions: completion scripts'
-'rlwrap: for readline support')
-source=("git+$url#commit=d11e193905d1237428fe705b56c2ee95be46fba9" # tag: 2.9.8
-
"$url/releases/download/$pkgver/leiningen-$pkgver-standalone.jar"{,.asc})
-validpgpkeys=('6A2D483DB59437EBB97D09B1040193357D0606ED') # Phil Hagelberg 

-b2sums=('SKIP'
-
'6c9bc9a2f990bb4959aa06f8f8b31c1084f0d2bad2e19c8343fb7e8a02acb6f6173737cbf36b028e113577ef26e380d7ace035316dee840c6da92512afa7ac0b'
-'SKIP')
-
-package() {
-  install -Dm755 $pkgname/bin/lein "$pkgdir/usr/bin/lein"
-  install -Dm644 $pkgname/doc/lein.1 "$pkgdir/usr/share/man/man1/lein.1"
-  install -Dm644 "$srcdir/leiningen-$pkgver-standalone.jar" \
- "$pkgdir/usr/share/java/leiningen-$pkgver-standalone.jar"
-}
-
-# getver: github.com/technomancy/leiningen/releases

Copied: leiningen/repos/community-any/PKGBUILD (from rev 1265962, 
leiningen/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-13 14:42:58 UTC (rev 1265963)
@@ -0,0 +1,29 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: Marcel Campello 
+
+pkgname=leiningen
+pkgver=2.9.10
+pkgrel=1
+arch=(any)
+url='https://github.com/technomancy/leiningen'
+license=(EPL)
+depends=(java-environment java-runtime)
+makedepends=(git)
+optdepends=('leiningen-completions: completion scripts'
+'rlwrap: for readline support')
+noextract=("$pkgname-$pkgver-standalone.jar")
+source=("$url/releases/download/$pkgver/$pkgname-$pkgver-standalone.jar"{,.asc}
+"git+$url#commit=27e04f41501e8b9a153e7b654837067881ecd704") # tag: 
2.9.10
+validpgpkeys=('6A2D483DB59437EBB97D09B1040193357D0606ED') # Phil Hagelberg 

+b2sums=('70e0614a2516e04047fadce10ace583bd84e68e8bff96efcab7a3cea4d687bb91e5317d326a9fabfa7413a1e11d45be6abc9062934a5b09be8010f50d23b2467'
+'SKIP'
+'SKIP')
+
+package() {
+  install -Dm755 $pkgname/bin/lein "$pkgdir/usr/bin/lein"
+  install -Dm644 $pkgname/doc/lein.1 "$pkgdir/usr/share/man/man1/lein.1"
+  install -Dm644 $pkgname-$pkgver-standalone.jar \
+ "$pkgdir/usr/share/java/$pkgname-$pkgver-standalone.jar"
+}
+
+# getver: github.com/technomancy/leiningen/releases



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

2022-08-13 Thread Alexander Rødseth via arch-commits
Date: Saturday, August 13, 2022 @ 14:42:51
  Author: arodseth
Revision: 1265962

upgpkg: leiningen 2.9.10-1

Added:
  leiningen/trunk/keys/
  leiningen/trunk/keys/pgp/
  leiningen/trunk/keys/pgp/6A2D483DB59437EBB97D09B1040193357D0606ED.asc
Modified:
  leiningen/trunk/PKGBUILD

---+
 PKGBUILD  |   18 
 keys/pgp/6A2D483DB59437EBB97D09B1040193357D0606ED.asc |1 
 2 files changed, 10 insertions(+), 9 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-08-13 14:37:13 UTC (rev 1265961)
+++ PKGBUILD2022-08-13 14:42:51 UTC (rev 1265962)
@@ -2,9 +2,8 @@
 # Contributor: Marcel Campello 
 
 pkgname=leiningen
-pkgver=2.9.8
-pkgrel=2
-pkgdesc='Automate Clojure projects'
+pkgver=2.9.10
+pkgrel=1
 arch=(any)
 url='https://github.com/technomancy/leiningen'
 license=(EPL)
@@ -12,18 +11,19 @@
 makedepends=(git)
 optdepends=('leiningen-completions: completion scripts'
 'rlwrap: for readline support')
-source=("git+$url#commit=d11e193905d1237428fe705b56c2ee95be46fba9" # tag: 2.9.8
-
"$url/releases/download/$pkgver/leiningen-$pkgver-standalone.jar"{,.asc})
+noextract=("$pkgname-$pkgver-standalone.jar")
+source=("$url/releases/download/$pkgver/$pkgname-$pkgver-standalone.jar"{,.asc}
+"git+$url#commit=27e04f41501e8b9a153e7b654837067881ecd704") # tag: 
2.9.10
 validpgpkeys=('6A2D483DB59437EBB97D09B1040193357D0606ED') # Phil Hagelberg 

-b2sums=('SKIP'
-
'6c9bc9a2f990bb4959aa06f8f8b31c1084f0d2bad2e19c8343fb7e8a02acb6f6173737cbf36b028e113577ef26e380d7ace035316dee840c6da92512afa7ac0b'
+b2sums=('70e0614a2516e04047fadce10ace583bd84e68e8bff96efcab7a3cea4d687bb91e5317d326a9fabfa7413a1e11d45be6abc9062934a5b09be8010f50d23b2467'
+'SKIP'
 'SKIP')
 
 package() {
   install -Dm755 $pkgname/bin/lein "$pkgdir/usr/bin/lein"
   install -Dm644 $pkgname/doc/lein.1 "$pkgdir/usr/share/man/man1/lein.1"
-  install -Dm644 "$srcdir/leiningen-$pkgver-standalone.jar" \
- "$pkgdir/usr/share/java/leiningen-$pkgver-standalone.jar"
+  install -Dm644 $pkgname-$pkgver-standalone.jar \
+ "$pkgdir/usr/share/java/$pkgname-$pkgver-standalone.jar"
 }
 
 # getver: github.com/technomancy/leiningen/releases

Added: keys/pgp/6A2D483DB59437EBB97D09B1040193357D0606ED.asc
===
(Binary files differ)

Index: leiningen/trunk/keys/pgp/6A2D483DB59437EBB97D09B1040193357D0606ED.asc
===
--- keys/pgp/6A2D483DB59437EBB97D09B1040193357D0606ED.asc   2022-08-13 
14:37:13 UTC (rev 1265961)
+++ keys/pgp/6A2D483DB59437EBB97D09B1040193357D0606ED.asc   2022-08-13 
14:42:51 UTC (rev 1265962)

Property changes on: 
leiningen/trunk/keys/pgp/6A2D483DB59437EBB97D09B1040193357D0606ED.asc
___
Added: svn:mime-type
## -0,0 +1 ##
+application/pgp-keys
\ No newline at end of property


[arch-commits] Commit in broadcom-wl-dkms/repos/community-x86_64 (34 files)

2022-08-13 Thread Alexander Rødseth via arch-commits
Date: Saturday, August 13, 2022 @ 14:37:13
  Author: arodseth
Revision: 1265961

archrelease: copy trunk to community-x86_64

Added:
  broadcom-wl-dkms/repos/community-x86_64/001-null-pointer-fix.patch
(from rev 1265960, broadcom-wl-dkms/trunk/001-null-pointer-fix.patch)
  broadcom-wl-dkms/repos/community-x86_64/002-rdtscl.patch
(from rev 1265960, broadcom-wl-dkms/trunk/002-rdtscl.patch)
  broadcom-wl-dkms/repos/community-x86_64/003-linux47.patch
(from rev 1265960, broadcom-wl-dkms/trunk/003-linux47.patch)
  broadcom-wl-dkms/repos/community-x86_64/004-linux48.patch
(from rev 1265960, broadcom-wl-dkms/trunk/004-linux48.patch)
  broadcom-wl-dkms/repos/community-x86_64/005-debian-fix-kernel-warnings.patch
(from rev 1265960, 
broadcom-wl-dkms/trunk/005-debian-fix-kernel-warnings.patch)
  broadcom-wl-dkms/repos/community-x86_64/006-linux411.patch
(from rev 1265960, broadcom-wl-dkms/trunk/006-linux411.patch)
  broadcom-wl-dkms/repos/community-x86_64/007-linux412.patch
(from rev 1265960, broadcom-wl-dkms/trunk/007-linux412.patch)
  broadcom-wl-dkms/repos/community-x86_64/008-linux415.patch
(from rev 1265960, broadcom-wl-dkms/trunk/008-linux415.patch)
  broadcom-wl-dkms/repos/community-x86_64/009-fix_mac_profile_discrepancy.patch
(from rev 1265960, 
broadcom-wl-dkms/trunk/009-fix_mac_profile_discrepancy.patch)
  broadcom-wl-dkms/repos/community-x86_64/010-linux56.patch
(from rev 1265960, broadcom-wl-dkms/trunk/010-linux56.patch)
  broadcom-wl-dkms/repos/community-x86_64/011-linux59.patch
(from rev 1265960, broadcom-wl-dkms/trunk/011-linux59.patch)
  broadcom-wl-dkms/repos/community-x86_64/012-linux517.patch
(from rev 1265960, broadcom-wl-dkms/trunk/012-linux517.patch)
  broadcom-wl-dkms/repos/community-x86_64/013-linux518.patch
(from rev 1265960, broadcom-wl-dkms/trunk/013-linux518.patch)
  broadcom-wl-dkms/repos/community-x86_64/PKGBUILD
(from rev 1265960, broadcom-wl-dkms/trunk/PKGBUILD)
  broadcom-wl-dkms/repos/community-x86_64/broadcom-wl-dkms.conf
(from rev 1265960, broadcom-wl-dkms/trunk/broadcom-wl-dkms.conf)
  broadcom-wl-dkms/repos/community-x86_64/broadcom-wl-dkms.install
(from rev 1265960, broadcom-wl-dkms/trunk/broadcom-wl-dkms.install)
  broadcom-wl-dkms/repos/community-x86_64/dkms.conf.in
(from rev 1265960, broadcom-wl-dkms/trunk/dkms.conf.in)
Deleted:
  broadcom-wl-dkms/repos/community-x86_64/001-null-pointer-fix.patch
  broadcom-wl-dkms/repos/community-x86_64/002-rdtscl.patch
  broadcom-wl-dkms/repos/community-x86_64/003-linux47.patch
  broadcom-wl-dkms/repos/community-x86_64/004-linux48.patch
  broadcom-wl-dkms/repos/community-x86_64/005-debian-fix-kernel-warnings.patch
  broadcom-wl-dkms/repos/community-x86_64/006-linux411.patch
  broadcom-wl-dkms/repos/community-x86_64/007-linux412.patch
  broadcom-wl-dkms/repos/community-x86_64/008-linux415.patch
  broadcom-wl-dkms/repos/community-x86_64/009-fix_mac_profile_discrepancy.patch
  broadcom-wl-dkms/repos/community-x86_64/010-linux56.patch
  broadcom-wl-dkms/repos/community-x86_64/011-linux59.patch
  broadcom-wl-dkms/repos/community-x86_64/012-linux517.patch
  broadcom-wl-dkms/repos/community-x86_64/013-linux518.patch
  broadcom-wl-dkms/repos/community-x86_64/PKGBUILD
  broadcom-wl-dkms/repos/community-x86_64/broadcom-wl-dkms.conf
  broadcom-wl-dkms/repos/community-x86_64/broadcom-wl-dkms.install
  broadcom-wl-dkms/repos/community-x86_64/dkms.conf.in

---+
 001-null-pointer-fix.patch|   54 ++--
 002-rdtscl.patch  |   44 +--
 003-linux47.patch |  218 
 004-linux48.patch |  128 -
 005-debian-fix-kernel-warnings.patch  |  322 
 006-linux411.patch|   54 ++--
 007-linux412.patch|  136 +-
 008-linux415.patch|   92 +++---
 009-fix_mac_profile_discrepancy.patch |   28 +-
 010-linux56.patch |  110 
 011-linux59.patch |  422 
 012-linux517.patch|  160 ++--
 013-linux518.patch|  142 +-
 PKGBUILD  |  138 +-
 broadcom-wl-dkms.conf |   16 -
 broadcom-wl-dkms.install  |   28 +-
 dkms.conf.in  |   34 +-
 17 files changed, 1062 insertions(+), 1064 deletions(-)

Deleted: 001-null-pointer-fix.patch
===
--- 001-null-pointer-fix.patch  2022-08-13 14:36:51 UTC (rev 1265960)
+++ 001-null-pointer-fix.patch  2022-08-13 14:37:13 UTC (rev 1265961)
@@ -1,27 +0,0 @@
-Description: Fixing null pointer crash
-
-Origin: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=773713
-Bug-Ubuntu: https://launchpad.net/bugs/1415880
-Last-Update: 2015-08-18
-

- src/wl/sys/wl_linux.c | 2 +-
- 1 file changed, 1 

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

2022-08-13 Thread Alexander Rødseth via arch-commits
Date: Saturday, August 13, 2022 @ 14:36:51
  Author: arodseth
Revision: 1265960

New "url"

+ Depend on "linux-headers" for convenience, ref 
https://wiki.archlinux.org/title/Broadcom_wireless#broadcom-wl

Modified:
  broadcom-wl-dkms/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-13 14:25:48 UTC (rev 1265959)
+++ PKGBUILD2022-08-13 14:36:51 UTC (rev 1265960)
@@ -6,12 +6,12 @@
 
 pkgname=broadcom-wl-dkms
 pkgver=6.30.223.271
-pkgrel=31
+pkgrel=32
 pkgdesc='Broadcom 802.11 Linux STA wireless driver'
 arch=(x86_64)
-url='https://www.broadcom.com/support/download-search/?pf=Wireless+LAN+Infrastructure'
+url='https://www.broadcom.com/site-search?filters[pages][content_type][type]=and[pages][content_type][values][]=Downloads=1_page=10=802.11%20linux%20sta%20wireless%20driver'
 license=(custom)
-depends=(dkms)
+depends=(dkms linux-headers)
 conflicts=(broadcom-wl)
 install=broadcom-wl-dkms.install
 source=('broadcom-wl-dkms.conf'
@@ -49,10 +49,8 @@
 
 prepare() {
   sed -i -e '/BRCM_WLAN_IFNAME/s/eth/wlan/' src/wl/sys/wl_linux.c
-  sed -i -e "/EXTRA_LDFLAGS/s|\$(src)/lib|/usr/lib/$pkgname|" Makefile
   sed -e "s/@PACKAGE_VERSION@/$pkgver/" dkms.conf.in > dkms.conf
-  sed -i '/GE_49 :=/s|:= .*|:= 1|' Makefile
-  true
+  sed -i -e "/EXTRA_LDFLAGS/s|\$(src)/lib|/usr/lib/$pkgname|;/GE_49 :=/s|:= 
.*|:= 1|" Makefile
 }
 
 package() {



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

2022-08-13 Thread Levente Polyak via arch-commits
Date: Saturday, August 13, 2022 @ 14:25:48
  Author: anthraxx
Revision: 1265959

archrelease: copy trunk to community-x86_64

Added:
  xwallpaper/repos/community-x86_64/PKGBUILD
(from rev 1265958, xwallpaper/trunk/PKGBUILD)
  xwallpaper/repos/community-x86_64/keys/
Deleted:
  xwallpaper/repos/community-x86_64/PKGBUILD
  xwallpaper/repos/community-x86_64/keys/

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-13 14:14:37 UTC (rev 1265958)
+++ PKGBUILD2022-08-13 14:25:48 UTC (rev 1265959)
@@ -1,40 +0,0 @@
-# Maintainer: Levente Polyak 
-
-pkgname=xwallpaper
-pkgver=0.7.4
-pkgrel=1
-pkgdesc='Wallpaper setting utility for X'
-url='https://github.com/stoeckmann/xwallpaper'
-arch=('x86_64')
-license=('ISC')
-depends=('pixman' 'libpng' 'libxpm' 'xcb-util' 'xcb-util-image' 'libjpeg-turbo'
- 'libseccomp' libseccomp.so libpixman-1.so libjpeg.so)
-options=('debug')
-source=(https://github.com/stoeckmann/xwallpaper/releases/download/v${pkgver}/xwallpaper-${pkgver}.tar.xz{,.sig})
-sha512sums=('f6eaf41befe724ad55d14f607bdfe9d05c79139054deb6590198ce767cf42173f068459dd894b284f3e8dbc95fc482d8ed7ed1c615f7b72b249897a6a01d51ba'
-'SKIP')
-b2sums=('c10a69ab5734e43e99a746872bff427797e1d8f9de06d241fa81435036527b029031bb49733cf2119e8725883f20b9253b779ef9113d32d1b4f77bd73511a76a'
-'SKIP')
-validpgpkeys=('CDB24BD3BDDCBCBBAE5CB6207DB470F35B0B8B18') # Tobias Stoeckmann 

-
-prepare() {
-  cd ${pkgname}-${pkgver}
-  autoreconf -fiv
-}
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure \
---prefix=/usr \
---with-zshcompletiondir=/usr/share/zsh/site-functions
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
-  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
-}
-
-# vim: ts=2 sw=2 et:

Copied: xwallpaper/repos/community-x86_64/PKGBUILD (from rev 1265958, 
xwallpaper/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-13 14:25:48 UTC (rev 1265959)
@@ -0,0 +1,40 @@
+# Maintainer: Levente Polyak 
+
+pkgname=xwallpaper
+pkgver=0.7.4
+pkgrel=1
+pkgdesc='Wallpaper setting utility for X'
+url='https://github.com/stoeckmann/xwallpaper'
+arch=('x86_64')
+license=('ISC')
+depends=('pixman' 'libpng' 'libxpm' 'xcb-util' 'xcb-util-image' 'libjpeg-turbo'
+ 'libseccomp' libseccomp.so libpixman-1.so libjpeg.so)
+options=('debug')
+source=(https://github.com/stoeckmann/xwallpaper/releases/download/v${pkgver}/xwallpaper-${pkgver}.tar.xz{,.sig})
+sha512sums=('f6eaf41befe724ad55d14f607bdfe9d05c79139054deb6590198ce767cf42173f068459dd894b284f3e8dbc95fc482d8ed7ed1c615f7b72b249897a6a01d51ba'
+'SKIP')
+b2sums=('c10a69ab5734e43e99a746872bff427797e1d8f9de06d241fa81435036527b029031bb49733cf2119e8725883f20b9253b779ef9113d32d1b4f77bd73511a76a'
+'SKIP')
+validpgpkeys=('CDB24BD3BDDCBCBBAE5CB6207DB470F35B0B8B18') # Tobias Stoeckmann 

+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  autoreconf -fiv
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure \
+--prefix=/usr \
+--with-zshcompletiondir=/usr/share/zsh/site-functions
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:



[arch-commits] Commit in meson/repos/extra-any (8 files)

2022-08-13 Thread Jan Steffens via arch-commits
Date: Saturday, August 13, 2022 @ 13:47:33
  Author: heftig
Revision: 452664

archrelease: copy trunk to extra-any

Added:
  meson/repos/extra-any/0001-Skip-broken-tests.patch
(from rev 452663, meson/trunk/0001-Skip-broken-tests.patch)
  meson/repos/extra-any/PKGBUILD
(from rev 452663, meson/trunk/PKGBUILD)
  meson/repos/extra-any/arch-meson
(from rev 452663, meson/trunk/arch-meson)
  meson/repos/extra-any/keys/
Deleted:
  meson/repos/extra-any/0001-Skip-broken-tests.patch
  meson/repos/extra-any/PKGBUILD
  meson/repos/extra-any/arch-meson
  meson/repos/extra-any/keys/

--+
 0001-Skip-broken-tests.patch |   86 +++---
 PKGBUILD |  116 -
 arch-meson   |   26 -
 3 files changed, 114 insertions(+), 114 deletions(-)

Deleted: 0001-Skip-broken-tests.patch
===
--- 0001-Skip-broken-tests.patch2022-08-13 13:46:42 UTC (rev 452663)
+++ 0001-Skip-broken-tests.patch2022-08-13 13:47:33 UTC (rev 452664)
@@ -1,43 +0,0 @@
-From  Mon Sep 17 00:00:00 2001
-From: "Jan Alexander Steffens (heftig)" 
-Date: Thu, 14 Apr 2022 14:08:15 +
-Subject: [PATCH] Skip broken tests
-

- test cases/linuxlike/13 cmake dependency/meson.build | 2 ++
- unittests/linuxliketests.py  | 2 ++
- 2 files changed, 4 insertions(+)
-
-diff --git a/test cases/linuxlike/13 cmake dependency/meson.build b/test 
cases/linuxlike/13 cmake dependency/meson.build
-index 193ad184b637..e94ba68ac30f 100644
 a/test cases/linuxlike/13 cmake dependency/meson.build 
-+++ b/test cases/linuxlike/13 cmake dependency/meson.build 
-@@ -6,6 +6,8 @@ if not find_program('cmake', required: false).found()
-   error('MESON_SKIP_TEST cmake binary not available.')
- endif
- 
-+error('MESON_SKIP_TEST flaky, see 
https://github.com/mesonbuild/meson/issues/10104')
-+
- # Zlib is probably on all dev machines.
- 
- dep = dependency('ZLIB', version : '>=1.2', method : 'cmake')
-diff --git a/unittests/linuxliketests.py b/unittests/linuxliketests.py
-index 9b84740bbada..a8265acdde98 100644
 a/unittests/linuxliketests.py
-+++ b/unittests/linuxliketests.py
-@@ -343,6 +343,7 @@ class LinuxlikeTests(BasePlatformTests):
- raise SkipTest('asan not available on Cygwin')
- if is_openbsd():
- raise SkipTest('-fsanitize=address is not supported on OpenBSD')
-+raise SkipTest('cannot run sanitizers in containers without ptrace')
- 
- testdir = os.path.join(self.framework_test_dir, '7 gnome')
- self.init(testdir, extra_args=['-Db_sanitize=address', 
'-Db_lundef=false'])
-@@ -998,6 +999,7 @@ class LinuxlikeTests(BasePlatformTests):
- raise SkipTest('asan not available on Cygwin')
- if is_openbsd():
- raise SkipTest('-fsanitize=address is not supported on OpenBSD')
-+raise SkipTest('cannot run sanitizers in containers without ptrace')
- 
- testdir = os.path.join(self.common_test_dir, '13 pch')
- self.init(testdir, extra_args=['-Db_sanitize=address', 
'-Db_lundef=false'])

Copied: meson/repos/extra-any/0001-Skip-broken-tests.patch (from rev 452663, 
meson/trunk/0001-Skip-broken-tests.patch)
===
--- 0001-Skip-broken-tests.patch(rev 0)
+++ 0001-Skip-broken-tests.patch2022-08-13 13:47:33 UTC (rev 452664)
@@ -0,0 +1,43 @@
+From  Mon Sep 17 00:00:00 2001
+From: "Jan Alexander Steffens (heftig)" 
+Date: Thu, 14 Apr 2022 14:08:15 +
+Subject: [PATCH] Skip broken tests
+
+---
+ test cases/linuxlike/13 cmake dependency/meson.build | 2 ++
+ unittests/linuxliketests.py  | 2 ++
+ 2 files changed, 4 insertions(+)
+
+diff --git a/test cases/linuxlike/13 cmake dependency/meson.build b/test 
cases/linuxlike/13 cmake dependency/meson.build
+index 193ad184b637..e94ba68ac30f 100644
+--- a/test cases/linuxlike/13 cmake dependency/meson.build 
 b/test cases/linuxlike/13 cmake dependency/meson.build 
+@@ -6,6 +6,8 @@ if not find_program('cmake', required: false).found()
+   error('MESON_SKIP_TEST cmake binary not available.')
+ endif
+ 
++error('MESON_SKIP_TEST flaky, see 
https://github.com/mesonbuild/meson/issues/10104')
++
+ # Zlib is probably on all dev machines.
+ 
+ dep = dependency('ZLIB', version : '>=1.2', method : 'cmake')
+diff --git a/unittests/linuxliketests.py b/unittests/linuxliketests.py
+index f120590e67da..2e1d520dae66 100644
+--- a/unittests/linuxliketests.py
 b/unittests/linuxliketests.py
+@@ -357,6 +357,7 @@ class LinuxlikeTests(BasePlatformTests):
+ raise SkipTest('asan not available on Cygwin')
+ if is_openbsd():
+ raise SkipTest('-fsanitize=address is not supported 

[arch-commits] Commit in meson/trunk (0001-Skip-broken-tests.patch PKGBUILD)

2022-08-13 Thread Jan Steffens via arch-commits
Date: Saturday, August 13, 2022 @ 13:46:42
  Author: heftig
Revision: 452663

0.63.1-1

Modified:
  meson/trunk/0001-Skip-broken-tests.patch
  meson/trunk/PKGBUILD

--+
 0001-Skip-broken-tests.patch |6 +++---
 PKGBUILD |8 
 2 files changed, 7 insertions(+), 7 deletions(-)

Modified: 0001-Skip-broken-tests.patch
===
--- 0001-Skip-broken-tests.patch2022-08-13 11:51:53 UTC (rev 452662)
+++ 0001-Skip-broken-tests.patch2022-08-13 13:46:42 UTC (rev 452663)
@@ -22,10 +22,10 @@
  
  dep = dependency('ZLIB', version : '>=1.2', method : 'cmake')
 diff --git a/unittests/linuxliketests.py b/unittests/linuxliketests.py
-index 9b84740bbada..a8265acdde98 100644
+index f120590e67da..2e1d520dae66 100644
 --- a/unittests/linuxliketests.py
 +++ b/unittests/linuxliketests.py
-@@ -343,6 +343,7 @@ class LinuxlikeTests(BasePlatformTests):
+@@ -357,6 +357,7 @@ class LinuxlikeTests(BasePlatformTests):
  raise SkipTest('asan not available on Cygwin')
  if is_openbsd():
  raise SkipTest('-fsanitize=address is not supported on OpenBSD')
@@ -33,7 +33,7 @@
  
  testdir = os.path.join(self.framework_test_dir, '7 gnome')
  self.init(testdir, extra_args=['-Db_sanitize=address', 
'-Db_lundef=false'])
-@@ -998,6 +999,7 @@ class LinuxlikeTests(BasePlatformTests):
+@@ -1012,6 +1013,7 @@ class LinuxlikeTests(BasePlatformTests):
  raise SkipTest('asan not available on Cygwin')
  if is_openbsd():
  raise SkipTest('-fsanitize=address is not supported on OpenBSD')

Modified: PKGBUILD
===
--- PKGBUILD2022-08-13 11:51:53 UTC (rev 452662)
+++ PKGBUILD2022-08-13 13:46:42 UTC (rev 452663)
@@ -3,7 +3,7 @@
 # Contributor: Anatol Pomozov 
 
 pkgname=meson
-pkgver=0.63.0
+pkgver=0.63.1
 pkgrel=1
 pkgdesc='High productivity build system'
 url='https://mesonbuild.com/'
@@ -19,9 +19,9 @@
 
source=(https://github.com/mesonbuild/meson/releases/download/${pkgver}/meson-${pkgver}.tar.gz{,.asc}
 0001-Skip-broken-tests.patch
 arch-meson)
-sha512sums=('8d427261bb42d2bd1da7d4f7b5f53908044aa2cea6d020fb320b0ab9d9848e17cf28deb12ae6dc139807f9e377db0c8a546561e94301216b634bd77703f17cea'
+sha512sums=('25f96e18bcdbb6346c44d9f8e63035d6cb3d8f781cf43ac5530ddd6f8090f4d16d192f8d331240154602e92b498b410fabb1381dc5f39db1dfb9da05a964d44e'
 'SKIP'
-
'd94c5b102835704e38ae778f0d420b30b4acf64f4321304ad63472a3fb044fcdc2fcb18edf47e239678534e107b6b892ee5328f0840d6649e10201bcf072e8f8'
+
'b59d90b5466fcf877969a49982308b1c89f0f4521e4d3774a4531bb2c0093f46b5ea2ef569e32984632e6f9c7e91328bc3511978427b553ed8c97a64a52b79ff'
 
'f451f8a7ef9cf1dd724c2ce20bb85a3f1611b87b2e7a17ef0fdbe8ab82a67389f818ea30a5adfe8413143e4eac77ea2e0b8234b5b2466b41a892e2bd0435376c')
 validpgpkeys=('19E2D6D9B46D8DAA6288F877C24E631BABB1FE70') # Jussi Pakkanen 

 
@@ -55,4 +55,4 @@
   install -D ../arch-meson -t "${pkgdir}/usr/bin"
 }
 
-# vim:set sw=2 et:
+# vim:set sw=2 sts=-1 et:



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

2022-08-13 Thread Felix Yan via arch-commits
Date: Saturday, August 13, 2022 @ 12:29:11
  Author: felixonmars
Revision: 1265957

archrelease: copy trunk to community-any

Added:
  firrtl/repos/community-any/PKGBUILD
(from rev 1265956, firrtl/trunk/PKGBUILD)
  firrtl/repos/community-any/firrtl.sh
(from rev 1265956, firrtl/trunk/firrtl.sh)
Deleted:
  firrtl/repos/community-any/PKGBUILD
  firrtl/repos/community-any/firrtl.sh

---+
 PKGBUILD  |   60 ++--
 firrtl.sh |6 +++---
 2 files changed, 33 insertions(+), 33 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-13 12:28:56 UTC (rev 1265956)
+++ PKGBUILD2022-08-13 12:29:11 UTC (rev 1265957)
@@ -1,30 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Sebastian Bøe 
-
-pkgname=firrtl
-pkgver=1.5.0
-pkgrel=1
-pkgdesc='Flexible Intermediate Representation for RTL'
-arch=('any')
-url='https://github.com/freechipsproject/firrtl'
-license=('Apache')
-provides=('firrtl')
-conflicts=('firrtl')
-depends=('java-environment' 'bash')
-makedepends=('mill' 'git')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/freechipsproject/firrtl/archive/v$pkgver.tar.gz;
-'firrtl.sh')
-sha512sums=('93cacd590d86aa5a4204c0153ec0838f52fc4f98d0ab9c74804d3dea87a415cc80bef0859b2e59c83706207b33d613f4b39ddf368a56eae4a51578969f6fdcbb'
-
'2e3ca5c5771bbbf4cfa1245e5bc6e1b65cc17f521ee62ca79e044d24be3c403f85ad8134734eed66132190c1d02e1295de4a0c7a46fd057d8040f1c8cb1865a2')
-
-build(){
-  cd firrtl-$pkgver
-  mill -i firrtl[2.13.7].assembly
-}
-
-package() {
-  install -Dm755 firrtl.sh "$pkgdir"/usr/bin/firrtl
-
-  cd firrtl-$pkgver
-  install -Dm755 out/firrtl/2.13.7/assembly.dest/out.jar 
"$pkgdir"/usr/share/scala/$pkgname/firrtl.jar
-}

Copied: firrtl/repos/community-any/PKGBUILD (from rev 1265956, 
firrtl/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-13 12:29:11 UTC (rev 1265957)
@@ -0,0 +1,30 @@
+# Maintainer: Felix Yan 
+# Contributor: Sebastian Bøe 
+
+pkgname=firrtl
+pkgver=1.5.1
+pkgrel=1
+pkgdesc='Flexible Intermediate Representation for RTL'
+arch=('any')
+url='https://github.com/freechipsproject/firrtl'
+license=('Apache')
+provides=('firrtl')
+conflicts=('firrtl')
+depends=('java-environment' 'bash')
+makedepends=('mill' 'git')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/freechipsproject/firrtl/archive/v$pkgver.tar.gz;
+'firrtl.sh')
+sha512sums=('adf9652007734e10d676c2d4ca78c11ea587f2fac7c068002d553c139ea5f841bbe0d9b2be2382a2f93bfba86c1708df572a19505606fe96b951d84acd33edd1'
+
'2e3ca5c5771bbbf4cfa1245e5bc6e1b65cc17f521ee62ca79e044d24be3c403f85ad8134734eed66132190c1d02e1295de4a0c7a46fd057d8040f1c8cb1865a2')
+
+build(){
+  cd firrtl-$pkgver
+  mill -i firrtl[2.13.7].assembly
+}
+
+package() {
+  install -Dm755 firrtl.sh "$pkgdir"/usr/bin/firrtl
+
+  cd firrtl-$pkgver
+  install -Dm755 out/firrtl/2.13.7/assembly.dest/out.jar 
"$pkgdir"/usr/share/scala/$pkgname/firrtl.jar
+}

Deleted: firrtl.sh
===
--- firrtl.sh   2022-08-13 12:28:56 UTC (rev 1265956)
+++ firrtl.sh   2022-08-13 12:29:11 UTC (rev 1265957)
@@ -1,3 +0,0 @@
-#!/bin/sh
-
-java -cp /usr/share/scala/firrtl/firrtl.jar firrtl.stage.FirrtlMain ${@:1}

Copied: firrtl/repos/community-any/firrtl.sh (from rev 1265956, 
firrtl/trunk/firrtl.sh)
===
--- firrtl.sh   (rev 0)
+++ firrtl.sh   2022-08-13 12:29:11 UTC (rev 1265957)
@@ -0,0 +1,3 @@
+#!/bin/sh
+
+java -cp /usr/share/scala/firrtl/firrtl.jar firrtl.stage.FirrtlMain ${@:1}



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

2022-08-13 Thread Felix Yan via arch-commits
Date: Saturday, August 13, 2022 @ 12:28:56
  Author: felixonmars
Revision: 1265956

upgpkg: firrtl 1.5.1-1

Modified:
  firrtl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-13 11:38:23 UTC (rev 1265955)
+++ PKGBUILD2022-08-13 12:28:56 UTC (rev 1265956)
@@ -2,7 +2,7 @@
 # Contributor: Sebastian Bøe 
 
 pkgname=firrtl
-pkgver=1.5.0
+pkgver=1.5.1
 pkgrel=1
 pkgdesc='Flexible Intermediate Representation for RTL'
 arch=('any')
@@ -14,7 +14,7 @@
 makedepends=('mill' 'git')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/freechipsproject/firrtl/archive/v$pkgver.tar.gz;
 'firrtl.sh')
-sha512sums=('93cacd590d86aa5a4204c0153ec0838f52fc4f98d0ab9c74804d3dea87a415cc80bef0859b2e59c83706207b33d613f4b39ddf368a56eae4a51578969f6fdcbb'
+sha512sums=('adf9652007734e10d676c2d4ca78c11ea587f2fac7c068002d553c139ea5f841bbe0d9b2be2382a2f93bfba86c1708df572a19505606fe96b951d84acd33edd1'
 
'2e3ca5c5771bbbf4cfa1245e5bc6e1b65cc17f521ee62ca79e044d24be3c403f85ad8134734eed66132190c1d02e1295de4a0c7a46fd057d8040f1c8cb1865a2')
 
 build(){



[arch-commits] Commit in libreoffice-still/repos/testing-x86_64 (22 files)

2022-08-13 Thread Andreas Radke via arch-commits
Date: Saturday, August 13, 2022 @ 11:51:53
  Author: andyrtr
Revision: 452662

archrelease: copy trunk to testing-x86_64

Added:
  
libreoffice-still/repos/testing-x86_64/0001_drop_the_SolarMutex_before_QApplication.patch
(from rev 452661, 
libreoffice-still/trunk/0001_drop_the_SolarMutex_before_QApplication.patch)
  libreoffice-still/repos/testing-x86_64/PKGBUILD
(from rev 452661, libreoffice-still/trunk/PKGBUILD)
  libreoffice-still/repos/testing-x86_64/firebird-icu70.patch
(from rev 452661, libreoffice-still/trunk/firebird-icu70.patch)
  libreoffice-still/repos/testing-x86_64/keys/
  libreoffice-still/repos/testing-x86_64/libreoffice-still.csh
(from rev 452661, libreoffice-still/trunk/libreoffice-still.csh)
  libreoffice-still/repos/testing-x86_64/libreoffice-still.sh
(from rev 452661, libreoffice-still/trunk/libreoffice-still.sh)
  
libreoffice-still/repos/testing-x86_64/make-pyuno-work-with-system-wide-module-install.diff
(from rev 452661, 
libreoffice-still/trunk/make-pyuno-work-with-system-wide-module-install.diff)
  libreoffice-still/repos/testing-x86_64/mdds-2.0-and-orcus-0.17.diff
(from rev 452661, libreoffice-still/trunk/mdds-2.0-and-orcus-0.17.diff)
  libreoffice-still/repos/testing-x86_64/poppler-22.03.0.patch
(from rev 452661, libreoffice-still/trunk/poppler-22.03.0.patch)
  libreoffice-still/repos/testing-x86_64/poppler-22.04.0.patch
(from rev 452661, libreoffice-still/trunk/poppler-22.04.0.patch)
  libreoffice-still/repos/testing-x86_64/soffice-template.desktop.in
(from rev 452661, libreoffice-still/trunk/soffice-template.desktop.in)
Deleted:
  
libreoffice-still/repos/testing-x86_64/0001_drop_the_SolarMutex_before_QApplication.patch
  libreoffice-still/repos/testing-x86_64/PKGBUILD
  libreoffice-still/repos/testing-x86_64/firebird-icu70.patch
  libreoffice-still/repos/testing-x86_64/keys/
  libreoffice-still/repos/testing-x86_64/libreoffice-still.csh
  libreoffice-still/repos/testing-x86_64/libreoffice-still.sh
  
libreoffice-still/repos/testing-x86_64/make-pyuno-work-with-system-wide-module-install.diff
  libreoffice-still/repos/testing-x86_64/mdds-2.0-and-orcus-0.17.diff
  libreoffice-still/repos/testing-x86_64/poppler-22.03.0.patch
  libreoffice-still/repos/testing-x86_64/poppler-22.04.0.patch
  libreoffice-still/repos/testing-x86_64/soffice-template.desktop.in

--+
 0001_drop_the_SolarMutex_before_QApplication.patch   |  152 
 PKGBUILD |  821 -
 firebird-icu70.patch | 1106 -
 libreoffice-still.csh|   14 
 libreoffice-still.sh |   14 
 make-pyuno-work-with-system-wide-module-install.diff |   36 
 mdds-2.0-and-orcus-0.17.diff | 9992 -
 poppler-22.03.0.patch|   56 
 poppler-22.04.0.patch|  142 
 soffice-template.desktop.in  |   14 
 10 files changed, 6171 insertions(+), 6176 deletions(-)

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


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

2022-08-13 Thread Andreas Radke via arch-commits
Date: Saturday, August 13, 2022 @ 11:51:27
  Author: andyrtr
Revision: 452661

upgpkg: libreoffice-still 7.2.7-5: build against system libcmis

Modified:
  libreoffice-still/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-13 11:50:52 UTC (rev 452660)
+++ PKGBUILD2022-08-13 11:51:27 UTC (rev 452661)
@@ -12,7 +12,7 @@
 pkgname=('libreoffice-still-sdk' 'libreoffice-still')
 _LOver=7.2.7.2
 pkgver=7.2.7
-pkgrel=4
+pkgrel=5
 arch=('x86_64')
 license=('LGPL3')
 url="https://www.libreoffice.org/;
@@ -28,8 +28,7 @@
'bluez-libs' 'gdb' 'doxygen'  'libatomic_ops'  'mdds'
'apr' 'serf' 'ttf-liberation' 'ttf-dejavu' 'ttf-carlito' 'libxinerama' 
'libpagemaker' 'glm'
'libabw' 'libmwaw' 'libe-book' 'coin-or-mp' 'liblangtag' 'liborcus' 
-#  'libexttextcat' 'libcmis' 'gobject-introspection' # 'libfbclient'
-   'libexttextcat' 'gobject-introspection' # 'libfbclient'
+   'libexttextcat' 'libcmis' 'gobject-introspection' # 'libfbclient'
'libtommath' 'libzmf' 'xmlsec' 'rxvt-unicode' #'gpgme' 
'libepubgen' 'libfreehand' 'libqxp' 'libstaroffice'  'boost' 
'libnumbertext'
'libffi' 'box2d' 'git'
@@ -54,7 +53,6 @@
${_additional_source_url}/Firebird-3.0.7.33374-0.tar.bz2
${_additional_source_url}/zxing-cpp-1.1.1.tar.gz

${_additional_source_url}/skia-m90-45c57e116ee0ce214bdf78405a4762722e4507d9.tar.xz
-   ${_additional_source_url}/libcmis-0.5.2.tar.xz
 ${_additional_source_url}/gpgme-1.13.1.tar.bz2
 ${_additional_source_url}/libgpg-error-1.37.tar.bz2
 ${_additional_source_url}/libassuan-2.5.3.tar.bz2
@@ -83,7 +81,6 @@
Firebird-3.0.7.33374-0.tar.bz2
zxing-cpp-1.1.1.tar.gz
skia-m90-45c57e116ee0ce214bdf78405a4762722e4507d9.tar.xz
-   libcmis-0.5.2.tar.xz
gpgme-1.13.1.tar.bz2
libgpg-error-1.37.tar.bz2
libassuan-2.5.3.tar.bz2
@@ -113,7 +110,6 @@
 'acb85cedafa10ce106b1823fb236b1b3e5d942a5741e8f8435cc8ccfec0afe76'
 'e595b3fa2ec320beb0b28f6af56b1141853257c2611686685639cebb3b248c86'
 'abe0b94d54edb717c58d74263f4ed3d27824d2ce9e9f2ce85a21ab38d993f94d'
-'d7b18d9602190e10d437f8a964a32e983afd57e2db316a07d87477a79f5000a2'
 'c4e30b227682374c23cddc7fdb9324a99694d907e79242a25a4deeedb393be46'
 'b32d6ff72a73cf79797f7f2d039e95e9c6f92f0c1450215410840ab62aea9763'
 '91bcb0403866b4e7c4bc1cc52ed4c364a9b5414b3994f718c70303f7f765e702'
@@ -212,7 +208,7 @@
--with-system-mdds\
--without-myspell-dicts \
--with-system-libvisio \
-   --without-system-libcmis \
+   --with-system-libcmis \
--with-system-libmspub \
--with-system-libexttextcat \
--with-system-orcus \
@@ -307,8 +303,7 @@
'libmspub' 'harfbuzz-icu' 'nss' 'clucene' 'hicolor-icon-theme'
'desktop-file-utils' 'shared-mime-info' 'libpagemaker'
'libxinerama' 'libabw' 'libmwaw' 'libe-book' 'libcups'
-   #'liblangtag' 'libexttextcat' 'libcmis' 'liborcus' # 
'libfbclient'
-   'liblangtag' 'libexttextcat' 'liborcus' # 'libfbclient'
+   'liblangtag' 'libexttextcat' 'libcmis' 'liborcus' # 
'libfbclient'
'libtommath' 'libzmf' 'libatomic_ops' 'xmlsec' 'libnumbertext' 
#'gpgme' 
'libfreehand' 'libstaroffice' 'libepubgen' 'libqxp' 'libepoxy' 
'box2d'
'xdg-utils')



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

2022-08-13 Thread Frederik Schwan via arch-commits
Date: Saturday, August 13, 2022 @ 11:50:52
  Author: freswa
Revision: 452660

archrelease: copy trunk to extra-x86_64

Added:
  java11-openjdk/repos/extra-x86_64/PKGBUILD
(from rev 452659, java11-openjdk/trunk/PKGBUILD)
  java11-openjdk/repos/extra-x86_64/freedesktop-java.desktop
(from rev 452659, java11-openjdk/trunk/freedesktop-java.desktop)
  java11-openjdk/repos/extra-x86_64/freedesktop-jconsole.desktop
(from rev 452659, java11-openjdk/trunk/freedesktop-jconsole.desktop)
  java11-openjdk/repos/extra-x86_64/freedesktop-jshell.desktop
(from rev 452659, java11-openjdk/trunk/freedesktop-jshell.desktop)
  java11-openjdk/repos/extra-x86_64/install_jdk-openjdk.sh
(from rev 452659, java11-openjdk/trunk/install_jdk-openjdk.sh)
  java11-openjdk/repos/extra-x86_64/install_jre-openjdk-headless.sh
(from rev 452659, java11-openjdk/trunk/install_jre-openjdk-headless.sh)
  java11-openjdk/repos/extra-x86_64/install_jre-openjdk.sh
(from rev 452659, 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|  566 +++---
 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, 448 insertions(+), 448 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-13 11:50:46 UTC (rev 452659)
+++ PKGBUILD2022-08-13 11:50:52 UTC (rev 452660)
@@ -1,283 +0,0 @@
-# Maintainer: Levente Polyak 
-# Maintainer: Frederik Schwan 
-# Contributor: 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=16
-_updatever=8
-pkgver=${_majorver}.${_minorver}.${_securityver}.u${_updatever}
-pkgrel=2
-_git_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' 'harfbuzz' 'glibc' 'gcc-libs')
-options=(!lto)
-source=(https://github.com/openjdk/jdk${_majorver}u/archive/${_git_tag}.tar.gz
-freedesktop-java.desktop
-freedesktop-jconsole.desktop
-freedesktop-jshell.desktop)
-sha256sums=('58acafa79830b550eed738b9c9590d3a19c44d776f9be634e0f7e1c5a57cb1b9'
-'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-${_git_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 

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

2022-08-13 Thread Frederik Schwan via arch-commits
Date: Saturday, August 13, 2022 @ 11:50:46
  Author: freswa
Revision: 452659

upgpkg: java11-openjdk 11.0.16.1.u1-2

Modified:
  java11-openjdk/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-13 11:10:59 UTC (rev 452658)
+++ PKGBUILD2022-08-13 11:50:46 UTC (rev 452659)
@@ -16,8 +16,8 @@
 pkgname=('jre11-openjdk-headless' 'jre11-openjdk' 'jdk11-openjdk' 
'openjdk11-src' 'openjdk11-doc')
 _majorver=11
 _minorver=0
-_securityver=16
-_updatever=8
+_securityver=16.1
+_updatever=1
 pkgver=${_majorver}.${_minorver}.${_securityver}.u${_updatever}
 pkgrel=2
 _git_tag=jdk-${_majorver}.${_minorver}.${_securityver}+${_updatever}
@@ -33,7 +33,7 @@
 freedesktop-java.desktop
 freedesktop-jconsole.desktop
 freedesktop-jshell.desktop)
-sha256sums=('58acafa79830b550eed738b9c9590d3a19c44d776f9be634e0f7e1c5a57cb1b9'
+sha256sums=('72eae6ec11a0f04dbe2a18d314cbc8cd0aa64da8dd4709f0aea3d5c0a536e931'
 '575587ad58dfa9908f046d307b9afc7b0b2eb20a1eb454f8fdbbd539ea7b3d01'
 '2f57b7c7dd671eabe9fa10c4f1283573e99d7f7c36eccd82c95b705979a2e8cb'
 'f271618a8c2a892b554caf26857af41efdf0d8bcb95d57ce7ba535d6979e96da')



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

2022-08-13 Thread David Runge via arch-commits
Date: Saturday, August 13, 2022 @ 11:38:23
  Author: dvzrv
Revision: 1265955

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-13 11:38:07 UTC (rev 1265954)
+++ PKGBUILD2022-08-13 11:38:23 UTC (rev 1265955)
@@ -1,43 +0,0 @@
-# Maintainer: David Runge 
-
-_name=PyMuPDF
-pkgname=python-pymupdf
-pkgver=1.20.1
-pkgrel=1
-pkgdesc="Python bindings for MuPDF's rendering library"
-arch=(x86_64)
-url="https://github.com/pymupdf/PyMuPDF;
-license=(AGPL3)
-depends=(glibc gumbo-parser jbig2dec libmupdf openjpeg2 python)
-makedepends=(freetype2 libjpeg-turbo python-distro python-build 
python-installer python-setuptools python-wheel swig systemd)
-checkdepends=(python-fonttools python-pillow python-pytest)
-options=(debug)
-source=(https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz)
-sha512sums=('0969e2d7f4d0dfce8d546ccfa27c703cc636c071af6722bf886ca8ca4579637bc9d46c5152f2fca8212e168839075b061c515993e107310cd50c396039202a42')
-b2sums=('bba7212f5869306221f866b2d4195a7ed6dc2eb80b3fbd31859f78f61d30fc4fb5d41e331c53ca05c8e4c2d94eadcfab784765e2f496f01177f62f47e648bb27')
-
-build() {
-  cd $_name-$pkgver
-  python -m build --wheel --no-isolation
-}
-
-check() {
-  local _site_packages=$(python -c "import site; 
print(site.getsitepackages()[0])")
-  local _test_dir="test_dir"
-
-  cd $_name-$pkgver
-  mkdir -vp $_test_dir
-  # install to test dir for testing
-  python -m installer --destdir="$_test_dir" dist/*.whl
-
-  export PYTHONPATH="$_test_dir/$_site_packages:$PYTHONPATH"
-  pytest -vv -c /dev/null tests/
-}
-
-package() {
-  depends+=(libfreetype.so libjpeg.so)
-
-  cd $_name-$pkgver
-  python -m installer --destdir="$pkgdir" dist/*.whl
-  install -vDm 644 README.md -t "$pkgdir/usr/share/doc/$pkgname/"
-}

Copied: python-pymupdf/repos/community-x86_64/PKGBUILD (from rev 1265954, 
python-pymupdf/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-13 11:38:23 UTC (rev 1265955)
@@ -0,0 +1,47 @@
+# Maintainer: David Runge 
+
+_name=PyMuPDF
+pkgname=python-pymupdf
+pkgver=1.20.2
+pkgrel=1
+pkgdesc="Python bindings for MuPDF's rendering library"
+arch=(x86_64)
+url="https://github.com/pymupdf/PyMuPDF;
+license=(AGPL3)
+depends=(glibc gumbo-parser jbig2dec libmupdf openjpeg2 python)
+makedepends=(freetype2 libjpeg-turbo python-distro python-build 
python-installer python-setuptools python-wheel swig systemd)
+checkdepends=(python-fonttools python-pillow python-pytest)
+optdepends=(
+  'python-fonttools: for building font subsets using fontTools'
+  'python-pillow: for image file saving using pillow'
+)
+options=(debug)
+source=(https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz)
+sha512sums=('40a11fd0fcce29c553155e278d3489507dd2d7572c79b5819d145696e0a58d6fe935eef45754976af1b81a54958afa59b634af945f8f399faf4c07e8f3f76d99')
+b2sums=('3b2715434479ece6a7551d09ddec651211a2a9b98abbd950240483762acf17d35f2e4ce95a12bc3009e4ea06c6e014131688ad81b2914d22902814cd2f38d8cb')
+
+build() {
+  cd $_name-$pkgver
+  python -m build --wheel --no-isolation
+}
+
+check() {
+  local _site_packages=$(python -c "import site; 
print(site.getsitepackages()[0])")
+  local _test_dir="test_dir"
+
+  cd $_name-$pkgver
+  mkdir -vp $_test_dir
+  # install to test dir for testing
+  python -m installer --destdir="$_test_dir" dist/*.whl
+
+  export PYTHONPATH="$_test_dir/$_site_packages:$PYTHONPATH"
+  pytest -vv -c /dev/null tests/
+}
+
+package() {
+  depends+=(libfreetype.so libjpeg.so)
+
+  cd $_name-$pkgver
+  python -m installer --destdir="$pkgdir" dist/*.whl
+  install -vDm 644 README.md -t "$pkgdir/usr/share/doc/$pkgname/"
+}



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

2022-08-13 Thread David Runge via arch-commits
Date: Saturday, August 13, 2022 @ 11:38:07
  Author: dvzrv
Revision: 1265954

upgpkg: python-pymupdf 1.20.2-1: Upgrade to 1.20.2.

Add python-fonttools and python-pillow to optional dependencies.

Modified:
  python-pymupdf/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-13 11:28:33 UTC (rev 1265953)
+++ PKGBUILD2022-08-13 11:38:07 UTC (rev 1265954)
@@ -2,7 +2,7 @@
 
 _name=PyMuPDF
 pkgname=python-pymupdf
-pkgver=1.20.1
+pkgver=1.20.2
 pkgrel=1
 pkgdesc="Python bindings for MuPDF's rendering library"
 arch=(x86_64)
@@ -11,10 +11,14 @@
 depends=(glibc gumbo-parser jbig2dec libmupdf openjpeg2 python)
 makedepends=(freetype2 libjpeg-turbo python-distro python-build 
python-installer python-setuptools python-wheel swig systemd)
 checkdepends=(python-fonttools python-pillow python-pytest)
+optdepends=(
+  'python-fonttools: for building font subsets using fontTools'
+  'python-pillow: for image file saving using pillow'
+)
 options=(debug)
 
source=(https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz)
-sha512sums=('0969e2d7f4d0dfce8d546ccfa27c703cc636c071af6722bf886ca8ca4579637bc9d46c5152f2fca8212e168839075b061c515993e107310cd50c396039202a42')
-b2sums=('bba7212f5869306221f866b2d4195a7ed6dc2eb80b3fbd31859f78f61d30fc4fb5d41e331c53ca05c8e4c2d94eadcfab784765e2f496f01177f62f47e648bb27')
+sha512sums=('40a11fd0fcce29c553155e278d3489507dd2d7572c79b5819d145696e0a58d6fe935eef45754976af1b81a54958afa59b634af945f8f399faf4c07e8f3f76d99')
+b2sums=('3b2715434479ece6a7551d09ddec651211a2a9b98abbd950240483762acf17d35f2e4ce95a12bc3009e4ea06c6e014131688ad81b2914d22902814cd2f38d8cb')
 
 build() {
   cd $_name-$pkgver



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

2022-08-13 Thread David Runge via arch-commits
Date: Saturday, August 13, 2022 @ 11:28:33
  Author: dvzrv
Revision: 1265953

archrelease: copy trunk to community-any

Added:
  python-pylink-square/repos/community-any/PKGBUILD
(from rev 1265952, python-pylink-square/trunk/PKGBUILD)
Deleted:
  python-pylink-square/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-13 11:28:23 UTC (rev 1265952)
+++ PKGBUILD2022-08-13 11:28:33 UTC (rev 1265953)
@@ -1,38 +0,0 @@
-# Maintainer: David Runge 
-
-_name=pylink-square
-_name_=pylink
-pkgname=python-pylink-square
-pkgver=0.14.1
-pkgrel=1
-pkgdesc="Python interface for the SEGGER J-Link"
-arch=(any)
-url="https://github.com/Square/pylink;
-license=(Apache)
-depends=(python-future python-psutil python-six)
-makedepends=(python-build python-installer python-setuptools python-wheel)
-checkdepends=(python-mock python-pytest)
-conflicts=(pylink)
-provides=(pylink)
-replaces=(pylink)
-# sdist on pypi.org has no tests: https://github.com/square/pylink/issues/119
-# 
source=(https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz)
-source=($_name_-$pkgver.tar.gz::https://github.com/square/pylink/archive/refs/tags/v$pkgver.tar.gz)
-sha512sums=('c859c76fbc72c18350356ef1825f6abfdc7fe95741847466eeb7fc21b5dcf95844dabb870fb4807396cba3d5f5613fa2ccea13fb9b13443c95d522b97021c4ad')
-b2sums=('d046c12ef2be83f9823833c161593e2cc5862968407400846130fdda456224b217b5c8f6a569a0f8ecc62e1122ea47d44351dfb1fc817e5e55a53fb4ea816e1d')
-
-build() {
-  cd $_name_-$pkgver
-  python -m build --wheel --skip-dependency-check --no-isolation
-}
-
-check() {
-  cd $_name_-$pkgver
-  pytest -v
-}
-
-package() {
-  cd $_name_-$pkgver
-  python -m installer --destdir="$pkgdir" dist/*.whl
-  install -vDm 644 *.md -t "$pkgdir/usr/share/doc/$pkgname"
-}

Copied: python-pylink-square/repos/community-any/PKGBUILD (from rev 1265952, 
python-pylink-square/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-13 11:28:33 UTC (rev 1265953)
@@ -0,0 +1,38 @@
+# Maintainer: David Runge 
+
+_name=pylink-square
+_name_=pylink
+pkgname=python-pylink-square
+pkgver=0.14.2
+pkgrel=1
+pkgdesc="Python interface for the SEGGER J-Link"
+arch=(any)
+url="https://github.com/Square/pylink;
+license=(Apache)
+depends=(python-future python-psutil python-six)
+makedepends=(python-build python-installer python-setuptools python-wheel)
+checkdepends=(python-mock python-pytest)
+conflicts=(pylink)
+provides=(pylink)
+replaces=(pylink)
+# sdist on pypi.org has no tests: https://github.com/square/pylink/issues/119
+# 
source=(https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz)
+source=($_name_-$pkgver.tar.gz::https://github.com/square/pylink/archive/refs/tags/v$pkgver.tar.gz)
+sha512sums=('bb285843753cab0f74bf99c6fe8c18b0123ec7926def04ac5cd8566cbf9c5d91335140c292ca75d6685e12f35060dad55eb48077d66ad16c72ba24237a5c5512')
+b2sums=('d1dae1d08e7bdc187a423d949c4993ea1946c139c4386c9cc14327dc19d67942abf537f4e92af4354f8365d51856e6bf3909dd709487096d84e1d2b200b5fdc5')
+
+build() {
+  cd $_name_-$pkgver
+  python -m build --wheel --skip-dependency-check --no-isolation
+}
+
+check() {
+  cd $_name_-$pkgver
+  pytest -v
+}
+
+package() {
+  cd $_name_-$pkgver
+  python -m installer --destdir="$pkgdir" dist/*.whl
+  install -vDm 644 *.md -t "$pkgdir/usr/share/doc/$pkgname"
+}



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

2022-08-13 Thread David Runge via arch-commits
Date: Saturday, August 13, 2022 @ 11:28:23
  Author: dvzrv
Revision: 1265952

upgpkg: python-pylink-square 0.14.2-1: Upgrade to 0.14.2.

Modified:
  python-pylink-square/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-13 11:22:29 UTC (rev 1265951)
+++ PKGBUILD2022-08-13 11:28:23 UTC (rev 1265952)
@@ -3,7 +3,7 @@
 _name=pylink-square
 _name_=pylink
 pkgname=python-pylink-square
-pkgver=0.14.1
+pkgver=0.14.2
 pkgrel=1
 pkgdesc="Python interface for the SEGGER J-Link"
 arch=(any)
@@ -18,8 +18,8 @@
 # sdist on pypi.org has no tests: https://github.com/square/pylink/issues/119
 # 
source=(https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz)
 
source=($_name_-$pkgver.tar.gz::https://github.com/square/pylink/archive/refs/tags/v$pkgver.tar.gz)
-sha512sums=('c859c76fbc72c18350356ef1825f6abfdc7fe95741847466eeb7fc21b5dcf95844dabb870fb4807396cba3d5f5613fa2ccea13fb9b13443c95d522b97021c4ad')
-b2sums=('d046c12ef2be83f9823833c161593e2cc5862968407400846130fdda456224b217b5c8f6a569a0f8ecc62e1122ea47d44351dfb1fc817e5e55a53fb4ea816e1d')
+sha512sums=('bb285843753cab0f74bf99c6fe8c18b0123ec7926def04ac5cd8566cbf9c5d91335140c292ca75d6685e12f35060dad55eb48077d66ad16c72ba24237a5c5512')
+b2sums=('d1dae1d08e7bdc187a423d949c4993ea1946c139c4386c9cc14327dc19d67942abf537f4e92af4354f8365d51856e6bf3909dd709487096d84e1d2b200b5fdc5')
 
 build() {
   cd $_name_-$pkgver



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

2022-08-13 Thread David Runge via arch-commits
Date: Saturday, August 13, 2022 @ 11:19:33
  Author: dvzrv
Revision: 1265949

archrelease: copy trunk to community-staging-any

Added:
  containers-common/repos/community-staging-any/
  containers-common/repos/community-staging-any/PKGBUILD
(from rev 1265948, containers-common/trunk/PKGBUILD)
  
containers-common/repos/community-staging-any/containers-common-0.48.0-init_path.patch
(from rev 1265948, 
containers-common/trunk/containers-common-0.48.0-init_path.patch)
  containers-common/repos/community-staging-any/mounts.conf
(from rev 1265948, containers-common/trunk/mounts.conf)

--+
 PKGBUILD |  163 +
 containers-common-0.48.0-init_path.patch |   13 ++
 mounts.conf  |3 
 3 files changed, 179 insertions(+)

Copied: containers-common/repos/community-staging-any/PKGBUILD (from rev 
1265948, containers-common/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2022-08-13 11:19:33 UTC (rev 1265949)
@@ -0,0 +1,163 @@
+# Maintainer: David Runge 
+
+pkgname=containers-common
+pkgver=0.49.1
+pkgrel=1
+epoch=1
+_image_pkgver=5.22.0
+_podman_pkgver=4.2.0
+_shortnames_pkgver=2022.02.08
+_skopeo_pkgver=1.9.2
+_storage_pkgver=1.42.0
+pkgdesc="Configuration files and manpages for containers"
+arch=(any)
+url="https://github.com/containers;
+license=(Apache)
+depends=('container-network-stack>1')
+makedepends=(go-md2man)
+checkdepends=(ripgrep)
+backup=(
+  etc/containers/containers.conf
+  etc/containers/mounts.conf
+  etc/containers/policy.json
+  etc/containers/registries.conf
+  etc/containers/seccomp.json
+  etc/containers/storage.conf
+)
+# configuration override directories need to exist
+options=(emptydirs)
+source=(
+  
common-$pkgver.tar.gz::https://github.com/containers/common/archive/v$pkgver.tar.gz
+  
image-$_image_pkgver.tar.gz::https://github.com/containers/image/archive/v$_image_pkgver.tar.gz
+  
podman-$_podman_pkgver.tar.gz::https://github.com/containers/podman/archive/v$_podman_pkgver.tar.gz
+  
skopeo-$_skopeo_pkgver.tar.gz::https://github.com/containers/skopeo/archive/v$_skopeo_pkgver.tar.gz
+  
storage-$_storage_pkgver.tar.gz::https://github.com/containers/storage/archive/v$_storage_pkgver.tar.gz
+  
shortnames-$_shortnames_pkgver.tar.gz::https://github.com/containers/shortnames/archive/refs/tags/v$_shortnames_pkgver.tar.gz
+  mounts.conf
+  $pkgname-0.48.0-init_path.patch
+)
+sha512sums=('c918c4ba3a5bdcb5164f4fe8b7fc949fc8ddec1a6819b42859383902f41b845d1989ed8abbdd272b812372116505a899e0d632a247f6b79a6e52c446e5a29fdd'
+
'1b286ddd527d47a11f57af74c8f171ae8ec129678bed8b12476737672655548a1218732b27152c80437f1367b1878f80144e569e77c01ff6c05d659f49bcf694'
+
'bc9e28d9938127f91be10ea8bc6c6f638a01d74d120efad5ad1e72c5f7b893685871e83872434745bc72ecaca430355b0f59d302660e8b4a53cc88a88cc37f9c'
+
'8d9aad3a6190f0c9bdd85485423dc257408b27088300f8a891615bf47f3ef16e02035d69ea15a75a93f375e6e7ad465f90951725e4ee1509463f05447c7ce174'
+
'c8a4fdfbc71915dd3a1d5c1fabef4be7641b8a0edb14805719d93bc9de5bd8fe150636c4457fa544487a6bccbb0f58ad36ca3990d6ca3c2b73935418aaf98f22'
+
'd0f72ad6f86cc1bcb0f02d9c29d3a982c541679098e417410c8f1a3df42550753e4f491efdec09dc02fe3ab4e3f5d8971c8ab9e964293e6b4e1f1261191b3501'
+
'11fa515bbb0686d2b49c4fd2ab35348cb19f9c6780d6eb951a33b07ed7b7c72a676627f36e8c74e1a2d15e306d4537178f0e127fd3490f6131d078e56b46d5e1'
+
'4a6526d01f192f0eb4dcbd28c019a2b0db6dc2128af644e8e89992e5dcfa45a02c739b06ee01e22606b5cb847213c002f8ab5f87a576846ac73f73eed9b2b469')
+b2sums=('952ea2307d2347fda89a71b2ac7bb647f15031b5e83a9b9974e6b3da65469846fe28ab1ce9117eefb07d8ffb22781918c76daa88b2da0160e6e9daffbcabcb4e'
+
'f8e06fb6441112d6fa47e168f6f3d20309d292f5acf4008d64248643b4b4e10bdaa73701d5cdf8ffa7e38018880f5456386b141aeea451969ae23bb14261e9f9'
+
'a3b8d8b140b9d34e24f87f998fff3558649487b503bdd437f537f09adc51819d81786b6b4e858ef4e8a43c0d872cd20cd1ceee06988a36f830b9ffbb5109d14d'
+
'd40786fc1d7af5c4293c6eb3aeab6672a2c1535cda5c7abaa03126c99ab5676838ccd7095a58ec75213a17e2cee1cfd25f337ba7406676330b5e97603b804cab'
+
'3cca3833695bb5e15a0ab5d97d5f72e14102d8c6eee1c132932e4177f64ab9a171cf8486f4fe8d9e09a0537a325c988c6b766249c3c0843bb5f1b270a705b523'
+
'da94f0fe514031d3f02cbc3524fb8ba2ffab1e53949bea009768663f487301c3029a026abff23771ebf73ee94868490cf1758ebee2646c95dc5406111fb12208'
+
'2f4b0af3271103362a898e7fcc3ec05f06755902ad664ac3107bb8debb8b2ac0d50de311d5fc651279a817a56e3ff05864a7e77c0d8fc628ff7411bfb98c9b69'
+
'89e95f468785f6ca1309b0de37921702bd4eb6fb191afc0d93454bec7b7096a1b84e19408b5a0abcdfd89ce2ebd228879cbc42a0d409425fb41caab6a8f049f5')
+
+prepare() {
+  sed -r 's/(GOMD2MAN = ).*/\1 go-md2man/' -i 

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

2022-08-13 Thread David Runge via arch-commits
Date: Saturday, August 13, 2022 @ 11:19:21
  Author: dvzrv
Revision: 1265948

upgpkg: containers-common 1:0.49.1-1: Upgrade to 0.49.1

Upgrade image to 5.22.0.
Upgrade podman to 4.2.0.
Upgrade storage to 1.42.0.

Simplify creation and installation of man pages (when go-md2man is called 
manually).

Modified:
  containers-common/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-13 10:32:19 UTC (rev 1265947)
+++ PKGBUILD2022-08-13 11:19:21 UTC (rev 1265948)
@@ -1,14 +1,14 @@
 # Maintainer: David Runge 
 
 pkgname=containers-common
-pkgver=0.48.0
-pkgrel=2
+pkgver=0.49.1
+pkgrel=1
 epoch=1
-_image_pkgver=5.21.1
-_podman_pkgver=4.1.1
+_image_pkgver=5.22.0
+_podman_pkgver=4.2.0
 _shortnames_pkgver=2022.02.08
 _skopeo_pkgver=1.9.2
-_storage_pkgver=1.40.3
+_storage_pkgver=1.42.0
 pkgdesc="Configuration files and manpages for containers"
 arch=(any)
 url="https://github.com/containers;
@@ -36,19 +36,19 @@
   mounts.conf
   $pkgname-0.48.0-init_path.patch
 )
-sha512sums=('82d823899a39e6d08de5e8880edc5af41165188d9a54346b0ddb0a27e3697af3a4b33e9905fa87ae9e545a0bb5f68fea9a88ae2268e252f0fe20852a41e80057'
-
'd4d6d6dc9e1359dbf23165d0f636eeb89246efa89c2b38cb5760e3cec6439234fb708a72e8ec5d07fe8bf9a12ef81b9040c03d70cacff2764c926a3f77d133b0'
-
'19dd2800b59dacf7edd5d8204bdaffa0959910c7751b582f5a12b8d644b52f9d6581b9c3b4cba3ddb0707f6a90c0dbc93de6d8e2eaa6a4234ebb9dfa28e693b3'
+sha512sums=('c918c4ba3a5bdcb5164f4fe8b7fc949fc8ddec1a6819b42859383902f41b845d1989ed8abbdd272b812372116505a899e0d632a247f6b79a6e52c446e5a29fdd'
+
'1b286ddd527d47a11f57af74c8f171ae8ec129678bed8b12476737672655548a1218732b27152c80437f1367b1878f80144e569e77c01ff6c05d659f49bcf694'
+
'bc9e28d9938127f91be10ea8bc6c6f638a01d74d120efad5ad1e72c5f7b893685871e83872434745bc72ecaca430355b0f59d302660e8b4a53cc88a88cc37f9c'
 
'8d9aad3a6190f0c9bdd85485423dc257408b27088300f8a891615bf47f3ef16e02035d69ea15a75a93f375e6e7ad465f90951725e4ee1509463f05447c7ce174'
-
'62f7b0d49095dbd55d6556e7631ac672883b1f2cc1aa05cd95befa11977a73838f16f45d72aa8cd087d39989143c1964b6689e58e0368b9b70b69c7ad9537b3d'
+
'c8a4fdfbc71915dd3a1d5c1fabef4be7641b8a0edb14805719d93bc9de5bd8fe150636c4457fa544487a6bccbb0f58ad36ca3990d6ca3c2b73935418aaf98f22'
 
'd0f72ad6f86cc1bcb0f02d9c29d3a982c541679098e417410c8f1a3df42550753e4f491efdec09dc02fe3ab4e3f5d8971c8ab9e964293e6b4e1f1261191b3501'
 
'11fa515bbb0686d2b49c4fd2ab35348cb19f9c6780d6eb951a33b07ed7b7c72a676627f36e8c74e1a2d15e306d4537178f0e127fd3490f6131d078e56b46d5e1'
 
'4a6526d01f192f0eb4dcbd28c019a2b0db6dc2128af644e8e89992e5dcfa45a02c739b06ee01e22606b5cb847213c002f8ab5f87a576846ac73f73eed9b2b469')
-b2sums=('cfb3f20f1a3ee7559e580ae1b7b3cc771852e346ed73d42c5c0458db16f97457e99d5812af3e00dbd1d2a7a7f5e6ea52ee4165a5ad21dedf214258ef5142885c'
-
'f5bb2350a3d32e444e06c163ec1afe7a3bb1cc8dd8d382ab5016b5583bc0a6dafe34225f39ad13e3b5f0ead37f090010424e87ebf6402dd4068d7124eac21bf8'
-
'a094785ccb7a84a42147fb0f0360480ad4f73a1cdaa29b666fabb08528584f5d37b1cf8fb807351d4a60d81779de4dec3ab5fc83275061eded21f97fd3fa5e7f'
+b2sums=('952ea2307d2347fda89a71b2ac7bb647f15031b5e83a9b9974e6b3da65469846fe28ab1ce9117eefb07d8ffb22781918c76daa88b2da0160e6e9daffbcabcb4e'
+
'f8e06fb6441112d6fa47e168f6f3d20309d292f5acf4008d64248643b4b4e10bdaa73701d5cdf8ffa7e38018880f5456386b141aeea451969ae23bb14261e9f9'
+
'a3b8d8b140b9d34e24f87f998fff3558649487b503bdd437f537f09adc51819d81786b6b4e858ef4e8a43c0d872cd20cd1ceee06988a36f830b9ffbb5109d14d'
 
'd40786fc1d7af5c4293c6eb3aeab6672a2c1535cda5c7abaa03126c99ab5676838ccd7095a58ec75213a17e2cee1cfd25f337ba7406676330b5e97603b804cab'
-
'0bebcee0eea8830b3c8fe0ab901688f7dbb3928743a3a8b390140e7ac12b29b252c626e211e446016f6acd6372fee9a2bd08b3e61a76cb66c59ea5d81b3ec6d0'
+
'3cca3833695bb5e15a0ab5d97d5f72e14102d8c6eee1c132932e4177f64ab9a171cf8486f4fe8d9e09a0537a325c988c6b766249c3c0843bb5f1b270a705b523'
 
'da94f0fe514031d3f02cbc3524fb8ba2ffab1e53949bea009768663f487301c3029a026abff23771ebf73ee94868490cf1758ebee2646c95dc5406111fb12208'
 
'2f4b0af3271103362a898e7fcc3ec05f06755902ad664ac3107bb8debb8b2ac0d50de311d5fc651279a817a56e3ff05864a7e77c0d8fc628ff7411bfb98c9b69'
 
'89e95f468785f6ca1309b0de37921702bd4eb6fb191afc0d93454bec7b7096a1b84e19408b5a0abcdfd89ce2ebd228879cbc42a0d409425fb41caab6a8f049f5')
@@ -55,32 +55,35 @@
 
 prepare() {
   sed -r 's/(GOMD2MAN = ).*/\1 go-md2man/' -i 
storage-$_storage_pkgver/docs/Makefile
-  patch -Np1 -d common-0.48.0 -i ../$pkgname-0.48.0-init_path.patch
+  patch -Np1 -d common-$pkgver -i ../$pkgname-0.48.0-init_path.patch
+  mkdir -vp build/{man1,man5}
 }
 
 build() {
+
   (
-cd common-$pkgver/docs
-for _man_page in *.md; do
-  

[arch-commits] Commit in libreoffice-fresh/repos/testing-x86_64 (12 files)

2022-08-13 Thread Andreas Radke via arch-commits
Date: Saturday, August 13, 2022 @ 11:10:59
  Author: andyrtr
Revision: 452658

archrelease: copy trunk to testing-x86_64

Added:
  libreoffice-fresh/repos/testing-x86_64/PKGBUILD
(from rev 452657, libreoffice-fresh/trunk/PKGBUILD)
  libreoffice-fresh/repos/testing-x86_64/keys/
  libreoffice-fresh/repos/testing-x86_64/libreoffice-fresh.csh
(from rev 452657, libreoffice-fresh/trunk/libreoffice-fresh.csh)
  libreoffice-fresh/repos/testing-x86_64/libreoffice-fresh.sh
(from rev 452657, libreoffice-fresh/trunk/libreoffice-fresh.sh)
  
libreoffice-fresh/repos/testing-x86_64/make-pyuno-work-with-system-wide-module-install.diff
(from rev 452657, 
libreoffice-fresh/trunk/make-pyuno-work-with-system-wide-module-install.diff)
  libreoffice-fresh/repos/testing-x86_64/soffice-template.desktop.in
(from rev 452657, libreoffice-fresh/trunk/soffice-template.desktop.in)
Deleted:
  libreoffice-fresh/repos/testing-x86_64/PKGBUILD
  libreoffice-fresh/repos/testing-x86_64/keys/
  libreoffice-fresh/repos/testing-x86_64/libreoffice-fresh.csh
  libreoffice-fresh/repos/testing-x86_64/libreoffice-fresh.sh
  
libreoffice-fresh/repos/testing-x86_64/make-pyuno-work-with-system-wide-module-install.diff
  libreoffice-fresh/repos/testing-x86_64/soffice-template.desktop.in

--+
 PKGBUILD |  791 -
 libreoffice-fresh.csh|   14 
 libreoffice-fresh.sh |   14 
 make-pyuno-work-with-system-wide-module-install.diff |   36 
 soffice-template.desktop.in  |   14 
 5 files changed, 433 insertions(+), 436 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-13 11:10:40 UTC (rev 452657)
+++ PKGBUILD2022-08-13 11:10:59 UTC (rev 452658)
@@ -1,397 +0,0 @@
-# Maintainer: AndyRTR 
-# Maintainer: Bartłomiej Piotrowski 
-
-# Google API keys (see http://www.chromium.org/developers/how-tos/api-keys)
-# Note: These are for Arch Linux use ONLY. For your own distribution, please
-# get your own set of keys. Feel free to contact foutre...@archlinux.org for
-# more information.
-_google_default_client_id=413772536636.apps.googleusercontent.com
-_google_default_client_secret=0ZChLK6AxeA3Isu96MkwqDR4
-
-pkgbase=libreoffice-fresh
-pkgname=('libreoffice-fresh-sdk' 'libreoffice-fresh')
-_LOver=7.3.5.2
-pkgver=7.3.5
-pkgrel=2
-arch=('x86_64')
-license=('LGPL3')
-url="https://www.libreoffice.org/;
-makedepends=('curl>=7.20.0' 'hunspell>=1.2.8' 'python>=3.7' 'libwpd>=0.9.2' 
'libwps'
-   'neon>=0.28.6' 'pango' 'nspr' 'libjpeg' 'libxrandr' 'libgl' 'dbus-glib'
-   'libxslt' 'redland' 'hyphen' 'lpsolve' 'gcc-libs' 'sh' 'graphite' 'icu' 
-   'lcms2' 'poppler>=0.24.0' 'libvisio' 'libetonyek' 'libodfgen' 'libcdr'
-   'libmspub' 'harfbuzz-icu' 'nss' 'hicolor-icon-theme'
-   'desktop-file-utils' 'shared-mime-info' 'gst-plugins-base-libs'
-   'sane' 'perl-archive-zip' 'zip' 'unzip' 'unixodbc' 'ant'
-   'gperf' 'gtk3' 'qt5-base' 'plasma-framework' 'cppunit' 'beanshell' 
'clucene'
-   'junit' 'libmythes' 'libwpg'  'java-environment=11' 'postgresql-libs' 
'mariadb-libs' 'libgl'
-   'bluez-libs' 'gdb' 'doxygen'  'libatomic_ops'  'mdds'
-   'apr' 'serf' 'ttf-liberation' 'ttf-dejavu' 'ttf-carlito' 'libxinerama' 
'libpagemaker' 'glm'
-   'libabw' 'libmwaw' 'libe-book' 'coin-or-mp' 'liblangtag' 'liborcus' 
-   'libexttextcat' 'gobject-introspection' # 'libfbclient'
-   'libtommath' 'libzmf' 'xmlsec' 'rxvt-unicode' #'gpgme' 
-   'libepubgen' 'libfreehand' 'libqxp' 'libstaroffice'  'boost' 
'libnumbertext'
-   'libcuckoo' 'abseil-cpp' 'clang' #'zxing-cpp'
-   'libffi' 'box2d' 'git'
-)
-options=('!lto') # using --enable-lto (for parallel link-time optimization)
-_mirror="https://download.documentfoundation.org/libreoffice/src/${pkgver};
-#_mirror="https://dev-builds.libreoffice.org/pre-releases/src;
-_additional_source_url="https://dev-www.libreoffice.org/src;
-_additional_source_url2="https://dev-www.libreoffice.org/extern;
-source=(${_mirror}/libreoffice{,-help,-translations}-${_LOver}.tar.xz{,.asc}
-   
${_additional_source_url}/35c94d2df8893241173de1d16b6034c0-swingExSrc.zip
-   
${_additional_source_url}/798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip # 
keep old bundled version, new system version ftbs
-   
${_additional_source_url}/a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip
-   
${_additional_source_url}/0168229624cfac409e766913506961a8-ucpp-1.3.2.tar.gz
-   ${_additional_source_url}/language-subtag-registry-2021-03-05.tar.bz2
-   
${_additional_source_url}/17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip
-   
${_additional_source_url}/d8bd5eed178db6e2b18eeed243f85aa8-flute-1.1.6.zip
-   
${_additional_source_url}/ba2930200c9f019c2d93a8c88c651a0f-flow-engine-0.9.4.zip
-   

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

2022-08-13 Thread Andreas Radke via arch-commits
Date: Saturday, August 13, 2022 @ 11:10:40
  Author: andyrtr
Revision: 452657

upgpkg: libreoffice-fresh 7.3.5-3: build against system libcmis

Modified:
  libreoffice-fresh/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-13 10:35:22 UTC (rev 452656)
+++ PKGBUILD2022-08-13 11:10:40 UTC (rev 452657)
@@ -12,7 +12,7 @@
 pkgname=('libreoffice-fresh-sdk' 'libreoffice-fresh')
 _LOver=7.3.5.2
 pkgver=7.3.5
-pkgrel=2
+pkgrel=3
 arch=('x86_64')
 license=('LGPL3')
 url="https://www.libreoffice.org/;
@@ -28,7 +28,7 @@
'bluez-libs' 'gdb' 'doxygen'  'libatomic_ops'  'mdds'
'apr' 'serf' 'ttf-liberation' 'ttf-dejavu' 'ttf-carlito' 'libxinerama' 
'libpagemaker' 'glm'
'libabw' 'libmwaw' 'libe-book' 'coin-or-mp' 'liblangtag' 'liborcus' 
-   'libexttextcat' 'gobject-introspection' # 'libfbclient'
+   'libexttextcat' 'libcmis' 'gobject-introspection' # 'libfbclient'
'libtommath' 'libzmf' 'xmlsec' 'rxvt-unicode' #'gpgme' 
'libepubgen' 'libfreehand' 'libqxp' 'libstaroffice'  'boost' 
'libnumbertext'
'libcuckoo' 'abseil-cpp' 'clang' #'zxing-cpp'
@@ -53,7 +53,6 @@
${_additional_source_url}/lxml-4.1.1.tgz
${_additional_source_url}/Firebird-3.0.7.33374-0.tar.bz2

${_additional_source_url}/skia-m97-a7230803d64ae9d44f4e1282444801119a3ae967.tar.xz
-   ${_additional_source_url}/libcmis-0.5.2.tar.xz
${_additional_source_url}/zxing-cpp-1.2.0.tar.gz
 ${_additional_source_url}/gpgme-1.16.0.tar.bz2
 ${_additional_source_url}/libgpg-error-1.43.tar.bz2
@@ -78,7 +77,6 @@
lxml-4.1.1.tgz
Firebird-3.0.7.33374-0.tar.bz2
skia-m97-a7230803d64ae9d44f4e1282444801119a3ae967.tar.xz
-   libcmis-0.5.2.tar.xz
zxing-cpp-1.2.0.tar.gz
gpgme-1.16.0.tar.bz2
libgpg-error-1.43.tar.bz2
@@ -107,7 +105,6 @@
 '940caef1ec7c78e0c34b0f6b94fe42d0f2022915ffc78643d28538a5cfd0f40e'
 'acb85cedafa10ce106b1823fb236b1b3e5d942a5741e8f8435cc8ccfec0afe76'
 '97e859e8467eca9d2441cd23079b61c2c3863b5687620f18cc31a9f966740177'
-'d7b18d9602190e10d437f8a964a32e983afd57e2db316a07d87477a79f5000a2'
 '653d9e44195d86cf64a36af9ff3a1978ec5599df3882439fefa56e7064f55e8a'
 '6c8cc4aedb10d5d4c905894ba1d850544619ee765606ac43df7405865de29ed0'
 'a9ab83ca7acc442a5bd846a75b920285ff79bdb4e3d34aa382be88ed2c3aebaf'
@@ -195,7 +192,7 @@
--with-system-mdds\
--without-myspell-dicts \
--with-system-libvisio \
-   --without-system-libcmis \
+   --with-system-libcmis \
--with-system-libmspub \
--with-system-libexttextcat \
--with-system-orcus \
@@ -291,7 +288,7 @@
'libmspub' 'harfbuzz-icu' 'nss' 'clucene' 'hicolor-icon-theme'
'desktop-file-utils' 'shared-mime-info' 'libpagemaker'
'libxinerama' 'libabw' 'libmwaw' 'libe-book' 'libcups'
-   'liblangtag' 'libexttextcat' 'liborcus' # 'libfbclient'
+   'liblangtag' 'libexttextcat' 'libcmis' 'liborcus' # 
'libfbclient'
'libtommath' 'libzmf' 'libatomic_ops' 'xmlsec' 'libnumbertext' 
#'gpgme' 
'libfreehand' 'libstaroffice' 'libepubgen' 'libqxp' 'libepoxy' 
'box2d'
#'zxing-cpp'



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

2022-08-13 Thread Felix Yan via arch-commits
Date: Saturday, August 13, 2022 @ 10:35:22
  Author: felixonmars
Revision: 452656

archrelease: copy trunk to testing-x86_64

Added:
  ldns/repos/testing-x86_64/
  ldns/repos/testing-x86_64/PKGBUILD
(from rev 452655, ldns/trunk/PKGBUILD)

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

Copied: ldns/repos/testing-x86_64/PKGBUILD (from rev 452655, 
ldns/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2022-08-13 10:35:22 UTC (rev 452656)
@@ -0,0 +1,36 @@
+# Maintainer: Gaetan Bisson 
+# Contributor: mathieui 
+# Contributor: jiribb 
+
+pkgname=ldns
+pkgver=1.8.2
+pkgrel=1
+pkgdesc='Fast DNS library supporting recent RFCs'
+url='https://www.nlnetlabs.nl/projects/ldns/'
+license=('custom:BSD')
+arch=('x86_64')
+depends=('openssl' 'dnssec-anchors')
+optdepends=('libpcap: ldns-dpa tool')
+makedepends=('libpcap')
+source=("https://www.nlnetlabs.nl/downloads/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('b92b001cdd382de653620a05445e42e17a827eec93d64ee587ad291a533cc1e9')
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./configure \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --localstatedir=/var \
+   --disable-rpath \
+   --with-drill \
+   --with-examples \
+   --with-trust-anchor=/etc/trusted-key.key \
+
+   make
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+   install -D -m644 LICENSE 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}



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

2022-08-13 Thread Felix Yan via arch-commits
Date: Saturday, August 13, 2022 @ 10:35:05
  Author: felixonmars
Revision: 452655

upgpkg: ldns 1.8.2-1

Modified:
  ldns/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-13 10:33:54 UTC (rev 452654)
+++ PKGBUILD2022-08-13 10:35:05 UTC (rev 452655)
@@ -3,7 +3,7 @@
 # Contributor: jiribb 
 
 pkgname=ldns
-pkgver=1.8.1
+pkgver=1.8.2
 pkgrel=1
 pkgdesc='Fast DNS library supporting recent RFCs'
 url='https://www.nlnetlabs.nl/projects/ldns/'
@@ -13,7 +13,7 @@
 optdepends=('libpcap: ldns-dpa tool')
 makedepends=('libpcap')
 
source=("https://www.nlnetlabs.nl/downloads/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
-sha256sums=('958229abce4d3aaa19a75c0d127666564b17216902186e952ca4aef47c6d7fa3')
+sha256sums=('b92b001cdd382de653620a05445e42e17a827eec93d64ee587ad291a533cc1e9')
 
 build() {
cd "${srcdir}/${pkgname}-${pkgver}"



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

2022-08-13 Thread Andreas Radke via arch-commits
Date: Saturday, August 13, 2022 @ 10:33:54
  Author: andyrtr
Revision: 452654

archrelease: copy trunk to extra-x86_64

Added:
  libcmis/repos/extra-x86_64/PKGBUILD
(from rev 452653, libcmis/trunk/PKGBUILD)
  libcmis/repos/extra-x86_64/getRefreshToken.diff
(from rev 452653, libcmis/trunk/getRefreshToken.diff)
  libcmis/repos/extra-x86_64/libcmis-0.5.2-icu-64.2.patch
(from rev 452653, libcmis/trunk/libcmis-0.5.2-icu-64.2.patch)
Deleted:
  libcmis/repos/extra-x86_64/PKGBUILD
  libcmis/repos/extra-x86_64/libcmis-0.5.2-icu-64.2.patch

--+
 PKGBUILD |   85 +
 getRefreshToken.diff |   13 ++
 libcmis-0.5.2-icu-64.2.patch |   34 
 3 files changed, 75 insertions(+), 57 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-13 10:33:43 UTC (rev 452653)
+++ PKGBUILD2022-08-13 10:33:54 UTC (rev 452654)
@@ -1,40 +0,0 @@
-# Maintainer: AndyRTR 
-
-pkgname=libcmis
-pkgver=0.5.2
-pkgrel=10
-pkgdesc="a C/C++ client library for the CMIS protocol"
-arch=('x86_64')
-url="https://github.com/tdf/libcmis;
-license=('GPL2' 'LGPL2.1' 'MPL')
-depends=('boost-libs' 'curl' 'libxml2')
-makedepends=('docbook2x' 'cppunit' 'boost')
-source=("https://github.com/tdf/libcmis/releases/download/v${pkgver}/$pkgname-$pkgver.tar.gz;
-'libcmis-0.5.2-icu-64.2.patch')
-sha256sums=('ed6f681a48abbf3c2324564b17a180d21fa9503230e8708825e1ad80daee4f81'
-'51b67a5b7245e5192739362c5034ed7d9a664799f38ff9ccd1832297f93cc03d')
-
-prepare() {
-  cd "$pkgname-$pkgver"
-
-  # https://github.com/tdf/libcmis/issues/35
-  patch -Np1 -i ../libcmis-0.5.2-icu-64.2.patch
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-  ./configure --prefix=/usr DOCBOOK2MAN='db2x_docbook2man' --disable-werror
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-check() {
-  cd "$pkgname-$pkgver"
-  # fails a google drive check - fix will be included in the next release
-  make check || /bin/true
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  make DESTDIR="$pkgdir/" install
-}

Copied: libcmis/repos/extra-x86_64/PKGBUILD (from rev 452653, 
libcmis/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-13 10:33:54 UTC (rev 452654)
@@ -0,0 +1,45 @@
+# Maintainer: AndyRTR 
+
+pkgname=libcmis
+pkgver=0.5.2
+pkgrel=11
+pkgdesc="a C/C++ client library for the CMIS protocol"
+arch=('x86_64')
+url="https://github.com/tdf/libcmis;
+license=('GPL2' 'LGPL2.1' 'MPL')
+depends=('boost-libs' 'curl' 'libxml2')
+makedepends=('docbook2x' 'cppunit' 'boost')
+source=("https://github.com/tdf/libcmis/releases/download/v${pkgver}/$pkgname-$pkgver.tar.gz;
+libcmis-0.5.2-icu-64.2.patch
+getRefreshToken.diff)
+sha256sums=('ed6f681a48abbf3c2324564b17a180d21fa9503230e8708825e1ad80daee4f81'
+'51b67a5b7245e5192739362c5034ed7d9a664799f38ff9ccd1832297f93cc03d'
+'7ad0e742da2660c238b457ea7cd5752b90bb876da3da852f511a6bb1301c75b6')
+
+prepare() {
+  cd "$pkgname-$pkgver"
+
+  # https://github.com/tdf/libcmis/issues/35
+  patch -Np1 -i ../libcmis-0.5.2-icu-64.2.patch
+  # part of 
https://github.com/tdf/libcmis/commit/f7466a849949f987dd47f2e0bb3a3df0c8cac4e4
+  # to solve a LibreOffice compile error
+  patch -Np1 -i ../getRefreshToken.diff
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  ./configure --prefix=/usr DOCBOOK2MAN='db2x_docbook2man' --disable-werror
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  # fails a google drive check - fix will be included in the next release
+  make check || /bin/true
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir/" install
+}

Copied: libcmis/repos/extra-x86_64/getRefreshToken.diff (from rev 452653, 
libcmis/trunk/getRefreshToken.diff)
===
--- getRefreshToken.diff(rev 0)
+++ getRefreshToken.diff2022-08-13 10:33:54 UTC (rev 452654)
@@ -0,0 +1,13 @@
+diff --git a/inc/libcmis/session.hxx b/inc/libcmis/session.hxx
+index 0a768a8..ec95ab4 100644
+--- a/inc/libcmis/session.hxx
 b/inc/libcmis/session.hxx
+@@ -95,6 +95,8 @@ namespace libcmis
+ certificate exception feature available on common web browser.
+   */
+ virtual void setNoSSLCertificateCheck( bool noCheck ) = 0;
++
++virtual std::string getRefreshToken() { return ""; };
+ };
+ }
+ 

Deleted: libcmis-0.5.2-icu-64.2.patch
===
--- libcmis-0.5.2-icu-64.2.patch2022-08-13 10:33:43 UTC (rev 452653)
+++ libcmis-0.5.2-icu-64.2.patch2022-08-13 10:33:54 UTC (rev 452654)
@@ -1,17 +0,0 @@
 a/inc/libcmis-c/repository.h   2018-12-27 

[arch-commits] Commit in libcmis/trunk (PKGBUILD getRefreshToken.diff)

2022-08-13 Thread Andreas Radke via arch-commits
Date: Saturday, August 13, 2022 @ 10:33:43
  Author: andyrtr
Revision: 452653

upgpkg: libcmis 0.5.2-11: add a fix from LibreOffice internal cmis fixes to 
solve compiling against system libcmis

Added:
  libcmis/trunk/getRefreshToken.diff
Modified:
  libcmis/trunk/PKGBUILD

--+
 PKGBUILD |   11 ---
 getRefreshToken.diff |   13 +
 2 files changed, 21 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-08-13 08:57:48 UTC (rev 452652)
+++ PKGBUILD2022-08-13 10:33:43 UTC (rev 452653)
@@ -2,7 +2,7 @@
 
 pkgname=libcmis
 pkgver=0.5.2
-pkgrel=10
+pkgrel=11
 pkgdesc="a C/C++ client library for the CMIS protocol"
 arch=('x86_64')
 url="https://github.com/tdf/libcmis;
@@ -10,9 +10,11 @@
 depends=('boost-libs' 'curl' 'libxml2')
 makedepends=('docbook2x' 'cppunit' 'boost')
 
source=("https://github.com/tdf/libcmis/releases/download/v${pkgver}/$pkgname-$pkgver.tar.gz;
-'libcmis-0.5.2-icu-64.2.patch')
+libcmis-0.5.2-icu-64.2.patch
+getRefreshToken.diff)
 sha256sums=('ed6f681a48abbf3c2324564b17a180d21fa9503230e8708825e1ad80daee4f81'
-'51b67a5b7245e5192739362c5034ed7d9a664799f38ff9ccd1832297f93cc03d')
+'51b67a5b7245e5192739362c5034ed7d9a664799f38ff9ccd1832297f93cc03d'
+'7ad0e742da2660c238b457ea7cd5752b90bb876da3da852f511a6bb1301c75b6')
 
 prepare() {
   cd "$pkgname-$pkgver"
@@ -19,6 +21,9 @@
 
   # https://github.com/tdf/libcmis/issues/35
   patch -Np1 -i ../libcmis-0.5.2-icu-64.2.patch
+  # part of 
https://github.com/tdf/libcmis/commit/f7466a849949f987dd47f2e0bb3a3df0c8cac4e4
+  # to solve a LibreOffice compile error
+  patch -Np1 -i ../getRefreshToken.diff
 }
 
 build() {

Added: getRefreshToken.diff
===
--- getRefreshToken.diff(rev 0)
+++ getRefreshToken.diff2022-08-13 10:33:43 UTC (rev 452653)
@@ -0,0 +1,13 @@
+diff --git a/inc/libcmis/session.hxx b/inc/libcmis/session.hxx
+index 0a768a8..ec95ab4 100644
+--- a/inc/libcmis/session.hxx
 b/inc/libcmis/session.hxx
+@@ -95,6 +95,8 @@ namespace libcmis
+ certificate exception feature available on common web browser.
+   */
+ virtual void setNoSSLCertificateCheck( bool noCheck ) = 0;
++
++virtual std::string getRefreshToken() { return ""; };
+ };
+ }
+ 



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

2022-08-13 Thread David Runge via arch-commits
Date: Saturday, August 13, 2022 @ 10:32:19
  Author: dvzrv
Revision: 1265947

archrelease: copy trunk to community-staging-x86_64

Added:
  podman/repos/community-staging-x86_64/
  podman/repos/community-staging-x86_64/PKGBUILD
(from rev 1265946, podman/trunk/PKGBUILD)
  podman/repos/community-staging-x86_64/keys/
  podman/repos/community-staging-x86_64/podman-4.2.0-defaultinitpath.patch
(from rev 1265946, podman/trunk/podman-4.2.0-defaultinitpath.patch)

+
 PKGBUILD   |   74 +++
 podman-4.2.0-defaultinitpath.patch |   13 ++
 2 files changed, 87 insertions(+)

Copied: podman/repos/community-staging-x86_64/PKGBUILD (from rev 1265946, 
podman/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-08-13 10:32:19 UTC (rev 1265947)
@@ -0,0 +1,74 @@
+# Maintainer: Morten Linderud 
+# Maintainer: David Runge 
+# Contributor: Bartłomiej Piotrowski 
+
+pkgbase=podman
+pkgname=(podman podman-docker)
+pkgver=4.2.0
+_commit=f61a22df078836b18f0a9004156b7d8771e6d5ba  # refs/tags/v4.2.0
+pkgrel=1
+pkgdesc='Tool and library for running OCI-based containers in pods'
+arch=(x86_64)
+url='https://github.com/containers/podman'
+license=(Apache)
+makedepends=(apparmor btrfs-progs catatonit device-mapper go go-md2man git 
gpgme libseccomp systemd)
+# https://github.com/containers/podman/issues/13297
+options=(!lto)
+source=(
+  git+$url#tag=$_commit?signed
+  $pkgname-4.2.0-defaultinitpath.patch
+)
+validpgpkeys=(
+  'B7DBDCA456F7335E91F1C25CD3624C551D0515C4'  # Matthew Heon 
+)
+sha256sums=('SKIP'
+'e4d15d2cf45237ddff64d149956e9f9c0ce366bd0bdf8d98de65269f53d4885d')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^v//;s/-/+/g'
+}
+
+prepare() {
+  # set default init_path to /usr/lib/podman/catatonit
+  # https://bugs.archlinux.org/task/75493
+  patch -Np1 -d $pkgname -i ../$pkgname-4.2.0-defaultinitpath.patch
+}
+
+build() {
+  # NOTE: the BUILDTAGS may change over time
+  export BUILDTAGS='apparmor seccomp systemd'
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export GOFLAGS="-buildmode=pie -trimpath"
+
+  make EXTRA_LDFLAGS='-s -w -linkmode=external' -C $pkgbase
+  make docker-docs -C $pkgbase
+}
+
+package_podman() {
+  depends=(catatonit conmon containers-common crun iptables libdevmapper.so
+  libgpgme.so libseccomp.so slirp4netns)
+  optdepends=(
+'apparmor: for AppArmor support'
+'btrfs-progs: support btrfs backend devices'
+'netavark: for a new container-network-stack implementation'
+'podman-compose: for docker-compose compatibility'
+'podman-docker: for Docker-compatible CLI'
+  )
+
+  make install install.completions DESTDIR="$pkgdir" PREFIX=/usr 
LIBEXECDIR=/usr/lib -C $pkgbase
+  # remove man pages provided by containers-common
+  rm -rvf "$pkgdir/usr/share/man/man5"
+}
+
+package_podman-docker() {
+  pkgdesc='Emulate Docker CLI using podman'
+  depends=(podman)
+  conflicts=(docker)
+  provides=(docker)
+
+  make -j1 install.docker-full DESTDIR="$pkgdir" PREFIX=/usr -C $pkgbase
+}

Copied: 
podman/repos/community-staging-x86_64/podman-4.2.0-defaultinitpath.patch (from 
rev 1265946, podman/trunk/podman-4.2.0-defaultinitpath.patch)
===
--- community-staging-x86_64/podman-4.2.0-defaultinitpath.patch 
(rev 0)
+++ community-staging-x86_64/podman-4.2.0-defaultinitpath.patch 2022-08-13 
10:32:19 UTC (rev 1265947)
@@ -0,0 +1,13 @@
+diff --git i/vendor/github.com/containers/common/pkg/config/default.go 
w/vendor/github.com/containers/common/pkg/config/default.go
+index c7ddf90ee..639e8f6f9 100644
+--- i/vendor/github.com/containers/common/pkg/config/default.go
 w/vendor/github.com/containers/common/pkg/config/default.go
+@@ -50,7 +50,7 @@ const (
+ 
+ var (
+   // DefaultInitPath is the default path to the container-init binary.
+-  DefaultInitPath = "/usr/libexec/podman/catatonit"
++  DefaultInitPath = "/usr/lib/podman/catatonit"
+   // DefaultInfraImage is the default image to run as infrastructure 
containers in pods.
+   DefaultInfraImage = ""
+   // DefaultRootlessSHMLockPath is the default path for rootless SHM 
locks.



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

2022-08-13 Thread David Runge via arch-commits
Date: Saturday, August 13, 2022 @ 10:32:02
  Author: dvzrv
Revision: 1265946

upgpkg: podman 4.2.0-1: Upgrade to 4.2.0.

Update patch to set default init_path.

Added:
  podman/trunk/podman-4.2.0-defaultinitpath.patch
Modified:
  podman/trunk/PKGBUILD
Deleted:
  podman/trunk/podman-4.1.1-defaultinitpath.patch

+
 PKGBUILD   |   12 ++--
 podman-4.1.1-defaultinitpath.patch |   13 -
 podman-4.2.0-defaultinitpath.patch |   13 +
 3 files changed, 19 insertions(+), 19 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-08-13 10:27:38 UTC (rev 1265945)
+++ PKGBUILD2022-08-13 10:32:02 UTC (rev 1265946)
@@ -4,9 +4,9 @@
 
 pkgbase=podman
 pkgname=(podman podman-docker)
-pkgver=4.1.1
-_commit=2ab593258b45c8071f8407ef2403227503fc4534  # refs/tags/v4.1.1
-pkgrel=4
+pkgver=4.2.0
+_commit=f61a22df078836b18f0a9004156b7d8771e6d5ba  # refs/tags/v4.2.0
+pkgrel=1
 pkgdesc='Tool and library for running OCI-based containers in pods'
 arch=(x86_64)
 url='https://github.com/containers/podman'
@@ -16,13 +16,13 @@
 options=(!lto)
 source=(
   git+$url#tag=$_commit?signed
-  $pkgname-4.1.1-defaultinitpath.patch
+  $pkgname-4.2.0-defaultinitpath.patch
 )
 validpgpkeys=(
   'B7DBDCA456F7335E91F1C25CD3624C551D0515C4'  # Matthew Heon 
 )
 sha256sums=('SKIP'
-'58c830aea7fc11abd69170f7e305763e16d8bad69f49632601dc1544d47fdbc0')
+'e4d15d2cf45237ddff64d149956e9f9c0ce366bd0bdf8d98de65269f53d4885d')
 
 pkgver() {
   cd $pkgname
@@ -32,7 +32,7 @@
 prepare() {
   # set default init_path to /usr/lib/podman/catatonit
   # https://bugs.archlinux.org/task/75493
-  patch -Np1 -d $pkgname -i ../$pkgname-4.1.1-defaultinitpath.patch
+  patch -Np1 -d $pkgname -i ../$pkgname-4.2.0-defaultinitpath.patch
 }
 
 build() {

Deleted: podman-4.1.1-defaultinitpath.patch
===
--- podman-4.1.1-defaultinitpath.patch  2022-08-13 10:27:38 UTC (rev 1265945)
+++ podman-4.1.1-defaultinitpath.patch  2022-08-13 10:32:02 UTC (rev 1265946)
@@ -1,13 +0,0 @@
-diff --git i/vendor/github.com/containers/common/pkg/config/default.go 
w/vendor/github.com/containers/common/pkg/config/default.go
-index 8979a406b..4736e0188 100644
 i/vendor/github.com/containers/common/pkg/config/default.go
-+++ w/vendor/github.com/containers/common/pkg/config/default.go
-@@ -47,7 +47,7 @@ const (
- 
- var (
-   // DefaultInitPath is the default path to the container-init binary
--  DefaultInitPath = "/usr/libexec/podman/catatonit"
-+  DefaultInitPath = "/usr/lib/podman/catatonit"
-   // DefaultInfraImage to use for infra container
-   DefaultInfraImage = ""
-   // DefaultRootlessSHMLockPath is the default path for rootless SHM locks

Added: podman-4.2.0-defaultinitpath.patch
===
--- podman-4.2.0-defaultinitpath.patch  (rev 0)
+++ podman-4.2.0-defaultinitpath.patch  2022-08-13 10:32:02 UTC (rev 1265946)
@@ -0,0 +1,13 @@
+diff --git i/vendor/github.com/containers/common/pkg/config/default.go 
w/vendor/github.com/containers/common/pkg/config/default.go
+index c7ddf90ee..639e8f6f9 100644
+--- i/vendor/github.com/containers/common/pkg/config/default.go
 w/vendor/github.com/containers/common/pkg/config/default.go
+@@ -50,7 +50,7 @@ const (
+ 
+ var (
+   // DefaultInitPath is the default path to the container-init binary.
+-  DefaultInitPath = "/usr/libexec/podman/catatonit"
++  DefaultInitPath = "/usr/lib/podman/catatonit"
+   // DefaultInfraImage is the default image to run as infrastructure 
containers in pods.
+   DefaultInfraImage = ""
+   // DefaultRootlessSHMLockPath is the default path for rootless SHM 
locks.



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

2022-08-13 Thread Felix Yan via arch-commits
Date: Saturday, August 13, 2022 @ 10:22:02
  Author: felixonmars
Revision: 1265940

archrelease: copy trunk to community-staging-x86_64

Added:
  cryptol/repos/community-staging-x86_64/
  cryptol/repos/community-staging-x86_64/PKGBUILD
(from rev 1265939, cryptol/trunk/PKGBUILD)

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

Copied: cryptol/repos/community-staging-x86_64/PKGBUILD (from rev 1265939, 
cryptol/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-08-13 10:22:02 UTC (rev 1265940)
@@ -0,0 +1,48 @@
+# Maintainer: Felix Yan 
+
+pkgname=cryptol
+pkgver=2.13.0
+pkgrel=9
+pkgdesc="The Language of Cryptography"
+url="https://www.cryptol.net;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'z3' 'haskell-arithmoi' 'haskell-async' 
'haskell-base-compat' 'haskell-bv-sized'
+ 'haskell-cryptohash-sha1' 'haskell-extra' 'haskell-gitrev'
+ 'haskell-graphscc' 'haskell-heredoc' 'haskell-libbf' 
'haskell-memotrie'
+ 'haskell-monad-control' 'haskell-monadlib' 
'haskell-optparse-applicative'
+ 'haskell-parameterized-utils' 'haskell-panic' 'haskell-prettyprinter' 
'haskell-sbv'
+ 'haskell-simple-smt' 'haskell-strict' 'haskell-temporary' 
'haskell-tf-random'
+ 'haskell-transformers-base' 'haskell-what4' 'haskell-ansi-terminal' 
'haskell-blaze-html')
+makedepends=('ghc' 'uusi' 'alex' 'happy')
+source=("https://github.com/GaloisInc/cryptol/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
+sha512sums=('232a91964379f8638a41845bc30040e42ded53089410f4f1ecd5649d2cc7811994963c3c3061710c5712eeaeb1813eb409c65197372cac64b5babbc7e99b2296')
+
+build() {
+cd $pkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --datasubdir=$pkgname 
--enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid 
--ghc-option=-fllvm \
+-f-static -f-relocatable --ghc-option='-pie'
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $pkgname-$pkgver
+runhaskell Setup test --show-details=direct
+}
+
+package() {
+cd $pkgname-$pkgver
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}



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

2022-08-13 Thread Felix Yan via arch-commits
Date: Saturday, August 13, 2022 @ 10:21:49
  Author: felixonmars
Revision: 1265939

upgpkg: cryptol 2.13.0-9: rebuild with libBF 0.6.4

Modified:
  cryptol/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-13 10:18:39 UTC (rev 1265938)
+++ PKGBUILD2022-08-13 10:21:49 UTC (rev 1265939)
@@ -2,7 +2,7 @@
 
 pkgname=cryptol
 pkgver=2.13.0
-pkgrel=8
+pkgrel=9
 pkgdesc="The Language of Cryptography"
 url="https://www.cryptol.net;
 license=("BSD")



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

2022-08-13 Thread Felix Yan via arch-commits
Date: Saturday, August 13, 2022 @ 10:18:39
  Author: felixonmars
Revision: 1265938

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-what4/repos/community-staging-x86_64/PKGBUILD (from rev 
1265937, haskell-what4/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-08-13 10:18:39 UTC (rev 1265938)
@@ -0,0 +1,60 @@
+# Maintainer: Felix Yan 
+
+_hkgname=what4
+pkgname=haskell-what4
+pkgver=1.3
+pkgrel=9
+pkgdesc="Solver-agnostic symbolic values support for issuing queries"
+url="https://github.com/GaloisInc/what4;
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-async' 'haskell-attoparsec' 'haskell-bimap' 
'haskell-bifunctors'
+ 'haskell-bv-sized' 'haskell-concurrent-extra' 'haskell-config-value'
+ 'haskell-deriving-compat' 'haskell-data-binary-ieee754' 
'haskell-fingertree'
+ 'haskell-hashable' 'haskell-hashtables' 'haskell-io-streams' 
'haskell-lens' 'haskell-libbf'
+ 'haskell-panic' 'haskell-parameterized-utils' 'haskell-prettyprinter' 
'haskell-scientific'
+ 'haskell-temporary' 'haskell-th-abstraction' 'haskell-th-lift' 
'haskell-th-lift-instances'
+ 'haskell-unordered-containers' 'haskell-utf8-string' 'haskell-vector' 
'haskell-versions'
+ 'haskell-zenc')
+makedepends=('ghc' 'uusi' 'haskell-contravariant' 'haskell-hedgehog' 
'haskell-lumberjack'
+ 'haskell-quickcheck' 'haskell-tasty' 'haskell-tasty-checklist'
+ 'haskell-tasty-expected-failure' 'haskell-tasty-hedgehog' 
'haskell-tasty-hunit'
+ 'haskell-tasty-quickcheck' 'haskell-tasty-sugar')
+checkdepends=('cvc4' 'yices' 'z3')
+optdepends=('cvc4' 'yices' 'z3')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('b1abb534750815962fe77ac75edfe1d766557fbe4bb396da4f8e4a3564630886cccb84e1866babcd26ac9ce79286b921c9eb408b23f2a71446a0a8466ad492ee')
+
+prepare() {
+cd $_hkgname-$pkgver
+gen-setup
+uusi -u tasty-sugar $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --datasubdir=$pkgname 
--enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid 
--ghc-option=-fllvm
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test --show-details=direct
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}



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

2022-08-13 Thread Felix Yan via arch-commits
Date: Saturday, August 13, 2022 @ 10:18:24
  Author: felixonmars
Revision: 1265937

upgpkg: haskell-what4 1.3-9: rebuild with libBF 0.6.4

Modified:
  haskell-what4/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-13 10:15:05 UTC (rev 1265936)
+++ PKGBUILD2022-08-13 10:18:24 UTC (rev 1265937)
@@ -3,7 +3,7 @@
 _hkgname=what4
 pkgname=haskell-what4
 pkgver=1.3
-pkgrel=8
+pkgrel=9
 pkgdesc="Solver-agnostic symbolic values support for issuing queries"
 url="https://github.com/GaloisInc/what4;
 license=('BSD')



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

2022-08-13 Thread Felix Yan via arch-commits
Date: Saturday, August 13, 2022 @ 10:15:05
  Author: felixonmars
Revision: 1265936

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-cracknum/repos/community-staging-x86_64/PKGBUILD (from rev 
1265935, haskell-cracknum/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-08-13 10:15:05 UTC (rev 1265936)
@@ -0,0 +1,32 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=crackNum
+pkgname=haskell-cracknum
+pkgver=3.2
+pkgrel=116
+pkgdesc="Crack various integer and floating-point data formats"
+url="https://github.com/LeventErkok/crackNum;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-libbf' 'haskell-sbv' 'haskell-tasty' 
'haskell-tasty-golden')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('1721a70cbebb89cf795882d1e3635e4d4aac5971bb41a2817c188257e459d558809059efc1de0840830f2aa753fa3b54d74ad8da6cbbd3766f6a089f592912d0')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --datasubdir=$pkgname 
--enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid 
--ghc-option=-fllvm
+runhaskell Setup build $MAKEFLAGS
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}



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

2022-08-13 Thread Felix Yan via arch-commits
Date: Saturday, August 13, 2022 @ 10:14:53
  Author: felixonmars
Revision: 1265935

upgpkg: haskell-cracknum 3.2-116: rebuild with libBF 0.6.4

Modified:
  haskell-cracknum/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-13 10:14:22 UTC (rev 1265934)
+++ PKGBUILD2022-08-13 10:14:53 UTC (rev 1265935)
@@ -4,7 +4,7 @@
 _hkgname=crackNum
 pkgname=haskell-cracknum
 pkgver=3.2
-pkgrel=115
+pkgrel=116
 pkgdesc="Crack various integer and floating-point data formats"
 url="https://github.com/LeventErkok/crackNum;
 license=("BSD")



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

2022-08-13 Thread Felix Yan via arch-commits
Date: Saturday, August 13, 2022 @ 10:14:22
  Author: felixonmars
Revision: 1265934

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-sbv/repos/community-staging-x86_64/PKGBUILD (from rev 1265933, 
haskell-sbv/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-08-13 10:14:22 UTC (rev 1265934)
@@ -0,0 +1,52 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=sbv
+pkgname=haskell-sbv
+pkgver=8.17
+pkgrel=35
+pkgdesc="SMT Based Verification: Symbolic Haskell theorem prover using SMT 
solving"
+url="https://leventerkok.github.io/sbv;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-quickcheck' 'haskell-async' 'haskell-libbf' 
'haskell-random'
+ 'haskell-syb' 'haskell-uniplate')
+makedepends=('ghc' 'haskell-doctest' 'haskell-glob' 'hlint' 'haskell-tasty' 
'haskell-tasty-golden'
+ 'haskell-tasty-hunit' 'haskell-tasty-quickcheck')
+checkdepends=('abc' 'cvc4' 'yices' 'z3')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('6d9bae30012596b429c9119e331682ae76de7b786f5e8edecdd74b46e2d77fcd0b77314bd6fb5b0e48932f82d445d443c7ba037b495adb5b97bf922933442fb9')
+
+prepare() {
+cd $_hkgname-$pkgver
+# Remove SMT solvers not in the repos
+sed -i 's/, boolector//;s/, mathSAT//;s/, dReal//;s/, bitwuzla//;s/, 
cvc5//' SBVTestSuite/SBVConnectionTest.hs
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --datasubdir=$pkgname 
--enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid 
--ghc-option=-fllvm
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test --show-details=direct
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}



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

2022-08-13 Thread Felix Yan via arch-commits
Date: Saturday, August 13, 2022 @ 10:14:09
  Author: felixonmars
Revision: 1265933

upgpkg: haskell-sbv 8.17-35: rebuild with libBF 0.6.4

Modified:
  haskell-sbv/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-13 10:07:53 UTC (rev 1265932)
+++ PKGBUILD2022-08-13 10:14:09 UTC (rev 1265933)
@@ -4,7 +4,7 @@
 _hkgname=sbv
 pkgname=haskell-sbv
 pkgver=8.17
-pkgrel=34
+pkgrel=35
 pkgdesc="SMT Based Verification: Symbolic Haskell theorem prover using SMT 
solving"
 url="https://leventerkok.github.io/sbv;
 license=("BSD")



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

2022-08-13 Thread Felix Yan via arch-commits
Date: Saturday, August 13, 2022 @ 10:07:53
  Author: felixonmars
Revision: 1265932

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-libbf/repos/community-staging-x86_64/PKGBUILD (from rev 
1265931, haskell-libbf/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-08-13 10:07:53 UTC (rev 1265932)
@@ -0,0 +1,43 @@
+# Maintainer: Felix Yan 
+
+_hkgname=libBF
+pkgname=haskell-libbf
+pkgver=0.6.4
+pkgrel=1
+pkgdesc="A binding to the libBF library"
+url="https://github.com/GaloisInc/libBF-hs;
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'libbf' 'haskell-hashable')
+makedepends=('ghc')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('6d03a4f47e63698b5a2d173c990b131f314a4d679e838327e496f285aaeffb5bf6da2fda2cd8fdc81ca3829907c2a2ad0774ed7f5218abf3a1ccb7f7905f72de')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --datasubdir=$pkgname 
--enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid 
--ghc-option=-fllvm \
+-fsystem-libbf
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test --show-details=direct
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}



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

2022-08-13 Thread Felix Yan via arch-commits
Date: Saturday, August 13, 2022 @ 10:07:34
  Author: felixonmars
Revision: 1265931

upgpkg: haskell-libbf 0.6.4-1: rebuild with libBF 0.6.4

Modified:
  haskell-libbf/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-13 09:56:13 UTC (rev 1265930)
+++ PKGBUILD2022-08-13 10:07:34 UTC (rev 1265931)
@@ -2,8 +2,8 @@
 
 _hkgname=libBF
 pkgname=haskell-libbf
-pkgver=0.6.3
-pkgrel=36
+pkgver=0.6.4
+pkgrel=1
 pkgdesc="A binding to the libBF library"
 url="https://github.com/GaloisInc/libBF-hs;
 license=('MIT')
@@ -11,7 +11,7 @@
 depends=('ghc-libs' 'libbf' 'haskell-hashable')
 makedepends=('ghc')
 
source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
-sha512sums=('bb63094e538320e2a64a5b298686c0e93d02061569a219a5becfd9ae53874ddec3a3c464dbcfdc6feff8e32abaa456308602dd7e657c33cc643fcee766e9251a')
+sha512sums=('6d03a4f47e63698b5a2d173c990b131f314a4d679e838327e496f285aaeffb5bf6da2fda2cd8fdc81ca3829907c2a2ad0774ed7f5218abf3a1ccb7f7905f72de')
 
 build() {
 cd $_hkgname-$pkgver



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

2022-08-13 Thread Orhun Parmaksiz via arch-commits
Date: Saturday, August 13, 2022 @ 09:56:13
  Author: orhun
Revision: 1265930

archrelease: copy trunk to community-x86_64

Added:
  rathole/repos/community-x86_64/PKGBUILD
(from rev 1265929, rathole/trunk/PKGBUILD)
Deleted:
  rathole/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-13 09:56:04 UTC (rev 1265929)
+++ PKGBUILD2022-08-13 09:56:13 UTC (rev 1265930)
@@ -1,39 +0,0 @@
-# Maintainer: Orhun Parmaksız 
-
-pkgname=rathole
-pkgver=0.4.2
-pkgrel=1
-pkgdesc="A reverse proxy for NAT traversal"
-arch=('x86_64')
-url="https://github.com/rapiz1/rathole;
-license=('Apache')
-depends=('gcc-libs' 'openssl')
-makedepends=('cargo' 'libgit2')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha256sums=('7110b0f62fff68de37c21970ba26a5c46e9b9af9df84f135789a0e3a9215756f')
-
-prepare() {
-  cd "$pkgname-$pkgver"
-  cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-  cargo build --release --frozen
-}
-
-check() {
-  cd "$pkgname-$pkgver"
-  cargo test --frozen
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  install -Dm 755 "target/release/$pkgname" -t "$pkgdir/usr/bin"
-  install -Dm 644 README.md -t "$pkgdir/usr/share/doc/$pkgname"
-  for svc in "${pkgname}@.service" "${pkgname}c@.service" 
"${pkgname}s@.service"; do
-install -Dm 644 "examples/systemd/$svc" -t 
"$pkgdir/usr/lib/systemd/system/"
-  done
-}
-
-# vim:set ts=2 sw=2 et:

Copied: rathole/repos/community-x86_64/PKGBUILD (from rev 1265929, 
rathole/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-13 09:56:13 UTC (rev 1265930)
@@ -0,0 +1,39 @@
+# Maintainer: Orhun Parmaksız 
+
+pkgname=rathole
+pkgver=0.4.3
+pkgrel=1
+pkgdesc="A reverse proxy for NAT traversal"
+arch=('x86_64')
+url="https://github.com/rapiz1/rathole;
+license=('Apache')
+depends=('gcc-libs' 'openssl')
+makedepends=('cargo' 'libgit2')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha256sums=('e7ca6b1ef3e23116ff2491647946732ea053bc2b630f13a3213e07560d645ecd')
+
+prepare() {
+  cd "$pkgname-$pkgver"
+  cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  cargo build --release --frozen
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  cargo test --frozen
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  install -Dm 755 "target/release/$pkgname" -t "$pkgdir/usr/bin"
+  install -Dm 644 README.md -t "$pkgdir/usr/share/doc/$pkgname"
+  for svc in "${pkgname}@.service" "${pkgname}c@.service" 
"${pkgname}s@.service"; do
+install -Dm 644 "examples/systemd/$svc" -t 
"$pkgdir/usr/lib/systemd/system/"
+  done
+}
+
+# vim:set ts=2 sw=2 et:



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

2022-08-13 Thread Orhun Parmaksiz via arch-commits
Date: Saturday, August 13, 2022 @ 09:56:04
  Author: orhun
Revision: 1265929

upgpkg: rathole 0.4.3-1: upstream release

Modified:
  rathole/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-13 09:50:53 UTC (rev 1265928)
+++ PKGBUILD2022-08-13 09:56:04 UTC (rev 1265929)
@@ -1,7 +1,7 @@
 # Maintainer: Orhun Parmaksız 
 
 pkgname=rathole
-pkgver=0.4.2
+pkgver=0.4.3
 pkgrel=1
 pkgdesc="A reverse proxy for NAT traversal"
 arch=('x86_64')
@@ -10,7 +10,7 @@
 depends=('gcc-libs' 'openssl')
 makedepends=('cargo' 'libgit2')
 source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha256sums=('7110b0f62fff68de37c21970ba26a5c46e9b9af9df84f135789a0e3a9215756f')
+sha256sums=('e7ca6b1ef3e23116ff2491647946732ea053bc2b630f13a3213e07560d645ecd')
 
 prepare() {
   cd "$pkgname-$pkgver"



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

2022-08-13 Thread Felix Yan via arch-commits
Date: Saturday, August 13, 2022 @ 09:24:20
  Author: felixonmars
Revision: 1265912

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-ci/repos/community-staging-x86_64/PKGBUILD (from rev 1265911, 
haskell-ci/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-08-13 09:24:20 UTC (rev 1265912)
@@ -0,0 +1,50 @@
+# Maintainer: Felix Yan 
+# Maintainer: Caleb Maclennan 
+
+_hkgname=haskell-ci
+pkgname=haskell-ci
+pkgver=0.12.1
+pkgrel=278
+pkgdesc="Cabal package script generator for Travis-CI"
+url="https://haskell-ci.rtfd.org/;
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-attoparsec' 'haskell-base-compat'
+ 'haskell-base16-bytestring' 'haskell-cabal-install-parsers' 
'haskell-cryptohash-sha256'
+ 'haskell-generic-lens-lite' 'haskell-hsyaml' 
'haskell-indexed-traversable'
+ 'haskell-indexed-traversable-instances' 'haskell-ini' 
'haskell-lattices'
+ 'haskell-network-uri' 'haskell-optparse-applicative' 'shellcheck' 
'haskell-temporary'
+ 'haskell-unordered-containers' 'haskell-zinza')
+makedepends=('ghc' 'uusi' 'haskell-diff' 'haskell-ansi-terminal' 
'haskell-tasty' 'haskell-tasty-golden')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+sha512sums=('d93a6b8e880255469b34b568320659802252379f0c5486ed315b366fd07dae935a480047468912bc5a397b9e55b00ea964451790f963d05b8df1d426d871da1c')
+
+prepare(){
+  uusi -u attoparsec -u base-compat -u ShellCheck 
$_hkgname-$pkgver/$_hkgname.cabal
+}
+
+build() {
+  cd $_hkgname-$pkgver
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --datasubdir=$pkgname 
--enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid 
--ghc-option=-fllvm \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+
+  runhaskell Setup build $MAKEFLAGS
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+  cd $_hkgname-$pkgver
+
+  install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh
+  install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+  runhaskell Setup copy --destdir="$pkgdir"
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+  rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}



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

2022-08-13 Thread Felix Yan via arch-commits
Date: Saturday, August 13, 2022 @ 09:23:56
  Author: felixonmars
Revision: 1265911

upgpkg: haskell-ci 0.12.1-278: rebuild with hslua-objectorientation 2.2.0.1

Modified:
  haskell-ci/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-13 09:21:18 UTC (rev 1265910)
+++ PKGBUILD2022-08-13 09:23:56 UTC (rev 1265911)
@@ -4,7 +4,7 @@
 _hkgname=haskell-ci
 pkgname=haskell-ci
 pkgver=0.12.1
-pkgrel=277
+pkgrel=278
 pkgdesc="Cabal package script generator for Travis-CI"
 url="https://haskell-ci.rtfd.org/;
 license=("GPL")



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

2022-08-13 Thread Felix Yan via arch-commits
Date: Saturday, August 13, 2022 @ 09:21:18
  Author: felixonmars
Revision: 1265910

archrelease: copy trunk to community-staging-x86_64

Added:
  shellcheck/repos/community-staging-x86_64/
  shellcheck/repos/community-staging-x86_64/PKGBUILD
(from rev 1265909, shellcheck/trunk/PKGBUILD)

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

Copied: shellcheck/repos/community-staging-x86_64/PKGBUILD (from rev 1265909, 
shellcheck/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-08-13 09:21:18 UTC (rev 1265910)
@@ -0,0 +1,52 @@
+# Maintainer: Felix Yan 
+# Maintainer: Caleb Maclennan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=ShellCheck
+pkgname=shellcheck
+pkgver=0.8.0
+pkgrel=156
+pkgdesc="Shell script analysis tool"
+url="https://www.shellcheck.net;
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-diff' 'haskell-quickcheck' 
'haskell-regex-tdfa')
+makedepends=('ghc' 'pandoc' 'uusi')
+source=("$_hkgname-$pkgver.tar.gz::https://github.com/koalaman/shellcheck/archive/v$pkgver.tar.gz;)
+sha512sums=('71f4c6745c6094ab1832a0f19f3e65621af93dd57c2cd780b8702886481e5568d708a9d1884e82525b92b6d109bf94d843dd10ac991ead27ca6cd4c6c553e92d')
+
+prepare() {
+cd $pkgname-$pkgver
+gen-setup
+}
+
+build() {
+cd $pkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --datasubdir=$pkgname 
--enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid 
--ghc-option=-fllvm \
+--ghc-option='-pie'
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+
+./manpage
+}
+
+check() {
+cd $pkgname-$pkgver
+runhaskell Setup test --show-details=direct
+}
+
+package() {
+cd $pkgname-$pkgver
+
+install -D -m644 ${pkgname}.1   "${pkgdir}/usr/share/man/man1/${pkgname}.1"
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}



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

2022-08-13 Thread Felix Yan via arch-commits
Date: Saturday, August 13, 2022 @ 09:20:58
  Author: felixonmars
Revision: 1265909

upgpkg: shellcheck 0.8.0-156: rebuild with hslua-objectorientation 2.2.0.1

Modified:
  shellcheck/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-13 09:20:44 UTC (rev 1265908)
+++ PKGBUILD2022-08-13 09:20:58 UTC (rev 1265909)
@@ -5,7 +5,7 @@
 _hkgname=ShellCheck
 pkgname=shellcheck
 pkgver=0.8.0
-pkgrel=155
+pkgrel=156
 pkgdesc="Shell script analysis tool"
 url="https://www.shellcheck.net;
 license=("GPL")



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

2022-08-13 Thread Felix Yan via arch-commits
Date: Saturday, August 13, 2022 @ 09:20:44
  Author: felixonmars
Revision: 1265908

archrelease: copy trunk to community-staging-x86_64

Added:
  xmonad-contrib/repos/community-staging-x86_64/
  xmonad-contrib/repos/community-staging-x86_64/PKGBUILD
(from rev 1265907, xmonad-contrib/trunk/PKGBUILD)

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

Copied: xmonad-contrib/repos/community-staging-x86_64/PKGBUILD (from rev 
1265907, xmonad-contrib/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-08-13 09:20:44 UTC (rev 1265908)
@@ -0,0 +1,42 @@
+# Maintainer: Levente Polyak 
+# Maintainer: Jelle van der Waa 
+# Contributor: Sergej Pupykin 
+# Contributor: Vesa Kaihlavirta 
+# Contributor: orbisvicis 
+
+pkgname=xmonad-contrib
+pkgver=0.17.0
+pkgrel=16
+pkgdesc='Community-maintained extensions extensions for xmonad'
+url='https://xmonad.org/'
+arch=('x86_64')
+license=('BSD')
+depends=('ghc-libs' 'xmonad' 'haskell-x11' 'haskell-x11-xft' 
'haskell-utf8-string' 'haskell-random')
+makedepends=('ghc' 'haskell-quickcheck' 'haskell-hspec')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/xmonad/xmonad-contrib/archive/v${pkgver}.tar.gz)
+sha512sums=('1676d96acb6a7474457c44ee52bb792b23a233c897757ffdb0448a3bed16f71851e4d7f0c3d7bfd6ae48a4cc617fee5ceecea33260f454caf9189a0b785cca57')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  runhaskell Setup.lhs configure -O --enable-shared 
--enable-executable-dynamic --disable-library-vanilla \
+ --prefix=/usr -fuse_xft --libsubdir=\$compiler/site-local/\$pkgid 
--ghc-option=-fllvm \
+ --docdir=/usr/share/doc/$pkgname --datasubdir=$pkgname 
--enable-tests
+  runhaskell Setup build $MAKEFLAGS
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  runhaskell Setup test --show-details=direct
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  install -Dm 744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+  install -Dm 744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+  runhaskell Setup.lhs copy --destdir="${pkgdir}"
+  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}



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

2022-08-13 Thread Felix Yan via arch-commits
Date: Saturday, August 13, 2022 @ 09:20:25
  Author: felixonmars
Revision: 1265907

upgpkg: xmonad-contrib 0.17.0-16: rebuild with hslua-objectorientation 2.2.0.1

Modified:
  xmonad-contrib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-13 09:20:11 UTC (rev 1265906)
+++ PKGBUILD2022-08-13 09:20:25 UTC (rev 1265907)
@@ -6,7 +6,7 @@
 
 pkgname=xmonad-contrib
 pkgver=0.17.0
-pkgrel=15
+pkgrel=16
 pkgdesc='Community-maintained extensions extensions for xmonad'
 url='https://xmonad.org/'
 arch=('x86_64')



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

2022-08-13 Thread Felix Yan via arch-commits
Date: Saturday, August 13, 2022 @ 09:20:11
  Author: felixonmars
Revision: 1265906

archrelease: copy trunk to community-staging-x86_64

Added:
  pandoc-crossref/repos/community-staging-x86_64/
  pandoc-crossref/repos/community-staging-x86_64/PKGBUILD
(from rev 1265905, pandoc-crossref/trunk/PKGBUILD)

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

Copied: pandoc-crossref/repos/community-staging-x86_64/PKGBUILD (from rev 
1265905, pandoc-crossref/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-08-13 09:20:11 UTC (rev 1265906)
@@ -0,0 +1,52 @@
+# Maintainer: Felix Yan 
+# Maintainer: Caleb Maclennan 
+# Contributor: Arch Haskell Team 
+
+pkgname=pandoc-crossref
+pkgver=0.3.12.2
+pkgrel=146
+pkgdesc="Pandoc filter for cross-references"
+url="https://hackage.haskell.org/package/${pkgname};
+license=("GPL2")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-data-default' 'haskell-gitrev' 'haskell-microlens'
+ 'haskell-microlens-mtl' 'haskell-microlens-th' 'haskell-open-browser'
+ 'haskell-optparse-applicative' 'pandoc' 'haskell-pandoc-types' 
'haskell-roman-numerals'
+ 'haskell-syb' 'haskell-utility-ht')
+makedepends=('ghc' 'uusi' 'haskell-hspec')
+conflicts=('haskell-pandoc-crossref')
+replaces=('haskell-pandoc-crossref')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/lierdakil/pandoc-crossref/archive/v$pkgver.tar.gz;)
+sha512sums=('44223954ee459a3215ab162e6098a1bd6bce0c02d09aee72cebbe26d977f3cce90e1cd90c01628df68c4d1f0452694eb5b19ebee6ca30e4f8e8e34d0040b4670')
+
+prepare() {
+cd $pkgname-$pkgver
+uusi -u pandoc $pkgname.cabal
+}
+
+build() {
+cd $pkgname-$pkgver
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --datasubdir=$pkgname 
--enable-tests --datasubdir=$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid 
--ghc-option=-fllvm \
+-f-enable_flaky_tests
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $pkgname-$pkgver
+runhaskell Setup test --show-details=direct
+}
+
+package() {
+cd $pkgname-$pkgver
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}



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

2022-08-13 Thread Felix Yan via arch-commits
Date: Saturday, August 13, 2022 @ 09:19:52
  Author: felixonmars
Revision: 1265905

upgpkg: pandoc-crossref 0.3.12.2-146: rebuild with hslua-objectorientation 
2.2.0.1

Modified:
  pandoc-crossref/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-13 09:18:59 UTC (rev 1265904)
+++ PKGBUILD2022-08-13 09:19:52 UTC (rev 1265905)
@@ -4,7 +4,7 @@
 
 pkgname=pandoc-crossref
 pkgver=0.3.12.2
-pkgrel=145
+pkgrel=146
 pkgdesc="Pandoc filter for cross-references"
 url="https://hackage.haskell.org/package/${pkgname};
 license=("GPL2")



  1   2   >