[arch-commits] Commit in cl-trivial-features/repos (3 files)

2022-05-24 Thread George Rawlinson via arch-commits
Date: Wednesday, May 25, 2022 @ 02:54:44
  Author: grawlinson
Revision: 1210307

archrelease: copy trunk to community-any

Added:
  cl-trivial-features/repos/community-any/
  cl-trivial-features/repos/community-any/PKGBUILD
(from rev 1210306, cl-trivial-features/trunk/PKGBUILD)
  cl-trivial-features/repos/community-any/run-tests.lisp
(from rev 1210306, cl-trivial-features/trunk/run-tests.lisp)

+
 PKGBUILD   |   49 +
 run-tests.lisp |7 +++
 2 files changed, 56 insertions(+)

Copied: cl-trivial-features/repos/community-any/PKGBUILD (from rev 1210306, 
cl-trivial-features/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2022-05-25 02:54:44 UTC (rev 1210307)
@@ -0,0 +1,49 @@
+# Maintainer: George Rawlinson 
+
+pkgname=cl-trivial-features
+_pkgname="${pkgname#cl-}"
+pkgver=1.0.r3.g35c5eeb
+pkgrel=2
+pkgdesc='Ensure consistent features across multiple Common Lisp 
implementations'
+arch=('any')
+url='https://github.com/trivial-features/trivial-features'
+license=('MIT')
+depends=('common-lisp' 'cl-asdf')
+makedepends=('git')
+checkdepends=('sbcl' 'cl-rt' 'cl-cffi' 'cl-alexandria')
+_commit='35c5eeb21a51671ffbfcb591f84498e782478a32'
+source=(
+  "$pkgname::git+$url#commit=$_commit"
+  'run-tests.lisp'
+)
+b2sums=('SKIP'
+
'6c7d4182131c8fea9efa23bb196200076c72b4d07caa88e01ea96a0ab9f12b8e4c20bff16fb2eec0630cb8907a274593b405a29193c7adc4bb2924a55213f4a4')
+
+pkgver() {
+  cd "$pkgname"
+
+  git describe --tags | sed -e 's/^v//' -e 's/-/.r/' -e 's/-/./g'
+}
+
+check() {
+  cd "$pkgname"
+
+  sbcl --script ../run-tests.lisp
+}
+
+package() {
+  cd "$pkgname"
+
+  # library
+  install -vd "$pkgdir/usr/share/common-lisp/source/$_pkgname"
+  cp -vr \
+src tests \
+./*.{lisp,asd} \
+"$pkgdir/usr/share/common-lisp/source/$_pkgname"
+
+  # documentation
+  install -vDm644 -t "$pkgdir/usr/share/doc/$pkgname" ./*.md
+
+  # license
+  install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" COPYRIGHT
+}

Copied: cl-trivial-features/repos/community-any/run-tests.lisp (from rev 
1210306, cl-trivial-features/trunk/run-tests.lisp)
===
--- community-any/run-tests.lisp(rev 0)
+++ community-any/run-tests.lisp2022-05-25 02:54:44 UTC (rev 1210307)
@@ -0,0 +1,7 @@
+(require "asdf")
+
+(push (uiop/os:getcwd) asdf:*central-registry*)
+
+(asdf:load-system "trivial-features-tests")
+
+(uiop:quit (if (trivial-features-tests:run) 0 1))



[arch-commits] Commit in (5 files)

2022-05-24 Thread George Rawlinson via arch-commits
Date: Wednesday, May 25, 2022 @ 02:54:04
  Author: grawlinson
Revision: 1210306

addpkg: cl-trivial-features 1.0.r3-1

Added:
  cl-trivial-features/
  cl-trivial-features/repos/
  cl-trivial-features/trunk/
  cl-trivial-features/trunk/PKGBUILD
  cl-trivial-features/trunk/run-tests.lisp

+
 PKGBUILD   |   49 +
 run-tests.lisp |7 +++
 2 files changed, 56 insertions(+)

Added: cl-trivial-features/trunk/PKGBUILD
===
--- cl-trivial-features/trunk/PKGBUILD  (rev 0)
+++ cl-trivial-features/trunk/PKGBUILD  2022-05-25 02:54:04 UTC (rev 1210306)
@@ -0,0 +1,49 @@
+# Maintainer: George Rawlinson 
+
+pkgname=cl-trivial-features
+_pkgname="${pkgname#cl-}"
+pkgver=1.0.r3.g35c5eeb
+pkgrel=2
+pkgdesc='Ensure consistent features across multiple Common Lisp 
implementations'
+arch=('any')
+url='https://github.com/trivial-features/trivial-features'
+license=('MIT')
+depends=('common-lisp' 'cl-asdf')
+makedepends=('git')
+checkdepends=('sbcl' 'cl-rt' 'cl-cffi' 'cl-alexandria')
+_commit='35c5eeb21a51671ffbfcb591f84498e782478a32'
+source=(
+  "$pkgname::git+$url#commit=$_commit"
+  'run-tests.lisp'
+)
+b2sums=('SKIP'
+
'6c7d4182131c8fea9efa23bb196200076c72b4d07caa88e01ea96a0ab9f12b8e4c20bff16fb2eec0630cb8907a274593b405a29193c7adc4bb2924a55213f4a4')
+
+pkgver() {
+  cd "$pkgname"
+
+  git describe --tags | sed -e 's/^v//' -e 's/-/.r/' -e 's/-/./g'
+}
+
+check() {
+  cd "$pkgname"
+
+  sbcl --script ../run-tests.lisp
+}
+
+package() {
+  cd "$pkgname"
+
+  # library
+  install -vd "$pkgdir/usr/share/common-lisp/source/$_pkgname"
+  cp -vr \
+src tests \
+./*.{lisp,asd} \
+"$pkgdir/usr/share/common-lisp/source/$_pkgname"
+
+  # documentation
+  install -vDm644 -t "$pkgdir/usr/share/doc/$pkgname" ./*.md
+
+  # license
+  install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" COPYRIGHT
+}

Added: cl-trivial-features/trunk/run-tests.lisp
===
--- cl-trivial-features/trunk/run-tests.lisp(rev 0)
+++ cl-trivial-features/trunk/run-tests.lisp2022-05-25 02:54:04 UTC (rev 
1210306)
@@ -0,0 +1,7 @@
+(require "asdf")
+
+(push (uiop/os:getcwd) asdf:*central-registry*)
+
+(asdf:load-system "trivial-features-tests")
+
+(uiop:quit (if (trivial-features-tests:run) 0 1))



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

2022-05-24 Thread George Rawlinson via arch-commits
Date: Wednesday, May 25, 2022 @ 02:50:48
  Author: grawlinson
Revision: 1210305

archrelease: copy trunk to community-any

Added:
  cl-cffi/repos/community-any/
  cl-cffi/repos/community-any/PKGBUILD
(from rev 1210304, cl-cffi/trunk/PKGBUILD)

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

Copied: cl-cffi/repos/community-any/PKGBUILD (from rev 1210304, 
cl-cffi/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2022-05-25 02:50:48 UTC (rev 1210305)
@@ -0,0 +1,66 @@
+# Maintainer: George Rawlinson 
+
+pkgname=cl-cffi
+_pkgname="${pkgname#cl-}"
+pkgver=0.24.1.r19.g3c76afe
+pkgrel=3
+pkgdesc='Common Foreign Function Interface for Common Lisp'
+arch=('any')
+url='https://cffi.common-lisp.dev/'
+license=('MIT')
+depends=(
+  'common-lisp'
+  'cl-asdf'
+  'cl-babel'
+  'cl-alexandria'
+  'cl-trivial-features'
+  'cl-ppcre'
+  'cl-json'
+  'libffi'
+)
+makedepends=('git')
+checkdepends=('sbcl' 'cl-bordeaux-threads' 'cl-rt')
+_commit='3c76afe7ba03ce015e0df99ac9ddcd61320a44a4'
+source=("$pkgname::git+https://github.com/cffi/cffi#commit=$_commit;)
+b2sums=('SKIP')
+
+pkgver() {
+  cd "$pkgname"
+
+  git describe --tags | sed -e 's/^v//' -e 's/-/.r/' -e 's/-/./g'
+}
+
+prepare() {
+  cd "$pkgname"
+
+  # add local dir so asdf can pick up library
+  sed \
+-i tests/run-tests.lisp \
+-e '/(require "asdf")/a (push (uiop/os:getcwd) asdf:*central-registry*)'
+}
+
+check() {
+  cd "$pkgname"
+
+  sbcl --script tests/run-tests.lisp 
+
+  # delete test artifacts
+  find . -name '*.o' -delete -or -name '*.so' -delete
+}
+
+package() {
+  cd "$pkgname"
+
+  # library
+  install -vd "$pkgdir/usr/share/common-lisp/source/$_pkgname"
+  cp -vr \
+examples grovel libffi src tests toolchain uffi-compat \
+./*.asd \
+"$pkgdir/usr/share/common-lisp/source/$_pkgname"
+
+  # documentation
+  install -vDm644 -t "$pkgdir/usr/share/doc/$pkgname" README.md
+
+  # license
+  install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" COPYRIGHT
+}



[arch-commits] Commit in (cl-cffi cl-cffi/repos cl-cffi/trunk cl-cffi/trunk/PKGBUILD)

2022-05-24 Thread George Rawlinson via arch-commits
Date: Wednesday, May 25, 2022 @ 02:49:54
  Author: grawlinson
Revision: 1210304

addpkg: cl-cffi 0.24.1.r19-3

Added:
  cl-cffi/
  cl-cffi/repos/
  cl-cffi/trunk/
  cl-cffi/trunk/PKGBUILD

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

Added: cl-cffi/trunk/PKGBUILD
===
--- cl-cffi/trunk/PKGBUILD  (rev 0)
+++ cl-cffi/trunk/PKGBUILD  2022-05-25 02:49:54 UTC (rev 1210304)
@@ -0,0 +1,66 @@
+# Maintainer: George Rawlinson 
+
+pkgname=cl-cffi
+_pkgname="${pkgname#cl-}"
+pkgver=0.24.1.r19.g3c76afe
+pkgrel=3
+pkgdesc='Common Foreign Function Interface for Common Lisp'
+arch=('any')
+url='https://cffi.common-lisp.dev/'
+license=('MIT')
+depends=(
+  'common-lisp'
+  'cl-asdf'
+  'cl-babel'
+  'cl-alexandria'
+  'cl-trivial-features'
+  'cl-ppcre'
+  'cl-json'
+  'libffi'
+)
+makedepends=('git')
+checkdepends=('sbcl' 'cl-bordeaux-threads' 'cl-rt')
+_commit='3c76afe7ba03ce015e0df99ac9ddcd61320a44a4'
+source=("$pkgname::git+https://github.com/cffi/cffi#commit=$_commit;)
+b2sums=('SKIP')
+
+pkgver() {
+  cd "$pkgname"
+
+  git describe --tags | sed -e 's/^v//' -e 's/-/.r/' -e 's/-/./g'
+}
+
+prepare() {
+  cd "$pkgname"
+
+  # add local dir so asdf can pick up library
+  sed \
+-i tests/run-tests.lisp \
+-e '/(require "asdf")/a (push (uiop/os:getcwd) asdf:*central-registry*)'
+}
+
+check() {
+  cd "$pkgname"
+
+  sbcl --script tests/run-tests.lisp 
+
+  # delete test artifacts
+  find . -name '*.o' -delete -or -name '*.so' -delete
+}
+
+package() {
+  cd "$pkgname"
+
+  # library
+  install -vd "$pkgdir/usr/share/common-lisp/source/$_pkgname"
+  cp -vr \
+examples grovel libffi src tests toolchain uffi-compat \
+./*.asd \
+"$pkgdir/usr/share/common-lisp/source/$_pkgname"
+
+  # documentation
+  install -vDm644 -t "$pkgdir/usr/share/doc/$pkgname" README.md
+
+  # license
+  install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" COPYRIGHT
+}



[arch-commits] Commit in cl-bordeaux-threads/repos (3 files)

2022-05-24 Thread George Rawlinson via arch-commits
Date: Wednesday, May 25, 2022 @ 02:43:57
  Author: grawlinson
Revision: 1210303

archrelease: copy trunk to community-any

Added:
  cl-bordeaux-threads/repos/community-any/
  cl-bordeaux-threads/repos/community-any/PKGBUILD
(from rev 1210302, cl-bordeaux-threads/trunk/PKGBUILD)
  cl-bordeaux-threads/repos/community-any/run-tests.lisp
(from rev 1210302, cl-bordeaux-threads/trunk/run-tests.lisp)

+
 PKGBUILD   |   54 ++
 run-tests.lisp |8 
 2 files changed, 62 insertions(+)

Copied: cl-bordeaux-threads/repos/community-any/PKGBUILD (from rev 1210302, 
cl-bordeaux-threads/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2022-05-25 02:43:57 UTC (rev 1210303)
@@ -0,0 +1,54 @@
+# Maintainer: George Rawlinson 
+# Contributor: Dacoda Strack 
+
+pkgname=cl-bordeaux-threads
+_pkgname="${pkgname#cl-}"
+pkgver=0.8.8
+pkgrel=6
+pkgdesc='Portable shared-state concurrency for Common Lisp'
+arch=('any')
+url='https://sionescu.github.io/bordeaux-threads/'
+license=('MIT')
+depends=(
+  'common-lisp'
+  'cl-asdf'
+  'cl-alexandria'
+  'cl-global-vars'
+  'cl-trivial-features'
+  'cl-trivial-garbage'
+)
+makedepends=('git')
+checkdepends=('sbcl' 'cl-fiveam')
+_commit='076fe2380abbc59b06e495dc7a35aea8eb26ba3b'
+source=(
+  "$pkgname::git+https://github.com/sionescu/bordeaux-threads#commit=$_commit;
+  'run-tests.lisp'
+)
+b2sums=('SKIP'
+
'91273084a1ebd68bdafc7ad4904d232f07046de74684575813b25eaa145eb8b7d1c6e0a2f0a114376cbe6cc30bd59f88cffdea007d0f71d36c29288fa70f733f')
+
+pkgver() {
+  cd "$pkgname"
+
+  git describe --tags | sed -e 's/^v//' -e 's/-/.r/' -e 's/-/./g'
+}
+
+check() {
+  cd "$pkgname"
+
+  sbcl --script ../run-tests.lisp
+}
+
+package() {
+  cd "$pkgname"
+
+  # library
+  install -vd "$pkgdir/usr/share/common-lisp/source/$_pkgname"
+  cp -vr src test version.sexp "$_pkgname.asd" 
"$pkgdir/usr/share/common-lisp/source/$_pkgname"
+
+  # documentation
+  install -vDm644 -t "$pkgdir/usr/share/doc/$pkgname" README site/*
+
+  # license
+  install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE
+}

Copied: cl-bordeaux-threads/repos/community-any/run-tests.lisp (from rev 
1210302, cl-bordeaux-threads/trunk/run-tests.lisp)
===
--- community-any/run-tests.lisp(rev 0)
+++ community-any/run-tests.lisp2022-05-25 02:43:57 UTC (rev 1210303)
@@ -0,0 +1,8 @@
+(require "asdf")
+
+(push (uiop/os:getcwd) asdf:*central-registry*)
+
+(asdf:load-system "bordeaux-threads/test")
+(asdf:load-system "fiveam")
+
+(uiop:quit (if (fiveam:run :bordeaux-threads) 0 1))



[arch-commits] Commit in (5 files)

2022-05-24 Thread George Rawlinson via arch-commits
Date: Wednesday, May 25, 2022 @ 02:42:46
  Author: grawlinson
Revision: 1210302

addpkg: cl-bordeaux-threads 0.8.8-6

Added:
  cl-bordeaux-threads/
  cl-bordeaux-threads/repos/
  cl-bordeaux-threads/trunk/
  cl-bordeaux-threads/trunk/PKGBUILD
  cl-bordeaux-threads/trunk/run-tests.lisp

+
 PKGBUILD   |   54 ++
 run-tests.lisp |8 
 2 files changed, 62 insertions(+)

Added: cl-bordeaux-threads/trunk/PKGBUILD
===
--- cl-bordeaux-threads/trunk/PKGBUILD  (rev 0)
+++ cl-bordeaux-threads/trunk/PKGBUILD  2022-05-25 02:42:46 UTC (rev 1210302)
@@ -0,0 +1,54 @@
+# Maintainer: George Rawlinson 
+# Contributor: Dacoda Strack 
+
+pkgname=cl-bordeaux-threads
+_pkgname="${pkgname#cl-}"
+pkgver=0.8.8
+pkgrel=6
+pkgdesc='Portable shared-state concurrency for Common Lisp'
+arch=('any')
+url='https://sionescu.github.io/bordeaux-threads/'
+license=('MIT')
+depends=(
+  'common-lisp'
+  'cl-asdf'
+  'cl-alexandria'
+  'cl-global-vars'
+  'cl-trivial-features'
+  'cl-trivial-garbage'
+)
+makedepends=('git')
+checkdepends=('sbcl' 'cl-fiveam')
+_commit='076fe2380abbc59b06e495dc7a35aea8eb26ba3b'
+source=(
+  "$pkgname::git+https://github.com/sionescu/bordeaux-threads#commit=$_commit;
+  'run-tests.lisp'
+)
+b2sums=('SKIP'
+
'91273084a1ebd68bdafc7ad4904d232f07046de74684575813b25eaa145eb8b7d1c6e0a2f0a114376cbe6cc30bd59f88cffdea007d0f71d36c29288fa70f733f')
+
+pkgver() {
+  cd "$pkgname"
+
+  git describe --tags | sed -e 's/^v//' -e 's/-/.r/' -e 's/-/./g'
+}
+
+check() {
+  cd "$pkgname"
+
+  sbcl --script ../run-tests.lisp
+}
+
+package() {
+  cd "$pkgname"
+
+  # library
+  install -vd "$pkgdir/usr/share/common-lisp/source/$_pkgname"
+  cp -vr src test version.sexp "$_pkgname.asd" 
"$pkgdir/usr/share/common-lisp/source/$_pkgname"
+
+  # documentation
+  install -vDm644 -t "$pkgdir/usr/share/doc/$pkgname" README site/*
+
+  # license
+  install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE
+}

Added: cl-bordeaux-threads/trunk/run-tests.lisp
===
--- cl-bordeaux-threads/trunk/run-tests.lisp(rev 0)
+++ cl-bordeaux-threads/trunk/run-tests.lisp2022-05-25 02:42:46 UTC (rev 
1210302)
@@ -0,0 +1,8 @@
+(require "asdf")
+
+(push (uiop/os:getcwd) asdf:*central-registry*)
+
+(asdf:load-system "bordeaux-threads/test")
+(asdf:load-system "fiveam")
+
+(uiop:quit (if (fiveam:run :bordeaux-threads) 0 1))



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

2022-05-24 Thread George Rawlinson via arch-commits
Date: Wednesday, May 25, 2022 @ 02:39:52
  Author: grawlinson
Revision: 1210301

archrelease: copy trunk to community-any

Added:
  cl-babel/repos/community-any/
  cl-babel/repos/community-any/PKGBUILD
(from rev 1210300, cl-babel/trunk/PKGBUILD)
  cl-babel/repos/community-any/run-tests.lisp
(from rev 1210300, cl-babel/trunk/run-tests.lisp)

+
 PKGBUILD   |   52 
 run-tests.lisp |7 +++
 2 files changed, 59 insertions(+)

Copied: cl-babel/repos/community-any/PKGBUILD (from rev 1210300, 
cl-babel/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2022-05-25 02:39:52 UTC (rev 1210301)
@@ -0,0 +1,52 @@
+# Maintainer: George Rawlinson 
+
+pkgname=cl-babel
+_pkgname="${pkgname#cl-}"
+pkgver=0.5.0.r20.gf892d05
+pkgrel=2
+pkgdesc='A charset encoding/decoding library for Common Lisp'
+arch=('any')
+url='https://babel.common-lisp.dev/'
+license=('MIT')
+depends=(
+  'common-lisp'
+  'cl-asdf'
+  'cl-alexandria'
+  'cl-trivial-features'
+  'cl-trivial-gray-streams'
+)
+makedepends=('git')
+checkdepends=('sbcl' 'cl-hu-dwim-stefil')
+_commit='f892d0587c7f3a1e6c0899425921b48008c29ee3'
+source=(
+  "$pkgname::git+https://github.com/cl-babel/babel#commit=$_commit;
+  'run-tests.lisp'
+)
+b2sums=('SKIP'
+
'7bec12f2bb118ff91c879a854134556e4bca5a01764bdba1c04ba3d4edcb25e8f33b2c9d8c7d574e41f526f68b9219c658135126e153691f12968c114a9c622e')
+
+pkgver() {
+  cd "$pkgname"
+
+  git describe --tags | sed -e 's/^v//' -e 's/-/.r/' -e 's/-/./g'
+}
+
+check() {
+  cd "$pkgname"
+
+  sbcl --script ../run-tests.lisp
+}
+
+package() {
+  cd "$pkgname"
+
+  # library
+  install -vd "$pkgdir/usr/share/common-lisp/source/$_pkgname"
+  cp -vr src tests ./*.asd "$pkgdir/usr/share/common-lisp/source/$_pkgname"
+
+  # documentation
+  install -vDm644 -t "$pkgdir/usr/share/doc/$pkgname" README.md
+
+  # license
+  install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" COPYRIGHT
+}

Copied: cl-babel/repos/community-any/run-tests.lisp (from rev 1210300, 
cl-babel/trunk/run-tests.lisp)
===
--- community-any/run-tests.lisp(rev 0)
+++ community-any/run-tests.lisp2022-05-25 02:39:52 UTC (rev 1210301)
@@ -0,0 +1,7 @@
+(require "asdf")
+
+(push (uiop/os:getcwd) asdf:*central-registry*)
+
+(asdf:load-system "babel-tests")
+
+(uiop:quit (if (babel-tests:run) 0 1))



[arch-commits] Commit in (5 files)

2022-05-24 Thread George Rawlinson via arch-commits
Date: Wednesday, May 25, 2022 @ 02:38:52
  Author: grawlinson
Revision: 1210300

addpkg: cl-babel 0.5.0.r20-1

Added:
  cl-babel/
  cl-babel/repos/
  cl-babel/trunk/
  cl-babel/trunk/PKGBUILD
  cl-babel/trunk/run-tests.lisp

+
 PKGBUILD   |   52 
 run-tests.lisp |7 +++
 2 files changed, 59 insertions(+)

Added: cl-babel/trunk/PKGBUILD
===
--- cl-babel/trunk/PKGBUILD (rev 0)
+++ cl-babel/trunk/PKGBUILD 2022-05-25 02:38:52 UTC (rev 1210300)
@@ -0,0 +1,52 @@
+# Maintainer: George Rawlinson 
+
+pkgname=cl-babel
+_pkgname="${pkgname#cl-}"
+pkgver=0.5.0.r20.gf892d05
+pkgrel=2
+pkgdesc='A charset encoding/decoding library for Common Lisp'
+arch=('any')
+url='https://babel.common-lisp.dev/'
+license=('MIT')
+depends=(
+  'common-lisp'
+  'cl-asdf'
+  'cl-alexandria'
+  'cl-trivial-features'
+  'cl-trivial-gray-streams'
+)
+makedepends=('git')
+checkdepends=('sbcl' 'cl-hu-dwim-stefil')
+_commit='f892d0587c7f3a1e6c0899425921b48008c29ee3'
+source=(
+  "$pkgname::git+https://github.com/cl-babel/babel#commit=$_commit;
+  'run-tests.lisp'
+)
+b2sums=('SKIP'
+
'7bec12f2bb118ff91c879a854134556e4bca5a01764bdba1c04ba3d4edcb25e8f33b2c9d8c7d574e41f526f68b9219c658135126e153691f12968c114a9c622e')
+
+pkgver() {
+  cd "$pkgname"
+
+  git describe --tags | sed -e 's/^v//' -e 's/-/.r/' -e 's/-/./g'
+}
+
+check() {
+  cd "$pkgname"
+
+  sbcl --script ../run-tests.lisp
+}
+
+package() {
+  cd "$pkgname"
+
+  # library
+  install -vd "$pkgdir/usr/share/common-lisp/source/$_pkgname"
+  cp -vr src tests ./*.asd "$pkgdir/usr/share/common-lisp/source/$_pkgname"
+
+  # documentation
+  install -vDm644 -t "$pkgdir/usr/share/doc/$pkgname" README.md
+
+  # license
+  install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" COPYRIGHT
+}

Added: cl-babel/trunk/run-tests.lisp
===
--- cl-babel/trunk/run-tests.lisp   (rev 0)
+++ cl-babel/trunk/run-tests.lisp   2022-05-25 02:38:52 UTC (rev 1210300)
@@ -0,0 +1,7 @@
+(require "asdf")
+
+(push (uiop/os:getcwd) asdf:*central-registry*)
+
+(asdf:load-system "babel-tests")
+
+(uiop:quit (if (babel-tests:run) 0 1))



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

2022-05-24 Thread George Rawlinson via arch-commits
Date: Wednesday, May 25, 2022 @ 02:35:22
  Author: grawlinson
Revision: 1210299

archrelease: copy trunk to community-any

Added:
  cl-json/repos/community-any/
  cl-json/repos/community-any/PKGBUILD
(from rev 1210298, cl-json/trunk/PKGBUILD)
  cl-json/repos/community-any/run-tests.lisp
(from rev 1210298, cl-json/trunk/run-tests.lisp)

+
 PKGBUILD   |   45 +
 run-tests.lisp |8 
 2 files changed, 53 insertions(+)

Copied: cl-json/repos/community-any/PKGBUILD (from rev 1210298, 
cl-json/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2022-05-25 02:35:22 UTC (rev 1210299)
@@ -0,0 +1,45 @@
+# Maintainer: George Rawlinson 
+
+pkgname=cl-json
+pkgver=0.6.0
+pkgrel=2
+pkgdesc='JSON encoder/decoder for Common Lisp'
+arch=('any')
+url='https://cl-json.common-lisp.dev/cl-json.html'
+license=('MIT')
+depends=('common-lisp' 'cl-asdf')
+makedepends=('git')
+checkdepends=('sbcl' 'cl-fiveam')
+_commit='994dd38c94344383f39f95d75987f6dc47a0cca1'
+source=(
+  "$pkgname::git+https://github.com/sharplispers/cl-json#commit=$_commit;
+  'run-tests.lisp'
+)
+b2sums=('SKIP'
+
'd727167c38c4ab5f9e648ba5e2061c44928860689efaad3659837acfa627c1f40d82a0aa90ee308048207bed1ef0c115907802855db84a5ad6c7453192816c8c')
+
+pkgver() {
+  cd "$pkgname"
+
+  git describe --tags | sed 's/^v//'
+}
+
+check() {
+  cd "$pkgname"
+
+  sbcl --script ../run-tests.lisp
+}
+
+package() {
+  cd "$pkgname"
+
+  # library
+  install -vd "$pkgdir/usr/share/common-lisp/source/$pkgname"
+  cp -vr src t "$pkgname.asd" "$pkgdir/usr/share/common-lisp/source/$pkgname"
+
+  # documentation
+  install -vDm644 -t "$pkgdir/usr/share/doc/$pkgname" README.md doc/*
+
+  # license
+  install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE
+}

Copied: cl-json/repos/community-any/run-tests.lisp (from rev 1210298, 
cl-json/trunk/run-tests.lisp)
===
--- community-any/run-tests.lisp(rev 0)
+++ community-any/run-tests.lisp2022-05-25 02:35:22 UTC (rev 1210299)
@@ -0,0 +1,8 @@
+(require "asdf")
+
+(push (uiop/os:getcwd) asdf:*central-registry*)
+
+(asdf:load-system "cl-json/test")
+(asdf:load-system "fiveam")
+
+(uiop:quit (if (asdf:test-system "cl-json") 0 1))



[arch-commits] Commit in (5 files)

2022-05-24 Thread George Rawlinson via arch-commits
Date: Wednesday, May 25, 2022 @ 02:34:07
  Author: grawlinson
Revision: 1210298

addpkg: cl-json 0.6.0-2

Added:
  cl-json/
  cl-json/repos/
  cl-json/trunk/
  cl-json/trunk/PKGBUILD
  cl-json/trunk/run-tests.lisp

+
 PKGBUILD   |   45 +
 run-tests.lisp |8 
 2 files changed, 53 insertions(+)

Added: cl-json/trunk/PKGBUILD
===
--- cl-json/trunk/PKGBUILD  (rev 0)
+++ cl-json/trunk/PKGBUILD  2022-05-25 02:34:07 UTC (rev 1210298)
@@ -0,0 +1,45 @@
+# Maintainer: George Rawlinson 
+
+pkgname=cl-json
+pkgver=0.6.0
+pkgrel=2
+pkgdesc='JSON encoder/decoder for Common Lisp'
+arch=('any')
+url='https://cl-json.common-lisp.dev/cl-json.html'
+license=('MIT')
+depends=('common-lisp' 'cl-asdf')
+makedepends=('git')
+checkdepends=('sbcl' 'cl-fiveam')
+_commit='994dd38c94344383f39f95d75987f6dc47a0cca1'
+source=(
+  "$pkgname::git+https://github.com/sharplispers/cl-json#commit=$_commit;
+  'run-tests.lisp'
+)
+b2sums=('SKIP'
+
'd727167c38c4ab5f9e648ba5e2061c44928860689efaad3659837acfa627c1f40d82a0aa90ee308048207bed1ef0c115907802855db84a5ad6c7453192816c8c')
+
+pkgver() {
+  cd "$pkgname"
+
+  git describe --tags | sed 's/^v//'
+}
+
+check() {
+  cd "$pkgname"
+
+  sbcl --script ../run-tests.lisp
+}
+
+package() {
+  cd "$pkgname"
+
+  # library
+  install -vd "$pkgdir/usr/share/common-lisp/source/$pkgname"
+  cp -vr src t "$pkgname.asd" "$pkgdir/usr/share/common-lisp/source/$pkgname"
+
+  # documentation
+  install -vDm644 -t "$pkgdir/usr/share/doc/$pkgname" README.md doc/*
+
+  # license
+  install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE
+}

Added: cl-json/trunk/run-tests.lisp
===
--- cl-json/trunk/run-tests.lisp(rev 0)
+++ cl-json/trunk/run-tests.lisp2022-05-25 02:34:07 UTC (rev 1210298)
@@ -0,0 +1,8 @@
+(require "asdf")
+
+(push (uiop/os:getcwd) asdf:*central-registry*)
+
+(asdf:load-system "cl-json/test")
+(asdf:load-system "fiveam")
+
+(uiop:quit (if (asdf:test-system "cl-json") 0 1))



[arch-commits] Commit in cl-trivial-garbage/repos (3 files)

2022-05-24 Thread George Rawlinson via arch-commits
Date: Wednesday, May 25, 2022 @ 02:32:45
  Author: grawlinson
Revision: 1210297

archrelease: copy trunk to community-any

Added:
  cl-trivial-garbage/repos/community-any/
  cl-trivial-garbage/repos/community-any/PKGBUILD
(from rev 1210296, cl-trivial-garbage/trunk/PKGBUILD)
  cl-trivial-garbage/repos/community-any/run-tests.lisp
(from rev 1210296, cl-trivial-garbage/trunk/run-tests.lisp)

+
 PKGBUILD   |   52 
 run-tests.lisp |7 +++
 2 files changed, 59 insertions(+)

Copied: cl-trivial-garbage/repos/community-any/PKGBUILD (from rev 1210296, 
cl-trivial-garbage/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2022-05-25 02:32:45 UTC (rev 1210297)
@@ -0,0 +1,52 @@
+# Maintainer: George Rawlinson 
+
+pkgname=cl-trivial-garbage
+_pkgname="${pkgname#cl-}"
+pkgver=0.21.r8.gb3af9c0
+pkgrel=2
+pkgdesc='Portable Garbage Collection related APIs for Common Lisp'
+arch=('any')
+url='https://trivial-garbage.common-lisp.dev/'
+license=('custom:Public')
+depends=('common-lisp' 'cl-asdf')
+makedepends=('git')
+checkdepends=('sbcl' 'cl-rt')
+_commit='b3af9c0c25d4d4c271545f1420e5ea5d1c892427'
+source=(
+  
"$pkgname::git+https://github.com/trivial-garbage/trivial-garbage#commit=$_commit;
+  'run-tests.lisp'
+)
+b2sums=('SKIP'
+
'2b7c57c7c110effa0356d694a99942e4a27ffa38afa1be9c95a7f98e67a9fabb1696f10c174be9c57a90779111bc2b115510ee19edc594f6cd9ea4019e6e7d12')
+
+pkgver() {
+  cd "$pkgname"
+
+  git describe --tags | sed -e 's/^v//' -e 's/-/.r/' -e 's/-/./g'
+}
+
+prepare() {
+  cd "$pkgname"
+
+  # extract license
+  sed -n '/^It/p' README.md > LICENSE
+}
+
+check() {
+  cd "$pkgname"
+
+  sbcl --script ../run-tests.lisp
+}
+
+package() {
+  cd "$pkgname"
+
+  # library
+  install -vDm644 -t "$pkgdir/usr/share/common-lisp/source/$_pkgname" 
./*.{lisp,asd} build.xcvb
+
+  # documentation
+  install -vDm644 -t "$pkgdir/usr/share/doc/$pkgname" README.md
+
+  # license
+  install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE
+}

Copied: cl-trivial-garbage/repos/community-any/run-tests.lisp (from rev 
1210296, cl-trivial-garbage/trunk/run-tests.lisp)
===
--- community-any/run-tests.lisp(rev 0)
+++ community-any/run-tests.lisp2022-05-25 02:32:45 UTC (rev 1210297)
@@ -0,0 +1,7 @@
+(require "asdf")
+
+(push (uiop/os:getcwd) asdf:*central-registry*)
+
+(asdf:load-system "trivial-garbage/tests")
+
+(uiop:quit (if (trivial-garbage-tests:run) 0 1))



[arch-commits] Commit in (5 files)

2022-05-24 Thread George Rawlinson via arch-commits
Date: Wednesday, May 25, 2022 @ 02:31:58
  Author: grawlinson
Revision: 1210296

addpkg: cl-trivial-garbage 0.21.r8-1

Added:
  cl-trivial-garbage/
  cl-trivial-garbage/repos/
  cl-trivial-garbage/trunk/
  cl-trivial-garbage/trunk/PKGBUILD
  cl-trivial-garbage/trunk/run-tests.lisp

+
 PKGBUILD   |   52 
 run-tests.lisp |7 +++
 2 files changed, 59 insertions(+)

Added: cl-trivial-garbage/trunk/PKGBUILD
===
--- cl-trivial-garbage/trunk/PKGBUILD   (rev 0)
+++ cl-trivial-garbage/trunk/PKGBUILD   2022-05-25 02:31:58 UTC (rev 1210296)
@@ -0,0 +1,52 @@
+# Maintainer: George Rawlinson 
+
+pkgname=cl-trivial-garbage
+_pkgname="${pkgname#cl-}"
+pkgver=0.21.r8.gb3af9c0
+pkgrel=2
+pkgdesc='Portable Garbage Collection related APIs for Common Lisp'
+arch=('any')
+url='https://trivial-garbage.common-lisp.dev/'
+license=('custom:Public')
+depends=('common-lisp' 'cl-asdf')
+makedepends=('git')
+checkdepends=('sbcl' 'cl-rt')
+_commit='b3af9c0c25d4d4c271545f1420e5ea5d1c892427'
+source=(
+  
"$pkgname::git+https://github.com/trivial-garbage/trivial-garbage#commit=$_commit;
+  'run-tests.lisp'
+)
+b2sums=('SKIP'
+
'2b7c57c7c110effa0356d694a99942e4a27ffa38afa1be9c95a7f98e67a9fabb1696f10c174be9c57a90779111bc2b115510ee19edc594f6cd9ea4019e6e7d12')
+
+pkgver() {
+  cd "$pkgname"
+
+  git describe --tags | sed -e 's/^v//' -e 's/-/.r/' -e 's/-/./g'
+}
+
+prepare() {
+  cd "$pkgname"
+
+  # extract license
+  sed -n '/^It/p' README.md > LICENSE
+}
+
+check() {
+  cd "$pkgname"
+
+  sbcl --script ../run-tests.lisp
+}
+
+package() {
+  cd "$pkgname"
+
+  # library
+  install -vDm644 -t "$pkgdir/usr/share/common-lisp/source/$_pkgname" 
./*.{lisp,asd} build.xcvb
+
+  # documentation
+  install -vDm644 -t "$pkgdir/usr/share/doc/$pkgname" README.md
+
+  # license
+  install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE
+}

Added: cl-trivial-garbage/trunk/run-tests.lisp
===
--- cl-trivial-garbage/trunk/run-tests.lisp (rev 0)
+++ cl-trivial-garbage/trunk/run-tests.lisp 2022-05-25 02:31:58 UTC (rev 
1210296)
@@ -0,0 +1,7 @@
+(require "asdf")
+
+(push (uiop/os:getcwd) asdf:*central-registry*)
+
+(asdf:load-system "trivial-garbage/tests")
+
+(uiop:quit (if (trivial-garbage-tests:run) 0 1))



[arch-commits] Commit in cl-global-vars/repos (3 files)

2022-05-24 Thread George Rawlinson via arch-commits
Date: Wednesday, May 25, 2022 @ 02:30:27
  Author: grawlinson
Revision: 1210295

archrelease: copy trunk to community-any

Added:
  cl-global-vars/repos/community-any/
  cl-global-vars/repos/community-any/PKGBUILD
(from rev 1210294, cl-global-vars/trunk/PKGBUILD)
  cl-global-vars/repos/community-any/run-tests.lisp
(from rev 1210294, cl-global-vars/trunk/run-tests.lisp)

+
 PKGBUILD   |   58 +++
 run-tests.lisp |7 ++
 2 files changed, 65 insertions(+)

Copied: cl-global-vars/repos/community-any/PKGBUILD (from rev 1210294, 
cl-global-vars/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2022-05-25 02:30:27 UTC (rev 1210295)
@@ -0,0 +1,58 @@
+# Maintainer: George Rawlinson 
+
+pkgname=cl-global-vars
+_pkgname="${pkgname#cl-}"
+pkgver=1.0.0.r2.gc749f32
+pkgrel=2
+pkgdesc='Define efficient global variables in Common Lisp'
+arch=('any')
+url='https://github.com/lmj/global-vars'
+license=('MIT')
+depends=('common-lisp' 'cl-asdf')
+makedepends=('git')
+checkdepends=('sbcl')
+_commit='c749f32c9b606a1457daa47d59630708ac0c266e'
+source=(
+  "$pkgname::git+$url#commit=$_commit"
+  'run-tests.lisp'
+)
+b2sums=('SKIP'
+
'784af4daa68e0343cc0674adadd544bf806476810a50b316923bd49f6bdc97a2c309812d40404904c69351d8c1f395b4d3d1089f834f3ade7e4a8abdf8fba220')
+
+pkgver() {
+  cd "$pkgname"
+
+  # first known commit to receive latest version
+  local _pkgver='1.0.0'
+  local _pkgcommit='cdb24d3cc7128f23af8f80d0b4e0dbc9c2d9a625'
+
+  git tag "$_pkgver" "$_pkgcommit"
+
+  git describe --tags | sed -e 's/^v//' -e 's/-/.r/' -e 's/-/./g'
+}
+
+prepare() {
+  cd "$pkgname"
+
+  # extract license
+  sed -n '/;;; Copyright/,/;;; DEALINGS/p' global-vars.lisp | sed -e 's/^;; 
//g' > LICENSE
+}
+
+check() {
+  cd "$pkgname"
+
+  sbcl --script ../run-tests.lisp
+}
+
+package() {
+  cd "$pkgname"
+
+  # library
+  install -vDm644 -t "$pkgdir/usr/share/common-lisp/source/$_pkgname" 
./*.{lisp,asd}
+
+  # documentation
+  install -vDm644 -t "$pkgdir/usr/share/doc/$pkgname" README.md
+
+  # license
+  install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE
+}

Copied: cl-global-vars/repos/community-any/run-tests.lisp (from rev 1210294, 
cl-global-vars/trunk/run-tests.lisp)
===
--- community-any/run-tests.lisp(rev 0)
+++ community-any/run-tests.lisp2022-05-25 02:30:27 UTC (rev 1210295)
@@ -0,0 +1,7 @@
+(require "asdf")
+
+(push (uiop/os:getcwd) asdf:*central-registry*)
+
+(asdf:load-system "global-vars-test")
+
+(uiop:quit (if (asdf:test-system "global-vars-test") 0 1))



[arch-commits] Commit in (5 files)

2022-05-24 Thread George Rawlinson via arch-commits
Date: Wednesday, May 25, 2022 @ 02:29:26
  Author: grawlinson
Revision: 1210294

addpkg: cl-global-vars 1.0.0.r2-1

Added:
  cl-global-vars/
  cl-global-vars/repos/
  cl-global-vars/trunk/
  cl-global-vars/trunk/PKGBUILD
  cl-global-vars/trunk/run-tests.lisp

+
 PKGBUILD   |   58 +++
 run-tests.lisp |7 ++
 2 files changed, 65 insertions(+)

Added: cl-global-vars/trunk/PKGBUILD
===
--- cl-global-vars/trunk/PKGBUILD   (rev 0)
+++ cl-global-vars/trunk/PKGBUILD   2022-05-25 02:29:26 UTC (rev 1210294)
@@ -0,0 +1,58 @@
+# Maintainer: George Rawlinson 
+
+pkgname=cl-global-vars
+_pkgname="${pkgname#cl-}"
+pkgver=1.0.0.r2.gc749f32
+pkgrel=2
+pkgdesc='Define efficient global variables in Common Lisp'
+arch=('any')
+url='https://github.com/lmj/global-vars'
+license=('MIT')
+depends=('common-lisp' 'cl-asdf')
+makedepends=('git')
+checkdepends=('sbcl')
+_commit='c749f32c9b606a1457daa47d59630708ac0c266e'
+source=(
+  "$pkgname::git+$url#commit=$_commit"
+  'run-tests.lisp'
+)
+b2sums=('SKIP'
+
'784af4daa68e0343cc0674adadd544bf806476810a50b316923bd49f6bdc97a2c309812d40404904c69351d8c1f395b4d3d1089f834f3ade7e4a8abdf8fba220')
+
+pkgver() {
+  cd "$pkgname"
+
+  # first known commit to receive latest version
+  local _pkgver='1.0.0'
+  local _pkgcommit='cdb24d3cc7128f23af8f80d0b4e0dbc9c2d9a625'
+
+  git tag "$_pkgver" "$_pkgcommit"
+
+  git describe --tags | sed -e 's/^v//' -e 's/-/.r/' -e 's/-/./g'
+}
+
+prepare() {
+  cd "$pkgname"
+
+  # extract license
+  sed -n '/;;; Copyright/,/;;; DEALINGS/p' global-vars.lisp | sed -e 's/^;; 
//g' > LICENSE
+}
+
+check() {
+  cd "$pkgname"
+
+  sbcl --script ../run-tests.lisp
+}
+
+package() {
+  cd "$pkgname"
+
+  # library
+  install -vDm644 -t "$pkgdir/usr/share/common-lisp/source/$_pkgname" 
./*.{lisp,asd}
+
+  # documentation
+  install -vDm644 -t "$pkgdir/usr/share/doc/$pkgname" README.md
+
+  # license
+  install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE
+}

Added: cl-global-vars/trunk/run-tests.lisp
===
--- cl-global-vars/trunk/run-tests.lisp (rev 0)
+++ cl-global-vars/trunk/run-tests.lisp 2022-05-25 02:29:26 UTC (rev 1210294)
@@ -0,0 +1,7 @@
+(require "asdf")
+
+(push (uiop/os:getcwd) asdf:*central-registry*)
+
+(asdf:load-system "global-vars-test")
+
+(uiop:quit (if (asdf:test-system "global-vars-test") 0 1))



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

2022-05-24 Thread George Rawlinson via arch-commits
Date: Wednesday, May 25, 2022 @ 02:27:46
  Author: grawlinson
Revision: 1210293

archrelease: copy trunk to community-x86_64

Added:
  nushell/repos/community-x86_64/PKGBUILD
(from rev 1210292, nushell/trunk/PKGBUILD)
  nushell/repos/community-x86_64/nushell.install
(from rev 1210292, nushell/trunk/nushell.install)
Deleted:
  nushell/repos/community-x86_64/PKGBUILD
  nushell/repos/community-x86_64/nushell.install

-+
 PKGBUILD|  120 +++---
 nushell.install |   24 +-
 2 files changed, 72 insertions(+), 72 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-25 02:24:52 UTC (rev 1210292)
+++ PKGBUILD2022-05-25 02:27:46 UTC (rev 1210293)
@@ -1,60 +0,0 @@
-# Maintainer: George Rawlinson 
-# Contributor:  KokaKiwi 
-# Contributor: Felix Golatofski 
-# Contributor: Bumsik Kim 
-
-pkgname=nushell
-pkgver=0.62.0
-pkgrel=1
-pkgdesc="A new type of shell"
-arch=('x86_64')
-url="https://www.nushell.sh;
-license=('MIT')
-depends=('openssl' 'libxcb' 'libx11' 'curl' 'bzip2')
-makedepends=('git' 'rust')
-options=('!lto')
-install="$pkgname.install"
-_commit='da104050e6dcf7fbffd41bfd4bdeae1285b7a48c'
-source=("$pkgname::git+https://github.com/nushell/nushell.git#commit=$_commit;)
-b2sums=('SKIP')
-
-# NOTE: as of 0.40.0, upstream uses upx to reduce binary size, but this strips
-# RELRO + PIE, so we do not enable this
-
-pkgver() {
-  cd "$pkgname"
-  git describe --tags
-}
-
-prepare() {
-  cd "$pkgname"
-  cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
-}
-
-build() {
-  cd "$pkgname"
-  cargo build --release --frozen --workspace --features=extra
-}
-
-check() {
-  cd "$pkgname"
-  cargo test --frozen --workspace --features=extra
-}
-
-package() {
-  cd "$pkgname"
-
-  # binaries
-  find target/release \
--maxdepth 1 \
--executable \
--type f \
--name "nu*" \
--exec install -vDm755 -t "$pkgdir/usr/bin" "{}" +
-
-  # documentation
-  install -vDm644 -t "$pkgdir/usr/share/doc/$pkgname" README.md
-
-  # license
-  install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE
-}

Copied: nushell/repos/community-x86_64/PKGBUILD (from rev 1210292, 
nushell/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-25 02:27:46 UTC (rev 1210293)
@@ -0,0 +1,60 @@
+# Maintainer: George Rawlinson 
+# Contributor:  KokaKiwi 
+# Contributor: Felix Golatofski 
+# Contributor: Bumsik Kim 
+
+pkgname=nushell
+pkgver=0.63.0
+pkgrel=1
+pkgdesc='A new type of shell'
+arch=('x86_64')
+url='https://www.nushell.sh'
+license=('MIT')
+depends=('openssl' 'libxcb' 'libx11' 'curl' 'bzip2')
+makedepends=('git' 'rust')
+options=('!lto')
+install="$pkgname.install"
+_commit='06cf3fa5ad8c8b1d1351c81ccea59a1f8d588dc9'
+source=("$pkgname::git+https://github.com/nushell/nushell.git#commit=$_commit;)
+b2sums=('SKIP')
+
+# NOTE: as of 0.40.0, upstream uses upx to reduce binary size, but this strips
+# RELRO + PIE, so we do not enable this
+
+pkgver() {
+  cd "$pkgname"
+  git describe --tags
+}
+
+prepare() {
+  cd "$pkgname"
+  cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
+}
+
+build() {
+  cd "$pkgname"
+  cargo build --release --frozen --workspace --features=extra
+}
+
+check() {
+  cd "$pkgname"
+  cargo test --frozen --workspace --features=extra
+}
+
+package() {
+  cd "$pkgname"
+
+  # binaries
+  find target/release \
+-maxdepth 1 \
+-executable \
+-type f \
+-name "nu*" \
+-exec install -vDm755 -t "$pkgdir/usr/bin" "{}" +
+
+  # documentation
+  install -vDm644 -t "$pkgdir/usr/share/doc/$pkgname" README.md
+
+  # license
+  install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE
+}

Deleted: nushell.install
===
--- nushell.install 2022-05-25 02:24:52 UTC (rev 1210292)
+++ nushell.install 2022-05-25 02:27:46 UTC (rev 1210293)
@@ -1,12 +0,0 @@
-post_install() {
-  grep -Fqx /bin/nu /etc/shells || echo /bin/nu >> /etc/shells
-  grep -Fqx /usr/bin/nu /etc/shells || echo /usr/bin/nu >> /etc/shells
-}
-
-post_upgrade() {
-  post_install
-}
-
-pre_remove() {
-  sed -i -r '/^(\/usr)?\/bin\/nu$/d' etc/shells
-}

Copied: nushell/repos/community-x86_64/nushell.install (from rev 1210292, 
nushell/trunk/nushell.install)
===
--- nushell.install (rev 0)
+++ nushell.install 2022-05-25 02:27:46 UTC (rev 1210293)
@@ -0,0 +1,12 @@
+post_install() {
+  grep -Fqx /bin/nu /etc/shells || echo /bin/nu >> /etc/shells
+  grep -Fqx /usr/bin/nu /etc/shells || echo /usr/bin/nu >> /etc/shells
+}
+
+post_upgrade() {
+  post_install
+}
+
+pre_remove() {
+  sed -i -r '/^(\/usr)?\/bin\/nu$/d' etc/shells
+}



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

2022-05-24 Thread George Rawlinson via arch-commits
Date: Wednesday, May 25, 2022 @ 02:24:52
  Author: grawlinson
Revision: 1210292

upgpkg: nushell 0.63.0-1

New upstream release.

Modified:
  nushell/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-25 00:59:20 UTC (rev 1210291)
+++ PKGBUILD2022-05-25 02:24:52 UTC (rev 1210292)
@@ -4,17 +4,17 @@
 # Contributor: Bumsik Kim 
 
 pkgname=nushell
-pkgver=0.62.0
+pkgver=0.63.0
 pkgrel=1
-pkgdesc="A new type of shell"
+pkgdesc='A new type of shell'
 arch=('x86_64')
-url="https://www.nushell.sh;
+url='https://www.nushell.sh'
 license=('MIT')
 depends=('openssl' 'libxcb' 'libx11' 'curl' 'bzip2')
 makedepends=('git' 'rust')
 options=('!lto')
 install="$pkgname.install"
-_commit='da104050e6dcf7fbffd41bfd4bdeae1285b7a48c'
+_commit='06cf3fa5ad8c8b1d1351c81ccea59a1f8d588dc9'
 source=("$pkgname::git+https://github.com/nushell/nushell.git#commit=$_commit;)
 b2sums=('SKIP')
 



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

2022-05-24 Thread George Rawlinson via arch-commits
Date: Wednesday, May 25, 2022 @ 00:59:20
  Author: grawlinson
Revision: 1210291

archrelease: copy trunk to community-x86_64

Added:
  libiconv/repos/community-x86_64/
  libiconv/repos/community-x86_64/9001B85AF9E1B83DF1BDA942F5BE8B267C6A406D.asc
(from rev 1210290, 
libiconv/trunk/9001B85AF9E1B83DF1BDA942F5BE8B267C6A406D.asc)
  libiconv/repos/community-x86_64/PKGBUILD
(from rev 1210290, libiconv/trunk/PKGBUILD)

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

Copied: 
libiconv/repos/community-x86_64/9001B85AF9E1B83DF1BDA942F5BE8B267C6A406D.asc 
(from rev 1210290, libiconv/trunk/9001B85AF9E1B83DF1BDA942F5BE8B267C6A406D.asc)
===
(Binary files differ)

Copied: libiconv/repos/community-x86_64/PKGBUILD (from rev 1210290, 
libiconv/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2022-05-25 00:59:20 UTC (rev 1210291)
@@ -0,0 +1,50 @@
+# Maintainer: George Rawlinson 
+# Contributor: Arthur Darcet 
+# Contributor: Techlive Zheng 
+
+pkgname=libiconv
+pkgver=1.17
+pkgrel=1
+pkgdesc='GNU charset conversion library'
+arch=('x86_64')
+url='http://www.gnu.org/software/libiconv/'
+license=('LGPL')
+depends=('glibc')
+source=("https://ftp.gnu.org/pub/gnu/$pkgname/$pkgname-$pkgver.tar.gz"{,.sig})
+options=(!libtool)
+validpgpkeys=('9001B85AF9E1B83DF1BDA942F5BE8B267C6A406D') # Bruno Haible 

+sha512sums=('18a09de2d026da4f2d8b858517b0f26d853b21179cf4fa9a41070b2d140030ad9525637dc4f34fc7f27abca8acdc84c6751dfb1d426e78bf92af4040603ced86'
+'SKIP')
+b2sums=('1d317dd0655c680a2082c38561cdff51ac1a9181d4734a8bb1e86861dfd66f1a6c0846a90b5b88f3b38b1fa9983d9e563551f27e95a8e329896b71becceae52b'
+'SKIP')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure \
+--prefix=/usr \
+--docdir=/usr/share/doc/libiconv \
+--enable-extra-encodings
+
+  # workaround for insecure rpath
+  sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' 
libtool
+  sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
+
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+
+  # move references from iconv to libiconv
+  mv -v "$pkgdir"/usr/include/{iconv.h,libiconv.h}
+  mv -v "$pkgdir"/usr/bin/{iconv,libiconv}
+  mv -v "$pkgdir"/usr/share/man/man1/{,lib}iconv.1
+  mv -v "$pkgdir"/usr/share/man/man3/{,libiconv_}iconv.3
+  mv -v "$pkgdir"/usr/share/man/man3/{,libiconv_}iconvctl.3
+  mv -v "$pkgdir"/usr/share/man/man3/{,libiconv_}iconv_open.3
+  mv -v "$pkgdir"/usr/share/man/man3/{,libiconv_}iconv_close.3
+  mv -v "$pkgdir"/usr/share/man/man3/{,libiconv_}iconv_open_into.3
+}



[arch-commits] Commit in (5 files)

2022-05-24 Thread George Rawlinson via arch-commits
Date: Wednesday, May 25, 2022 @ 00:58:35
  Author: grawlinson
Revision: 1210290

addpkg: libiconv 1.17-1

Added:
  libiconv/
  libiconv/repos/
  libiconv/trunk/
  libiconv/trunk/9001B85AF9E1B83DF1BDA942F5BE8B267C6A406D.asc
  libiconv/trunk/PKGBUILD

--+
 9001B85AF9E1B83DF1BDA942F5BE8B267C6A406D.asc |1 
 PKGBUILD |   50 +
 2 files changed, 51 insertions(+)

Added: libiconv/trunk/9001B85AF9E1B83DF1BDA942F5BE8B267C6A406D.asc
===
(Binary files differ)

Index: libiconv/trunk/9001B85AF9E1B83DF1BDA942F5BE8B267C6A406D.asc
===
--- libiconv/trunk/9001B85AF9E1B83DF1BDA942F5BE8B267C6A406D.asc 2022-05-25 
00:45:00 UTC (rev 1210289)
+++ libiconv/trunk/9001B85AF9E1B83DF1BDA942F5BE8B267C6A406D.asc 2022-05-25 
00:58:35 UTC (rev 1210290)

Property changes on: libiconv/trunk/9001B85AF9E1B83DF1BDA942F5BE8B267C6A406D.asc
___
Added: svn:mime-type
## -0,0 +1 ##
+application/pgp-keys
\ No newline at end of property
Added: libiconv/trunk/PKGBUILD
===
--- libiconv/trunk/PKGBUILD (rev 0)
+++ libiconv/trunk/PKGBUILD 2022-05-25 00:58:35 UTC (rev 1210290)
@@ -0,0 +1,50 @@
+# Maintainer: George Rawlinson 
+# Contributor: Arthur Darcet 
+# Contributor: Techlive Zheng 
+
+pkgname=libiconv
+pkgver=1.17
+pkgrel=1
+pkgdesc='GNU charset conversion library'
+arch=('x86_64')
+url='http://www.gnu.org/software/libiconv/'
+license=('LGPL')
+depends=('glibc')
+source=("https://ftp.gnu.org/pub/gnu/$pkgname/$pkgname-$pkgver.tar.gz"{,.sig})
+options=(!libtool)
+validpgpkeys=('9001B85AF9E1B83DF1BDA942F5BE8B267C6A406D') # Bruno Haible 

+sha512sums=('18a09de2d026da4f2d8b858517b0f26d853b21179cf4fa9a41070b2d140030ad9525637dc4f34fc7f27abca8acdc84c6751dfb1d426e78bf92af4040603ced86'
+'SKIP')
+b2sums=('1d317dd0655c680a2082c38561cdff51ac1a9181d4734a8bb1e86861dfd66f1a6c0846a90b5b88f3b38b1fa9983d9e563551f27e95a8e329896b71becceae52b'
+'SKIP')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure \
+--prefix=/usr \
+--docdir=/usr/share/doc/libiconv \
+--enable-extra-encodings
+
+  # workaround for insecure rpath
+  sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' 
libtool
+  sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
+
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+
+  # move references from iconv to libiconv
+  mv -v "$pkgdir"/usr/include/{iconv.h,libiconv.h}
+  mv -v "$pkgdir"/usr/bin/{iconv,libiconv}
+  mv -v "$pkgdir"/usr/share/man/man1/{,lib}iconv.1
+  mv -v "$pkgdir"/usr/share/man/man3/{,libiconv_}iconv.3
+  mv -v "$pkgdir"/usr/share/man/man3/{,libiconv_}iconvctl.3
+  mv -v "$pkgdir"/usr/share/man/man3/{,libiconv_}iconv_open.3
+  mv -v "$pkgdir"/usr/share/man/man3/{,libiconv_}iconv_close.3
+  mv -v "$pkgdir"/usr/share/man/man3/{,libiconv_}iconv_open_into.3
+}



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

2022-05-24 Thread Daniel M. Capella via arch-commits
Date: Wednesday, May 25, 2022 @ 00:45:00
  Author: polyzen
Revision: 1210289

archrelease: copy trunk to community-any

Added:
  borgmatic/repos/community-any/PKGBUILD
(from rev 1210288, borgmatic/trunk/PKGBUILD)
Deleted:
  borgmatic/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-25 00:44:35 UTC (rev 1210288)
+++ PKGBUILD2022-05-25 00:45:00 UTC (rev 1210289)
@@ -1,47 +0,0 @@
-# Maintainer: Daniel M. Capella 
-# Contributor: Kr1ss $(echo \|sed s/\+/./g\;s/\-/@/)
-# Contributor: Alexander Görtz 
-# Contributor: Dan Beste 
-# Contributor: Julien Nicoulaud 
-# Contributor: stef204 
-
-pkgname=borgmatic
-pkgver=1.6.0
-pkgrel=1
-pkgdesc='Simple, configuration-driven backup software for servers and 
workstations'
-arch=('any')
-url=https://torsion.org/borgmatic
-license=('GPL3')
-depends=('borg' 'python-colorama' 'python-jsonschema' 'python-requests'
- 'python-ruamel-yaml' 'python-setuptools')
-checkdepends=('python-flexmock' 'python-pytest')
-optdepends=('python-llfuse: for mount action')
-source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$pkgname-$pkgver.tar.gz;)
-sha256sums=('aebcb1f951e792cf1d4ec3a19bed5da4685e05b67b3dc79c078142316ef8e1cb')
-b2sums=('b3317fed0e497d3e51e5a52d9625514152673390859de08420ec80c850430892ebca12c01e9e9cfe3cd7ca15d753d44b4d421de88386f118432ddfb44516fc93')
-
-prepare() {
-  cd $pkgname-$pkgver
-  sed -i 's,root/.local,usr,' sample/systemd/$pkgname.service
-}
-
-build() {
-  cd $pkgname-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd $pkgname-$pkgver
-  python -m venv --system-site-packages test-env
-  test-env/bin/python setup.py install --optimize=1 --skip-build
-  PATH="$PWD/test-env/bin:$PATH" test-env/bin/python -m pytest -c /dev/null \
---ignore=tests/end-to-end
-}
-
-package() {
-  cd $pkgname-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-  install -Dm644 -t "$pkgdir"/usr/lib/systemd/system sample/systemd/*
-}
-
-# vim: ts=2 sw=2 et:

Copied: borgmatic/repos/community-any/PKGBUILD (from rev 1210288, 
borgmatic/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-25 00:45:00 UTC (rev 1210289)
@@ -0,0 +1,47 @@
+# Maintainer: Daniel M. Capella 
+# Contributor: Kr1ss $(echo \|sed s/\+/./g\;s/\-/@/)
+# Contributor: Alexander Görtz 
+# Contributor: Dan Beste 
+# Contributor: Julien Nicoulaud 
+# Contributor: stef204 
+
+pkgname=borgmatic
+pkgver=1.6.1
+pkgrel=1
+pkgdesc='Simple, configuration-driven backup software for servers and 
workstations'
+arch=('any')
+url=https://torsion.org/borgmatic
+license=('GPL3')
+depends=('borg' 'python-colorama' 'python-jsonschema' 'python-requests'
+ 'python-ruamel-yaml' 'python-setuptools')
+checkdepends=('python-flexmock' 'python-pytest')
+optdepends=('python-llfuse: for mount action')
+source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$pkgname-$pkgver.tar.gz;)
+sha256sums=('c2261125b2d9de7a2ad2b5889f547266722fb7f04e26b2857cda1d0a3add71e9')
+b2sums=('b56c31da62591b8bfd3c0146e77cab7ab28f942c59ca0f6cf7342d80bc31249dfcbd59fae13025a0fe464de326b6758169be983d2b741ecc37062961541fb892')
+
+prepare() {
+  cd $pkgname-$pkgver
+  sed -i 's,root/.local,usr,' sample/systemd/$pkgname.service
+}
+
+build() {
+  cd $pkgname-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd $pkgname-$pkgver
+  python -m venv --system-site-packages test-env
+  test-env/bin/python setup.py install --optimize=1 --skip-build
+  PATH="$PWD/test-env/bin:$PATH" test-env/bin/python -m pytest -c /dev/null \
+--ignore=tests/end-to-end
+}
+
+package() {
+  cd $pkgname-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  install -Dm644 -t "$pkgdir"/usr/lib/systemd/system sample/systemd/*
+}
+
+# vim: ts=2 sw=2 et:



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

2022-05-24 Thread Daniel M. Capella via arch-commits
Date: Wednesday, May 25, 2022 @ 00:44:35
  Author: polyzen
Revision: 1210288

upgpkg: borgmatic 1.6.1-1

Modified:
  borgmatic/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-24 22:40:49 UTC (rev 1210287)
+++ PKGBUILD2022-05-25 00:44:35 UTC (rev 1210288)
@@ -6,7 +6,7 @@
 # Contributor: stef204 
 
 pkgname=borgmatic
-pkgver=1.6.0
+pkgver=1.6.1
 pkgrel=1
 pkgdesc='Simple, configuration-driven backup software for servers and 
workstations'
 arch=('any')
@@ -17,8 +17,8 @@
 checkdepends=('python-flexmock' 'python-pytest')
 optdepends=('python-llfuse: for mount action')
 
source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$pkgname-$pkgver.tar.gz;)
-sha256sums=('aebcb1f951e792cf1d4ec3a19bed5da4685e05b67b3dc79c078142316ef8e1cb')
-b2sums=('b3317fed0e497d3e51e5a52d9625514152673390859de08420ec80c850430892ebca12c01e9e9cfe3cd7ca15d753d44b4d421de88386f118432ddfb44516fc93')
+sha256sums=('c2261125b2d9de7a2ad2b5889f547266722fb7f04e26b2857cda1d0a3add71e9')
+b2sums=('b56c31da62591b8bfd3c0146e77cab7ab28f942c59ca0f6cf7342d80bc31249dfcbd59fae13025a0fe464de326b6758169be983d2b741ecc37062961541fb892')
 
 prepare() {
   cd $pkgname-$pkgver



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

2022-05-24 Thread Jan Steffens via arch-commits
Date: Tuesday, May 24, 2022 @ 22:40:47
  Author: heftig
Revision: 1210285

archrelease: copy trunk to community-testing-x86_64

Added:
  r8168/repos/community-testing-x86_64/
  r8168/repos/community-testing-x86_64/PKGBUILD
(from rev 1210282, r8168/trunk/PKGBUILD)
  r8168/repos/community-testing-x86_64/linux518.patch
(from rev 1210283, r8168/trunk/linux518.patch)

+
 PKGBUILD   |   53 +
 linux518.patch |   52 
 2 files changed, 105 insertions(+)

Copied: r8168/repos/community-testing-x86_64/PKGBUILD (from rev 1210282, 
r8168/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2022-05-24 22:40:47 UTC (rev 1210285)
@@ -0,0 +1,53 @@
+# Maintainer: Massimiliano Torromeo 
+# Contributor: Bob Fanger < bfanger(at)gmail >
+# Contributor: Filip , Det < nimetonmaili(at)gmail >
+
+pkgname=r8168
+pkgver=8.050.00
+pkgrel=8
+pkgdesc="A kernel module for Realtek 8168 network cards"
+url="http://www.realtek.com.tw;
+license=("GPL")
+arch=('x86_64')
+makedepends=('linux-headers')
+source=(https://github.com/mtorromeo/r8168/archive/$pkgver/$pkgname-$pkgver.tar.gz
+
https://github.com/mtorromeo/r8168/releases/download/$pkgver/$pkgname-$pkgver.tar.gz.asc
+linux518.patch)
+sha256sums=('15b06890230d7c7b92635d981a6f07c4562b0b3eeb55f43b127bdfbb50dda5e1'
+'SKIP'
+'d8d542770e504775600f686d03412a37cc32489872be7aeb388b5b08d9806096')
+validpgpkeys=('0CADAACF70F64C654E131B3111675C743429DDEF') # Massimiliano 
Torromeo 
+
+prepare() {
+   cd "$pkgname-$pkgver"
+   patch -Np1 -i ../linux518.patch
+}
+
+build() {
+   cd "$pkgname-$pkgver"
+   # avoid using the Makefile directly -- it doesn't understand
+   # any kernel but the current.
+   make -C /usr/src/linux M="$PWD/src" \
+   ENABLE_USE_FIRMWARE_FILE=y \
+   CONFIG_R8168_NAPI=y \
+   CONFIG_R8168_VLAN=y \
+   CONFIG_ASPM=y \
+   ENABLE_S5WOL=y \
+   ENABLE_EEE=y \
+   modules
+}
+
+package() {
+   depends=('glibc' 'linux')
+
+   local extradir=/usr/lib/modules/$(opts2 = 0;
+ while (1) {
+ memset(tmpAddr, pattern++, len - 14);
++#if LINUX_VERSION_CODE < KERNEL_VERSION(5,18,0)
+ pci_dma_sync_single_for_device(tp->pci_dev,
+le64_to_cpu(mapping),
+len, DMA_TO_DEVICE);
++#else
++dma_sync_single_for_device(tp_to_dev(tp),
++   le64_to_cpu(mapping),
++   len, DMA_TO_DEVICE);
++#endif
+ txd->opts1 = cpu_to_le32(DescOwn | FirstFrag | LastFrag | 
len);
+ 
+ RTL_W32(tp, RxConfig, RTL_R32(tp, RxConfig)  | AcceptMyPhys);
+@@ -3726,7 +3732,11 @@
+ if (rx_len == len) {
+ dma_sync_single_for_cpu(tp_to_dev(tp), 
le64_to_cpu(rxd->addr), tp->rx_buf_sz, DMA_FROM_DEVICE);
+ i = memcmp(skb->data, rx_skb->data, rx_len);
++#if LINUX_VERSION_CODE < KERNEL_VERSION(5,18,0)
+ pci_dma_sync_single_for_device(tp->pci_dev, 
le64_to_cpu(rxd->addr), tp->rx_buf_sz, DMA_FROM_DEVICE);
++#else
++dma_sync_single_for_device(tp_to_dev(tp), 
le64_to_cpu(rxd->addr), tp->rx_buf_sz, DMA_FROM_DEVICE);
++#endif
+ if (i == 0) {
+ //  dev_printk(KERN_INFO, tp_to_dev(tp), "loopback test 
finished\n",rx_len,len);
+ break;
+@@ -26403,11 +26413,20 @@
+ 
+ if ((sizeof(dma_addr_t) > 4) &&
+ use_dac &&
++#if LINUX_VERSION_CODE < KERNEL_VERSION(5,18,0)
+ !pci_set_dma_mask(pdev, DMA_BIT_MASK(64)) &&
+ !pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64))) {
++#else
++!dma_set_mask(>dev, DMA_BIT_MASK(64)) &&
++!dma_set_coherent_mask(>dev, DMA_BIT_MASK(64))) {
++#endif
+ dev->features |= NETIF_F_HIGHDMA;
+ } else {
++#if LINUX_VERSION_CODE < KERNEL_VERSION(5,18,0)
+ rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
++#else
++rc = dma_set_mask(>dev, DMA_BIT_MASK(32));
++#endif
+ if (rc < 0) {
+ #if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,0)
+ if (netif_msg_probe(tp))



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

2022-05-24 Thread Jan Steffens via arch-commits
Date: Tuesday, May 24, 2022 @ 22:40:48
  Author: heftig
Revision: 446493

archrelease: copy trunk to testing-x86_64

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

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

Copied: nvidia/repos/testing-x86_64/PKGBUILD (from rev 446492, 
nvidia/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2022-05-24 22:40:48 UTC (rev 446493)
@@ -0,0 +1,33 @@
+# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Felix Yan 
+# Contributor: Thomas Baechler 
+
+pkgname=nvidia
+pkgver=515.43.04
+pkgrel=6
+pkgdesc="NVIDIA drivers for linux"
+arch=('x86_64')
+url="https://www.nvidia.com/;
+makedepends=('linux-headers' "nvidia-dkms=$pkgver")
+provides=('NVIDIA-MODULE')
+license=('custom')
+options=('!strip')
+
+build() {
+_kernver=$(

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

2022-05-24 Thread Jan Steffens via arch-commits
Date: Tuesday, May 24, 2022 @ 22:40:55
  Author: heftig
Revision: 446495

archrelease: copy trunk to testing-x86_64

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

--+
 PKGBUILD |  204 +
 config   |11088 +
 2 files changed, 11292 insertions(+)

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


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

2022-05-24 Thread Jan Steffens via arch-commits
Date: Tuesday, May 24, 2022 @ 22:40:55
  Author: heftig
Revision: 446494

archrelease: copy trunk to testing-x86_64

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

--+
 PKGBUILD |  204 +
 config   |11033 +
 2 files changed, 11237 insertions(+)

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


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

2022-05-24 Thread Jan Steffens via arch-commits
Date: Tuesday, May 24, 2022 @ 22:40:48
  Author: heftig
Revision: 1210286

archrelease: copy trunk to community-testing-x86_64

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

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

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

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

2022-05-24 Thread Jan Steffens via arch-commits
Date: Tuesday, May 24, 2022 @ 22:40:49
  Author: heftig
Revision: 1210287

archrelease: copy trunk to community-testing-x86_64

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

---+
 PKGBUILD  |   49 +
 dkms.conf |9 +
 2 files changed, 58 insertions(+)

Copied: vhba-module/repos/community-testing-x86_64/PKGBUILD (from rev 1210285, 
vhba-module/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2022-05-24 22:40:49 UTC (rev 1210287)
@@ -0,0 +1,49 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Ray Rashif 
+# Contributor: Mateusz Herych 
+# Contributor: Charles Lindsay 
+
+pkgbase=vhba-module
+pkgname=(vhba-module vhba-module-dkms)
+pkgver=20211218
+pkgrel=37
+pkgdesc="Kernel module that emulates SCSI devices"
+url="https://cdemu.sourceforge.io/;
+arch=(x86_64)
+license=(GPL)
+makedepends=('linux-headers')
+source=("https://downloads.sourceforge.net/cdemu/$pkgbase-$pkgver.tar.xz;
+dkms.conf)
+sha256sums=('72c5a8c1c452805e4cef8cafefcecc2d25ce197ae4c67383082802e5adcd77b6'
+'8cab0ebb4fee72069d63616b0983f105b98d1261e72e9bef5509a6e60bc382a7')
+
+prepare() {
+  cd $pkgbase-$pkgver
+}
+
+build() {
+  cd $pkgbase-$pkgver
+  make KERNELRELEASE="$(

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

2022-05-24 Thread Jan Steffens via arch-commits
Date: Tuesday, May 24, 2022 @ 22:40:47
  Author: heftig
Revision: 1210284

archrelease: copy trunk to community-testing-x86_64

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

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

Copied: acpi_call/repos/community-testing-x86_64/PKGBUILD (from rev 1210282, 
acpi_call/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2022-05-24 22:40:47 UTC (rev 1210284)
@@ -0,0 +1,38 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: mortzu 
+# Contributor: fnord0 
+
+pkgname=acpi_call
+pkgver=1.2.2
+pkgrel=42
+pkgdesc='A linux kernel module that enables calls to ACPI methods through 
/proc/acpi/call'
+url='https://github.com/mkottman/acpi_call'
+arch=('x86_64')
+license=('GPL')
+makedepends=('linux-headers' "acpi_call-dkms=$pkgver")
+conflicts=('acpi_call-dkms')
+
+build() {
+  _kernver=$(

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

2022-05-24 Thread Jan Steffens via arch-commits
Date: Tuesday, May 24, 2022 @ 22:40:47
  Author: heftig
Revision: 1210283

archrelease: copy trunk to community-testing-x86_64

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

+
 0001-proc_ops-struct.patch |   36 +
 0002-kernel-5.7.patch  |   11 +
 0003-kernel-5.18.patch |   19 +++
 PKGBUILD   |   52 +++
 4 files changed, 118 insertions(+)

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

Copied: bbswitch/repos/community-testing-x86_64/0002-kernel-5.7.patch (from rev 
1210280, bbswitch/trunk/0002-kernel-5.7.patch)
===
--- community-testing-x86_64/0002-kernel-5.7.patch  
(rev 0)
+++ community-testing-x86_64/0002-kernel-5.7.patch  2022-05-24 22:40:47 UTC 
(rev 1210283)
@@ -0,0 +1,11 @@
+diff -u -r bbswitch-0.8/bbswitch.c bbswitch-0.8-5.7/bbswitch.c
+--- bbswitch-0.8/bbswitch.c2020-06-02 00:34:20.370571802 +
 bbswitch-0.8-5.7/bbswitch.c2020-06-02 00:35:18.161403639 +
+@@ -29,6 +29,7 @@
+ #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
+ 
+ #include 
++#include 
+ #include 
+ #include 
+ #include 

Copied: bbswitch/repos/community-testing-x86_64/0003-kernel-5.18.patch (from 
rev 1210280, bbswitch/trunk/0003-kernel-5.18.patch)
===
--- community-testing-x86_64/0003-kernel-5.18.patch 
(rev 0)
+++ community-testing-x86_64/0003-kernel-5.18.patch 2022-05-24 22:40:47 UTC 
(rev 1210283)
@@ -0,0 +1,19 @@
+diff -u -r bbswitch-0.8/bbswitch.c bbswitch-0.8-5.18/bbswitch.c
+--- bbswitch-0.8/bbswitch.c2022-05-24 20:26:22.184553495 +
 bbswitch-0.8-5.18/bbswitch.c   2022-05-24 20:29:00.797008130 +
+@@ -264,10 +264,15 @@
+ pci_disable_device(dis_dev);
+ do {
+ struct acpi_device *ad = NULL;
++#if LINUX_VERSION_CODE >= KERNEL_VERSION(5, 18, 0)
++ad = acpi_fetch_acpi_dev(dis_handle);
++if (!ad) {
++#else
+ int r;
+ 
+ r = acpi_bus_get_device(dis_handle, );
+ if (r || !ad) {
++#endif
+ pr_warn("Cannot get ACPI device for PCI device\n");
+ break;
+ }

Copied: bbswitch/repos/community-testing-x86_64/PKGBUILD (from rev 1210280, 
bbswitch/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2022-05-24 22:40:47 UTC (rev 1210283)
@@ -0,0 +1,52 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: M0Rf30
+# Contributor: Samsagax 
+
+pkgbase=bbswitch
+pkgname=(bbswitch bbswitch-dkms)
+pkgver=0.8
+pkgrel=508
+pkgdesc="Kernel module allowing to switch dedicated graphics card on Optimus 
laptops"
+arch=('x86_64')
+url="http://github.com/Bumblebee-Project/bbswitch;
+license=('GPL')
+makedepends=('linux-headers')
+source=("${pkgbase}-${pkgver}.tar.gz::https://github.com/Bumblebee-Project/bbswitch/archive/v${pkgver}.tar.gz;
+

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

2022-05-24 Thread Jan Steffens via arch-commits
Date: Tuesday, May 24, 2022 @ 22:40:45
  Author: heftig
Revision: 1210280

archrelease: copy trunk to community-testing-x86_64

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

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

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

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

2022-05-24 Thread Jan Steffens via arch-commits
Date: Tuesday, May 24, 2022 @ 22:40:46
  Author: heftig
Revision: 1210281

archrelease: copy trunk to community-testing-x86_64

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

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

Copied: deepin-anything-arch/repos/community-testing-x86_64/PKGBUILD (from rev 
1210278, deepin-anything-arch/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2022-05-24 22:40:46 UTC (rev 1210281)
@@ -0,0 +1,29 @@
+# Maintainer: Felix Yan 
+
+pkgname=deepin-anything-arch
+pkgver=5.0.9
+pkgrel=87
+pkgdesc="Deepin Anything file search tool, kernel module for Arch kernel"
+arch=('x86_64')
+url="https://github.com/linuxdeepin/deepin-anything;
+license=('GPL3')
+makedepends=('linux-headers')
+provides=('DEEPIN-ANYTHING-MODULE')
+replaces=('deepin-anything-module')
+source=("https://github.com/linuxdeepin/deepin-anything/archive/$pkgver/deepin-anything-$pkgver.tar.gz;)
+sha512sums=('d7038f900c7f6cf2af156ced0fab6bcd46bff347011acc34b5d355ae8f09efe3f323724b728fbfe9c8b961e238ceb7c81aaf45f2e446b5d9ce908e8c0a658c5b')
+
+build() {
+  cd deepin-anything-$pkgver
+  make -C kernelmod kdir=/usr/src/linux
+}
+
+package() {
+  depends=('linux')
+
+  cd deepin-anything-$pkgver
+  local extradir=/usr/lib/modules/$(

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

2022-05-24 Thread Jan Steffens via arch-commits
Date: Tuesday, May 24, 2022 @ 22:40:46
  Author: heftig
Revision: 1210282

archrelease: copy trunk to community-testing-x86_64

Added:
  netfilter-fullconenat/repos/community-testing-x86_64/
  netfilter-fullconenat/repos/community-testing-x86_64/PKGBUILD
(from rev 1210280, netfilter-fullconenat/trunk/PKGBUILD)
  netfilter-fullconenat/repos/community-testing-x86_64/linux-5.15.patch
(from rev 1210280, netfilter-fullconenat/trunk/linux-5.15.patch)

--+
 PKGBUILD |   46 +++
 linux-5.15.patch |   68 +
 2 files changed, 114 insertions(+)

Copied: netfilter-fullconenat/repos/community-testing-x86_64/PKGBUILD (from rev 
1210280, netfilter-fullconenat/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2022-05-24 22:40:46 UTC (rev 1210282)
@@ -0,0 +1,46 @@
+# Maintainer: Felix Yan 
+# Contributor: Edward Pacman 
+
+pkgname=netfilter-fullconenat
+pkgver=r73.0cf3b48
+pkgrel=206
+pkgdesc="A kernel module that turns MASQUERADE into full cone SNAT"
+arch=('x86_64')
+url="https://github.com/Chion82/netfilter-full-cone-nat;
+license=('GPL2')
+depends=("linux")
+makedepends=('linux-headers' 'git')
+_commit=0cf3b48fd7d2fa81d0297d1fff12bbd0580fc435  # master
+source=("${pkgname}::git+https://github.com/Chion82/netfilter-full-cone-nat#commit=${_commit};
+linux-5.15.patch)
+sha256sums=('SKIP'
+'d785622e80ed3348be133270ac974dd372e0d6d770f0da554edbcbf20e94d6a6')
+
+pkgver() {
+  cd ${pkgname}
+  ( set -o pipefail
+git describe --long 2>/dev/null | sed 's/\([^-]*-g\)/r\1/;s/-/./g' ||
+printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short 
HEAD)"
+  )
+}
+
+prepare() {
+  cd ${pkgname}
+  echo "obj-m = xt_FULLCONENAT.o" > Kbuild
+  patch -p1 -i ../linux-5.15.patch
+}
+
+build() {
+  cd ${pkgname}
+  make -C /usr/src/linux M=$PWD modules
+}
+
+package() {
+  local extradir=/usr/lib/modules/$(net, _event_notifier) == 0) {
+   ct_event_notifier_registered = 1;
+@@ -1252,6 +1255,11 @@ static int fullconenat_tg_check(const struct 
xt_tgchk_param *par)
+ } else {
+   printk("xt_FULLCONENAT: warning: failed to register a conntrack 
notifier. Disable active GC for mappings.\n");
+ }
++#else
++ct_event_notifier.ct_event = ct_event_cb;
++nf_conntrack_register_notifier(par->net, _event_notifier);
++pr_debug("xt_FULLCONENAT: fullconenat_tg_check(): ct_event_notifier 
registered\n");
++#endif
+ 
+   }
+ 
+@@ -1269,6 +1277,7 @@ static void fullconenat_tg_destroy(const struct 
xt_tgdtor_param *par)
+   pr_debug("xt_FULLCONENAT: fullconenat_tg_destroy(): tg_refer_count is now 
%d\n", tg_refer_count);
+ 
+   if (tg_refer_count == 0) {
++#if LINUX_VERSION_CODE < KERNEL_VERSION(5,15,0)
+ if (ct_event_notifier_registered) {
+   nf_conntrack_unregister_notifier(par->net, _event_notifier);
+   ct_event_notifier_registered = 0;
+@@ -1276,6 +1285,10 @@ static void fullconenat_tg_destroy(const struct 
xt_tgdtor_param *par)
+   pr_debug("xt_FULLCONENAT: fullconenat_tg_destroy(): ct_event_notifier 
unregistered\n");
+ 
+ }
++#else
++nf_conntrack_unregister_notifier(par->net);
++pr_debug("xt_FULLCONENAT: fullconenat_tg_destroy(): ct_event_notifier 
unregistered\n");
++#endif
+ nf_ct_netns_put(par->net, par->family);
+   }
+ 



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

2022-05-24 Thread Jan Steffens via arch-commits
Date: Tuesday, May 24, 2022 @ 22:40:46
  Author: heftig
Revision: 446492

archrelease: copy trunk to testing-x86_64

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

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

Copied: nvidia-open/repos/testing-x86_64/PKGBUILD (from rev 446491, 
nvidia-open/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2022-05-24 22:40:46 UTC (rev 446492)
@@ -0,0 +1,88 @@
+# Maintainer: Sven-Hendrik Haase 
+pkgbase=nvidia-open
+pkgname=(nvidia-open nvidia-open-dkms)
+pkgver=515.43.04
+pkgrel=8
+pkgdesc="NVIDIA open kernel modules"
+arch=('x86_64')
+url="https://github.com/NVIDIA/open-gpu-kernel-modules;
+depends=("nvidia-utils=${pkgver}" 'libglvnd')
+makedepends=('linux-headers')
+license=('GPL')
+options=('!lto' '!buildflags')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/NVIDIA/open-gpu-kernel-modules/archive/refs/tags/${pkgver}.tar.gz;)
+sha512sums=('2a95132cfebe2dd746e2b507829618557a2518b56d8d77628df9f8073f154fab769604b0789e852e4cc6a52f3130b4b637068b0469931464019f8386db48041f')
+
+prepare() {
+  cd open-gpu-kernel-modules-${pkgver}
+  # Attempt to make this reproducible
+  sed -i "s/^HOSTNAME.*/HOSTNAME = echo archlinux"/ utils.mk
+  sed -i "s/^WHOAMI.*/WHOAMI = echo archlinux-builder"/ utils.mk
+  sed -i "s/^DATE.*/DATE = date -r version.mk"/ utils.mk
+
+  sed -i "s/__VERSION_STRING/${pkgver}/" kernel-open/dkms.conf
+  sed -i 's/__JOBS/`nproc`/' kernel-open/dkms.conf
+  sed -i 's/__EXCLUDE_MODULES//' kernel-open/dkms.conf
+  sed -i 's/__DKMS_MODULES//' kernel-open/dkms.conf
+  sed -i '$i\
+BUILT_MODULE_NAME[0]="nvidia"\
+BUILT_MODULE_LOCATION[0]="kernel-open"\
+DEST_MODULE_LOCATION[0]="/kernel/drivers/video"\
+BUILT_MODULE_NAME[1]="nvidia-uvm"\
+BUILT_MODULE_LOCATION[1]="kernel-open"\
+DEST_MODULE_LOCATION[1]="/kernel/drivers/video"\
+BUILT_MODULE_NAME[2]="nvidia-modeset"\
+BUILT_MODULE_LOCATION[2]="kernel-open"\
+DEST_MODULE_LOCATION[2]="/kernel/drivers/video"\
+BUILT_MODULE_NAME[3]="nvidia-drm"\
+BUILT_MODULE_LOCATION[3]="kernel-open"\
+DEST_MODULE_LOCATION[3]="/kernel/drivers/video"\
+BUILT_MODULE_NAME[4]="nvidia-peermem"\
+BUILT_MODULE_LOCATION[4]="kernel-open"\
+DEST_MODULE_LOCATION[4]="/kernel/drivers/video"' kernel-open/dkms.conf
+
+  # Clean version for later copying for DKMS
+  cp -r ../open-gpu-kernel-modules-${pkgver} 
"$srcdir"/open-gpu-kernel-modules-dkms
+}
+
+build() {
+  cd open-gpu-kernel-modules-${pkgver}
+  make SYSSRC="/usr/src/linux"
+}
+
+package_nvidia-open() {
+  depends+=('linux')
+  conflicts=('NVIDIA-MODULE')
+  provides=('NVIDIA-MODULE')
+
+  cd open-gpu-kernel-modules-${pkgver}
+  _extradir="/usr/lib/modules/$( 
"$pkgdir"/usr/lib/modprobe.d/nvidia-open.conf
+
+  install -Dm644 COPYING "$pkgdir"/usr/share/licenses/$pkgname
+}
+
+package_nvidia-open-dkms() {
+  depends+=('dkms')
+  conflicts=('nvidia-open' 'NVIDIA-MODULE')
+  provides=('nvidia-open' 'NVIDIA-MODULE')
+
+  install -dm 755 "${pkgdir}"/usr/src
+  # cp -dr --no-preserve='ownership' kernel-open 
"${pkgdir}/usr/src/nvidia-$pkgver"
+  cp -dr --no-preserve='ownership' open-gpu-kernel-modules-dkms 
"${pkgdir}/usr/src/nvidia-$pkgver"
+  mv "${pkgdir}/usr/src/nvidia-$pkgver/kernel-open/dkms.conf" 
"${pkgdir}/usr/src/nvidia-$pkgver/dkms.conf"
+
+  # Force module to load even on unsupported GPUs
+  mkdir -p "$pkgdir"/usr/lib/modprobe.d
+  echo "options nvidia NVreg_OpenRmEnableUnsupportedGpus=1" > 
"$pkgdir"/usr/lib/modprobe.d/nvidia-open.conf
+
+  install -Dm644 open-gpu-kernel-modules-${pkgver}/COPYING 
"$pkgdir"/usr/share/licenses/$pkgname
+}
+
+# vim:set sw=2 et:



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

2022-05-24 Thread Jan Steffens via arch-commits
Date: Tuesday, May 24, 2022 @ 22:40:45
  Author: heftig
Revision: 1210279

archrelease: copy trunk to community-testing-x86_64

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

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

Copied: virtualbox-host-modules-arch/repos/community-testing-x86_64/PKGBUILD 
(from rev 1210278, virtualbox-host-modules-arch/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2022-05-24 22:40:45 UTC (rev 1210279)
@@ -0,0 +1,40 @@
+# Maintainer: Sébastien Luttringer
+# Contributor: Ionut Biru 
+
+pkgname='virtualbox-host-modules-arch'
+pkgver=6.1.34
+pkgrel=10
+pkgdesc='Virtualbox host kernel modules for Arch Kernel'
+arch=('x86_64')
+url='https://virtualbox.org/'
+license=('GPL')
+makedepends=('linux-headers' "virtualbox-host-dkms=$pkgver")
+replaces=('virtualbox-modules' 'virtualbox-host-modules')
+conflicts=('virtualbox-modules' 'virtualbox-host-modules'
+   'virtualbox-host-dkms')
+provides=('VIRTUALBOX-HOST-MODULES')
+
+build() {
+  _kernver="$(

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

2022-05-24 Thread Jan Steffens via arch-commits
Date: Tuesday, May 24, 2022 @ 22:37:48
  Author: heftig
Revision: 1210278

5.0.9-87: linux 5.18.arch1-1

Modified:
  deepin-anything-arch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-24 22:37:44 UTC (rev 1210277)
+++ PKGBUILD2022-05-24 22:37:48 UTC (rev 1210278)
@@ -2,7 +2,7 @@
 
 pkgname=deepin-anything-arch
 pkgver=5.0.9
-pkgrel=86
+pkgrel=87
 pkgdesc="Deepin Anything file search tool, kernel module for Arch kernel"
 arch=('x86_64')
 url="https://github.com/linuxdeepin/deepin-anything;



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

2022-05-24 Thread Jan Steffens via arch-commits
Date: Tuesday, May 24, 2022 @ 22:37:46
  Author: heftig
Revision: 446491

515.43.04-6: linux 5.18.arch1-1

Modified:
  nvidia/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-24 22:37:30 UTC (rev 446490)
+++ PKGBUILD2022-05-24 22:37:46 UTC (rev 446491)
@@ -4,7 +4,7 @@
 
 pkgname=nvidia
 pkgver=515.43.04
-pkgrel=5
+pkgrel=6
 pkgdesc="NVIDIA drivers for linux"
 arch=('x86_64')
 url="https://www.nvidia.com/;



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

2022-05-24 Thread Jan Steffens via arch-commits
Date: Tuesday, May 24, 2022 @ 22:37:41
  Author: heftig
Revision: 1210276

20211218-37: linux 5.18.arch1-1

Modified:
  vhba-module/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-24 22:37:39 UTC (rev 1210275)
+++ PKGBUILD2022-05-24 22:37:41 UTC (rev 1210276)
@@ -6,7 +6,7 @@
 pkgbase=vhba-module
 pkgname=(vhba-module vhba-module-dkms)
 pkgver=20211218
-pkgrel=36
+pkgrel=37
 pkgdesc="Kernel module that emulates SCSI devices"
 url="https://cdemu.sourceforge.io/;
 arch=(x86_64)



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

2022-05-24 Thread Jan Steffens via arch-commits
Date: Tuesday, May 24, 2022 @ 22:37:44
  Author: heftig
Revision: 1210277

1.2.2-42: linux 5.18.arch1-1

Modified:
  acpi_call/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-24 22:37:41 UTC (rev 1210276)
+++ PKGBUILD2022-05-24 22:37:44 UTC (rev 1210277)
@@ -4,7 +4,7 @@
 
 pkgname=acpi_call
 pkgver=1.2.2
-pkgrel=41
+pkgrel=42
 pkgdesc='A linux kernel module that enables calls to ACPI methods through 
/proc/acpi/call'
 url='https://github.com/mkottman/acpi_call'
 arch=('x86_64')



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

2022-05-24 Thread Jan Steffens via arch-commits
Date: Tuesday, May 24, 2022 @ 22:37:39
  Author: heftig
Revision: 1210275

8.050.00-8: linux 5.18.arch1-1

Modified:
  r8168/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-24 22:37:37 UTC (rev 1210274)
+++ PKGBUILD2022-05-24 22:37:39 UTC (rev 1210275)
@@ -4,7 +4,7 @@
 
 pkgname=r8168
 pkgver=8.050.00
-pkgrel=7
+pkgrel=8
 pkgdesc="A kernel module for Realtek 8168 network cards"
 url="http://www.realtek.com.tw;
 license=("GPL")



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

2022-05-24 Thread Jan Steffens via arch-commits
Date: Tuesday, May 24, 2022 @ 22:37:32
  Author: heftig
Revision: 1210272

0.43-395: linux 5.18.arch1-1

Modified:
  tp_smapi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-24 22:37:26 UTC (rev 1210271)
+++ PKGBUILD2022-05-24 22:37:32 UTC (rev 1210272)
@@ -9,7 +9,7 @@
 
 pkgname=tp_smapi
 pkgver=0.43
-pkgrel=394
+pkgrel=395
 pkgdesc="Modules for ThinkPad's SMAPI functionality"
 arch=('x86_64')
 url='https://github.com/evgeni/tp_smapi'



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

2022-05-24 Thread Jan Steffens via arch-commits
Date: Tuesday, May 24, 2022 @ 22:37:26
  Author: heftig
Revision: 1210271

6.1.34-10: linux 5.18.arch1-1

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

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-24 22:37:24 UTC (rev 1210270)
+++ PKGBUILD2022-05-24 22:37:26 UTC (rev 1210271)
@@ -3,7 +3,7 @@
 
 pkgname='virtualbox-host-modules-arch'
 pkgver=6.1.34
-pkgrel=9
+pkgrel=10
 pkgdesc='Virtualbox host kernel modules for Arch Kernel'
 arch=('x86_64')
 url='https://virtualbox.org/'



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

2022-05-24 Thread Jan Steffens via arch-commits
Date: Tuesday, May 24, 2022 @ 22:37:34
  Author: heftig
Revision: 1210273

6.30.223.271-387: linux 5.18.arch1-1

Modified:
  broadcom-wl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-24 22:37:32 UTC (rev 1210272)
+++ PKGBUILD2022-05-24 22:37:34 UTC (rev 1210273)
@@ -5,7 +5,7 @@
 #_kernelname=-custom  # Build against kernel with a different name
 pkgname=${_module}${_kernelname}
 pkgver=6.30.223.271
-pkgrel=386
+pkgrel=387
 pkgdesc='Broadcom 802.11 Linux STA wireless driver'
 arch=('x86_64')
 
url='https://www.broadcom.com/support/download-search/?pf=Wireless+LAN+Infrastructure'



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

2022-05-24 Thread Jan Steffens via arch-commits
Date: Tuesday, May 24, 2022 @ 22:37:30
  Author: heftig
Revision: 446490

515.43.04-8: linux 5.18.arch1-1

Modified:
  nvidia-open/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-24 22:34:17 UTC (rev 446489)
+++ PKGBUILD2022-05-24 22:37:30 UTC (rev 446490)
@@ -2,7 +2,7 @@
 pkgbase=nvidia-open
 pkgname=(nvidia-open nvidia-open-dkms)
 pkgver=515.43.04
-pkgrel=7
+pkgrel=8
 pkgdesc="NVIDIA open kernel modules"
 arch=('x86_64')
 url="https://github.com/NVIDIA/open-gpu-kernel-modules;



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

2022-05-24 Thread Jan Steffens via arch-commits
Date: Tuesday, May 24, 2022 @ 22:37:37
  Author: heftig
Revision: 1210274

0.8-508: linux 5.18.arch1-1

Modified:
  bbswitch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-24 22:37:34 UTC (rev 1210273)
+++ PKGBUILD2022-05-24 22:37:37 UTC (rev 1210274)
@@ -5,7 +5,7 @@
 pkgbase=bbswitch
 pkgname=(bbswitch bbswitch-dkms)
 pkgver=0.8
-pkgrel=507
+pkgrel=508
 pkgdesc="Kernel module allowing to switch dedicated graphics card on Optimus 
laptops"
 arch=('x86_64')
 url="http://github.com/Bumblebee-Project/bbswitch;



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

2022-05-24 Thread Jan Steffens via arch-commits
Date: Tuesday, May 24, 2022 @ 22:37:24
  Author: heftig
Revision: 1210270

r73.0cf3b48-206: linux 5.18.arch1-1

Modified:
  netfilter-fullconenat/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-24 21:55:25 UTC (rev 1210269)
+++ PKGBUILD2022-05-24 22:37:24 UTC (rev 1210270)
@@ -3,7 +3,7 @@
 
 pkgname=netfilter-fullconenat
 pkgver=r73.0cf3b48
-pkgrel=205
+pkgrel=206
 pkgdesc="A kernel module that turns MASQUERADE into full cone SNAT"
 arch=('x86_64')
 url="https://github.com/Chion82/netfilter-full-cone-nat;



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

2022-05-24 Thread Jan Steffens via arch-commits
Date: Tuesday, May 24, 2022 @ 22:34:17
  Author: heftig
Revision: 446489

5.18.arch1-1

Modified:
  linux/trunk/PKGBUILD
  linux/trunk/config

--+
 PKGBUILD |4 
 config   |  802 +
 2 files changed, 492 insertions(+), 314 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-05-24 22:34:13 UTC (rev 446488)
+++ PKGBUILD2022-05-24 22:34:17 UTC (rev 446489)
@@ -1,7 +1,7 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgbase=linux
-pkgver=5.17.9.arch1
+pkgver=5.18.arch1
 pkgrel=1
 pkgdesc='Linux'
 _srctag=v${pkgver%.*}-${pkgver##*.}
@@ -26,7 +26,7 @@
   'C7E7849466FE2358343588377258734B41C31549'  # David Runge 

 )
 sha256sums=('SKIP'
-'fb37785c43d90085ab4e7d7cee522cb8232713b6c601d74cfc7234eeaeb1e6b5')
+'5088714ec20c9c5b063decbf2210f5b153a908a71678aa156f5f3e81394e9c38')
 
 export KBUILD_BUILD_HOST=archlinux
 export KBUILD_BUILD_USER=$pkgbase

Modified: config
===
--- config  2022-05-24 22:34:13 UTC (rev 446488)
+++ config  2022-05-24 22:34:17 UTC (rev 446489)
@@ -1,6 +1,6 @@
 #
 # Automatically generated file; DO NOT EDIT.
-# Linux/x86 5.17.6-arch1 Kernel Configuration
+# Linux/x86 5.18.0-arch1 Kernel Configuration
 #
 CONFIG_CC_VERSION_TEXT="gcc (GCC) 12.1.0"
 CONFIG_CC_IS_GCC=y
@@ -17,6 +17,7 @@
 CONFIG_CC_HAS_ASM_GOTO_OUTPUT=y
 CONFIG_CC_HAS_ASM_INLINE=y
 CONFIG_CC_HAS_NO_PROFILE_FN_ATTR=y
+CONFIG_PAHOLE_VERSION=123
 CONFIG_IRQ_WORK=y
 CONFIG_BUILDTIME_TABLE_SORT=y
 CONFIG_THREAD_INFO_IN_TASK=y
@@ -103,6 +104,7 @@
 # CONFIG_NO_HZ_FULL is not set
 CONFIG_NO_HZ=y
 CONFIG_HIGH_RES_TIMERS=y
+CONFIG_CLOCKSOURCE_WATCHDOG_MAX_SKEW_US=100
 # end of Timers subsystem
 
 CONFIG_BPF=y
@@ -328,11 +330,9 @@
 CONFIG_ARCH_MAY_HAVE_PC_FDC=y
 CONFIG_GENERIC_CALIBRATE_DELAY=y
 CONFIG_ARCH_HAS_CPU_RELAX=y
-CONFIG_ARCH_HAS_FILTER_PGPROT=y
 CONFIG_ARCH_HIBERNATION_POSSIBLE=y
 CONFIG_ARCH_NR_GPIO=1024
 CONFIG_ARCH_SUSPEND_POSSIBLE=y
-CONFIG_ARCH_WANT_GENERAL_HUGETLB=y
 CONFIG_AUDIT_ARCH=y
 CONFIG_HAVE_INTEL_TXT=y
 CONFIG_X86_64_SMP=y
@@ -442,7 +442,6 @@
 CONFIG_X86_ESPFIX64=y
 CONFIG_X86_VSYSCALL_EMULATION=y
 CONFIG_X86_IOPL_IOPERM=y
-CONFIG_I8K=m
 CONFIG_MICROCODE=y
 CONFIG_MICROCODE_INTEL=y
 CONFIG_MICROCODE_AMD=y
@@ -462,7 +461,6 @@
 CONFIG_NODES_SHIFT=5
 CONFIG_ARCH_SPARSEMEM_ENABLE=y
 CONFIG_ARCH_SPARSEMEM_DEFAULT=y
-CONFIG_ARCH_SELECT_MEMORY_MODEL=y
 # CONFIG_ARCH_MEMORY_PROBE is not set
 CONFIG_ARCH_PROC_KCORE_TEXT=y
 CONFIG_ILLEGAL_POINTER_VALUE=0xdead
@@ -479,6 +477,8 @@
 CONFIG_ARCH_RANDOM=y
 CONFIG_X86_SMAP=y
 CONFIG_X86_UMIP=y
+CONFIG_CC_HAS_IBT=y
+CONFIG_X86_KERNEL_IBT=y
 CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS=y
 # CONFIG_X86_INTEL_TSX_MODE_OFF is not set
 # CONFIG_X86_INTEL_TSX_MODE_ON is not set
@@ -690,7 +690,7 @@
 # Binary Emulations
 #
 CONFIG_IA32_EMULATION=y
-# CONFIG_X86_X32 is not set
+# CONFIG_X86_X32_ABI is not set
 CONFIG_COMPAT_32=y
 CONFIG_COMPAT=y
 CONFIG_COMPAT_FOR_U64_ALIGNMENT=y
@@ -722,7 +722,6 @@
 CONFIG_KVM_AMD=m
 CONFIG_KVM_AMD_SEV=y
 CONFIG_KVM_XEN=y
-CONFIG_KVM_MMU_AUDIT=y
 CONFIG_KVM_EXTERNAL_WRITE_TRACKING=y
 CONFIG_AS_AVX512=y
 CONFIG_AS_SHA1_NI=y
@@ -746,6 +745,7 @@
 CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y
 CONFIG_ARCH_USE_BUILTIN_BSWAP=y
 CONFIG_KRETPROBES=y
+CONFIG_KRETPROBE_ON_RETHOOK=y
 CONFIG_USER_RETURN_NOTIFIER=y
 CONFIG_HAVE_IOREMAP_PROT=y
 CONFIG_HAVE_KPROBES=y
@@ -808,6 +808,7 @@
 CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y
 CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y
 CONFIG_HAVE_ARCH_HUGE_VMAP=y
+CONFIG_HAVE_ARCH_HUGE_VMALLOC=y
 CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y
 CONFIG_HAVE_ARCH_SOFT_DIRTY=y
 CONFIG_HAVE_MOD_ARCH_SPECIFIC=y
@@ -832,6 +833,7 @@
 CONFIG_HAVE_ARCH_VMAP_STACK=y
 CONFIG_VMAP_STACK=y
 CONFIG_HAVE_ARCH_RANDOMIZE_KSTACK_OFFSET=y
+CONFIG_RANDOMIZE_KSTACK_OFFSET=y
 CONFIG_RANDOMIZE_KSTACK_OFFSET_DEFAULT=y
 CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y
 CONFIG_STRICT_KERNEL_RWX=y
@@ -845,6 +847,7 @@
 CONFIG_HAVE_STATIC_CALL=y
 CONFIG_HAVE_STATIC_CALL_INLINE=y
 CONFIG_HAVE_PREEMPT_DYNAMIC=y
+CONFIG_HAVE_PREEMPT_DYNAMIC_CALL=y
 CONFIG_ARCH_WANT_LD_ORPHAN_WARN=y
 CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y
 CONFIG_ARCH_SUPPORTS_PAGE_TABLE_CHECK=y
@@ -892,6 +895,7 @@
 CONFIG_MODPROBE_PATH="/sbin/modprobe"
 CONFIG_MODULES_TREE_LOOKUP=y
 CONFIG_BLOCK=y
+# CONFIG_BLOCK_LEGACY_AUTOLOAD is not set
 CONFIG_BLK_RQ_ALLOC_TIME=y
 CONFIG_BLK_CGROUP_RWSTAT=y
 CONFIG_BLK_DEV_BSG_COMMON=y
@@ -946,6 +950,7 @@
 CONFIG_BLK_MQ_RDMA=y
 CONFIG_BLK_PM=y
 CONFIG_BLOCK_HOLDER_DEPRECATED=y
+CONFIG_BLK_MQ_STACKING=y
 
 #
 # IO Schedulers
@@ -989,8 +994,6 @@
 #
 # Memory Management options
 #
-CONFIG_SELECT_MEMORY_MODEL=y
-CONFIG_SPARSEMEM_MANUAL=y
 CONFIG_SPARSEMEM=y
 CONFIG_SPARSEMEM_EXTREME=y
 CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y
@@ -1013,6 +1016,7 @@
 CONFIG_COMPACTION=y
 CONFIG_PAGE_REPORTING=y
 CONFIG_MIGRATION=y
+CONFIG_DEVICE_MIGRATION=y
 

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

2022-05-24 Thread Jan Steffens via arch-commits
Date: Tuesday, May 24, 2022 @ 22:34:13
  Author: heftig
Revision: 446488

5.18.zen1-1

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

--+
 PKGBUILD |4 
 config   |  805 +
 2 files changed, 495 insertions(+), 314 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-05-24 21:56:05 UTC (rev 446487)
+++ PKGBUILD2022-05-24 22:34:13 UTC (rev 446488)
@@ -1,7 +1,7 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgbase=linux-zen
-pkgver=5.17.9.zen1
+pkgver=5.18.zen1
 pkgrel=1
 pkgdesc='Linux ZEN'
 _srctag=v${pkgver%.*}-${pkgver##*.}
@@ -26,7 +26,7 @@
   'C5ADB4F3FEBBCE27A3E54D7D9AE4078033F8024D'  # Steven Barrett 

 )
 sha256sums=('SKIP'
-'ea604f8457e97764d604b3e484f372ab7b30452ef112acb23b399d39c954faaf')
+'115c341aa006eddca1690e0346091a78f4dbbe9b520ac0c9a17331271324faf0')
 
 export KBUILD_BUILD_HOST=archlinux
 export KBUILD_BUILD_USER=$pkgbase

Modified: config
===
--- config  2022-05-24 21:56:05 UTC (rev 446487)
+++ config  2022-05-24 22:34:13 UTC (rev 446488)
@@ -1,6 +1,6 @@
 #
 # Automatically generated file; DO NOT EDIT.
-# Linux/x86 5.17.6-zen1 Kernel Configuration
+# Linux/x86 5.18.0-zen1 Kernel Configuration
 #
 CONFIG_CC_VERSION_TEXT="gcc (GCC) 12.1.0"
 CONFIG_CC_IS_GCC=y
@@ -17,6 +17,7 @@
 CONFIG_CC_HAS_ASM_GOTO_OUTPUT=y
 CONFIG_CC_HAS_ASM_INLINE=y
 CONFIG_CC_HAS_NO_PROFILE_FN_ATTR=y
+CONFIG_PAHOLE_VERSION=123
 CONFIG_IRQ_WORK=y
 CONFIG_BUILDTIME_TABLE_SORT=y
 CONFIG_THREAD_INFO_IN_TASK=y
@@ -104,6 +105,7 @@
 # CONFIG_NO_HZ_FULL is not set
 CONFIG_NO_HZ=y
 CONFIG_HIGH_RES_TIMERS=y
+CONFIG_CLOCKSOURCE_WATCHDOG_MAX_SKEW_US=100
 # end of Timers subsystem
 
 CONFIG_BPF=y
@@ -189,7 +191,6 @@
 #
 CONFIG_UCLAMP_TASK=y
 CONFIG_UCLAMP_BUCKETS_COUNT=5
-# CONFIG_SCHED_ALT is not set
 # end of Scheduler features
 
 CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y
@@ -331,11 +332,9 @@
 CONFIG_ARCH_MAY_HAVE_PC_FDC=y
 CONFIG_GENERIC_CALIBRATE_DELAY=y
 CONFIG_ARCH_HAS_CPU_RELAX=y
-CONFIG_ARCH_HAS_FILTER_PGPROT=y
 CONFIG_ARCH_HIBERNATION_POSSIBLE=y
 CONFIG_ARCH_NR_GPIO=1024
 CONFIG_ARCH_SUSPEND_POSSIBLE=y
-CONFIG_ARCH_WANT_GENERAL_HUGETLB=y
 CONFIG_AUDIT_ARCH=y
 CONFIG_HAVE_INTEL_TXT=y
 CONFIG_X86_64_SMP=y
@@ -481,7 +480,6 @@
 CONFIG_X86_ESPFIX64=y
 CONFIG_X86_VSYSCALL_EMULATION=y
 CONFIG_X86_IOPL_IOPERM=y
-CONFIG_I8K=m
 CONFIG_MICROCODE=y
 CONFIG_MICROCODE_INTEL=y
 CONFIG_MICROCODE_AMD=y
@@ -501,7 +499,6 @@
 CONFIG_NODES_SHIFT=5
 CONFIG_ARCH_SPARSEMEM_ENABLE=y
 CONFIG_ARCH_SPARSEMEM_DEFAULT=y
-CONFIG_ARCH_SELECT_MEMORY_MODEL=y
 # CONFIG_ARCH_MEMORY_PROBE is not set
 CONFIG_ARCH_PROC_KCORE_TEXT=y
 CONFIG_ILLEGAL_POINTER_VALUE=0xdead
@@ -518,6 +515,8 @@
 CONFIG_ARCH_RANDOM=y
 CONFIG_X86_SMAP=y
 CONFIG_X86_UMIP=y
+CONFIG_CC_HAS_IBT=y
+CONFIG_X86_KERNEL_IBT=y
 CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS=y
 # CONFIG_X86_INTEL_TSX_MODE_OFF is not set
 # CONFIG_X86_INTEL_TSX_MODE_ON is not set
@@ -729,7 +728,7 @@
 # Binary Emulations
 #
 CONFIG_IA32_EMULATION=y
-# CONFIG_X86_X32 is not set
+# CONFIG_X86_X32_ABI is not set
 CONFIG_COMPAT_32=y
 CONFIG_COMPAT=y
 CONFIG_COMPAT_FOR_U64_ALIGNMENT=y
@@ -761,7 +760,6 @@
 CONFIG_KVM_AMD=m
 CONFIG_KVM_AMD_SEV=y
 CONFIG_KVM_XEN=y
-CONFIG_KVM_MMU_AUDIT=y
 CONFIG_KVM_EXTERNAL_WRITE_TRACKING=y
 CONFIG_AS_AVX512=y
 CONFIG_AS_SHA1_NI=y
@@ -785,6 +783,7 @@
 CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y
 CONFIG_ARCH_USE_BUILTIN_BSWAP=y
 CONFIG_KRETPROBES=y
+CONFIG_KRETPROBE_ON_RETHOOK=y
 CONFIG_USER_RETURN_NOTIFIER=y
 CONFIG_HAVE_IOREMAP_PROT=y
 CONFIG_HAVE_KPROBES=y
@@ -847,6 +846,7 @@
 CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y
 CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y
 CONFIG_HAVE_ARCH_HUGE_VMAP=y
+CONFIG_HAVE_ARCH_HUGE_VMALLOC=y
 CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y
 CONFIG_HAVE_ARCH_SOFT_DIRTY=y
 CONFIG_HAVE_MOD_ARCH_SPECIFIC=y
@@ -871,6 +871,7 @@
 CONFIG_HAVE_ARCH_VMAP_STACK=y
 CONFIG_VMAP_STACK=y
 CONFIG_HAVE_ARCH_RANDOMIZE_KSTACK_OFFSET=y
+CONFIG_RANDOMIZE_KSTACK_OFFSET=y
 CONFIG_RANDOMIZE_KSTACK_OFFSET_DEFAULT=y
 CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y
 CONFIG_STRICT_KERNEL_RWX=y
@@ -884,6 +885,7 @@
 CONFIG_HAVE_STATIC_CALL=y
 CONFIG_HAVE_STATIC_CALL_INLINE=y
 CONFIG_HAVE_PREEMPT_DYNAMIC=y
+CONFIG_HAVE_PREEMPT_DYNAMIC_CALL=y
 CONFIG_ARCH_WANT_LD_ORPHAN_WARN=y
 CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y
 CONFIG_ARCH_SUPPORTS_PAGE_TABLE_CHECK=y
@@ -932,6 +934,7 @@
 CONFIG_MODPROBE_PATH="/sbin/modprobe"
 CONFIG_MODULES_TREE_LOOKUP=y
 CONFIG_BLOCK=y
+# CONFIG_BLOCK_LEGACY_AUTOLOAD is not set
 CONFIG_BLK_RQ_ALLOC_TIME=y
 CONFIG_BLK_CGROUP_RWSTAT=y
 CONFIG_BLK_DEV_BSG_COMMON=y
@@ -986,6 +989,7 @@
 CONFIG_BLK_MQ_RDMA=y
 CONFIG_BLK_PM=y
 CONFIG_BLOCK_HOLDER_DEPRECATED=y
+CONFIG_BLK_MQ_STACKING=y
 
 #
 # IO Schedulers
@@ -1030,8 +1034,6 @@
 #
 # Memory Management options
 #
-CONFIG_SELECT_MEMORY_MODEL=y
-CONFIG_SPARSEMEM_MANUAL=y
 CONFIG_SPARSEMEM=y
 

[arch-commits] Commit in (gn-m85)

2022-05-24 Thread Evangelos Foutras via arch-commits
Date: Tuesday, May 24, 2022 @ 21:56:05
  Author: foutrelis
Revision: 446487

Remove gn-m85 as unused

Deleted:
  gn-m85/



[arch-commits] Commit in cl-hu-dwim-stefil/repos/community-any (4 files)

2022-05-24 Thread George Rawlinson via arch-commits
Date: Tuesday, May 24, 2022 @ 21:55:25
  Author: grawlinson
Revision: 1210269

archrelease: copy trunk to community-any

Added:
  cl-hu-dwim-stefil/repos/community-any/PKGBUILD
(from rev 1210268, cl-hu-dwim-stefil/trunk/PKGBUILD)
  cl-hu-dwim-stefil/repos/community-any/run-tests.lisp
(from rev 1210268, cl-hu-dwim-stefil/trunk/run-tests.lisp)
Deleted:
  cl-hu-dwim-stefil/repos/community-any/PKGBUILD
  cl-hu-dwim-stefil/repos/community-any/run-tests.lisp

+
 PKGBUILD   |   92 +++
 run-tests.lisp |   14 
 2 files changed, 53 insertions(+), 53 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-24 21:54:00 UTC (rev 1210268)
+++ PKGBUILD2022-05-24 21:55:25 UTC (rev 1210269)
@@ -1,46 +0,0 @@
-# Maintainer: George Rawlinson 
-
-pkgname=cl-hu-dwim-stefil
-_pkgname='hu.dwim.stefil'
-pkgver=r257.g7a17248
-pkgrel=1
-pkgdesc='A simple test framework in Common Lisp'
-arch=('any')
-url='https://github.com/hu-dwim/hu.dwim.stefil'
-license=('MIT')
-depends=('common-lisp' 'cl-asdf' 'cl-alexandria')
-makedepends=('git')
-checkdepends=('sbcl')
-_commit='7a172486ea51c5d38836e5b209d7135014506d19'
-source=(
-  "$pkgname::git+$url#commit=$_commit"
-  'run-tests.lisp'
-)
-b2sums=('SKIP'
-
'f2db21db5957adcdf6ecf9c015795bcd03d982d961a2ea4ff7c4e53c8086d29c4fcaaa822358c4a1e9bebf5e3698d020afb1177715ed1f521ba772861ffc9b3e')
-
-pkgver() {
-  cd "$pkgname"
-
-  printf 'r%s.g%s' "$(git rev-list --count HEAD)" "$(git rev-parse --short 
HEAD)"
-}
-
-check() {
-  cd "$pkgname"
-
-  sbcl --script ../run-tests.lisp
-}
-
-package() {
-  cd "$pkgname"
-
-  # library
-  install -vd "$pkgdir/usr/share/common-lisp/source/$_pkgname"
-  cp -vr integration source test ./*.asd 
"$pkgdir/usr/share/common-lisp/source/$_pkgname"
-
-  # documentation
-  install -vDm644 -t "$pkgdir/usr/share/doc/$pkgname" README
-
-  # license
-  install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENCE
-}

Copied: cl-hu-dwim-stefil/repos/community-any/PKGBUILD (from rev 1210268, 
cl-hu-dwim-stefil/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-24 21:55:25 UTC (rev 1210269)
@@ -0,0 +1,46 @@
+# Maintainer: George Rawlinson 
+
+pkgname=cl-hu-dwim-stefil
+_pkgname='hu.dwim.stefil'
+pkgver=r257.g7a17248
+pkgrel=2
+pkgdesc='A simple test framework in Common Lisp'
+arch=('any')
+url='https://github.com/hu-dwim/hu.dwim.stefil'
+license=('MIT')
+depends=('common-lisp' 'cl-asdf' 'cl-alexandria')
+makedepends=('git')
+checkdepends=('sbcl')
+_commit='7a172486ea51c5d38836e5b209d7135014506d19'
+source=(
+  "$pkgname::git+$url#commit=$_commit"
+  'run-tests.lisp'
+)
+b2sums=('SKIP'
+
'f2db21db5957adcdf6ecf9c015795bcd03d982d961a2ea4ff7c4e53c8086d29c4fcaaa822358c4a1e9bebf5e3698d020afb1177715ed1f521ba772861ffc9b3e')
+
+pkgver() {
+  cd "$pkgname"
+
+  printf 'r%s.g%s' "$(git rev-list --count HEAD)" "$(git rev-parse --short 
HEAD)"
+}
+
+check() {
+  cd "$pkgname"
+
+  sbcl --script ../run-tests.lisp
+}
+
+package() {
+  cd "$pkgname"
+
+  # library
+  install -vd "$pkgdir/usr/share/common-lisp/source/$_pkgname"
+  cp -vr integration source test ./*.asd 
"$pkgdir/usr/share/common-lisp/source/$_pkgname"
+
+  # documentation
+  install -vDm644 -t "$pkgdir/usr/share/doc/$pkgname" README
+
+  # license
+  install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENCE
+}

Deleted: run-tests.lisp
===
--- run-tests.lisp  2022-05-24 21:54:00 UTC (rev 1210268)
+++ run-tests.lisp  2022-05-24 21:55:25 UTC (rev 1210269)
@@ -1,7 +0,0 @@
-(require "asdf")
-
-(push (uiop/os:getcwd) asdf:*central-registry*)
-
-(asdf:load-system "hu.dwim.stefil/test")
-
-(uiop:quit (if (hu.dwim.stefil/test::test) 0 1))

Copied: cl-hu-dwim-stefil/repos/community-any/run-tests.lisp (from rev 1210268, 
cl-hu-dwim-stefil/trunk/run-tests.lisp)
===
--- run-tests.lisp  (rev 0)
+++ run-tests.lisp  2022-05-24 21:55:25 UTC (rev 1210269)
@@ -0,0 +1,7 @@
+(require "asdf")
+
+(push (uiop/os:getcwd) asdf:*central-registry*)
+
+(asdf:load-system "hu.dwim.stefil/test")
+
+(uiop:quit (if (hu.dwim.stefil/test::test) 0 1))



[arch-commits] Commit in cl-hu-dwim-stefil/trunk (PKGBUILD)

2022-05-24 Thread George Rawlinson via arch-commits
Date: Tuesday, May 24, 2022 @ 21:54:00
  Author: grawlinson
Revision: 1210268

upgpkg: cl-hu-dwim-stefil; bump pkgver

Modified:
  cl-hu-dwim-stefil/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-24 21:53:17 UTC (rev 1210267)
+++ PKGBUILD2022-05-24 21:54:00 UTC (rev 1210268)
@@ -3,7 +3,7 @@
 pkgname=cl-hu-dwim-stefil
 _pkgname='hu.dwim.stefil'
 pkgver=r257.g7a17248
-pkgrel=1
+pkgrel=2
 pkgdesc='A simple test framework in Common Lisp'
 arch=('any')
 url='https://github.com/hu-dwim/hu.dwim.stefil'



[arch-commits] Commit in cl-hu-dwim-stefil/repos/community-any (4 files)

2022-05-24 Thread George Rawlinson via arch-commits
Date: Tuesday, May 24, 2022 @ 21:53:17
  Author: grawlinson
Revision: 1210267

archrelease: copy trunk to community-any

Added:
  cl-hu-dwim-stefil/repos/community-any/PKGBUILD
(from rev 1210266, cl-hu-dwim-stefil/trunk/PKGBUILD)
  cl-hu-dwim-stefil/repos/community-any/run-tests.lisp
(from rev 1210266, cl-hu-dwim-stefil/trunk/run-tests.lisp)
Deleted:
  cl-hu-dwim-stefil/repos/community-any/PKGBUILD
  cl-hu-dwim-stefil/repos/community-any/run-tests.lisp

+
 PKGBUILD   |  100 +--
 run-tests.lisp |   14 +++
 2 files changed, 53 insertions(+), 61 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-24 21:52:29 UTC (rev 1210266)
+++ PKGBUILD2022-05-24 21:53:17 UTC (rev 1210267)
@@ -1,54 +0,0 @@
-# Maintainer: George Rawlinson 
-
-pkgname=cl-hu-dwim-stefil
-_pkgname='hu.dwim.stefil'
-pkgver=r257.g7a17248
-pkgrel=2
-pkgdesc='A simple test framework in Common Lisp'
-arch=('any')
-url='https://github.com/hu-dwim/hu.dwim.stefil'
-license=('MIT')
-depends=('common-lisp' 'cl-asdf' 'cl-alexandria')
-makedepends=('git')
-checkdepends=('sbcl')
-_commit='7a172486ea51c5d38836e5b209d7135014506d19'
-source=(
-  "$pkgname::git+$url#commit=$_commit"
-  'run-tests.lisp'
-)
-b2sums=('SKIP'
-
'f2db21db5957adcdf6ecf9c015795bcd03d982d961a2ea4ff7c4e53c8086d29c4fcaaa822358c4a1e9bebf5e3698d020afb1177715ed1f521ba772861ffc9b3e')
-
-pkgver() {
-  cd "$pkgname"
-
-  printf 'r%s.g%s' "$(git rev-list --count HEAD)" "$(git rev-parse --short 
HEAD)"
-}
-
-check() {
-  cd "$pkgname"
-
-  sbcl --script ../run-tests.lisp
-}
-
-package() {
-  cd "$pkgname"
-
-  # create directories
-  install -vd \
-"$pkgdir/usr/share/common-lisp/source/$_pkgname" \
-"$pkgdir/usr/share/common-lisp/systems"
-
-  # library
-  cp -vr integration source test ./*.asd 
"$pkgdir/usr/share/common-lisp/source/$_pkgname"
-
-  pushd "$pkgdir/usr/share/common-lisp/systems"
-  ln -s "../source/$_pkgname"/*.asd .
-  popd
-
-  # documentation
-  install -vDm644 -t "$pkgdir/usr/share/doc/$pkgname" README
-
-  # license
-  install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENCE
-}

Copied: cl-hu-dwim-stefil/repos/community-any/PKGBUILD (from rev 1210266, 
cl-hu-dwim-stefil/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-24 21:53:17 UTC (rev 1210267)
@@ -0,0 +1,46 @@
+# Maintainer: George Rawlinson 
+
+pkgname=cl-hu-dwim-stefil
+_pkgname='hu.dwim.stefil'
+pkgver=r257.g7a17248
+pkgrel=1
+pkgdesc='A simple test framework in Common Lisp'
+arch=('any')
+url='https://github.com/hu-dwim/hu.dwim.stefil'
+license=('MIT')
+depends=('common-lisp' 'cl-asdf' 'cl-alexandria')
+makedepends=('git')
+checkdepends=('sbcl')
+_commit='7a172486ea51c5d38836e5b209d7135014506d19'
+source=(
+  "$pkgname::git+$url#commit=$_commit"
+  'run-tests.lisp'
+)
+b2sums=('SKIP'
+
'f2db21db5957adcdf6ecf9c015795bcd03d982d961a2ea4ff7c4e53c8086d29c4fcaaa822358c4a1e9bebf5e3698d020afb1177715ed1f521ba772861ffc9b3e')
+
+pkgver() {
+  cd "$pkgname"
+
+  printf 'r%s.g%s' "$(git rev-list --count HEAD)" "$(git rev-parse --short 
HEAD)"
+}
+
+check() {
+  cd "$pkgname"
+
+  sbcl --script ../run-tests.lisp
+}
+
+package() {
+  cd "$pkgname"
+
+  # library
+  install -vd "$pkgdir/usr/share/common-lisp/source/$_pkgname"
+  cp -vr integration source test ./*.asd 
"$pkgdir/usr/share/common-lisp/source/$_pkgname"
+
+  # documentation
+  install -vDm644 -t "$pkgdir/usr/share/doc/$pkgname" README
+
+  # license
+  install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENCE
+}

Deleted: run-tests.lisp
===
--- run-tests.lisp  2022-05-24 21:52:29 UTC (rev 1210266)
+++ run-tests.lisp  2022-05-24 21:53:17 UTC (rev 1210267)
@@ -1,7 +0,0 @@
-(require "asdf")
-
-(push (uiop/os:getcwd) asdf:*central-registry*)
-
-(asdf:load-system "hu.dwim.stefil/test")
-
-(uiop:quit (if (hu.dwim.stefil/test::test) 0 1))

Copied: cl-hu-dwim-stefil/repos/community-any/run-tests.lisp (from rev 1210266, 
cl-hu-dwim-stefil/trunk/run-tests.lisp)
===
--- run-tests.lisp  (rev 0)
+++ run-tests.lisp  2022-05-24 21:53:17 UTC (rev 1210267)
@@ -0,0 +1,7 @@
+(require "asdf")
+
+(push (uiop/os:getcwd) asdf:*central-registry*)
+
+(asdf:load-system "hu.dwim.stefil/test")
+
+(uiop:quit (if (hu.dwim.stefil/test::test) 0 1))



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

2022-05-24 Thread Jan Steffens via arch-commits
Date: Tuesday, May 24, 2022 @ 21:52:29
  Author: heftig
Revision: 1210266

archrelease: copy trunk to community-x86_64

Added:
  virtualbox/repos/community-x86_64/001-disable-update.patch
(from rev 1210265, virtualbox/trunk/001-disable-update.patch)
  virtualbox/repos/community-x86_64/002-python310.patch
(from rev 1210265, virtualbox/trunk/002-python310.patch)
  virtualbox/repos/community-x86_64/003-pyunicode.patch
(from rev 1210265, virtualbox/trunk/003-pyunicode.patch)
  virtualbox/repos/community-x86_64/004-drop-Wno-format.patch
(from rev 1210265, virtualbox/trunk/004-drop-Wno-format.patch)
  virtualbox/repos/community-x86_64/005-gsoap-build.patch
(from rev 1210265, virtualbox/trunk/005-gsoap-build.patch)
  virtualbox/repos/community-x86_64/006-rdesktop-vrdp-keymap-path.patch
(from rev 1210265, virtualbox/trunk/006-rdesktop-vrdp-keymap-path.patch)
  virtualbox/repos/community-x86_64/008-no-vboxvideo.patch
(from rev 1210265, virtualbox/trunk/008-no-vboxvideo.patch)
  virtualbox/repos/community-x86_64/009-i3wm.patch
(from rev 1210265, virtualbox/trunk/009-i3wm.patch)
  
virtualbox/repos/community-x86_64/012-vbglR3GuestCtrlDetectPeekGetCancelSupport.patch
(from rev 1210265, 
virtualbox/trunk/012-vbglR3GuestCtrlDetectPeekGetCancelSupport.patch)
  virtualbox/repos/community-x86_64/013-Makefile.patch
(from rev 1210265, virtualbox/trunk/013-Makefile.patch)
  virtualbox/repos/community-x86_64/017-fix-narrowing-conversion.patch
(from rev 1210265, virtualbox/trunk/017-fix-narrowing-conversion.patch)
  virtualbox/repos/community-x86_64/018-xclient.patch
(from rev 1210265, virtualbox/trunk/018-xclient.patch)
  virtualbox/repos/community-x86_64/019-vboxr0-cflags.patch
(from rev 1210265, virtualbox/trunk/019-vboxr0-cflags.patch)
  virtualbox/repos/community-x86_64/020-linux518.patch
(from rev 1210265, virtualbox/trunk/020-linux518.patch)
  virtualbox/repos/community-x86_64/60-vboxdrv.rules
(from rev 1210265, virtualbox/trunk/60-vboxdrv.rules)
  virtualbox/repos/community-x86_64/60-vboxguest.rules
(from rev 1210265, virtualbox/trunk/60-vboxguest.rules)
  virtualbox/repos/community-x86_64/LocalConfig.kmk
(from rev 1210265, virtualbox/trunk/LocalConfig.kmk)
  virtualbox/repos/community-x86_64/PKGBUILD
(from rev 1210265, virtualbox/trunk/PKGBUILD)
  virtualbox/repos/community-x86_64/build.sh
(from rev 1210265, virtualbox/trunk/build.sh)
  virtualbox/repos/community-x86_64/vboxdrmclient.path
(from rev 1210265, virtualbox/trunk/vboxdrmclient.path)
  virtualbox/repos/community-x86_64/vboxdrmclient.service
(from rev 1210265, virtualbox/trunk/vboxdrmclient.service)
  virtualbox/repos/community-x86_64/vboxreload
(from rev 1210265, virtualbox/trunk/vboxreload)
  virtualbox/repos/community-x86_64/vboxservice-nox.service
(from rev 1210265, virtualbox/trunk/vboxservice-nox.service)
  virtualbox/repos/community-x86_64/vboxservice.service
(from rev 1210265, virtualbox/trunk/vboxservice.service)
  virtualbox/repos/community-x86_64/vboxweb.service
(from rev 1210265, virtualbox/trunk/vboxweb.service)
  virtualbox/repos/community-x86_64/virtualbox-ext-vnc.install
(from rev 1210265, virtualbox/trunk/virtualbox-ext-vnc.install)
  virtualbox/repos/community-x86_64/virtualbox-guest-utils.sysusers
(from rev 1210265, virtualbox/trunk/virtualbox-guest-utils.sysusers)
  virtualbox/repos/community-x86_64/virtualbox-host-dkms.conf
(from rev 1210265, virtualbox/trunk/virtualbox-host-dkms.conf)
  virtualbox/repos/community-x86_64/virtualbox-host-dkms.install
(from rev 1210265, virtualbox/trunk/virtualbox-host-dkms.install)
  virtualbox/repos/community-x86_64/virtualbox.sysusers
(from rev 1210265, virtualbox/trunk/virtualbox.sysusers)
Deleted:
  virtualbox/repos/community-x86_64/001-disable-update.patch
  virtualbox/repos/community-x86_64/002-python310.patch
  virtualbox/repos/community-x86_64/003-pyunicode.patch
  virtualbox/repos/community-x86_64/004-drop-Wno-format.patch
  virtualbox/repos/community-x86_64/005-gsoap-build.patch
  virtualbox/repos/community-x86_64/006-rdesktop-vrdp-keymap-path.patch
  virtualbox/repos/community-x86_64/008-no-vboxvideo.patch
  virtualbox/repos/community-x86_64/009-i3wm.patch
  
virtualbox/repos/community-x86_64/012-vbglR3GuestCtrlDetectPeekGetCancelSupport.patch
  virtualbox/repos/community-x86_64/013-Makefile.patch
  virtualbox/repos/community-x86_64/017-fix-narrowing-conversion.patch
  virtualbox/repos/community-x86_64/018-xclient.patch
  virtualbox/repos/community-x86_64/019-vboxr0-cflags.patch
  virtualbox/repos/community-x86_64/60-vboxdrv.rules
  virtualbox/repos/community-x86_64/60-vboxguest.rules
  virtualbox/repos/community-x86_64/LocalConfig.kmk
  virtualbox/repos/community-x86_64/PKGBUILD
  virtualbox/repos/community-x86_64/build.sh
  virtualbox/repos/community-x86_64/vboxdrmclient.path
  virtualbox/repos/community-x86_64/vboxdrmclient.service
  

[arch-commits] Commit in cl-hu-dwim-stefil/trunk (PKGBUILD)

2022-05-24 Thread George Rawlinson via arch-commits
Date: Tuesday, May 24, 2022 @ 21:52:20
  Author: grawlinson
Revision: 1210265

upgpkg: cl-hu-dwim-stefil; remove useless files

Modified:
  cl-hu-dwim-stefil/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-24 21:52:08 UTC (rev 1210264)
+++ PKGBUILD2022-05-24 21:52:20 UTC (rev 1210265)
@@ -3,7 +3,7 @@
 pkgname=cl-hu-dwim-stefil
 _pkgname='hu.dwim.stefil'
 pkgver=r257.g7a17248
-pkgrel=2
+pkgrel=1
 pkgdesc='A simple test framework in Common Lisp'
 arch=('any')
 url='https://github.com/hu-dwim/hu.dwim.stefil'
@@ -34,18 +34,10 @@
 package() {
   cd "$pkgname"
 
-  # create directories
-  install -vd \
-"$pkgdir/usr/share/common-lisp/source/$_pkgname" \
-"$pkgdir/usr/share/common-lisp/systems"
-
   # library
+  install -vd "$pkgdir/usr/share/common-lisp/source/$_pkgname"
   cp -vr integration source test ./*.asd 
"$pkgdir/usr/share/common-lisp/source/$_pkgname"
 
-  pushd "$pkgdir/usr/share/common-lisp/systems"
-  ln -s "../source/$_pkgname"/*.asd .
-  popd
-
   # documentation
   install -vDm644 -t "$pkgdir/usr/share/doc/$pkgname" README
 



[arch-commits] Commit in virtualbox/trunk (020-linux518.patch PKGBUILD)

2022-05-24 Thread Jan Steffens via arch-commits
Date: Tuesday, May 24, 2022 @ 21:52:08
  Author: heftig
Revision: 1210264

6.1.34-3: Add a patch for Linux 5.18

Added:
  virtualbox/trunk/020-linux518.patch
Modified:
  virtualbox/trunk/PKGBUILD

+
 020-linux518.patch |   16 
 PKGBUILD   |8 +---
 2 files changed, 21 insertions(+), 3 deletions(-)

Added: 020-linux518.patch
===
--- 020-linux518.patch  (rev 0)
+++ 020-linux518.patch  2022-05-24 21:52:08 UTC (rev 1210264)
@@ -0,0 +1,16 @@
+Index: trunk/src/VBox/HostDrivers/VBoxNetFlt/linux/VBoxNetFlt-linux.c
+===
+--- trunk/src/VBox/HostDrivers/VBoxNetFlt/linux/VBoxNetFlt-linux.c
 trunk/src/VBox/HostDrivers/VBoxNetFlt/linux/VBoxNetFlt-linux.c
+@@ -2312,5 +2312,11 @@
+ Log6(("vboxNetFltPortOsXmit: pBuf->cb dump:\n%.*Rhxd\n", 
sizeof(pBuf->cb), pBuf->cb));
+ Log6(("vboxNetFltPortOsXmit: netif_rx_ni(%p)\n", pBuf));
++#if RTLNX_VER_MIN(5,18,0)
++local_bh_disable();
++err = netif_rx(pBuf);
++local_bh_enable();
++#else
+ err = netif_rx_ni(pBuf);
++#endif
+ if (err)
+ rc = RTErrConvertFromErrno(err);

Modified: PKGBUILD
===
--- PKGBUILD2022-05-24 21:51:47 UTC (rev 1210263)
+++ PKGBUILD2022-05-24 21:52:08 UTC (rev 1210264)
@@ -10,7 +10,7 @@
  'virtualbox-ext-vnc')
 pkgver=6.1.34
 _tarver=${pkgver}
-pkgrel=2
+pkgrel=3
 arch=('x86_64')
 url='https://virtualbox.org/'
 license=('GPL' 'custom')
@@ -75,7 +75,8 @@
 '013-Makefile.patch'
 '017-fix-narrowing-conversion.patch'
 '018-xclient.patch'
-'019-vboxr0-cflags.patch')
+'019-vboxr0-cflags.patch'
+'020-linux518.patch')
 sha256sums=('9c3ce1829432e5b8374f950698587038f45fb0492147dc200e59edb9bb75eb49'
 '76d98ea062fcad9e5e3fa981d046a6eb12a3e718a296544a68b66f4b65cb56db'
 '2101ebb58233bbfadf3aa74381f22f7e7e508559d2b46387114bc2d8e308554c'
@@ -101,7 +102,8 @@
 'da7e58ed37dc23c6202aab3017864579a99e78417f3421ddcc98a198198fe2c9'
 '5aac692909a0a0ec56b08bdece9e42cf7463abdca9da2f990d441ff463be6a99'
 'cac5a573e9ed5aafb2f469c2e6fffb8cd4f389bbadba5a968c9f65be7a72fee3'
-'25066d566042a3b3d6dee805fe783ca07fd3c3671a098db2b5f09aeb07624cd2')
+'25066d566042a3b3d6dee805fe783ca07fd3c3671a098db2b5f09aeb07624cd2'
+'1bdce861cb3609256da3b0ce07cab59d17801d48fa67c55b2c4dad9b09014f47')
 
 prepare() {
 cd "VirtualBox-$pkgver"



[arch-commits] Commit in cl-hu-dwim-stefil/repos (3 files)

2022-05-24 Thread George Rawlinson via arch-commits
Date: Tuesday, May 24, 2022 @ 21:51:47
  Author: grawlinson
Revision: 1210263

archrelease: copy trunk to community-any

Added:
  cl-hu-dwim-stefil/repos/community-any/
  cl-hu-dwim-stefil/repos/community-any/PKGBUILD
(from rev 1210262, cl-hu-dwim-stefil/trunk/PKGBUILD)
  cl-hu-dwim-stefil/repos/community-any/run-tests.lisp
(from rev 1210262, cl-hu-dwim-stefil/trunk/run-tests.lisp)

+
 PKGBUILD   |   54 ++
 run-tests.lisp |7 +++
 2 files changed, 61 insertions(+)

Copied: cl-hu-dwim-stefil/repos/community-any/PKGBUILD (from rev 1210262, 
cl-hu-dwim-stefil/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2022-05-24 21:51:47 UTC (rev 1210263)
@@ -0,0 +1,54 @@
+# Maintainer: George Rawlinson 
+
+pkgname=cl-hu-dwim-stefil
+_pkgname='hu.dwim.stefil'
+pkgver=r257.g7a17248
+pkgrel=2
+pkgdesc='A simple test framework in Common Lisp'
+arch=('any')
+url='https://github.com/hu-dwim/hu.dwim.stefil'
+license=('MIT')
+depends=('common-lisp' 'cl-asdf' 'cl-alexandria')
+makedepends=('git')
+checkdepends=('sbcl')
+_commit='7a172486ea51c5d38836e5b209d7135014506d19'
+source=(
+  "$pkgname::git+$url#commit=$_commit"
+  'run-tests.lisp'
+)
+b2sums=('SKIP'
+
'f2db21db5957adcdf6ecf9c015795bcd03d982d961a2ea4ff7c4e53c8086d29c4fcaaa822358c4a1e9bebf5e3698d020afb1177715ed1f521ba772861ffc9b3e')
+
+pkgver() {
+  cd "$pkgname"
+
+  printf 'r%s.g%s' "$(git rev-list --count HEAD)" "$(git rev-parse --short 
HEAD)"
+}
+
+check() {
+  cd "$pkgname"
+
+  sbcl --script ../run-tests.lisp
+}
+
+package() {
+  cd "$pkgname"
+
+  # create directories
+  install -vd \
+"$pkgdir/usr/share/common-lisp/source/$_pkgname" \
+"$pkgdir/usr/share/common-lisp/systems"
+
+  # library
+  cp -vr integration source test ./*.asd 
"$pkgdir/usr/share/common-lisp/source/$_pkgname"
+
+  pushd "$pkgdir/usr/share/common-lisp/systems"
+  ln -s "../source/$_pkgname"/*.asd .
+  popd
+
+  # documentation
+  install -vDm644 -t "$pkgdir/usr/share/doc/$pkgname" README
+
+  # license
+  install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENCE
+}

Copied: cl-hu-dwim-stefil/repos/community-any/run-tests.lisp (from rev 1210262, 
cl-hu-dwim-stefil/trunk/run-tests.lisp)
===
--- community-any/run-tests.lisp(rev 0)
+++ community-any/run-tests.lisp2022-05-24 21:51:47 UTC (rev 1210263)
@@ -0,0 +1,7 @@
+(require "asdf")
+
+(push (uiop/os:getcwd) asdf:*central-registry*)
+
+(asdf:load-system "hu.dwim.stefil/test")
+
+(uiop:quit (if (hu.dwim.stefil/test::test) 0 1))



[arch-commits] Commit in (5 files)

2022-05-24 Thread George Rawlinson via arch-commits
Date: Tuesday, May 24, 2022 @ 21:51:03
  Author: grawlinson
Revision: 1210262

addpkg: cl-hu-dwim-stefil r257-2

Added:
  cl-hu-dwim-stefil/
  cl-hu-dwim-stefil/repos/
  cl-hu-dwim-stefil/trunk/
  cl-hu-dwim-stefil/trunk/PKGBUILD
  cl-hu-dwim-stefil/trunk/run-tests.lisp

+
 PKGBUILD   |   54 ++
 run-tests.lisp |7 +++
 2 files changed, 61 insertions(+)

Added: cl-hu-dwim-stefil/trunk/PKGBUILD
===
--- cl-hu-dwim-stefil/trunk/PKGBUILD(rev 0)
+++ cl-hu-dwim-stefil/trunk/PKGBUILD2022-05-24 21:51:03 UTC (rev 1210262)
@@ -0,0 +1,54 @@
+# Maintainer: George Rawlinson 
+
+pkgname=cl-hu-dwim-stefil
+_pkgname='hu.dwim.stefil'
+pkgver=r257.g7a17248
+pkgrel=2
+pkgdesc='A simple test framework in Common Lisp'
+arch=('any')
+url='https://github.com/hu-dwim/hu.dwim.stefil'
+license=('MIT')
+depends=('common-lisp' 'cl-asdf' 'cl-alexandria')
+makedepends=('git')
+checkdepends=('sbcl')
+_commit='7a172486ea51c5d38836e5b209d7135014506d19'
+source=(
+  "$pkgname::git+$url#commit=$_commit"
+  'run-tests.lisp'
+)
+b2sums=('SKIP'
+
'f2db21db5957adcdf6ecf9c015795bcd03d982d961a2ea4ff7c4e53c8086d29c4fcaaa822358c4a1e9bebf5e3698d020afb1177715ed1f521ba772861ffc9b3e')
+
+pkgver() {
+  cd "$pkgname"
+
+  printf 'r%s.g%s' "$(git rev-list --count HEAD)" "$(git rev-parse --short 
HEAD)"
+}
+
+check() {
+  cd "$pkgname"
+
+  sbcl --script ../run-tests.lisp
+}
+
+package() {
+  cd "$pkgname"
+
+  # create directories
+  install -vd \
+"$pkgdir/usr/share/common-lisp/source/$_pkgname" \
+"$pkgdir/usr/share/common-lisp/systems"
+
+  # library
+  cp -vr integration source test ./*.asd 
"$pkgdir/usr/share/common-lisp/source/$_pkgname"
+
+  pushd "$pkgdir/usr/share/common-lisp/systems"
+  ln -s "../source/$_pkgname"/*.asd .
+  popd
+
+  # documentation
+  install -vDm644 -t "$pkgdir/usr/share/doc/$pkgname" README
+
+  # license
+  install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENCE
+}

Added: cl-hu-dwim-stefil/trunk/run-tests.lisp
===
--- cl-hu-dwim-stefil/trunk/run-tests.lisp  (rev 0)
+++ cl-hu-dwim-stefil/trunk/run-tests.lisp  2022-05-24 21:51:03 UTC (rev 
1210262)
@@ -0,0 +1,7 @@
+(require "asdf")
+
+(push (uiop/os:getcwd) asdf:*central-registry*)
+
+(asdf:load-system "hu.dwim.stefil/test")
+
+(uiop:quit (if (hu.dwim.stefil/test::test) 0 1))



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

2022-05-24 Thread Jan Steffens via arch-commits
Date: Tuesday, May 24, 2022 @ 21:33:20
  Author: heftig
Revision: 1210261

Add patch for Linux 5.18

Added:
  r8168/trunk/linux518.patch
Modified:
  r8168/trunk/PKGBUILD

+
 PKGBUILD   |   11 +--
 linux518.patch |   52 
 2 files changed, 61 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-05-24 21:16:44 UTC (rev 1210260)
+++ PKGBUILD2022-05-24 21:33:20 UTC (rev 1210261)
@@ -11,11 +11,18 @@
 arch=('x86_64')
 makedepends=('linux-headers')
 
source=(https://github.com/mtorromeo/r8168/archive/$pkgver/$pkgname-$pkgver.tar.gz
-
https://github.com/mtorromeo/r8168/releases/download/$pkgver/$pkgname-$pkgver.tar.gz.asc)
+
https://github.com/mtorromeo/r8168/releases/download/$pkgver/$pkgname-$pkgver.tar.gz.asc
+linux518.patch)
 sha256sums=('15b06890230d7c7b92635d981a6f07c4562b0b3eeb55f43b127bdfbb50dda5e1'
-'SKIP')
+'SKIP'
+'d8d542770e504775600f686d03412a37cc32489872be7aeb388b5b08d9806096')
 validpgpkeys=('0CADAACF70F64C654E131B3111675C743429DDEF') # Massimiliano 
Torromeo 
 
+prepare() {
+   cd "$pkgname-$pkgver"
+   patch -Np1 -i ../linux518.patch
+}
+
 build() {
cd "$pkgname-$pkgver"
# avoid using the Makefile directly -- it doesn't understand

Added: linux518.patch
===
--- linux518.patch  (rev 0)
+++ linux518.patch  2022-05-24 21:33:20 UTC (rev 1210261)
@@ -0,0 +1,52 @@
+diff -u -r r8168-8.050.00/src/r8168_n.c r8168-8.050.00-linux518/src/r8168_n.c
+--- r8168-8.050.00/src/r8168_n.c   2022-05-06 09:48:25.0 +
 r8168-8.050.00-linux518/src/r8168_n.c  2022-05-24 21:31:05.802807395 
+
+@@ -3698,9 +3698,15 @@
+ txd->opts2 = 0;
+ while (1) {
+ memset(tmpAddr, pattern++, len - 14);
++#if LINUX_VERSION_CODE < KERNEL_VERSION(5,18,0)
+ pci_dma_sync_single_for_device(tp->pci_dev,
+le64_to_cpu(mapping),
+len, DMA_TO_DEVICE);
++#else
++dma_sync_single_for_device(tp_to_dev(tp),
++   le64_to_cpu(mapping),
++   len, DMA_TO_DEVICE);
++#endif
+ txd->opts1 = cpu_to_le32(DescOwn | FirstFrag | LastFrag | 
len);
+ 
+ RTL_W32(tp, RxConfig, RTL_R32(tp, RxConfig)  | AcceptMyPhys);
+@@ -3726,7 +3732,11 @@
+ if (rx_len == len) {
+ dma_sync_single_for_cpu(tp_to_dev(tp), 
le64_to_cpu(rxd->addr), tp->rx_buf_sz, DMA_FROM_DEVICE);
+ i = memcmp(skb->data, rx_skb->data, rx_len);
++#if LINUX_VERSION_CODE < KERNEL_VERSION(5,18,0)
+ pci_dma_sync_single_for_device(tp->pci_dev, 
le64_to_cpu(rxd->addr), tp->rx_buf_sz, DMA_FROM_DEVICE);
++#else
++dma_sync_single_for_device(tp_to_dev(tp), 
le64_to_cpu(rxd->addr), tp->rx_buf_sz, DMA_FROM_DEVICE);
++#endif
+ if (i == 0) {
+ //  dev_printk(KERN_INFO, tp_to_dev(tp), "loopback test 
finished\n",rx_len,len);
+ break;
+@@ -26403,11 +26413,20 @@
+ 
+ if ((sizeof(dma_addr_t) > 4) &&
+ use_dac &&
++#if LINUX_VERSION_CODE < KERNEL_VERSION(5,18,0)
+ !pci_set_dma_mask(pdev, DMA_BIT_MASK(64)) &&
+ !pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64))) {
++#else
++!dma_set_mask(>dev, DMA_BIT_MASK(64)) &&
++!dma_set_coherent_mask(>dev, DMA_BIT_MASK(64))) {
++#endif
+ dev->features |= NETIF_F_HIGHDMA;
+ } else {
++#if LINUX_VERSION_CODE < KERNEL_VERSION(5,18,0)
+ rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
++#else
++rc = dma_set_mask(>dev, DMA_BIT_MASK(32));
++#endif
+ if (rc < 0) {
+ #if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,0)
+ if (netif_msg_probe(tp))



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

2022-05-24 Thread Jan Steffens via arch-commits
Date: Tuesday, May 24, 2022 @ 21:16:44
  Author: heftig
Revision: 1210260

archrelease: copy trunk to community-x86_64

Added:
  broadcom-wl-dkms/repos/community-x86_64/001-null-pointer-fix.patch
(from rev 1210259, broadcom-wl-dkms/trunk/001-null-pointer-fix.patch)
  broadcom-wl-dkms/repos/community-x86_64/002-rdtscl.patch
(from rev 1210259, broadcom-wl-dkms/trunk/002-rdtscl.patch)
  broadcom-wl-dkms/repos/community-x86_64/003-linux47.patch
(from rev 1210259, broadcom-wl-dkms/trunk/003-linux47.patch)
  broadcom-wl-dkms/repos/community-x86_64/004-linux48.patch
(from rev 1210259, broadcom-wl-dkms/trunk/004-linux48.patch)
  broadcom-wl-dkms/repos/community-x86_64/005-debian-fix-kernel-warnings.patch
(from rev 1210259, 
broadcom-wl-dkms/trunk/005-debian-fix-kernel-warnings.patch)
  broadcom-wl-dkms/repos/community-x86_64/006-linux411.patch
(from rev 1210259, broadcom-wl-dkms/trunk/006-linux411.patch)
  broadcom-wl-dkms/repos/community-x86_64/007-linux412.patch
(from rev 1210259, broadcom-wl-dkms/trunk/007-linux412.patch)
  broadcom-wl-dkms/repos/community-x86_64/008-linux415.patch
(from rev 1210259, broadcom-wl-dkms/trunk/008-linux415.patch)
  broadcom-wl-dkms/repos/community-x86_64/009-fix_mac_profile_discrepancy.patch
(from rev 1210259, 
broadcom-wl-dkms/trunk/009-fix_mac_profile_discrepancy.patch)
  broadcom-wl-dkms/repos/community-x86_64/010-linux56.patch
(from rev 1210259, broadcom-wl-dkms/trunk/010-linux56.patch)
  broadcom-wl-dkms/repos/community-x86_64/011-linux59.patch
(from rev 1210259, broadcom-wl-dkms/trunk/011-linux59.patch)
  broadcom-wl-dkms/repos/community-x86_64/012-linux517.patch
(from rev 1210259, broadcom-wl-dkms/trunk/012-linux517.patch)
  broadcom-wl-dkms/repos/community-x86_64/013-linux518.patch
(from rev 1210259, broadcom-wl-dkms/trunk/013-linux518.patch)
  broadcom-wl-dkms/repos/community-x86_64/PKGBUILD
(from rev 1210259, broadcom-wl-dkms/trunk/PKGBUILD)
  broadcom-wl-dkms/repos/community-x86_64/broadcom-wl-dkms.conf
(from rev 1210259, broadcom-wl-dkms/trunk/broadcom-wl-dkms.conf)
  broadcom-wl-dkms/repos/community-x86_64/broadcom-wl-dkms.install
(from rev 1210259, broadcom-wl-dkms/trunk/broadcom-wl-dkms.install)
  broadcom-wl-dkms/repos/community-x86_64/dkms.conf.in
(from rev 1210259, 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/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|   78 ++---
 013-linux518.patch|   71 +
 PKGBUILD  |  138 +-
 broadcom-wl-dkms.conf |   16 -
 broadcom-wl-dkms.install  |   28 +-
 dkms.conf.in  |   33 +-
 17 files changed, 1023 insertions(+), 949 deletions(-)

Deleted: 001-null-pointer-fix.patch
===
--- 001-null-pointer-fix.patch  2022-05-24 21:16:30 UTC (rev 1210259)
+++ 001-null-pointer-fix.patch  2022-05-24 21:16:44 UTC (rev 1210260)
@@ -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 insertion(+), 1 deletion(-)
-
-diff --git a/src/wl/sys/wl_linux.c 

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

2022-05-24 Thread Jan Steffens via arch-commits
Date: Tuesday, May 24, 2022 @ 21:16:30
  Author: heftig
Revision: 1210259

6.30.223.271-30: Add a patch for Linux 5.18

Added:
  broadcom-wl-dkms/trunk/013-linux518.patch
Modified:
  broadcom-wl-dkms/trunk/PKGBUILD
  broadcom-wl-dkms/trunk/dkms.conf.in

+
 013-linux518.patch |   71 +++
 PKGBUILD   |6 ++--
 dkms.conf.in   |1 
 3 files changed, 76 insertions(+), 2 deletions(-)

Added: 013-linux518.patch
===
--- 013-linux518.patch  (rev 0)
+++ 013-linux518.patch  2022-05-24 21:16:30 UTC (rev 1210259)
@@ -0,0 +1,71 @@
+diff -u -r a/src/shared/linux_osl.c b/src/shared/linux_osl.c
+--- a/src/shared/linux_osl.c   2022-05-24 20:51:15.662604980 +
 b/src/shared/linux_osl.c   2022-05-24 21:13:38.264472425 +
+@@ -599,6 +599,8 @@
+   va = kmalloc(size, GFP_ATOMIC | __GFP_ZERO);
+   if (va)
+   *pap = (ulong)__virt_to_phys(va);
++#elif LINUX_VERSION_CODE >= KERNEL_VERSION(5, 18, 0)
++  va = dma_alloc_coherent(&((struct pci_dev *)osh->pdev)->dev, size, 
(dma_addr_t*)pap, GFP_ATOMIC);
+ #else
+   va = pci_alloc_consistent(osh->pdev, size, (dma_addr_t*)pap);
+ #endif
+@@ -612,6 +614,8 @@
+ 
+ #ifdef __ARM_ARCH_7A__
+   kfree(va);
++#elif LINUX_VERSION_CODE >= KERNEL_VERSION(5, 18, 0)
++  dma_free_coherent(&((struct pci_dev *)osh->pdev)->dev, size, va, 
(dma_addr_t)pa);
+ #else
+   pci_free_consistent(osh->pdev, size, va, (dma_addr_t)pa);
+ #endif
+@@ -623,7 +627,11 @@
+   int dir;
+ 
+   ASSERT((osh && (osh->magic == OS_HANDLE_MAGIC)));
++#if LINUX_VERSION_CODE >= KERNEL_VERSION(5, 18, 0)
++  dir = (direction == DMA_TX)? DMA_TO_DEVICE: DMA_FROM_DEVICE;
++#else
+   dir = (direction == DMA_TX)? PCI_DMA_TODEVICE: PCI_DMA_FROMDEVICE;
++#endif
+ 
+ #if defined(__ARM_ARCH_7A__) && defined(BCMDMASGLISTOSL)
+   if (dmah != NULL) {
+@@ -641,7 +649,11 @@
+   ASSERT(totsegs + nsegs <= MAX_DMA_SEGS);
+   sg->page_link = 0;
+   sg_set_buf(sg, PKTDATA(osh, skb), PKTLEN(osh, 
skb));
++#if LINUX_VERSION_CODE >= KERNEL_VERSION(5, 18, 0)
++  dma_map_single(&((struct pci_dev 
*)osh->pdev)->dev, PKTDATA(osh, skb), PKTLEN(osh, skb), dir);
++#else
+   pci_map_single(osh->pdev, PKTDATA(osh, skb), 
PKTLEN(osh, skb), dir);
++#endif
+   }
+   totsegs += nsegs;
+   totlen += PKTLEN(osh, skb);
+@@ -656,7 +668,11 @@
+   }
+ #endif 
+ 
++#if LINUX_VERSION_CODE >= KERNEL_VERSION(5, 18, 0)
++  return (dma_map_single(&((struct pci_dev *)osh->pdev)->dev, va, size, 
dir));
++#else
+   return (pci_map_single(osh->pdev, va, size, dir));
++#endif
+ }
+ 
+ void BCMFASTPATH
+@@ -665,8 +681,13 @@
+   int dir;
+ 
+   ASSERT((osh && (osh->magic == OS_HANDLE_MAGIC)));
++#if LINUX_VERSION_CODE >= KERNEL_VERSION(5, 18, 0)
++  dir = (direction == DMA_TX)? DMA_TO_DEVICE: DMA_FROM_DEVICE;
++  dma_unmap_single(&((struct pci_dev *)osh->pdev)->dev, (uint32)pa, size, 
dir);
++#else
+   dir = (direction == DMA_TX)? PCI_DMA_TODEVICE: PCI_DMA_FROMDEVICE;
+   pci_unmap_single(osh->pdev, (uint32)pa, size, dir);
++#endif
+ }
+ 
+ #if defined(BCMDBG_ASSERT)

Modified: PKGBUILD
===
--- PKGBUILD2022-05-24 21:10:22 UTC (rev 1210258)
+++ PKGBUILD2022-05-24 21:16:30 UTC (rev 1210259)
@@ -6,7 +6,7 @@
 
 pkgname=broadcom-wl-dkms
 pkgver=6.30.223.271
-pkgrel=29
+pkgrel=30
 pkgdesc='Broadcom 802.11 Linux STA wireless driver'
 arch=(x86_64)
 
url='https://www.broadcom.com/support/download-search/?pf=Wireless+LAN+Infrastructure'
@@ -28,9 +28,10 @@
 '010-linux56.patch'
 '011-linux59.patch'
 '012-linux517.patch'
+'013-linux518.patch'
 
"https://docs.broadcom.com/docs-and-downloads/docs/linux_sta/hybrid-v35_64-nodebug-pcoem-${pkgver//./_}.tar.gz;)
 
b2sums=('7c4eaa825a37358509a08e5105665eeabc9f097945b6fa163cd5722b00638da5889f5466bd2c5f1b01172f2d0c9fb195f6e18329f2880adb2774406684cbc4c0'
-
'662adcf24effdeedb8a9108759ae7710466563ebede29c0e769078db3084fc03d74557e705ec13454faef74ad665d1a9a8f9c50c1e1512f525e06ca7b4268063'
+
'9c271945a30069d01cefa24c7dae84f359dd2f181699464b34ab884e279fdf5c2d2673a0b2ebdee50df92f76d22da68c77bfd22d003becfd1879b4fd2d10c412'
 
'038150b9a50025dbd3c81d09755956216b83c0b54db29dc4bfbc3b46bd67cf4640ad643d69ba7f8d486f52cedeb00929b97e02152e72404e6126a05855f97d6f'
 
'bbc80e1ac01683ccc2d940212347fc11c74bdc252d492ca79a292015ac25df6a153ac97cb6c0f0a8d51c1c33d5dc0de4fdd61b1958499b946dc817d29646b72f'
 
'ecf3eb75f8eb3331b0a36b39851536de43cffd3b303db9e9f4fe6fe55d463c3343aba17a99668448427764a719e15e3e862d6a3dc0bc61cb68da9934fb427c6f'
@@ -43,6 +44,7 @@
 

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

2022-05-24 Thread Daniel M. Capella via arch-commits
Date: Tuesday, May 24, 2022 @ 21:10:22
  Author: polyzen
Revision: 1210258

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-24 21:09:57 UTC (rev 1210257)
+++ PKGBUILD2022-05-24 21:10:22 UTC (rev 1210258)
@@ -1,42 +0,0 @@
-# Maintainer: Daniel M. Capella 
-# Contributor: Timothée Ravier 
-
-_name=dulwich
-pkgname=python-dulwich
-pkgver=0.20.41
-pkgrel=1
-pkgdesc='Pure-Python implementation of the Git file formats and protocols'
-arch=('x86_64')
-url=https://www.dulwich.io
-license=('GPL')
-depends=('python-certifi' 'python-urllib3')
-makedepends=('python-setuptools')
-checkdepends=('python-gpgme' 'python-paramiko')
-optdepends=('python-fastimport: for fast-import support'
-'python-gpgme: for PGP signature support'
-'python-idna: for HTTPS support via urllib3'
-'python-paramiko: for use as the SSH implementation'
-'python-pyopenssl: for HTTPS support via urllib3'
-'python-pyinotify: to watch for changes to refs')
-source=("https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz;)
-sha256sums=('0ca7aef581217f5c0d52496067b5c535298873feb1af7f383ec079a381b05602')
-b2sums=('1efaef78e761e161eafcf3f35df63a15a255ae2109624c6b4d8f2ee5d4670daf778d4d127402d1abbdb5d4d8d485b9d14b3361d420f33822eae7085b09fd3a84')
-
-build() {
-  cd $_name-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd $_name-$pkgver
-  python -m venv --system-site-packages test-env
-  test-env/bin/python setup.py install --optimize=1 --skip-build
-  test-env/bin/python -m unittest dulwich.tests.test_suite
-}
-
-package() {
-  cd $_name-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-dulwich/repos/community-x86_64/PKGBUILD (from rev 1210257, 
python-dulwich/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-24 21:10:22 UTC (rev 1210258)
@@ -0,0 +1,42 @@
+# Maintainer: Daniel M. Capella 
+# Contributor: Timothée Ravier 
+
+_name=dulwich
+pkgname=python-dulwich
+pkgver=0.20.42
+pkgrel=1
+pkgdesc='Pure-Python implementation of the Git file formats and protocols'
+arch=('x86_64')
+url=https://www.dulwich.io
+license=('GPL')
+depends=('python-certifi' 'python-urllib3')
+makedepends=('python-setuptools')
+checkdepends=('python-gpgme' 'python-paramiko')
+optdepends=('python-fastimport: for fast-import support'
+'python-gpgme: for PGP signature support'
+'python-idna: for HTTPS support via urllib3'
+'python-paramiko: for use as the SSH implementation'
+'python-pyopenssl: for HTTPS support via urllib3'
+'python-pyinotify: to watch for changes to refs')
+source=("https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz;)
+sha256sums=('72ba3b60ae6a554d1332b3b40a345febe16ec469cf6014bb443b719902e33ef0')
+b2sums=('b7373e2db7616cc696c94f19dccf2a1d93ce1d260419e1ce7b2d09b402f9f051125fb72d6fb79147ce73377667ddc258a37ff057ec485a27a46319ed30b11640')
+
+build() {
+  cd $_name-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd $_name-$pkgver
+  python -m venv --system-site-packages test-env
+  test-env/bin/python setup.py install --optimize=1 --skip-build
+  test-env/bin/python -m unittest dulwich.tests.test_suite
+}
+
+package() {
+  cd $_name-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}
+
+# vim:set ts=2 sw=2 et:



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

2022-05-24 Thread Daniel M. Capella via arch-commits
Date: Tuesday, May 24, 2022 @ 21:09:57
  Author: polyzen
Revision: 1210257

upgpkg: python-dulwich 0.20.42-1

Modified:
  python-dulwich/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-24 21:06:33 UTC (rev 1210256)
+++ PKGBUILD2022-05-24 21:09:57 UTC (rev 1210257)
@@ -3,7 +3,7 @@
 
 _name=dulwich
 pkgname=python-dulwich
-pkgver=0.20.41
+pkgver=0.20.42
 pkgrel=1
 pkgdesc='Pure-Python implementation of the Git file formats and protocols'
 arch=('x86_64')
@@ -19,8 +19,8 @@
 'python-pyopenssl: for HTTPS support via urllib3'
 'python-pyinotify: to watch for changes to refs')
 
source=("https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz;)
-sha256sums=('0ca7aef581217f5c0d52496067b5c535298873feb1af7f383ec079a381b05602')
-b2sums=('1efaef78e761e161eafcf3f35df63a15a255ae2109624c6b4d8f2ee5d4670daf778d4d127402d1abbdb5d4d8d485b9d14b3361d420f33822eae7085b09fd3a84')
+sha256sums=('72ba3b60ae6a554d1332b3b40a345febe16ec469cf6014bb443b719902e33ef0')
+b2sums=('b7373e2db7616cc696c94f19dccf2a1d93ce1d260419e1ce7b2d09b402f9f051125fb72d6fb79147ce73377667ddc258a37ff057ec485a27a46319ed30b11640')
 
 build() {
   cd $_name-$pkgver



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

2022-05-24 Thread Daniel M. Capella via arch-commits
Date: Tuesday, May 24, 2022 @ 21:06:33
  Author: polyzen
Revision: 1210256

archrelease: copy trunk to community-any

Added:
  python-aiohttp-openmetrics/repos/community-any/PKGBUILD
(from rev 1210255, python-aiohttp-openmetrics/trunk/PKGBUILD)
Deleted:
  python-aiohttp-openmetrics/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-24 21:06:05 UTC (rev 1210255)
+++ PKGBUILD2022-05-24 21:06:33 UTC (rev 1210256)
@@ -1,27 +0,0 @@
-# Maintainer: Daniel M. Capella 
-
-_name=aiohttp-openmetrics
-pkgname=python-aiohttp-openmetrics
-pkgver=0.0.4
-pkgrel=1
-pkgdesc='OpenMetrics provider for aiohttp'
-arch=('any')
-url=https://github.com/jelmer/aiohttp-openmetrics
-license=('Apache')
-depends=('python-aiohttp' 'python-prometheus_client')
-makedepends=('python-setuptools')
-source=("https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz;)
-sha256sums=('4bc4edb292907fb68f5938e1d17c7bf59b4a1617c581ac199782a63c887a4f1d')
-b2sums=('3bc914d5d14dde8b562946e9b3212037bd48df2fba4ef0b0489e9ce4abf4b0d6f43107696b3ca93bb892b19d466202741fc4fd67b20be0b7a4e6f4c9b6f42a4e')
-
-build() {
-  cd $_name-$pkgver
-  python setup.py build
-}
-
-package() {
-  cd $_name-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-aiohttp-openmetrics/repos/community-any/PKGBUILD (from rev 
1210255, python-aiohttp-openmetrics/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-24 21:06:33 UTC (rev 1210256)
@@ -0,0 +1,27 @@
+# Maintainer: Daniel M. Capella 
+
+_name=aiohttp-openmetrics
+pkgname=python-aiohttp-openmetrics
+pkgver=0.0.5
+pkgrel=1
+pkgdesc='OpenMetrics provider for aiohttp'
+arch=('any')
+url=https://github.com/jelmer/aiohttp-openmetrics
+license=('Apache')
+depends=('python-aiohttp' 'python-prometheus_client')
+makedepends=('python-setuptools')
+source=("https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz;)
+sha256sums=('a770cc4a1b1bb0ca45aae71b0cc63fcd57aac322125882a20c5fcd09e457dff1')
+b2sums=('ca769cd18b84b929667500b60635ff7545f149033f9d6134d8f83273c7b003231c76941cc9eab1056a1c980d0ad096916c40b285e87e8f7f1ed80cdeb4140bd2')
+
+build() {
+  cd $_name-$pkgver
+  python setup.py build
+}
+
+package() {
+  cd $_name-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}
+
+# vim:set ts=2 sw=2 et:



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

2022-05-24 Thread Daniel M. Capella via arch-commits
Date: Tuesday, May 24, 2022 @ 21:06:05
  Author: polyzen
Revision: 1210255

upgpkg: python-aiohttp-openmetrics 0.0.5-1

Modified:
  python-aiohttp-openmetrics/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-24 20:51:52 UTC (rev 1210254)
+++ PKGBUILD2022-05-24 21:06:05 UTC (rev 1210255)
@@ -2,7 +2,7 @@
 
 _name=aiohttp-openmetrics
 pkgname=python-aiohttp-openmetrics
-pkgver=0.0.4
+pkgver=0.0.5
 pkgrel=1
 pkgdesc='OpenMetrics provider for aiohttp'
 arch=('any')
@@ -11,8 +11,8 @@
 depends=('python-aiohttp' 'python-prometheus_client')
 makedepends=('python-setuptools')
 
source=("https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz;)
-sha256sums=('4bc4edb292907fb68f5938e1d17c7bf59b4a1617c581ac199782a63c887a4f1d')
-b2sums=('3bc914d5d14dde8b562946e9b3212037bd48df2fba4ef0b0489e9ce4abf4b0d6f43107696b3ca93bb892b19d466202741fc4fd67b20be0b7a4e6f4c9b6f42a4e')
+sha256sums=('a770cc4a1b1bb0ca45aae71b0cc63fcd57aac322125882a20c5fcd09e457dff1')
+b2sums=('ca769cd18b84b929667500b60635ff7545f149033f9d6134d8f83273c7b003231c76941cc9eab1056a1c980d0ad096916c40b285e87e8f7f1ed80cdeb4140bd2')
 
 build() {
   cd $_name-$pkgver



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

2022-05-24 Thread Jan Steffens via arch-commits
Date: Tuesday, May 24, 2022 @ 20:51:52
  Author: heftig
Revision: 1210254

fix malformed patch

Modified:
  broadcom-wl-dkms/trunk/009-fix_mac_profile_discrepancy.patch
  broadcom-wl-dkms/trunk/PKGBUILD

---+
 009-fix_mac_profile_discrepancy.patch |   10 +-
 PKGBUILD  |2 +-
 2 files changed, 6 insertions(+), 6 deletions(-)

Modified: 009-fix_mac_profile_discrepancy.patch
===
--- 009-fix_mac_profile_discrepancy.patch   2022-05-24 20:44:12 UTC (rev 
1210253)
+++ 009-fix_mac_profile_discrepancy.patch   2022-05-24 20:51:52 UTC (rev 
1210254)
@@ -1,14 +1,14 @@
 --- a/src/wl/sys/wl_cfg80211_hybrid.c  2015-09-19 00:47:30.0 +0200
 +++ b/src/wl/sys/wl_cfg80211_hybrid.c  2018-11-14 14:06:03.313487995 +0100
-@@ -1444,11 +1444,6 @@
+@@ -1444,11 +1444,10 @@
s32 rate;
s32 err = 0;
  
-   if (memcmp(mac, wl->profile->bssid, ETHER_ADDR_LEN)) {
-   WL_ERR(("Wrong Mac address, mac = %pM   profile =%pM\n", mac, 
wl->profile->bssid));
+   if (memcmp(mac, wl->profile->bssid, ETHER_ADDR_LEN)) {
+   WL_ERR(("Wrong Mac address, mac = %pM   profile =%pM\n", mac, 
wl->profile->bssid));
 -  return -ENOENT;
-   }
-
+   }
+ 
err = wl_dev_ioctl(dev, WLC_GET_RATE, , sizeof(rate));
if (err) {
WL_DBG(("Could not get rate (%d)\n", err));

Modified: PKGBUILD
===
--- PKGBUILD2022-05-24 20:44:12 UTC (rev 1210253)
+++ PKGBUILD2022-05-24 20:51:52 UTC (rev 1210254)
@@ -39,7 +39,7 @@
 
'28ef5e50fa11fc15b409f3b3ee42aaf329756354ba8b7923d1b27939a6b21bd64b72a4adfb2eeff3c48bb8c4c1bc4294e8fd7744b83768974bf5d0592e20c148'
 
'8954b0005b84be6028affd21c114efe1ed3ffa3a3f5653b86fb8ece1850adcd0675649ce7faa418afaf48eb0ac4c9f4c1c0f7e19a5d1371b491b4a6130f70360'
 
'091e1da266ebaa0d429663facf3e81c849fe900c446e1c270ba23b65c15a99efeb1ae6c20905dfcc21b5f4bc3f91b32eb3b7bc9841f2a23508c71312403af774'
-
'bf06e3046cf47debaa508ed11d3f8047424cd16ed7a044dc16a0dc94949ff280c2dc63683e69700a0930b6e0e66bb376b1e366c21a6076f8b56ddc8e06ba0794'
+
'7c8012fa51592a3fca6dfde7a7a9c6dd37eb6c406d3f8695927e32c9e714c3faa23295b116a6cd97ec0403b123747b9095883bd7e3abe6c1888c3c9a4630f9f4'
 
'21f7fc163ffcf6857f3a21a8519a42600fd6b3658d14b32191ef1142c817c10c8dc691a3bc39228927ac29d7b7ac5c3a62eb786853046bacb9cc74efb51b6cb0'
 
'c1f522f6554a7bfe0f7b789b042ada14316ecc87bc196c83bec95f684152f323a4c31f60ff26843e36338b8c7949bf36719a5c8afa439ff71f7c74dae4c755b6'
 
'978f7ce1e86bcfb8800faaa3b8b40c52e13bfbf13e5b439efe602aa7787c8e230d808519ae43afbe028275cdf01d7ed3cecbeea3e276cd1bd133037ae948f21c'



[arch-commits] Commit in bbswitch/trunk (0003-kernel-5.18.patch PKGBUILD)

2022-05-24 Thread Jan Steffens via arch-commits
Date: Tuesday, May 24, 2022 @ 20:44:12
  Author: heftig
Revision: 1210253

Add patch for Linux 5.18

Added:
  bbswitch/trunk/0003-kernel-5.18.patch
Modified:
  bbswitch/trunk/PKGBUILD

+
 0003-kernel-5.18.patch |   19 +++
 PKGBUILD   |6 --
 2 files changed, 23 insertions(+), 2 deletions(-)

Added: 0003-kernel-5.18.patch
===
--- 0003-kernel-5.18.patch  (rev 0)
+++ 0003-kernel-5.18.patch  2022-05-24 20:44:12 UTC (rev 1210253)
@@ -0,0 +1,19 @@
+diff -u -r bbswitch-0.8/bbswitch.c bbswitch-0.8-5.18/bbswitch.c
+--- bbswitch-0.8/bbswitch.c2022-05-24 20:26:22.184553495 +
 bbswitch-0.8-5.18/bbswitch.c   2022-05-24 20:29:00.797008130 +
+@@ -264,10 +264,15 @@
+ pci_disable_device(dis_dev);
+ do {
+ struct acpi_device *ad = NULL;
++#if LINUX_VERSION_CODE >= KERNEL_VERSION(5, 18, 0)
++ad = acpi_fetch_acpi_dev(dis_handle);
++if (!ad) {
++#else
+ int r;
+ 
+ r = acpi_bus_get_device(dis_handle, );
+ if (r || !ad) {
++#endif
+ pr_warn("Cannot get ACPI device for PCI device\n");
+ break;
+ }

Modified: PKGBUILD
===
--- PKGBUILD2022-05-24 20:37:41 UTC (rev 1210252)
+++ PKGBUILD2022-05-24 20:44:12 UTC (rev 1210253)
@@ -12,15 +12,17 @@
 license=('GPL')
 makedepends=('linux-headers')
 
source=("${pkgbase}-${pkgver}.tar.gz::https://github.com/Bumblebee-Project/bbswitch/archive/v${pkgver}.tar.gz;
-0001-proc_ops-struct.patch 0002-kernel-5.7.patch)
+0001-proc_ops-struct.patch 0002-kernel-5.7.patch 
0003-kernel-5.18.patch)
 
sha512sums=('11ab163931feb6c0e202d04c4552b848e999fedea9990390c26b28abdb4a69081ccfb5a22d1e390cc274f1c0cfc9adedc719c5fece14738b17aaa93e28865b7c'
 
'993a2895c37ea213c105be668f794af54838d8015d6f561ee6bc7ce65583425515931c83c2487ab97c14454105f233f089e8bdc90ea5ed9576be767335f57ad1'
-
'2eeae463b2f83e7744ff1a769cb6186389e026fc78668e836525dfd16a56abfae01cfb150c9bb46af74ec42e87ebea91636118fe0c773e7eaa7ea671b25d2e04')
+
'2eeae463b2f83e7744ff1a769cb6186389e026fc78668e836525dfd16a56abfae01cfb150c9bb46af74ec42e87ebea91636118fe0c773e7eaa7ea671b25d2e04'
+
'c658e0e8de95c678d1a3ea5659344fff9fce14a93e0f8da3f21f79dc9c820feb3c540e1892ffc10a444c96a768d6d3fecd684315988da5f401f5c6ef6f37be79')
 
 prepare() {
   cd ${pkgbase}-${pkgver}
   patch -Np1 < ../0001-proc_ops-struct.patch
   patch -Np1 < ../0002-kernel-5.7.patch
+  patch -Np1 < ../0003-kernel-5.18.patch
 }
 
 build() {



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

2022-05-24 Thread Anatol Pomozov via arch-commits
Date: Tuesday, May 24, 2022 @ 20:37:41
  Author: anatolik
Revision: 1210252

archrelease: copy trunk to community-x86_64

Added:
  avr-binutils/repos/community-x86_64/PKGBUILD
(from rev 1210251, avr-binutils/trunk/PKGBUILD)
  avr-binutils/repos/community-x86_64/avr-size.patch
(from rev 1210251, avr-binutils/trunk/avr-size.patch)
Deleted:
  avr-binutils/repos/community-x86_64/PKGBUILD
  avr-binutils/repos/community-x86_64/avr-size.patch

+
 PKGBUILD   |  170 +-
 avr-size.patch |  870 +++
 2 files changed, 520 insertions(+), 520 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-24 20:37:17 UTC (rev 1210251)
+++ PKGBUILD2022-05-24 20:37:41 UTC (rev 1210252)
@@ -1,85 +0,0 @@
-# Maintainer: schuay 
-# Contributor: Brad Fanella 
-# Contributor: Corrado Primier 
-# Contributor: danst0 
-
-# Build order: avr-binutils -> avr-gcc -> avr-libc
-
-pkgname=avr-binutils
-pkgver=2.38
-pkgrel=1
-pkgdesc="A set of programs to assemble and manipulate binary and object files 
for the AVR architecture"
-arch=('x86_64')
-url="https://www.gnu.org/software/binutils/;
-license=('GPL')
-depends=('glibc' 'zlib')
-options=('!distcc' '!ccache')
-source=(https://ftp.gnu.org/gnu/binutils/binutils-${pkgver}.tar.bz2{,.sig}
-avr-size.patch)
-sha1sums=('50e0acc9ffe920e90b699e8e5db0aa9449c22cb4'
-  'SKIP'
-  'bb820f761fbbe7379ddf8e75235866c44591c899')
-validpgpkeys=('EAF1C276A747E9ED86210CBAC3126D3B4AE55E93'  # Tristan Gingold 

-  '3A24BC1E8FB409FA9F14371813FCEF89DD9E3C4F') # Nick Clifton 
(Chief Binutils Maintainer) 
-
-_builddir=binutils-build
-
-prepare() {
-cd "${srcdir}"/binutils-${pkgver}
-
-# See https://bugs.archlinux.org/task/32504
-# And https://bugs.archlinux.org/task/40986
-patch -p1 < "${srcdir}"/avr-size.patch
-
-# https://bugs.archlinux.org/task/34629
-sed -i "/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/" libiberty/configure
-
-rm -rf "${srcdir}"/${_builddir}
-mkdir "${srcdir}"/${_builddir}
-}
-
-build() {
-cd "${srcdir}"/binutils-${pkgver}
-
-config_guess=$(./config.guess)
-
-cd "${srcdir}"/${_builddir}
-
-"${srcdir}"/binutils-${pkgver}/configure \
---prefix=/usr \
---with-lib-path=/usr/lib:/usr/local/lib \
---with-bugurl=https://bugs.archlinux.org/ \
---enable-ld=default \
---enable-gold \
---enable-plugins \
---enable-threads \
---with-pic \
---disable-werror \
---disable-multilib \
---build=${config_guess} \
---target=avr \
-$CONFIGFLAG
-
-# This checks the host environment and makes sure all the necessary tools 
are available to compile Binutils.
-make configure-host
-
-make tooldir=/usr
-}
-
-package() {
-cd "${srcdir}"/${_builddir}
-
-make prefix="${pkgdir}"/usr tooldir="${pkgdir}"/usr install
-
-for bin in ar as nm objcopy objdump ranlib strip readelf; do
-rm "${pkgdir}"/usr/bin/${bin}
-done
-
-rm "$pkgdir"/usr/lib/bfd-plugins/libdep.so
-
-for info in as bfd binutils gprof ld; do
-mv "${pkgdir}"/usr/share/info/${info}.info 
"${pkgdir}"/usr/share/info/avr-${info}.info
-done
-
-rm -r "${pkgdir}"/usr/share/locale
-}

Copied: avr-binutils/repos/community-x86_64/PKGBUILD (from rev 1210251, 
avr-binutils/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-24 20:37:41 UTC (rev 1210252)
@@ -0,0 +1,85 @@
+# Maintainer: schuay 
+# Contributor: Brad Fanella 
+# Contributor: Corrado Primier 
+# Contributor: danst0 
+
+# Build order: avr-binutils -> avr-gcc -> avr-libc
+
+pkgname=avr-binutils
+pkgver=2.38
+pkgrel=2
+pkgdesc="A set of programs to assemble and manipulate binary and object files 
for the AVR architecture"
+arch=('x86_64')
+url="https://www.gnu.org/software/binutils/;
+license=('GPL')
+depends=('glibc' 'zlib')
+options=('!distcc' '!ccache')
+source=(https://ftp.gnu.org/gnu/binutils/binutils-${pkgver}.tar.bz2{,.sig}
+avr-size.patch)
+sha1sums=('50e0acc9ffe920e90b699e8e5db0aa9449c22cb4'
+  'SKIP'
+  'bb820f761fbbe7379ddf8e75235866c44591c899')
+validpgpkeys=('EAF1C276A747E9ED86210CBAC3126D3B4AE55E93'  # Tristan Gingold 

+  '3A24BC1E8FB409FA9F14371813FCEF89DD9E3C4F') # Nick Clifton 
(Chief Binutils Maintainer) 
+
+_builddir=binutils-build
+
+prepare() {
+cd "${srcdir}"/binutils-${pkgver}
+
+# See https://bugs.archlinux.org/task/32504
+# And https://bugs.archlinux.org/task/40986
+patch -p1 < "${srcdir}"/avr-size.patch
+
+# https://bugs.archlinux.org/task/34629
+sed -i "/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/" libiberty/configure
+
+rm -rf "${srcdir}"/${_builddir}
+mkdir "${srcdir}"/${_builddir}
+}
+
+build() {
+cd "${srcdir}"/binutils-${pkgver}
+

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

2022-05-24 Thread Anatol Pomozov via arch-commits
Date: Tuesday, May 24, 2022 @ 20:37:17
  Author: anatolik
Revision: 1210251

upgpkg: avr-binutils 2.38-2

Modified:
  avr-binutils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-24 20:32:30 UTC (rev 1210250)
+++ PKGBUILD2022-05-24 20:37:17 UTC (rev 1210251)
@@ -7,7 +7,7 @@
 
 pkgname=avr-binutils
 pkgver=2.38
-pkgrel=1
+pkgrel=2
 pkgdesc="A set of programs to assemble and manipulate binary and object files 
for the AVR architecture"
 arch=('x86_64')
 url="https://www.gnu.org/software/binutils/;
@@ -77,7 +77,7 @@
 
 rm "$pkgdir"/usr/lib/bfd-plugins/libdep.so
 
-for info in as bfd binutils gprof ld; do
+for info in as bfd binutils gprof ld ctf-spec; do
 mv "${pkgdir}"/usr/share/info/${info}.info 
"${pkgdir}"/usr/share/info/avr-${info}.info
 done
 



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

2022-05-24 Thread Caleb Maclennan via arch-commits
Date: Tuesday, May 24, 2022 @ 20:32:30
  Author: alerque
Revision: 1210250

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-24 20:32:21 UTC (rev 1210249)
+++ PKGBUILD2022-05-24 20:32:30 UTC (rev 1210250)
@@ -1,36 +0,0 @@
-# Maintainer: Felix Yan 
-# Maintainer: Caleb Maclennan 
-# Contributor: Eli Schwartz 
-
-_pkgname=tomlkit
-pkgname=python-tomlkit
-pkgver=0.10.2
-pkgrel=1
-pkgdesc="Style-preserving TOML library for Python"
-url="https://github.com/sdispater/tomlkit;
-license=('MIT')
-arch=('any')
-depends=('python')
-makedepends=('python-build'
- 'python-installer'
- 'python-poetry')
-checkdepends=('python-pytest'
-  'python-yaml')
-source=("https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/${_pkgname}/${_pkgname}-${pkgver}.tar.gz;)
-sha512sums=('e1d5353659f9a0f4ba2f6a0b82980f0b50b012e3b299c2c6b12aa8a63fc4772649bdc2b5a755c21acc46fe2d226241918fb09a4202cca596b6e9633be95e79d8')
-
-build() {
-  cd tomlkit-$pkgver
-  python -m build -wn
-}
-
-check() {
-  cd tomlkit-$pkgver
-  pytest
-}
-
-package() {
-  cd tomlkit-$pkgver
-  python -m installer -d "$pkgdir" dist/*.whl
-  install -Dm0644 -t "$pkgdir/usr/share/licenses/$pkgname/" LICENSE
-}

Copied: python-tomlkit/repos/community-any/PKGBUILD (from rev 1210249, 
python-tomlkit/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-24 20:32:30 UTC (rev 1210250)
@@ -0,0 +1,36 @@
+# Maintainer: Felix Yan 
+# Maintainer: Caleb Maclennan 
+# Contributor: Eli Schwartz 
+
+_pkgname=tomlkit
+pkgname=python-tomlkit
+pkgver=0.11.0
+pkgrel=1
+pkgdesc="Style-preserving TOML library for Python"
+url="https://github.com/sdispater/tomlkit;
+license=('MIT')
+arch=('any')
+depends=('python')
+makedepends=('python-build'
+ 'python-installer'
+ 'python-poetry')
+checkdepends=('python-pytest'
+  'python-yaml')
+source=("https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/${_pkgname}/${_pkgname}-${pkgver}.tar.gz;)
+sha512sums=('2e89748140cfdae217ac3ac999f0b718414d28218d61fb5219adc503ede2ea1f4003be9ef4453f189b0ee86df463c59520244b9fd26553bd4d8047674cba61c9')
+
+build() {
+  cd tomlkit-$pkgver
+  python -m build -wn
+}
+
+check() {
+  cd tomlkit-$pkgver
+  pytest
+}
+
+package() {
+  cd tomlkit-$pkgver
+  python -m installer -d "$pkgdir" dist/*.whl
+  install -Dm0644 -t "$pkgdir/usr/share/licenses/$pkgname/" LICENSE
+}



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

2022-05-24 Thread Caleb Maclennan via arch-commits
Date: Tuesday, May 24, 2022 @ 20:32:21
  Author: alerque
Revision: 1210249

upgpkg: python-tomlkit 0.11.0-1

Modified:
  python-tomlkit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-24 20:32:19 UTC (rev 1210248)
+++ PKGBUILD2022-05-24 20:32:21 UTC (rev 1210249)
@@ -4,7 +4,7 @@
 
 _pkgname=tomlkit
 pkgname=python-tomlkit
-pkgver=0.10.2
+pkgver=0.11.0
 pkgrel=1
 pkgdesc="Style-preserving TOML library for Python"
 url="https://github.com/sdispater/tomlkit;
@@ -17,7 +17,7 @@
 checkdepends=('python-pytest'
   'python-yaml')
 
source=("https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/${_pkgname}/${_pkgname}-${pkgver}.tar.gz;)
-sha512sums=('e1d5353659f9a0f4ba2f6a0b82980f0b50b012e3b299c2c6b12aa8a63fc4772649bdc2b5a755c21acc46fe2d226241918fb09a4202cca596b6e9633be95e79d8')
+sha512sums=('2e89748140cfdae217ac3ac999f0b718414d28218d61fb5219adc503ede2ea1f4003be9ef4453f189b0ee86df463c59520244b9fd26553bd4d8047674cba61c9')
 
 build() {
   cd tomlkit-$pkgver



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

2022-05-24 Thread Caleb Maclennan via arch-commits
Date: Tuesday, May 24, 2022 @ 20:32:19
  Author: alerque
Revision: 1210248

archrelease: copy trunk to community-x86_64

Added:
  sigil/repos/community-x86_64/PKGBUILD
(from rev 1210247, sigil/trunk/PKGBUILD)
Deleted:
  sigil/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-24 20:32:11 UTC (rev 1210247)
+++ PKGBUILD2022-05-24 20:32:19 UTC (rev 1210248)
@@ -1,73 +0,0 @@
-# Maintainer: Caleb Maclennan 
-# Contributor: Alad Wenter 
-# Contributor: Eli Schwartz 
-# Contributor: Giovanni Scafora 
-# Contributor: Larry Hajali 
-
-pkgname=sigil
-pkgver=1.9.2
-pkgrel=1
-pkgdesc='multi-platform EPUB2/EPUB3 ebook editor'
-arch=('x86_64')
-url=https://sigil-ebook.com
-_url=https://github.com/Sigil-Ebook/Sigil
-license=(GPL3)
-depends=(hicolor-icon-theme
- hunspell
- mathjax2
- minizip
- python-css-parser
- python-dulwich
- python-lxml
- qt5-svg
- qt5-webengine)
-makedepends=(cmake
- qt5-tools)
-optdepends=('hunspell-en_US: for English dictionary support'
-'hyphen-en: for English hyphenation support in plugins'
-'pageedit: external editor to replace BookView'
-'python-html5lib: recommended for plugins'
-'python-chardet: recommended for plugins'
-'python-cssselect: recommended for plugins'
-'python-pillow: recommended for plugins'
-'python-regex: recommended for plugins'
-'python-pyqt5: recommended for plugins'
-'python-pyqt5-webengine: recommended for plugins'
-'tk: recommended for plugins')
-_archive="${pkgname^}-$pkgver"
-source=("$_url/archive/$pkgver/$_archive.tar.gz"
-"$_url/releases/download/${pkgver}/$_archive.tar.gz.sig")
-sha256sums=('d1a16f33fe93cda88442c798e0c53f700fa8e2ef792dd78566392d7ad11d997f'
-'SKIP')
-b2sums=('410b2cf1772158aa9b0d499ba54bb7fc176c479acf7e9f48c5113a4e253becab35b6b4aeaa83da249d7c36f824cb1ee9b7a2e95e29c023b37afed9e864f94134'
-'SKIP')
-validpgpkeys=('B5A56206AB0FBC1A24EFAB8AA166D29A8FCDAC63') # Doug Massay 

-
-prepare() {
-   cd "$_archive"
-   mkdir -p build
-}
-
-build() {
-   cd "$_archive/build"
-   cmake -G "Unix Makefiles" \
-   -DUSE_SYSTEM_LIBS=1 \
-   -DSYSTEM_LIBS_REQUIRED=1 \
-   -DINSTALL_BUNDLED_DICTS=0 \
-   -DINSTALL_HICOLOR_ICONS=1 \
-   -DDISABLE_UPDATE_CHECK=1 \
-   -DMATHJAX_DIR=/usr/share/mathjax2 \
-   -DCMAKE_INSTALL_PREFIX=/usr \
-   -DCMAKE_INSTALL_LIBDIR=lib \
-   -DCMAKE_C_FLAGS:STRING="$CFLAGS" \
-   -DCMAKE_CXX_FLAGS:STRING="$CXXFLAGS" \
-   -DCMAKE_SKIP_RPATH=ON ..
-   make
-}
-
-package() {
-   cd "$_archive/build"
-   make install DESTDIR="$pkgdir"
-   python -m compileall 
"$pkgdir/usr/share/sigil/"{plugin_launchers/python/,python3lib}
-   python -O -m compileall 
"$pkgdir/usr/share/sigil/"{plugin_launchers/python/,python3lib}
-}

Copied: sigil/repos/community-x86_64/PKGBUILD (from rev 1210247, 
sigil/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-24 20:32:19 UTC (rev 1210248)
@@ -0,0 +1,73 @@
+# Maintainer: Caleb Maclennan 
+# Contributor: Alad Wenter 
+# Contributor: Eli Schwartz 
+# Contributor: Giovanni Scafora 
+# Contributor: Larry Hajali 
+
+pkgname=sigil
+pkgver=1.9.10
+pkgrel=1
+pkgdesc='multi-platform EPUB2/EPUB3 ebook editor'
+arch=('x86_64')
+url=https://sigil-ebook.com
+_url=https://github.com/Sigil-Ebook/Sigil
+license=(GPL3)
+depends=(hicolor-icon-theme
+ hunspell
+ mathjax2
+ minizip
+ python-css-parser
+ python-dulwich
+ python-lxml
+ qt5-svg
+ qt5-webengine)
+makedepends=(cmake
+ qt5-tools)
+optdepends=('hunspell-en_US: for English dictionary support'
+'hyphen-en: for English hyphenation support in plugins'
+'pageedit: external editor to replace BookView'
+'python-html5lib: recommended for plugins'
+'python-chardet: recommended for plugins'
+'python-cssselect: recommended for plugins'
+'python-pillow: recommended for plugins'
+'python-regex: recommended for plugins'
+'python-pyqt5: recommended for plugins'
+'python-pyqt5-webengine: recommended for plugins'
+'tk: recommended for plugins')
+_archive="${pkgname^}-$pkgver"
+source=("$_url/archive/$pkgver/$_archive.tar.gz"
+"$_url/releases/download/${pkgver}/$_archive.tar.gz.sig")

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

2022-05-24 Thread Caleb Maclennan via arch-commits
Date: Tuesday, May 24, 2022 @ 20:32:11
  Author: alerque
Revision: 1210247

upgpkg: sigil 1.9.10-1

Modified:
  sigil/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-24 20:30:42 UTC (rev 1210246)
+++ PKGBUILD2022-05-24 20:32:11 UTC (rev 1210247)
@@ -5,7 +5,7 @@
 # Contributor: Larry Hajali 
 
 pkgname=sigil
-pkgver=1.9.2
+pkgver=1.9.10
 pkgrel=1
 pkgdesc='multi-platform EPUB2/EPUB3 ebook editor'
 arch=('x86_64')
@@ -37,9 +37,9 @@
 _archive="${pkgname^}-$pkgver"
 source=("$_url/archive/$pkgver/$_archive.tar.gz"
 "$_url/releases/download/${pkgver}/$_archive.tar.gz.sig")
-sha256sums=('d1a16f33fe93cda88442c798e0c53f700fa8e2ef792dd78566392d7ad11d997f'
+sha256sums=('35b6051d966c2848a8a031ebe691449229b3c95a56145647dc71857acc18fad5'
 'SKIP')
-b2sums=('410b2cf1772158aa9b0d499ba54bb7fc176c479acf7e9f48c5113a4e253becab35b6b4aeaa83da249d7c36f824cb1ee9b7a2e95e29c023b37afed9e864f94134'
+b2sums=('ef8d6b5552689f0501971563b429efa050456826ee85dbf524ecb1c1931506de95909e3443bc259353c012b3e4a2b6ce3299f20af8e65d07324818a8f208c2a8'
 'SKIP')
 validpgpkeys=('B5A56206AB0FBC1A24EFAB8AA166D29A8FCDAC63') # Doug Massay 

 



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

2022-05-24 Thread Massimiliano Torromeo via arch-commits
Date: Tuesday, May 24, 2022 @ 20:30:42
  Author: mtorromeo
Revision: 1210246

archrelease: copy trunk to community-x86_64

Added:
  cockpit-podman/repos/community-x86_64/PKGBUILD
(from rev 1210245, cockpit-podman/trunk/PKGBUILD)
Deleted:
  cockpit-podman/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-24 20:30:36 UTC (rev 1210245)
+++ PKGBUILD2022-05-24 20:30:42 UTC (rev 1210246)
@@ -1,17 +0,0 @@
-# Maintainer: Massimiliano Torromeo 
-
-pkgname=cockpit-podman
-pkgver=47
-pkgrel=1
-pkgdesc='Cockpit UI for podman containers'
-arch=('x86_64')
-url='https://github.com/cockpit-project/cockpit-podman'
-license=(LGPL)
-depends=(cockpit podman)
-source=("https://github.com/cockpit-project/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz;)
-sha256sums=('6e7a311c1f8182c1d75a96c1d118b1d28e10a647890065c44e3e53a4b95c30f2')
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-}

Copied: cockpit-podman/repos/community-x86_64/PKGBUILD (from rev 1210245, 
cockpit-podman/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-24 20:30:42 UTC (rev 1210246)
@@ -0,0 +1,17 @@
+# Maintainer: Massimiliano Torromeo 
+
+pkgname=cockpit-podman
+pkgver=48
+pkgrel=1
+pkgdesc='Cockpit UI for podman containers'
+arch=('x86_64')
+url='https://github.com/cockpit-project/cockpit-podman'
+license=(LGPL)
+depends=(cockpit podman)
+source=("https://github.com/cockpit-project/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz;)
+sha256sums=('61ec414c5943871dddb2432e74ff361986ed3f0c5b1d07d0abbde62529148a19')
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}



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

2022-05-24 Thread Massimiliano Torromeo via arch-commits
Date: Tuesday, May 24, 2022 @ 20:30:36
  Author: mtorromeo
Revision: 1210245

upgpkg: cockpit-podman 48-1

Modified:
  cockpit-podman/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-24 20:30:24 UTC (rev 1210244)
+++ PKGBUILD2022-05-24 20:30:36 UTC (rev 1210245)
@@ -1,7 +1,7 @@
 # Maintainer: Massimiliano Torromeo 
 
 pkgname=cockpit-podman
-pkgver=47
+pkgver=48
 pkgrel=1
 pkgdesc='Cockpit UI for podman containers'
 arch=('x86_64')
@@ -9,7 +9,7 @@
 license=(LGPL)
 depends=(cockpit podman)
 
source=("https://github.com/cockpit-project/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz;)
-sha256sums=('6e7a311c1f8182c1d75a96c1d118b1d28e10a647890065c44e3e53a4b95c30f2')
+sha256sums=('61ec414c5943871dddb2432e74ff361986ed3f0c5b1d07d0abbde62529148a19')
 
 package() {
   cd $pkgname



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

2022-05-24 Thread Massimiliano Torromeo via arch-commits
Date: Tuesday, May 24, 2022 @ 20:30:24
  Author: mtorromeo
Revision: 1210244

archrelease: copy trunk to community-x86_64

Added:
  cockpit-machines/repos/community-x86_64/PKGBUILD
(from rev 1210243, cockpit-machines/trunk/PKGBUILD)
Deleted:
  cockpit-machines/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-24 20:30:18 UTC (rev 1210243)
+++ PKGBUILD2022-05-24 20:30:24 UTC (rev 1210244)
@@ -1,18 +0,0 @@
-# Maintainer: Massimiliano Torromeo 
-
-pkgname=cockpit-machines
-pkgver=268
-pkgrel=1
-pkgdesc='Cockpit UI for virtual machines'
-arch=('x86_64')
-url='https://github.com/cockpit-project/cockpit-machines'
-license=(LGPL)
-depends=(cockpit libvirt-dbus)
-optdepends=("virt-install: create new virtual machines")
-source=("https://github.com/cockpit-project/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz;)
-sha256sums=('205a2ca25ddd0b52f103143ea29f0f2d7c28d04a89da38668c1500f32a75e252')
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-}

Copied: cockpit-machines/repos/community-x86_64/PKGBUILD (from rev 1210243, 
cockpit-machines/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-24 20:30:24 UTC (rev 1210244)
@@ -0,0 +1,18 @@
+# Maintainer: Massimiliano Torromeo 
+
+pkgname=cockpit-machines
+pkgver=269
+pkgrel=1
+pkgdesc='Cockpit UI for virtual machines'
+arch=('x86_64')
+url='https://github.com/cockpit-project/cockpit-machines'
+license=(LGPL)
+depends=(cockpit libvirt-dbus)
+optdepends=("virt-install: create new virtual machines")
+source=("https://github.com/cockpit-project/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz;)
+sha256sums=('11b4789fce820e616ea6a24fb07c3f84517038f0bc7db862528b3b44db6584cf')
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}



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

2022-05-24 Thread Massimiliano Torromeo via arch-commits
Date: Tuesday, May 24, 2022 @ 20:30:18
  Author: mtorromeo
Revision: 1210243

upgpkg: cockpit-machines 269-1

Modified:
  cockpit-machines/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-24 20:29:36 UTC (rev 1210242)
+++ PKGBUILD2022-05-24 20:30:18 UTC (rev 1210243)
@@ -1,7 +1,7 @@
 # Maintainer: Massimiliano Torromeo 
 
 pkgname=cockpit-machines
-pkgver=268
+pkgver=269
 pkgrel=1
 pkgdesc='Cockpit UI for virtual machines'
 arch=('x86_64')
@@ -10,7 +10,7 @@
 depends=(cockpit libvirt-dbus)
 optdepends=("virt-install: create new virtual machines")
 
source=("https://github.com/cockpit-project/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz;)
-sha256sums=('205a2ca25ddd0b52f103143ea29f0f2d7c28d04a89da38668c1500f32a75e252')
+sha256sums=('11b4789fce820e616ea6a24fb07c3f84517038f0bc7db862528b3b44db6584cf')
 
 package() {
   cd $pkgname



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

2022-05-24 Thread Massimiliano Torromeo via arch-commits
Date: Tuesday, May 24, 2022 @ 20:29:36
  Author: mtorromeo
Revision: 1210242

archrelease: copy trunk to community-x86_64

Added:
  cockpit/repos/community-x86_64/PKGBUILD
(from rev 1210241, cockpit/trunk/PKGBUILD)
  cockpit/repos/community-x86_64/cockpit-ws.sysuser.conf
(from rev 1210241, cockpit/trunk/cockpit-ws.sysuser.conf)
  cockpit/repos/community-x86_64/cockpit-wsinstance.sysuser.conf
(from rev 1210241, cockpit/trunk/cockpit-wsinstance.sysuser.conf)
  cockpit/repos/community-x86_64/cockpit.pam
(from rev 1210241, cockpit/trunk/cockpit.pam)
Deleted:
  cockpit/repos/community-x86_64/PKGBUILD
  cockpit/repos/community-x86_64/cockpit-ws.sysuser.conf
  cockpit/repos/community-x86_64/cockpit-wsinstance.sysuser.conf
  cockpit/repos/community-x86_64/cockpit.pam

-+
 PKGBUILD|  244 +++---
 cockpit-ws.sysuser.conf |2 
 cockpit-wsinstance.sysuser.conf |2 
 cockpit.pam |   10 -
 4 files changed, 129 insertions(+), 129 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-24 20:29:27 UTC (rev 1210241)
+++ PKGBUILD2022-05-24 20:29:36 UTC (rev 1210242)
@@ -1,122 +0,0 @@
-# Maintainer: Massimiliano Torromeo 
-# Contributor: Iwan Timmer 
-# Contributor: Mark Constable 
-# Contributor: Anatol Pomozov 
-
-pkgbase=cockpit
-pkgname=(cockpit cockpit-pcp)
-pkgver=269
-pkgrel=1
-pkgdesc='A systemd web based user interface for Linux servers'
-arch=('x86_64')
-url='https://cockpit-project.org/'
-license=(LGPL)
-makedepends=(krb5 libssh accountsservice perl-json perl-locale-po json-glib 
glib-networking
- git intltool gtk-doc gobject-introspection networkmanager 
libgsystem xmlto npm pcp
- gendesk)
-options=(debug)
-source=("https://github.com/cockpit-project/cockpit/releases/download/$pkgver/cockpit-$pkgver.tar.xz;
-"cockpit.pam"
-"cockpit-ws.sysuser.conf"
-"cockpit-wsinstance.sysuser.conf")
-sha256sums=('f3fa229cd9d7df5a567d163e26f3345c72f2422dc647b72b75d8afc384b9b4b8'
-'a979e236681c6a06906937cf0f012e976347af5d6d7e7ae04a11acb01cc2689d'
-'1ad9dad75858264778bd94799b60c651f7cc1c7f7fa1c54622174303e639287a'
-'46ee8ecad7bc97ba588ab9471dde76e41c00daf40658902425626c3a1938b438')
-
-prepare() {
-  cd cockpit-$pkgver
-  # disable buggy package-lock check
-  sed -r '/^cmd_make_package_lock_json\b/ a exit 0' -i tools/node-modules
-}
-
-build() {
-  cd cockpit-$pkgver
-  ./configure \
---prefix=/usr \
---sbindir=/usr/bin \
---libexecdir=/usr/lib/$pkgname/ \
---sysconfdir=/etc \
---localstatedir=/var \
---disable-dependency-tracking \
---disable-silent-rules \
---with-cockpit-user=cockpit-ws \
---with-cockpit-ws-instance-user=cockpit-wsinstance
-  make all
-
-  gendesk -n \
---name 'Cockpit Client' \
---comment 'Connect via ssh to servers running Cockpit' \
---exec '/usr/lib/cockpit/cockpit-desktop /' \
---categories 'Network;RemoteAccess' \
---custom 'DBusActivatable=true' \
---icon cockpit-client \
---pkgname cockpit
-}
-
-package_cockpit() {
-  depends=(krb5 libssh accountsservice perl-json perl-locale-po json-glib 
glib-networking
-   libpwquality openssl kexec-tools)
-  backup=('etc/pam.d/cockpit')
-  optdepends=("cockpit-pcp: reading performance metrics"
-  "cockpit-podman: user interface for managing podman containers"
-  "cockpit-machines: user interface for managing virtual machines"
-  "polkit: elevate privileges"
-  "sudo: elevate privileges"
-  "udisks2: manage hard disks"
-  "clevis: manage disk encryption"
-  "networkmanager: manage network connections"
-  "packagekit: manage packages"
-  "sssd: authentication"
-  "sscg: generate self-signed certificate")
-
-  cd cockpit-$pkgver
-  make DESTDIR="$pkgdir" install
-  rm -rf "$pkgdir"/usr/{src,lib/firewalld}
-  install -Dm644 "$srcdir"/cockpit.pam "$pkgdir"/etc/pam.d/cockpit
-  install -Dm644 "$srcdir"/cockpit-ws.sysuser.conf 
"$pkgdir"/usr/lib/sysusers.d/cockpit-ws.conf
-  install -Dm644 "$srcdir"/cockpit-wsinstance.sysuser.conf 
"$pkgdir"/usr/lib/sysusers.d/cockpit-wsinstance.conf
-
-  echo "z /usr/lib/cockpit/cockpit-session - - cockpit-wsinstance -" >> 
"$pkgdir"/usr/lib/tmpfiles.d/cockpit-tempfiles.conf
-
-  install -Dm644 cockpit.desktop 
"$pkgdir"/usr/share/applications/org.cockpit_project.CockpitClient.desktop
-
-  # remove unused plugins
-  rm -rf "$pkgdir"/usr/share/cockpit/{selinux,playground,sosreport} \
- 
"$pkgdir"/usr/share/metainfo/org.cockpit-project.cockpit-{selinux,sosreport}.metainfo.xml
-
-  # remove plugins packaged separately
-  rm -rf "$pkgdir"/usr/share/cockpit/pcp \
- "$pkgdir"/usr/lib/cockpit/cockpit-pcp \
- "$pkgdir"/var/lib/pcp
-}
-

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

2022-05-24 Thread Massimiliano Torromeo via arch-commits
Date: Tuesday, May 24, 2022 @ 20:29:27
  Author: mtorromeo
Revision: 1210241

upgpkg: cockpit 270-1

Modified:
  cockpit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-24 20:28:34 UTC (rev 1210240)
+++ PKGBUILD2022-05-24 20:29:27 UTC (rev 1210241)
@@ -5,7 +5,7 @@
 
 pkgbase=cockpit
 pkgname=(cockpit cockpit-pcp)
-pkgver=269
+pkgver=270
 pkgrel=1
 pkgdesc='A systemd web based user interface for Linux servers'
 arch=('x86_64')
@@ -19,7 +19,7 @@
 "cockpit.pam"
 "cockpit-ws.sysuser.conf"
 "cockpit-wsinstance.sysuser.conf")
-sha256sums=('f3fa229cd9d7df5a567d163e26f3345c72f2422dc647b72b75d8afc384b9b4b8'
+sha256sums=('b52bb3740fc998fbc3310053a5d6ac6f3ef29ccc317498b275c51a972ea5f5d7'
 'a979e236681c6a06906937cf0f012e976347af5d6d7e7ae04a11acb01cc2689d'
 '1ad9dad75858264778bd94799b60c651f7cc1c7f7fa1c54622174303e639287a'
 '46ee8ecad7bc97ba588ab9471dde76e41c00daf40658902425626c3a1938b438')



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

2022-05-24 Thread Anatol Pomozov via arch-commits
Date: Tuesday, May 24, 2022 @ 20:28:34
  Author: anatolik
Revision: 1210240

archrelease: copy trunk to community-x86_64

Added:
  avr-binutils/repos/community-x86_64/PKGBUILD
(from rev 1210239, avr-binutils/trunk/PKGBUILD)
  avr-binutils/repos/community-x86_64/avr-size.patch
(from rev 1210239, avr-binutils/trunk/avr-size.patch)
Deleted:
  avr-binutils/repos/community-x86_64/PKGBUILD
  avr-binutils/repos/community-x86_64/avr-size.patch

+
 PKGBUILD   |  170 +-
 avr-size.patch |  870 +++
 2 files changed, 520 insertions(+), 520 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-24 20:28:11 UTC (rev 1210239)
+++ PKGBUILD2022-05-24 20:28:34 UTC (rev 1210240)
@@ -1,85 +0,0 @@
-# Maintainer: schuay 
-# Contributor: Brad Fanella 
-# Contributor: Corrado Primier 
-# Contributor: danst0 
-
-# Build order: avr-binutils -> avr-gcc -> avr-libc
-
-pkgname=avr-binutils
-pkgver=2.37
-pkgrel=1
-pkgdesc="A set of programs to assemble and manipulate binary and object files 
for the AVR architecture"
-arch=('x86_64')
-url="https://www.gnu.org/software/binutils/;
-license=('GPL')
-depends=('glibc' 'zlib')
-options=('!distcc' '!ccache')
-source=(https://ftp.gnu.org/gnu/binutils/binutils-${pkgver}.tar.bz2{,.sig}
-avr-size.patch)
-sha1sums=('4ea805f2e158903bfc1b07228f4ef26c0dbaf770'
-  'SKIP'
-  'bb820f761fbbe7379ddf8e75235866c44591c899')
-validpgpkeys=('EAF1C276A747E9ED86210CBAC3126D3B4AE55E93'  # Tristan Gingold 

-  '3A24BC1E8FB409FA9F14371813FCEF89DD9E3C4F') # Nick Clifton 
(Chief Binutils Maintainer) 
-
-_builddir=binutils-build
-
-prepare() {
-cd "${srcdir}"/binutils-${pkgver}
-
-# See https://bugs.archlinux.org/task/32504
-# And https://bugs.archlinux.org/task/40986
-patch -p1 < "${srcdir}"/avr-size.patch
-
-# https://bugs.archlinux.org/task/34629
-sed -i "/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/" libiberty/configure
-
-rm -rf "${srcdir}"/${_builddir}
-mkdir "${srcdir}"/${_builddir}
-}
-
-build() {
-cd "${srcdir}"/binutils-${pkgver}
-
-config_guess=$(./config.guess)
-
-cd "${srcdir}"/${_builddir}
-
-"${srcdir}"/binutils-${pkgver}/configure \
---prefix=/usr \
---with-lib-path=/usr/lib:/usr/local/lib \
---with-bugurl=https://bugs.archlinux.org/ \
---enable-ld=default \
---enable-gold \
---enable-plugins \
---enable-threads \
---with-pic \
---disable-werror \
---disable-multilib \
---build=${config_guess} \
---target=avr \
-$CONFIGFLAG
-
-# This checks the host environment and makes sure all the necessary tools 
are available to compile Binutils.
-make configure-host
-
-make tooldir=/usr
-}
-
-package() {
-cd "${srcdir}"/${_builddir}
-
-make prefix="${pkgdir}"/usr tooldir="${pkgdir}"/usr install
-
-for bin in ar as nm objcopy objdump ranlib strip readelf; do
-rm "${pkgdir}"/usr/bin/${bin}
-done
-
-rm "$pkgdir"/usr/lib/bfd-plugins/libdep.so
-
-for info in as bfd binutils gprof ld; do
-mv "${pkgdir}"/usr/share/info/${info}.info 
"${pkgdir}"/usr/share/info/avr-${info}.info
-done
-
-rm -r "${pkgdir}"/usr/share/locale
-}

Copied: avr-binutils/repos/community-x86_64/PKGBUILD (from rev 1210239, 
avr-binutils/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-24 20:28:34 UTC (rev 1210240)
@@ -0,0 +1,85 @@
+# Maintainer: schuay 
+# Contributor: Brad Fanella 
+# Contributor: Corrado Primier 
+# Contributor: danst0 
+
+# Build order: avr-binutils -> avr-gcc -> avr-libc
+
+pkgname=avr-binutils
+pkgver=2.38
+pkgrel=1
+pkgdesc="A set of programs to assemble and manipulate binary and object files 
for the AVR architecture"
+arch=('x86_64')
+url="https://www.gnu.org/software/binutils/;
+license=('GPL')
+depends=('glibc' 'zlib')
+options=('!distcc' '!ccache')
+source=(https://ftp.gnu.org/gnu/binutils/binutils-${pkgver}.tar.bz2{,.sig}
+avr-size.patch)
+sha1sums=('50e0acc9ffe920e90b699e8e5db0aa9449c22cb4'
+  'SKIP'
+  'bb820f761fbbe7379ddf8e75235866c44591c899')
+validpgpkeys=('EAF1C276A747E9ED86210CBAC3126D3B4AE55E93'  # Tristan Gingold 

+  '3A24BC1E8FB409FA9F14371813FCEF89DD9E3C4F') # Nick Clifton 
(Chief Binutils Maintainer) 
+
+_builddir=binutils-build
+
+prepare() {
+cd "${srcdir}"/binutils-${pkgver}
+
+# See https://bugs.archlinux.org/task/32504
+# And https://bugs.archlinux.org/task/40986
+patch -p1 < "${srcdir}"/avr-size.patch
+
+# https://bugs.archlinux.org/task/34629
+sed -i "/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/" libiberty/configure
+
+rm -rf "${srcdir}"/${_builddir}
+mkdir "${srcdir}"/${_builddir}
+}
+
+build() {
+cd "${srcdir}"/binutils-${pkgver}
+

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

2022-05-24 Thread Anatol Pomozov via arch-commits
Date: Tuesday, May 24, 2022 @ 20:28:11
  Author: anatolik
Revision: 1210239

upgpkg: avr-binutils 2.38-1

Modified:
  avr-binutils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-24 20:25:23 UTC (rev 1210238)
+++ PKGBUILD2022-05-24 20:28:11 UTC (rev 1210239)
@@ -6,7 +6,7 @@
 # Build order: avr-binutils -> avr-gcc -> avr-libc
 
 pkgname=avr-binutils
-pkgver=2.37
+pkgver=2.38
 pkgrel=1
 pkgdesc="A set of programs to assemble and manipulate binary and object files 
for the AVR architecture"
 arch=('x86_64')
@@ -16,7 +16,7 @@
 options=('!distcc' '!ccache')
 source=(https://ftp.gnu.org/gnu/binutils/binutils-${pkgver}.tar.bz2{,.sig}
 avr-size.patch)
-sha1sums=('4ea805f2e158903bfc1b07228f4ef26c0dbaf770'
+sha1sums=('50e0acc9ffe920e90b699e8e5db0aa9449c22cb4'
   'SKIP'
   'bb820f761fbbe7379ddf8e75235866c44591c899')
 validpgpkeys=('EAF1C276A747E9ED86210CBAC3126D3B4AE55E93'  # Tristan Gingold 




[arch-commits] Commit in arm-none-eabi-binutils/repos/community-x86_64 (2 files)

2022-05-24 Thread Anatol Pomozov via arch-commits
Date: Tuesday, May 24, 2022 @ 20:25:23
  Author: anatolik
Revision: 1210238

archrelease: copy trunk to community-x86_64

Added:
  arm-none-eabi-binutils/repos/community-x86_64/PKGBUILD
(from rev 1210237, arm-none-eabi-binutils/trunk/PKGBUILD)
Deleted:
  arm-none-eabi-binutils/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-24 20:25:03 UTC (rev 1210237)
+++ PKGBUILD2022-05-24 20:25:23 UTC (rev 1210238)
@@ -1,62 +0,0 @@
-# Maintainer: Anatol Pomozov 
-# Contributor: Martin Schmölzer 
-
-_target=arm-none-eabi
-pkgname=$_target-binutils
-pkgver=2.37
-pkgrel=1
-pkgdesc='A set of programs to assemble and manipulate binary and object files 
for the ARM EABI (bare-metal) target'
-arch=(x86_64)
-url='https://www.gnu.org/software/binutils/'
-license=(GPL)
-depends=(zlib)
-source=(https://ftp.gnu.org/gnu/binutils/binutils-$pkgver.tar.bz2{,.sig})
-sha1sums=('4ea805f2e158903bfc1b07228f4ef26c0dbaf770'
-  'SKIP')
-validpgpkeys=('EAF1C276A747E9ED86210CBAC3126D3B4AE55E93'  # Tristan Gingold 

-  '3A24BC1E8FB409FA9F14371813FCEF89DD9E3C4F') # Nick Clifton 
(Chief Binutils Maintainer) 
-
-prepare() {
-  cd binutils-$pkgver
-  sed -i "/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/" libiberty/configure
-}
-
-build() {
-  cd binutils-$pkgver
-
-  ./configure --target=$_target \
-  --with-sysroot=/usr/$_target \
-  --prefix=/usr \
-  --enable-multilib \
-  --enable-interwork \
-  --with-gnu-as \
-  --with-gnu-ld \
-  --disable-nls \
-  --enable-ld=default \
-  --enable-gold \
-  --enable-plugins \
-  --enable-deterministic-archives
-
-  make
-}
-
-check() {
-  cd binutils-$pkgver
-
-  # unset LDFLAGS as testsuite makes assumptions about which ones are active
-  # do not abort on errors - manually check log files
-  make LDFLAGS="" -k check || true
-}
-
-package() {
-  cd binutils-$pkgver
-
-  make DESTDIR="$pkgdir" install
-
-  # Remove file conflicting with host binutils and manpages for MS Windows 
tools
-  rm "$pkgdir"/usr/share/man/man1/arm-none-eabi-{dlltool,windres,windmc}*
-  rm "$pkgdir"/usr/lib/bfd-plugins/libdep.so
-
-  # Remove info documents that conflict with host version
-  rm -r "$pkgdir"/usr/share/info
-}

Copied: arm-none-eabi-binutils/repos/community-x86_64/PKGBUILD (from rev 
1210237, arm-none-eabi-binutils/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-24 20:25:23 UTC (rev 1210238)
@@ -0,0 +1,62 @@
+# Maintainer: Anatol Pomozov 
+# Contributor: Martin Schmölzer 
+
+_target=arm-none-eabi
+pkgname=$_target-binutils
+pkgver=2.38
+pkgrel=1
+pkgdesc='A set of programs to assemble and manipulate binary and object files 
for the ARM EABI (bare-metal) target'
+arch=(x86_64)
+url='https://www.gnu.org/software/binutils/'
+license=(GPL)
+depends=(zlib)
+source=(https://ftp.gnu.org/gnu/binutils/binutils-$pkgver.tar.bz2{,.sig})
+sha1sums=('50e0acc9ffe920e90b699e8e5db0aa9449c22cb4'
+  'SKIP')
+validpgpkeys=('EAF1C276A747E9ED86210CBAC3126D3B4AE55E93'  # Tristan Gingold 

+  '3A24BC1E8FB409FA9F14371813FCEF89DD9E3C4F') # Nick Clifton 
(Chief Binutils Maintainer) 
+
+prepare() {
+  cd binutils-$pkgver
+  sed -i "/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/" libiberty/configure
+}
+
+build() {
+  cd binutils-$pkgver
+
+  ./configure --target=$_target \
+  --with-sysroot=/usr/$_target \
+  --prefix=/usr \
+  --enable-multilib \
+  --enable-interwork \
+  --with-gnu-as \
+  --with-gnu-ld \
+  --disable-nls \
+  --enable-ld=default \
+  --enable-gold \
+  --enable-plugins \
+  --enable-deterministic-archives
+
+  make
+}
+
+check() {
+  cd binutils-$pkgver
+
+  # unset LDFLAGS as testsuite makes assumptions about which ones are active
+  # do not abort on errors - manually check log files
+  make LDFLAGS="" -k check || true
+}
+
+package() {
+  cd binutils-$pkgver
+
+  make DESTDIR="$pkgdir" install
+
+  # Remove file conflicting with host binutils and manpages for MS Windows 
tools
+  rm "$pkgdir"/usr/share/man/man1/arm-none-eabi-{dlltool,windres,windmc}*
+  rm "$pkgdir"/usr/lib/bfd-plugins/libdep.so
+
+  # Remove info documents that conflict with host version
+  rm -r "$pkgdir"/usr/share/info
+}



[arch-commits] Commit in arm-none-eabi-binutils/trunk (PKGBUILD)

2022-05-24 Thread Anatol Pomozov via arch-commits
Date: Tuesday, May 24, 2022 @ 20:25:03
  Author: anatolik
Revision: 1210237

upgpkg: arm-none-eabi-binutils 2.38-1

Modified:
  arm-none-eabi-binutils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-24 19:53:11 UTC (rev 1210236)
+++ PKGBUILD2022-05-24 20:25:03 UTC (rev 1210237)
@@ -3,7 +3,7 @@
 
 _target=arm-none-eabi
 pkgname=$_target-binutils
-pkgver=2.37
+pkgver=2.38
 pkgrel=1
 pkgdesc='A set of programs to assemble and manipulate binary and object files 
for the ARM EABI (bare-metal) target'
 arch=(x86_64)
@@ -11,7 +11,7 @@
 license=(GPL)
 depends=(zlib)
 source=(https://ftp.gnu.org/gnu/binutils/binutils-$pkgver.tar.bz2{,.sig})
-sha1sums=('4ea805f2e158903bfc1b07228f4ef26c0dbaf770'
+sha1sums=('50e0acc9ffe920e90b699e8e5db0aa9449c22cb4'
   'SKIP')
 validpgpkeys=('EAF1C276A747E9ED86210CBAC3126D3B4AE55E93'  # Tristan Gingold 

   '3A24BC1E8FB409FA9F14371813FCEF89DD9E3C4F') # Nick Clifton 
(Chief Binutils Maintainer) 



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

2022-05-24 Thread Anatol Pomozov via arch-commits
Date: Tuesday, May 24, 2022 @ 19:53:11
  Author: anatolik
Revision: 1210236

archrelease: copy trunk to community-x86_64

Added:
  fossil/repos/community-x86_64/PKGBUILD
(from rev 1210235, fossil/trunk/PKGBUILD)
  fossil/repos/community-x86_64/fossil-xinetd
(from rev 1210235, fossil/trunk/fossil-xinetd)
  fossil/repos/community-x86_64/fossil.service
(from rev 1210235, fossil/trunk/fossil.service)
  fossil/repos/community-x86_64/fossil.socket
(from rev 1210235, fossil/trunk/fossil.socket)
Deleted:
  fossil/repos/community-x86_64/PKGBUILD
  fossil/repos/community-x86_64/fossil-xinetd
  fossil/repos/community-x86_64/fossil.service
  fossil/repos/community-x86_64/fossil.socket

+
 PKGBUILD   |   99 +--
 fossil-xinetd  |   46 -
 fossil.service |   22 ++--
 fossil.socket  |   20 +--
 4 files changed, 97 insertions(+), 90 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-24 19:52:41 UTC (rev 1210235)
+++ PKGBUILD2022-05-24 19:53:11 UTC (rev 1210236)
@@ -1,46 +0,0 @@
-# Maintainer: Anatol Pomozov  
-# Contributor: Daniel YC Lin 
-# Contributor: Konstantin Plotnikov 
-
-pkgname=fossil
-pkgver=2.17
-_tag=f48180f2ff3169651a725396d4f7d667c99a92873b9c3df7eee2f144be7a0721
-pkgrel=1
-pkgdesc='Simple, high-reliability, distributed software configuration 
management'
-arch=(x86_64)
-license=(BSD)
-url='https://www.fossil-scm.org'
-depends=(openssl zlib sqlite)
-makedepends=(tcl)
-optdepends=(tcl)
-backup=(etc/xinetd.d/fossil)
-source=(
-  fossil.socket
-  fossil.service
-  fossil-xinetd
-  https://fossil-scm.org/home/tarball/$_tag/fossil-src-$pkgver.tar.gz
-)
-sha256sums=('f885e17998dc1eece1688a75e516663462fe72a7f4f132def4132055777c7ff8'
-'c4973079facf209d3757db81df08f8d0843ede242f2a0c12281720da65e3b166'
-'2f9a141fadfb7cb5225f0d65a308949bbc592bff9d567b5c472edb413c81f5aa'
-'5c7f1c73f7b5e2af24e10e40f0e07391909c1230b9e284a9d548059e7f377dbf')
-
-build() {
-  cd fossil-src-$pkgver
-  ./configure --prefix=/usr --json --disable-internal-sqlite --with-tcl=/usr 
--with-tcl-private-stubs=1
-  # headers and translate targets are problematic with parallel jobs
-  #make -j1 bld bld/headers
-  make
-}
-
-package() {
-  install -Dm644 fossil-xinetd "$pkgdir"/etc/xinetd.d/fossil
-  install -Dm644 fossil.socket "$pkgdir"/usr/lib/systemd/system/fossil.socket
-  install -Dm644 fossil.service 
"$pkgdir"/usr/lib/systemd/system/fossil@.service
-
-  cd fossil-src-$pkgver
-  install -Dm755 fossil "$pkgdir"/usr/bin/fossil
-  install -Dm644 tools/fossil-autocomplete.bash 
"$pkgdir"/usr/share/bash-completion/completions/fossil
-  install -Dm644 tools/fossil-autocomplete.zsh 
"$pkgdir"/usr/share/zsh/site-functions/_fossil
-  install -Dm644 COPYRIGHT-BSD2.txt 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: fossil/repos/community-x86_64/PKGBUILD (from rev 1210235, 
fossil/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-24 19:53:11 UTC (rev 1210236)
@@ -0,0 +1,53 @@
+# Maintainer: Anatol Pomozov  
+# Contributor: Daniel YC Lin 
+# Contributor: Konstantin Plotnikov 
+
+pkgname=fossil
+pkgver=2.18
+_tag=84f25d7eb10c0714109d69bb2809abfa8b4b5c3d73b151a5b10df724dacd46d8
+pkgrel=1
+pkgdesc='Simple, high-reliability, distributed software configuration 
management'
+arch=(x86_64)
+license=(BSD)
+url='https://www.fossil-scm.org'
+depends=(openssl zlib sqlite)
+makedepends=(tcl)
+optdepends=(tcl)
+backup=(etc/xinetd.d/fossil)
+source=(
+  fossil.socket
+  fossil.service
+  fossil-xinetd
+  https://fossil-scm.org/home/tarball/$_tag/fossil-src-$pkgver.tar.gz
+  
remove_sqlite1_option.patch::'https://www2.fossil-scm.org/home/vpatch?from=d862cb71d6266449=8af827342f4c4a77'
+)
+sha256sums=('f885e17998dc1eece1688a75e516663462fe72a7f4f132def4132055777c7ff8'
+'c4973079facf209d3757db81df08f8d0843ede242f2a0c12281720da65e3b166'
+'2f9a141fadfb7cb5225f0d65a308949bbc592bff9d567b5c472edb413c81f5aa'
+'300c1d5cdd6224ec6e8c88ab3f38d50f80e4071b503731b75bd61274cf310733'
+'8707b243505535b7ae885f701b0f4feab203b11c838899839520835a3661')
+
+prepare() {
+  cd fossil-src-$pkgver
+  patch -p0 < ../remove_sqlite1_option.patch # SQLITE3_ENABLE_JSON1 is a no-op 
option now
+}
+
+build() {
+  cd fossil-src-$pkgver
+  ./configure --prefix=/usr --json --disable-internal-sqlite --with-tcl=/usr 
--with-tcl-private-stubs=1
+  # headers and translate targets are problematic with parallel jobs
+  #make -j1 bld bld/headers
+  make
+}
+
+package() {
+  install -Dm644 fossil-xinetd "$pkgdir"/etc/xinetd.d/fossil
+  install -Dm644 fossil.socket "$pkgdir"/usr/lib/systemd/system/fossil.socket
+  install -Dm644 fossil.service 
"$pkgdir"/usr/lib/systemd/system/fossil@.service
+
+  cd 

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

2022-05-24 Thread Anatol Pomozov via arch-commits
Date: Tuesday, May 24, 2022 @ 19:52:41
  Author: anatolik
Revision: 1210235

upgpkg: fossil 2.18-1

Modified:
  fossil/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-24 19:02:58 UTC (rev 1210234)
+++ PKGBUILD2022-05-24 19:52:41 UTC (rev 1210235)
@@ -3,8 +3,8 @@
 # Contributor: Konstantin Plotnikov 
 
 pkgname=fossil
-pkgver=2.17
-_tag=f48180f2ff3169651a725396d4f7d667c99a92873b9c3df7eee2f144be7a0721
+pkgver=2.18
+_tag=84f25d7eb10c0714109d69bb2809abfa8b4b5c3d73b151a5b10df724dacd46d8
 pkgrel=1
 pkgdesc='Simple, high-reliability, distributed software configuration 
management'
 arch=(x86_64)
@@ -19,12 +19,19 @@
   fossil.service
   fossil-xinetd
   https://fossil-scm.org/home/tarball/$_tag/fossil-src-$pkgver.tar.gz
+  
remove_sqlite1_option.patch::'https://www2.fossil-scm.org/home/vpatch?from=d862cb71d6266449=8af827342f4c4a77'
 )
 sha256sums=('f885e17998dc1eece1688a75e516663462fe72a7f4f132def4132055777c7ff8'
 'c4973079facf209d3757db81df08f8d0843ede242f2a0c12281720da65e3b166'
 '2f9a141fadfb7cb5225f0d65a308949bbc592bff9d567b5c472edb413c81f5aa'
-'5c7f1c73f7b5e2af24e10e40f0e07391909c1230b9e284a9d548059e7f377dbf')
+'300c1d5cdd6224ec6e8c88ab3f38d50f80e4071b503731b75bd61274cf310733'
+'8707b243505535b7ae885f701b0f4feab203b11c838899839520835a3661')
 
+prepare() {
+  cd fossil-src-$pkgver
+  patch -p0 < ../remove_sqlite1_option.patch # SQLITE3_ENABLE_JSON1 is a no-op 
option now
+}
+
 build() {
   cd fossil-src-$pkgver
   ./configure --prefix=/usr --json --disable-internal-sqlite --with-tcl=/usr 
--with-tcl-private-stubs=1



[arch-commits] Commit in systemd/repos (21 files)

2022-05-24 Thread Christian Hesse via arch-commits
Date: Tuesday, May 24, 2022 @ 19:15:34
  Author: eworm
Revision: 446485

archrelease: copy trunk to testing-x86_64

Added:
  systemd/repos/testing-x86_64/
  systemd/repos/testing-x86_64/0001-Use-Arch-Linux-device-access-groups.patch
(from rev 446484, 
systemd/trunk/0001-Use-Arch-Linux-device-access-groups.patch)
  systemd/repos/testing-x86_64/20-systemd-sysusers.hook
(from rev 446484, systemd/trunk/20-systemd-sysusers.hook)
  systemd/repos/testing-x86_64/30-systemd-binfmt.hook
(from rev 446484, systemd/trunk/30-systemd-binfmt.hook)
  systemd/repos/testing-x86_64/30-systemd-catalog.hook
(from rev 446484, systemd/trunk/30-systemd-catalog.hook)
  systemd/repos/testing-x86_64/30-systemd-daemon-reload.hook
(from rev 446484, systemd/trunk/30-systemd-daemon-reload.hook)
  systemd/repos/testing-x86_64/30-systemd-hwdb.hook
(from rev 446484, systemd/trunk/30-systemd-hwdb.hook)
  systemd/repos/testing-x86_64/30-systemd-sysctl.hook
(from rev 446484, systemd/trunk/30-systemd-sysctl.hook)
  systemd/repos/testing-x86_64/30-systemd-tmpfiles.hook
(from rev 446484, systemd/trunk/30-systemd-tmpfiles.hook)
  systemd/repos/testing-x86_64/30-systemd-udev-reload.hook
(from rev 446484, systemd/trunk/30-systemd-udev-reload.hook)
  systemd/repos/testing-x86_64/30-systemd-update.hook
(from rev 446484, systemd/trunk/30-systemd-update.hook)
  systemd/repos/testing-x86_64/PKGBUILD
(from rev 446484, systemd/trunk/PKGBUILD)
  systemd/repos/testing-x86_64/arch.conf
(from rev 446484, systemd/trunk/arch.conf)
  systemd/repos/testing-x86_64/initcpio-hook-udev
(from rev 446484, systemd/trunk/initcpio-hook-udev)
  systemd/repos/testing-x86_64/initcpio-install-systemd
(from rev 446484, systemd/trunk/initcpio-install-systemd)
  systemd/repos/testing-x86_64/initcpio-install-udev
(from rev 446484, systemd/trunk/initcpio-install-udev)
  systemd/repos/testing-x86_64/loader.conf
(from rev 446484, systemd/trunk/loader.conf)
  systemd/repos/testing-x86_64/splash-arch.bmp
(from rev 446484, systemd/trunk/splash-arch.bmp)
  systemd/repos/testing-x86_64/systemd-hook
(from rev 446484, systemd/trunk/systemd-hook)
  systemd/repos/testing-x86_64/systemd-user.pam
(from rev 446484, systemd/trunk/systemd-user.pam)
  systemd/repos/testing-x86_64/systemd.install
(from rev 446484, systemd/trunk/systemd.install)

+
 0001-Use-Arch-Linux-device-access-groups.patch |  176 +
 20-systemd-sysusers.hook   |   10 
 30-systemd-binfmt.hook |   10 
 30-systemd-catalog.hook|   11 
 30-systemd-daemon-reload.hook  |   11 
 30-systemd-hwdb.hook   |   11 
 30-systemd-sysctl.hook |   10 
 30-systemd-tmpfiles.hook   |   10 
 30-systemd-udev-reload.hook|   11 
 30-systemd-update.hook |   11 
 PKGBUILD   |  291 +++
 arch.conf  |7 
 initcpio-hook-udev |   22 +
 initcpio-install-systemd   |  151 +++
 initcpio-install-udev  |   33 ++
 loader.conf|1 
 systemd-hook   |   46 +++
 systemd-user.pam   |5 
 systemd.install|   62 
 19 files changed, 889 insertions(+)

Copied: 
systemd/repos/testing-x86_64/0001-Use-Arch-Linux-device-access-groups.patch 
(from rev 446484, systemd/trunk/0001-Use-Arch-Linux-device-access-groups.patch)
===
--- testing-x86_64/0001-Use-Arch-Linux-device-access-groups.patch   
(rev 0)
+++ testing-x86_64/0001-Use-Arch-Linux-device-access-groups.patch   
2022-05-24 19:15:34 UTC (rev 446485)
@@ -0,0 +1,176 @@
+From f7d07e298c819a81eab965efbdbf53a2ce67fc0e Mon Sep 17 00:00:00 2001
+From: "Jan Alexander Steffens (heftig)" 
+Date: Tue, 6 Mar 2018 23:39:47 +0100
+Subject: [PATCH] Use Arch Linux' device access groups
+
+  cdrom   → optical
+  dialout → uucp
+  tape→ storage
+---
+ meson.build  |  6 +++---
+ meson_options.txt| 12 ++--
+ rules.d/50-udev-default.rules.in | 14 +++---
+ sysusers.d/basic.conf.in |  6 +++---
+ 4 files changed, 19 insertions(+), 19 deletions(-)
+
+diff --git a/meson.build b/meson.build
+index 32e5413a62..f781e06fed 100644
+--- a/meson.build
 b/meson.build
+@@ -796,19 +796,19 @@ conf.set_quoted('NOBODY_GROUP_NAME', nobody_group)
+ static_ugids = []
+ foreach option : ['adm-gid',
+   'audio-gid',
+-  'cdrom-gid',
+-  'dialout-gid',
+   'disk-gid',
+   'input-gid',
+

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

2022-05-24 Thread Christian Hesse via arch-commits
Date: Tuesday, May 24, 2022 @ 19:15:20
  Author: eworm
Revision: 446484

upgpkg: systemd 251-2: cherry-pick upstream fixes

Modified:
  systemd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-24 19:07:35 UTC (rev 446483)
+++ PKGBUILD2022-05-24 19:15:20 UTC (rev 446484)
@@ -5,7 +5,7 @@
 _tag='e93cff8c9c8ceaee8d19cf2599b84a7683ce4ecd' # git rev-parse v${_tag_name}
 _tag_name=251
 pkgver="${_tag_name/-/}"
-pkgrel=1
+pkgrel=2
 arch=('x86_64')
 url='https://www.github.com/systemd/systemd'
 makedepends=('acl' 'cryptsetup' 'docbook-xsl' 'gperf' 'lz4' 'xz' 'pam' 'libelf'
@@ -61,6 +61,11 @@
 
'825b9dd0167c072ba62cabe0677e7cd20f2b4b850328022540f122689d8b25315005fa98ce867cf6e7460b2b26df16b88bb3b5c9ebf721746dce4e2271af7b97')
 
 _backports=(
+  # bootctl: Make sure bootctl install returns 0 on success
+  'eb76587f33a08c91f025d4c7fa685c44f7b2d332'
+
+  # Revert "core/device: ignore DEVICE_FOUND_UDEV bit on switching root"
+  '011161de615c125e91a27d10decf4b5a3c5fbb99'
 )
 
 _reverts=(



[arch-commits] Commit in chromium/repos/extra-x86_64 (15 files)

2022-05-24 Thread Evangelos Foutras via arch-commits
Date: Tuesday, May 24, 2022 @ 19:07:35
  Author: foutrelis
Revision: 446483

archrelease: copy trunk to extra-x86_64

Added:
  chromium/repos/extra-x86_64/PKGBUILD
(from rev 446482, chromium/trunk/PKGBUILD)
  chromium/repos/extra-x86_64/chromium-libxml-unbundle.patch
(from rev 446482, chromium/trunk/chromium-libxml-unbundle.patch)
  chromium/repos/extra-x86_64/enable-GlobalMediaControlsCastStartStop.patch
(from rev 446482, 
chromium/trunk/enable-GlobalMediaControlsCastStartStop.patch)
  chromium/repos/extra-x86_64/iwyu-add-utility-for-std-exchange.patch
(from rev 446482, chromium/trunk/iwyu-add-utility-for-std-exchange.patch)
  chromium/repos/extra-x86_64/remove-no-opaque-pointers-flag.patch
(from rev 446482, chromium/trunk/remove-no-opaque-pointers-flag.patch)
  chromium/repos/extra-x86_64/roll-src-third_party-ffmpeg.patch
(from rev 446482, chromium/trunk/roll-src-third_party-ffmpeg.patch)
  chromium/repos/extra-x86_64/sql-make-VirtualCursor-standard-layout-type.patch
(from rev 446482, 
chromium/trunk/sql-make-VirtualCursor-standard-layout-type.patch)
  chromium/repos/extra-x86_64/use-oauth2-client-switches-as-default.patch
(from rev 446482, 
chromium/trunk/use-oauth2-client-switches-as-default.patch)
Deleted:
  chromium/repos/extra-x86_64/PKGBUILD
  chromium/repos/extra-x86_64/chromium-libxml-unbundle.patch
  chromium/repos/extra-x86_64/enable-GlobalMediaControlsCastStartStop.patch
  chromium/repos/extra-x86_64/fix-no-member-named-tie-in-namespace-std.patch
  chromium/repos/extra-x86_64/iwyu-add-utility-for-std-exchange.patch
  chromium/repos/extra-x86_64/sql-make-VirtualCursor-standard-layout-type.patch
  chromium/repos/extra-x86_64/use-oauth2-client-switches-as-default.patch

---+
 PKGBUILD  |  554 ++--
 chromium-libxml-unbundle.patch|   20 
 enable-GlobalMediaControlsCastStartStop.patch |   64 +-
 fix-no-member-named-tie-in-namespace-std.patch|   28 -
 iwyu-add-utility-for-std-exchange.patch   |   54 -
 remove-no-opaque-pointers-flag.patch  |   18 
 roll-src-third_party-ffmpeg.patch |  333 
 sql-make-VirtualCursor-standard-layout-type.patch |  476 -
 use-oauth2-client-switches-as-default.patch   |   34 -
 9 files changed, 956 insertions(+), 625 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-24 19:07:25 UTC (rev 446482)
+++ PKGBUILD2022-05-24 19:07:35 UTC (rev 446483)
@@ -1,273 +0,0 @@
-# Maintainer: Evangelos Foutras 
-# Contributor: Pierre Schmitz 
-# Contributor: Jan "heftig" Steffens 
-# Contributor: Daniel J Griffiths 
-
-pkgname=chromium
-pkgver=101.0.4951.64
-pkgrel=1
-_launcher_ver=8
-_gcc_patchset=4
-pkgdesc="A web browser built for speed, simplicity, and security"
-arch=('x86_64')
-url="https://www.chromium.org/Home;
-license=('BSD')
-depends=('gtk3' 'nss' 'alsa-lib' 'xdg-utils' 'libxss' 'libcups' 'libgcrypt'
- 'ttf-liberation' 'systemd' 'dbus' 'libpulse' 'pciutils' 'libva'
- 'desktop-file-utils' 'hicolor-icon-theme')
-makedepends=('python' 'gn' 'ninja' 'clang' 'lld' 'gperf' 'nodejs' 'pipewire'
- 'java-runtime-headless')
-optdepends=('pipewire: WebRTC desktop sharing under Wayland'
-'kdialog: support for native dialogs in Plasma'
-'org.freedesktop.secrets: password storage backend on GNOME / Xfce'
-'kwallet: support for storing passwords in KWallet on Plasma')
-options=('debug' '!lto') # Chromium adds its own flags for ThinLTO
-source=(https://commondatastorage.googleapis.com/chromium-browser-official/$pkgname-$pkgver.tar.xz
-
https://github.com/foutrelis/chromium-launcher/archive/v$_launcher_ver/chromium-launcher-$_launcher_ver.tar.gz
-
https://github.com/stha09/chromium-patches/releases/download/chromium-${pkgver%%.*}-patchset-$_gcc_patchset/chromium-${pkgver%%.*}-patchset-$_gcc_patchset.tar.xz
-fix-no-member-named-tie-in-namespace-std.patch
-iwyu-add-utility-for-std-exchange.patch
-enable-GlobalMediaControlsCastStartStop.patch
-chromium-libxml-unbundle.patch
-sql-make-VirtualCursor-standard-layout-type.patch
-use-oauth2-client-switches-as-default.patch)
-sha256sums=('9c5896e4135563453ac10d15698c18ef61eb5535dc611325b230ece4c5a8d8f7'
-'213e50f48b67feb4441078d50b0fd431df34323be15be97c55302d3fdac4483a'
-'8ed519d21ccd8b382ddd384e9c15306a60d2e3495f48a62dea07c9be9bbffebd'
-'7ad0106161bbf25e2e603ae1a723ae4217155ebb26eb4778363ad396e8c14156'
-'6f666ef0acb08704ca58cc0d5e97e7ce64d8fea51042e593adae1ce15a61231c'
-'779fb13f2494209d3a7f1f23a823e59b9dded601866d3ab095937a1a04e19ac6'
-'fd3bf124aacc45f2d0a4f1dd86303fa7f2a3d4f4eeaf33854631d6cb39e12485'
-

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

2022-05-24 Thread Evangelos Foutras via arch-commits
Date: Tuesday, May 24, 2022 @ 19:07:25
  Author: foutrelis
Revision: 446482

upgpkg: chromium 102.0.5005.61-1: new upstream release

Added:
  chromium/trunk/remove-no-opaque-pointers-flag.patch
  chromium/trunk/roll-src-third_party-ffmpeg.patch
Modified:
  chromium/trunk/PKGBUILD
Deleted:
  chromium/trunk/fix-no-member-named-tie-in-namespace-std.patch

+
 PKGBUILD   |   28 +
 fix-no-member-named-tie-in-namespace-std.patch |   28 -
 remove-no-opaque-pointers-flag.patch   |   18 +
 roll-src-third_party-ffmpeg.patch  |  333 +++
 4 files changed, 369 insertions(+), 38 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-05-24 14:26:06 UTC (rev 446481)
+++ PKGBUILD2022-05-24 19:07:25 UTC (rev 446482)
@@ -4,10 +4,10 @@
 # Contributor: Daniel J Griffiths 
 
 pkgname=chromium
-pkgver=101.0.4951.64
+pkgver=102.0.5005.61
 pkgrel=1
 _launcher_ver=8
-_gcc_patchset=4
+_gcc_patchset=5
 pkgdesc="A web browser built for speed, simplicity, and security"
 arch=('x86_64')
 url="https://www.chromium.org/Home;
@@ -16,7 +16,7 @@
  'ttf-liberation' 'systemd' 'dbus' 'libpulse' 'pciutils' 'libva'
  'desktop-file-utils' 'hicolor-icon-theme')
 makedepends=('python' 'gn' 'ninja' 'clang' 'lld' 'gperf' 'nodejs' 'pipewire'
- 'java-runtime-headless')
+ 'java-runtime-headless' 'git')
 optdepends=('pipewire: WebRTC desktop sharing under Wayland'
 'kdialog: support for native dialogs in Plasma'
 'org.freedesktop.secrets: password storage backend on GNOME / Xfce'
@@ -25,20 +25,22 @@
 
source=(https://commondatastorage.googleapis.com/chromium-browser-official/$pkgname-$pkgver.tar.xz
 
https://github.com/foutrelis/chromium-launcher/archive/v$_launcher_ver/chromium-launcher-$_launcher_ver.tar.gz
 
https://github.com/stha09/chromium-patches/releases/download/chromium-${pkgver%%.*}-patchset-$_gcc_patchset/chromium-${pkgver%%.*}-patchset-$_gcc_patchset.tar.xz
-fix-no-member-named-tie-in-namespace-std.patch
 iwyu-add-utility-for-std-exchange.patch
 enable-GlobalMediaControlsCastStartStop.patch
+roll-src-third_party-ffmpeg.patch
 chromium-libxml-unbundle.patch
 sql-make-VirtualCursor-standard-layout-type.patch
+remove-no-opaque-pointers-flag.patch
 use-oauth2-client-switches-as-default.patch)
-sha256sums=('9c5896e4135563453ac10d15698c18ef61eb5535dc611325b230ece4c5a8d8f7'
+sha256sums=('1a3797d36901fa3ba63744b9a870b65a8890c9a850442c160196bc64df886b1f'
 '213e50f48b67feb4441078d50b0fd431df34323be15be97c55302d3fdac4483a'
-'8ed519d21ccd8b382ddd384e9c15306a60d2e3495f48a62dea07c9be9bbffebd'
-'7ad0106161bbf25e2e603ae1a723ae4217155ebb26eb4778363ad396e8c14156'
+'53de0f936fd571e578ba2fbf348c8741116cdcceac3ea6fae5008d8f054a7698'
 '6f666ef0acb08704ca58cc0d5e97e7ce64d8fea51042e593adae1ce15a61231c'
 '779fb13f2494209d3a7f1f23a823e59b9dded601866d3ab095937a1a04e19ac6'
+'30df59a9e2d95dcb720357ec4a83d9be51e59cc5551365da4c0073e68ccdec44'
 'fd3bf124aacc45f2d0a4f1dd86303fa7f2a3d4f4eeaf33854631d6cb39e12485'
 'b94b2e88f63cfb7087486508b8139599c89f96d7a4181c61fec4b4e250ca327a'
+'00c16ce83ea4ca924a50fa0cfc2b2a4d744c722f363b065323e6ba0fcbac45a5'
 'e393174d7695d0bafed69e868c5fbfecf07aa6969f3b64596d0bae8b067e1711')
 
 # Possible replacements are listed in build/linux/unbundle/replace_gn_files.py
@@ -94,8 +96,10 @@
   # runtime -- this allows signing into Chromium without baked-in values
   patch -Np1 -i ../use-oauth2-client-switches-as-default.patch
 
+  # Remove '-Xclang -no-opaque-pointers' flag not supported by our clang
+  patch -Np1 -i ../remove-no-opaque-pointers-flag.patch
+
   # Upstream fixes
-  patch -Np1 -i ../fix-no-member-named-tie-in-namespace-std.patch
   patch -Np1 -i ../iwyu-add-utility-for-std-exchange.patch
 
   # Revert kGlobalMediaControlsCastStartStop enabled by default
@@ -102,6 +106,10 @@
   # https://crbug.com/1314342
   patch -Rp1 -F3 -i ../enable-GlobalMediaControlsCastStartStop.patch
 
+  # Revert ffmpeg roll requiring new channel layout API support
+  # https://crbug.com/1325301
+  patch -Rp1 -i ../roll-src-third_party-ffmpeg.patch
+
   # https://chromium-review.googlesource.com/c/chromium/src/+/3488058
   patch -Np1 -i ../chromium-libxml-unbundle.patch
 
@@ -109,7 +117,8 @@
   patch -Np1 -i ../sql-make-VirtualCursor-standard-layout-type.patch
 
   # Fixes for building with libstdc++ instead of libc++
-  #patch -Np1 -i ../patches/
+  patch -Np1 -i ../patches/chromium-102-fenced_frame_utils-include.patch
+  patch -Np1 -i ../patches/chromium-102-regex_pattern-array.patch
 
   # Link to system tools required by the build
   mkdir -p third_party/node/linux/node-linux-x64/bin
@@ -255,7 

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

2022-05-24 Thread Antonio Rojas via arch-commits
Date: Tuesday, May 24, 2022 @ 19:02:58
  Author: arojas
Revision: 1210234

archrelease: copy trunk to community-x86_64

Added:
  fpylll/repos/community-x86_64/PKGBUILD
(from rev 1210233, fpylll/trunk/PKGBUILD)
Deleted:
  fpylll/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-24 19:02:48 UTC (rev 1210233)
+++ PKGBUILD2022-05-24 19:02:58 UTC (rev 1210234)
@@ -1,24 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgbase=fpylll
-pkgname=python-fpylll
-pkgver=0.5.6
-pkgrel=8
-pkgdesc='A Python interface for fplll'
-arch=(x86_64)
-url='https://github.com/fplll/fpylll'
-license=(GPL2)
-depends=(fplll python-numpy python-cysignals)
-makedepends=(cython)
-source=(https://github.com/fplll/fpylll/releases/download/$pkgver/$pkgbase-$pkgver.tar.gz)
-sha256sums=('c69bf4b3344f60ca40743af9b9246ce51f651c2cf54d2b88a4deff18b1b5f246')
-
-build() {
-  cd $pkgbase-$pkgver
-  python setup.py build
-}
-
-package_python-fpylll() {
-  cd $pkgbase-$pkgver
-  python setup.py install --skip-build --root="$pkgdir" --optimize=1
-}

Copied: fpylll/repos/community-x86_64/PKGBUILD (from rev 1210233, 
fpylll/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-24 19:02:58 UTC (rev 1210234)
@@ -0,0 +1,24 @@
+# Maintainer: Antonio Rojas 
+
+pkgbase=fpylll
+pkgname=python-fpylll
+pkgver=0.5.6
+pkgrel=9
+pkgdesc='A Python interface for fplll'
+arch=(x86_64)
+url='https://github.com/fplll/fpylll'
+license=(GPL2)
+depends=(fplll python-numpy python-cysignals)
+makedepends=(cython python-build python-installer python-setuptools 
python-wheel)
+source=(https://github.com/fplll/fpylll/releases/download/$pkgver/$pkgbase-$pkgver.tar.gz)
+sha256sums=('c69bf4b3344f60ca40743af9b9246ce51f651c2cf54d2b88a4deff18b1b5f246')
+
+build() {
+  cd $pkgbase-$pkgver
+  python -m build --wheel --no-isolation
+}
+
+package_python-fpylll() {
+  cd $pkgbase-$pkgver
+  python -m installer --destdir="$pkgdir" dist/*.whl
+}



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

2022-05-24 Thread Antonio Rojas via arch-commits
Date: Tuesday, May 24, 2022 @ 19:02:48
  Author: arojas
Revision: 1210233

fplll 5.4.2 rebuild

Modified:
  fpylll/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-24 18:58:28 UTC (rev 1210232)
+++ PKGBUILD2022-05-24 19:02:48 UTC (rev 1210233)
@@ -3,22 +3,22 @@
 pkgbase=fpylll
 pkgname=python-fpylll
 pkgver=0.5.6
-pkgrel=8
+pkgrel=9
 pkgdesc='A Python interface for fplll'
 arch=(x86_64)
 url='https://github.com/fplll/fpylll'
 license=(GPL2)
 depends=(fplll python-numpy python-cysignals)
-makedepends=(cython)
+makedepends=(cython python-build python-installer python-setuptools 
python-wheel)
 
source=(https://github.com/fplll/fpylll/releases/download/$pkgver/$pkgbase-$pkgver.tar.gz)
 sha256sums=('c69bf4b3344f60ca40743af9b9246ce51f651c2cf54d2b88a4deff18b1b5f246')
 
 build() {
   cd $pkgbase-$pkgver
-  python setup.py build
+  python -m build --wheel --no-isolation
 }
 
 package_python-fpylll() {
   cd $pkgbase-$pkgver
-  python setup.py install --skip-build --root="$pkgdir" --optimize=1
+  python -m installer --destdir="$pkgdir" dist/*.whl
 }



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

2022-05-24 Thread Bruno Pagani via arch-commits
Date: Tuesday, May 24, 2022 @ 18:58:28
  Author: archange
Revision: 1210232

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-24 18:57:59 UTC (rev 1210231)
+++ PKGBUILD2022-05-24 18:58:28 UTC (rev 1210232)
@@ -1,36 +0,0 @@
-# Maintainer: Bruno Pagani 
-
-_pkg=pdfminer
-pkgname=python-${_pkg}
-pkgver=20220506
-pkgrel=1
-pkgdesc="Python PDF Parser"
-arch=(any)
-url="https://github.com/pdfminer/pdfminer.six;
-license=(MIT)
-depends=(python-charset-normalizer python-cryptography)
-makedepends=(python-setuptools cython)
-checkdepends=(python-pytest)
-# Provided tarballs do not include tests
-#source=(${url}/releases/download/${pkgver}/${_pkg}.six-${pkgver}.tar.gz)
-source=(${url}/archive/${pkgver}/${_pkg}-${pkgver}.tar.gz)
-sha256sums=('e8a02af79fac56e1c3010042dc35e15629f16e6495cd878cc919c07cb9209f25')
-
-build() {
-  cd ${_pkg}.six-${pkgver}
-  sed -i "s|__VERSION__|${pkgver}|" pdfminer/__init__.py
-  python setup.py build
-}
-
-check() {
-  cd ${_pkg}.six-${pkgver}
-  PYTHONPATH="${PWD}"/build/lib:"${PWD}" pytest -vv --color=yes
-}
-
-package() {
-  cd ${_pkg}.six-${pkgver}
-  python setup.py install --skip-build --prefix=/usr --root="${pkgdir}" 
--optimize=1
-  install -Dm644 LICENSE -t "${pkgdir}"/usr/share/licenses/${pkgname}/
-  # Fix ownership
-  chmod a+r "${pkgdir}"$(python -c "import site; 
print(site.getsitepackages()[0])")/pdfminer/cmap/*
-}

Copied: python-pdfminer/repos/community-any/PKGBUILD (from rev 1210231, 
python-pdfminer/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-24 18:58:28 UTC (rev 1210232)
@@ -0,0 +1,36 @@
+# Maintainer: Bruno Pagani 
+
+_pkg=pdfminer
+pkgname=python-${_pkg}
+pkgver=20220524
+pkgrel=1
+pkgdesc="Python PDF Parser"
+arch=(any)
+url="https://github.com/pdfminer/pdfminer.six;
+license=(MIT)
+depends=(python-charset-normalizer python-cryptography)
+makedepends=(python-setuptools cython)
+checkdepends=(python-pytest)
+# Provided tarballs do not include tests
+#source=(${url}/releases/download/${pkgver}/${_pkg}.six-${pkgver}.tar.gz)
+source=(${url}/archive/${pkgver}/${_pkg}-${pkgver}.tar.gz)
+sha256sums=('a036227ecd6c140ac270870f9e59b104024232939cc199d79703447e976d389e')
+
+build() {
+  cd ${_pkg}.six-${pkgver}
+  sed -i "s|__VERSION__|${pkgver}|" pdfminer/__init__.py
+  python setup.py build
+}
+
+check() {
+  cd ${_pkg}.six-${pkgver}
+  PYTHONPATH="${PWD}"/build/lib:"${PWD}" pytest -vv --color=yes
+}
+
+package() {
+  cd ${_pkg}.six-${pkgver}
+  python setup.py install --skip-build --prefix=/usr --root="${pkgdir}" 
--optimize=1
+  install -Dm644 LICENSE -t "${pkgdir}"/usr/share/licenses/${pkgname}/
+  # Fix ownership
+  chmod a+r "${pkgdir}"$(python -c "import site; 
print(site.getsitepackages()[0])")/pdfminer/cmap/*
+}



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

2022-05-24 Thread Bruno Pagani via arch-commits
Date: Tuesday, May 24, 2022 @ 18:57:59
  Author: archange
Revision: 1210231

upgpkg: python-pdfminer 20220524-1

Modified:
  python-pdfminer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-24 18:51:47 UTC (rev 1210230)
+++ PKGBUILD2022-05-24 18:57:59 UTC (rev 1210231)
@@ -2,7 +2,7 @@
 
 _pkg=pdfminer
 pkgname=python-${_pkg}
-pkgver=20220506
+pkgver=20220524
 pkgrel=1
 pkgdesc="Python PDF Parser"
 arch=(any)
@@ -14,7 +14,7 @@
 # Provided tarballs do not include tests
 #source=(${url}/releases/download/${pkgver}/${_pkg}.six-${pkgver}.tar.gz)
 source=(${url}/archive/${pkgver}/${_pkg}-${pkgver}.tar.gz)
-sha256sums=('e8a02af79fac56e1c3010042dc35e15629f16e6495cd878cc919c07cb9209f25')
+sha256sums=('a036227ecd6c140ac270870f9e59b104024232939cc199d79703447e976d389e')
 
 build() {
   cd ${_pkg}.six-${pkgver}



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

2022-05-24 Thread Antonio Rojas via arch-commits
Date: Tuesday, May 24, 2022 @ 18:51:47
  Author: arojas
Revision: 1210230

archrelease: copy trunk to community-x86_64

Added:
  fplll/repos/community-x86_64/PKGBUILD
(from rev 1210229, fplll/trunk/PKGBUILD)
Deleted:
  fplll/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-24 18:51:37 UTC (rev 1210229)
+++ PKGBUILD2022-05-24 18:51:47 UTC (rev 1210230)
@@ -1,23 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgname=fplll
-pkgver=5.4.1
-pkgrel=1
-pkgdesc='Lattice algorithms using floating-point arithmetic'
-arch=(x86_64)
-url='https://github.com/fplll/fplll'
-license=(LGPL)
-depends=(mpfr qd)
-source=(https://github.com/fplll/fplll/releases/download/$pkgver/$pkgname-$pkgver.tar.gz)
-sha256sums=('7bd887957173aa592091772c1c36f6aa606b3b2ace0d14e2c26c7463dcf2deb7')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: fplll/repos/community-x86_64/PKGBUILD (from rev 1210229, 
fplll/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-24 18:51:47 UTC (rev 1210230)
@@ -0,0 +1,23 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=fplll
+pkgver=5.4.2
+pkgrel=1
+pkgdesc='Lattice algorithms using floating-point arithmetic'
+arch=(x86_64)
+url='https://github.com/fplll/fplll'
+license=(LGPL)
+depends=(mpfr qd)
+source=(https://github.com/fplll/fplll/releases/download/$pkgver/$pkgname-$pkgver.tar.gz)
+sha256sums=('6e7b1704fd56f29dd9fc1dd719cc1f2df1f58964fd77bbde162f594d7fff7ba5')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}



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

2022-05-24 Thread Antonio Rojas via arch-commits
Date: Tuesday, May 24, 2022 @ 18:51:37
  Author: arojas
Revision: 1210229

Update to 5.4.2

Modified:
  fplll/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-24 17:48:40 UTC (rev 1210228)
+++ PKGBUILD2022-05-24 18:51:37 UTC (rev 1210229)
@@ -1,7 +1,7 @@
 # Maintainer: Antonio Rojas 
 
 pkgname=fplll
-pkgver=5.4.1
+pkgver=5.4.2
 pkgrel=1
 pkgdesc='Lattice algorithms using floating-point arithmetic'
 arch=(x86_64)
@@ -9,7 +9,7 @@
 license=(LGPL)
 depends=(mpfr qd)
 
source=(https://github.com/fplll/fplll/releases/download/$pkgver/$pkgname-$pkgver.tar.gz)
-sha256sums=('7bd887957173aa592091772c1c36f6aa606b3b2ace0d14e2c26c7463dcf2deb7')
+sha256sums=('6e7b1704fd56f29dd9fc1dd719cc1f2df1f58964fd77bbde162f594d7fff7ba5')
 
 build() {
   cd $pkgname-$pkgver



[arch-commits] Commit in nginx-mod-njs/trunk (PKGBUILD)

2022-05-24 Thread Massimiliano Torromeo via arch-commits
Date: Tuesday, May 24, 2022 @ 17:19:41
  Author: mtorromeo
Revision: 1210226

upgpkg: nginx-mod-njs 0.7.4-1

Modified:
  nginx-mod-njs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-24 16:54:46 UTC (rev 1210225)
+++ PKGBUILD2022-05-24 17:19:41 UTC (rev 1210226)
@@ -1,7 +1,7 @@
 # Maintainer: Massimiliano Torromeo 
 
 pkgname=nginx-mod-njs
-pkgver=0.7.3 # https://hg.nginx.org/njs/tags
+pkgver=0.7.4 # https://hg.nginx.org/njs/tags
 pkgrel=1
 
 _modname="${pkgname#nginx-mod-}"
@@ -17,7 +17,7 @@
   njs-$pkgver.tar.gz::https://hg.nginx.org/njs/archive/$pkgver.tar.gz
 )
 validpgpkeys=(B0F4253373F8F6F510D42178520A9993A1C052F8) # Maxim Dounin 

-sha256sums=('5527b08b769fd160e4efb725faab633c46b8015d66530028f4d5049ae49ba12b')
+sha256sums=('243045d638162b5b81a5f1081cf36ee7115e5caaad14c9104a464e5de0344bb0')
 
 prepare() {
   mkdir -p build



[arch-commits] Commit in nginx-mod-njs/repos/community-x86_64 (PKGBUILD PKGBUILD)

2022-05-24 Thread Massimiliano Torromeo via arch-commits
Date: Tuesday, May 24, 2022 @ 17:19:47
  Author: mtorromeo
Revision: 1210227

archrelease: copy trunk to community-x86_64

Added:
  nginx-mod-njs/repos/community-x86_64/PKGBUILD
(from rev 1210226, nginx-mod-njs/trunk/PKGBUILD)
Deleted:
  nginx-mod-njs/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-24 17:19:41 UTC (rev 1210226)
+++ PKGBUILD2022-05-24 17:19:47 UTC (rev 1210227)
@@ -1,48 +0,0 @@
-# Maintainer: Massimiliano Torromeo 
-
-pkgname=nginx-mod-njs
-pkgver=0.7.3 # https://hg.nginx.org/njs/tags
-pkgrel=1
-
-_modname="${pkgname#nginx-mod-}"
-
-pkgdesc='nginScript module for nginx'
-arch=('x86_64')
-depends=('nginx')
-makedepends=('nginx-src')
-url="https://nginx.org/en/docs/njs_about.html;
-license=('CUSTOM')
-
-source=(
-  njs-$pkgver.tar.gz::https://hg.nginx.org/njs/archive/$pkgver.tar.gz
-)
-validpgpkeys=(B0F4253373F8F6F510D42178520A9993A1C052F8) # Maxim Dounin 

-sha256sums=('5527b08b769fd160e4efb725faab633c46b8015d66530028f4d5049ae49ba12b')
-
-prepare() {
-  mkdir -p build
-  cd build
-  ln -sf /usr/src/nginx/auto
-  ln -sf /usr/src/nginx/src
-}
-
-build() {
-  cd build
-  /usr/src/nginx/configure \
---with-compat \
---with-stream \
---with-http_ssl_module \
---with-http_v2_module \
---add-dynamic-module=../njs-$pkgver/nginx
-  make modules
-}
-
-package() {
-  install -Dm644 "$srcdir"/njs-$pkgver/LICENSE \
-  "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-
-  cd build/objs
-  for mod in *.so; do
-  install -Dm755 $mod "$pkgdir"/usr/lib/nginx/modules/$mod
-  done
-}

Copied: nginx-mod-njs/repos/community-x86_64/PKGBUILD (from rev 1210226, 
nginx-mod-njs/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-24 17:19:47 UTC (rev 1210227)
@@ -0,0 +1,48 @@
+# Maintainer: Massimiliano Torromeo 
+
+pkgname=nginx-mod-njs
+pkgver=0.7.4 # https://hg.nginx.org/njs/tags
+pkgrel=1
+
+_modname="${pkgname#nginx-mod-}"
+
+pkgdesc='nginScript module for nginx'
+arch=('x86_64')
+depends=('nginx')
+makedepends=('nginx-src')
+url="https://nginx.org/en/docs/njs_about.html;
+license=('CUSTOM')
+
+source=(
+  njs-$pkgver.tar.gz::https://hg.nginx.org/njs/archive/$pkgver.tar.gz
+)
+validpgpkeys=(B0F4253373F8F6F510D42178520A9993A1C052F8) # Maxim Dounin 

+sha256sums=('243045d638162b5b81a5f1081cf36ee7115e5caaad14c9104a464e5de0344bb0')
+
+prepare() {
+  mkdir -p build
+  cd build
+  ln -sf /usr/src/nginx/auto
+  ln -sf /usr/src/nginx/src
+}
+
+build() {
+  cd build
+  /usr/src/nginx/configure \
+--with-compat \
+--with-stream \
+--with-http_ssl_module \
+--with-http_v2_module \
+--add-dynamic-module=../njs-$pkgver/nginx
+  make modules
+}
+
+package() {
+  install -Dm644 "$srcdir"/njs-$pkgver/LICENSE \
+  "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+
+  cd build/objs
+  for mod in *.so; do
+  install -Dm755 $mod "$pkgdir"/usr/lib/nginx/modules/$mod
+  done
+}



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

2022-05-24 Thread Daniel M. Capella via arch-commits
Date: Tuesday, May 24, 2022 @ 16:54:46
  Author: polyzen
Revision: 1210225

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-24 16:54:21 UTC (rev 1210224)
+++ PKGBUILD2022-05-24 16:54:46 UTC (rev 1210225)
@@ -1,42 +0,0 @@
-# Maintainer: Daniel M. Capella 
-# Contributor: Timothée Ravier 
-
-_name=dulwich
-pkgname=python-dulwich
-pkgver=0.20.40
-pkgrel=1
-pkgdesc='Pure-Python implementation of the Git file formats and protocols'
-arch=('x86_64')
-url=https://www.dulwich.io
-license=('GPL')
-depends=('python-certifi' 'python-urllib3')
-makedepends=('python-setuptools')
-checkdepends=('python-gpgme' 'python-paramiko')
-optdepends=('python-fastimport: for fast-import support'
-'python-gpgme: for PGP signature support'
-'python-idna: for HTTPS support via urllib3'
-'python-paramiko: for use as the SSH implementation'
-'python-pyopenssl: for HTTPS support via urllib3'
-'python-pyinotify: to watch for changes to refs')
-source=("https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz;)
-sha256sums=('bed70efe0b7dd51a47bcea9b984ab06a675d7438b78b32da1cbafcf750fbbad7')
-b2sums=('e6a8f04b97db638466522de3f2c15150c9c9150f6d7f8343fba889f46e7f92ddab01d7262cbe9a6762e9b3c4b1e58f12671e1f0e26849c6bcc4f8f0c8c68efc2')
-
-build() {
-  cd $_name-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd $_name-$pkgver
-  python -m venv --system-site-packages test-env
-  test-env/bin/python setup.py install --optimize=1 --skip-build
-  test-env/bin/python -m unittest dulwich.tests.test_suite
-}
-
-package() {
-  cd $_name-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-dulwich/repos/community-x86_64/PKGBUILD (from rev 1210224, 
python-dulwich/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-24 16:54:46 UTC (rev 1210225)
@@ -0,0 +1,42 @@
+# Maintainer: Daniel M. Capella 
+# Contributor: Timothée Ravier 
+
+_name=dulwich
+pkgname=python-dulwich
+pkgver=0.20.41
+pkgrel=1
+pkgdesc='Pure-Python implementation of the Git file formats and protocols'
+arch=('x86_64')
+url=https://www.dulwich.io
+license=('GPL')
+depends=('python-certifi' 'python-urllib3')
+makedepends=('python-setuptools')
+checkdepends=('python-gpgme' 'python-paramiko')
+optdepends=('python-fastimport: for fast-import support'
+'python-gpgme: for PGP signature support'
+'python-idna: for HTTPS support via urllib3'
+'python-paramiko: for use as the SSH implementation'
+'python-pyopenssl: for HTTPS support via urllib3'
+'python-pyinotify: to watch for changes to refs')
+source=("https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz;)
+sha256sums=('0ca7aef581217f5c0d52496067b5c535298873feb1af7f383ec079a381b05602')
+b2sums=('1efaef78e761e161eafcf3f35df63a15a255ae2109624c6b4d8f2ee5d4670daf778d4d127402d1abbdb5d4d8d485b9d14b3361d420f33822eae7085b09fd3a84')
+
+build() {
+  cd $_name-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd $_name-$pkgver
+  python -m venv --system-site-packages test-env
+  test-env/bin/python setup.py install --optimize=1 --skip-build
+  test-env/bin/python -m unittest dulwich.tests.test_suite
+}
+
+package() {
+  cd $_name-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}
+
+# vim:set ts=2 sw=2 et:



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

2022-05-24 Thread Daniel M. Capella via arch-commits
Date: Tuesday, May 24, 2022 @ 16:54:21
  Author: polyzen
Revision: 1210224

upgpkg: python-dulwich 0.20.41-1

Modified:
  python-dulwich/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-24 16:49:57 UTC (rev 1210223)
+++ PKGBUILD2022-05-24 16:54:21 UTC (rev 1210224)
@@ -3,7 +3,7 @@
 
 _name=dulwich
 pkgname=python-dulwich
-pkgver=0.20.40
+pkgver=0.20.41
 pkgrel=1
 pkgdesc='Pure-Python implementation of the Git file formats and protocols'
 arch=('x86_64')
@@ -19,8 +19,8 @@
 'python-pyopenssl: for HTTPS support via urllib3'
 'python-pyinotify: to watch for changes to refs')
 
source=("https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz;)
-sha256sums=('bed70efe0b7dd51a47bcea9b984ab06a675d7438b78b32da1cbafcf750fbbad7')
-b2sums=('e6a8f04b97db638466522de3f2c15150c9c9150f6d7f8343fba889f46e7f92ddab01d7262cbe9a6762e9b3c4b1e58f12671e1f0e26849c6bcc4f8f0c8c68efc2')
+sha256sums=('0ca7aef581217f5c0d52496067b5c535298873feb1af7f383ec079a381b05602')
+b2sums=('1efaef78e761e161eafcf3f35df63a15a255ae2109624c6b4d8f2ee5d4670daf778d4d127402d1abbdb5d4d8d485b9d14b3361d420f33822eae7085b09fd3a84')
 
 build() {
   cd $_name-$pkgver



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

2022-05-24 Thread Daniel M. Capella via arch-commits
Date: Tuesday, May 24, 2022 @ 16:49:57
  Author: polyzen
Revision: 1210223

archrelease: copy trunk to community-any

Added:
  stylelint/repos/community-any/PKGBUILD
(from rev 1210222, stylelint/trunk/PKGBUILD)
Deleted:
  stylelint/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-24 16:49:32 UTC (rev 1210222)
+++ PKGBUILD2022-05-24 16:49:57 UTC (rev 1210223)
@@ -1,41 +0,0 @@
-# Maintainer: Daniel M. Capella 
-
-pkgname=stylelint
-pkgver=14.8.3
-pkgrel=1
-pkgdesc='Mighty, modern CSS linter'
-arch=('any')
-url=https://stylelint.io
-license=('MIT')
-depends=('nodejs')
-makedepends=('git' 'npm' 'rsync')
-optdepends=('stylelint-config-standard: for the standard shareable config')
-source=("git+https://github.com/stylelint/stylelint.git#tag=$pkgver;)
-b2sums=('SKIP')
-
-prepare() {
-  cd $pkgname
-  npm ci
-}
-
-check() {
-  cd $pkgname
-  npm test
-}
-
-package() {
-  cd $pkgname
-
-  npm prune --production
-
-  install -d "$pkgdir"/usr/{bin,share/doc/$pkgname}
-  ln -s ../lib/node_modules/$pkgname/bin/$pkgname.js "$pkgdir"/usr/bin/$pkgname
-  install -Dt "$pkgdir"/usr/lib/node_modules/$pkgname/bin bin/$pkgname.js
-  rsync -r --exclude __tests__ --exclude lib/testUtils lib \
-"$pkgdir"/usr/lib/node_modules/$pkgname
-  cp -r node_modules package.json "$pkgdir"/usr/lib/node_modules/$pkgname
-  cp -r {CHANGELOG,CONTRIBUTING,README}.md docs 
"$pkgdir"/usr/share/doc/$pkgname
-  install -Dm644 -t "$pkgdir"/usr/share/licenses/$pkgname LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: stylelint/repos/community-any/PKGBUILD (from rev 1210222, 
stylelint/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-24 16:49:57 UTC (rev 1210223)
@@ -0,0 +1,41 @@
+# Maintainer: Daniel M. Capella 
+
+pkgname=stylelint
+pkgver=14.8.4
+pkgrel=1
+pkgdesc='Mighty, modern CSS linter'
+arch=('any')
+url=https://stylelint.io
+license=('MIT')
+depends=('nodejs')
+makedepends=('git' 'npm' 'rsync')
+optdepends=('stylelint-config-standard: for the standard shareable config')
+source=("git+https://github.com/stylelint/stylelint.git#tag=$pkgver;)
+b2sums=('SKIP')
+
+prepare() {
+  cd $pkgname
+  npm ci
+}
+
+check() {
+  cd $pkgname
+  npm test
+}
+
+package() {
+  cd $pkgname
+
+  npm prune --production
+
+  install -d "$pkgdir"/usr/{bin,share/doc/$pkgname}
+  ln -s ../lib/node_modules/$pkgname/bin/$pkgname.js "$pkgdir"/usr/bin/$pkgname
+  install -Dt "$pkgdir"/usr/lib/node_modules/$pkgname/bin bin/$pkgname.js
+  rsync -r --exclude __tests__ --exclude lib/testUtils lib \
+"$pkgdir"/usr/lib/node_modules/$pkgname
+  cp -r node_modules package.json "$pkgdir"/usr/lib/node_modules/$pkgname
+  cp -r {CHANGELOG,CONTRIBUTING,README}.md docs 
"$pkgdir"/usr/share/doc/$pkgname
+  install -Dm644 -t "$pkgdir"/usr/share/licenses/$pkgname LICENSE
+}
+
+# vim:set ts=2 sw=2 et:



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

2022-05-24 Thread Daniel M. Capella via arch-commits
Date: Tuesday, May 24, 2022 @ 16:49:32
  Author: polyzen
Revision: 1210222

upgpkg: stylelint 14.8.4-1

Modified:
  stylelint/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-24 16:22:41 UTC (rev 1210221)
+++ PKGBUILD2022-05-24 16:49:32 UTC (rev 1210222)
@@ -1,7 +1,7 @@
 # Maintainer: Daniel M. Capella 
 
 pkgname=stylelint
-pkgver=14.8.3
+pkgver=14.8.4
 pkgrel=1
 pkgdesc='Mighty, modern CSS linter'
 arch=('any')



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

2022-05-24 Thread Morten Linderud via arch-commits
Date: Tuesday, May 24, 2022 @ 16:22:41
  Author: foxboron
Revision: 1210221

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-24 16:22:34 UTC (rev 1210220)
+++ PKGBUILD2022-05-24 16:22:41 UTC (rev 1210221)
@@ -1,52 +0,0 @@
-# Maintainer: Morten Linderud 
-# Maintainer: Caleb Maclennan 
-# Contributor: Eli Schwartz 
-# Contributor: Richard Bradfield 
-
-pkgname=github-cli
-pkgver=2.10.1
-pkgrel=1
-pkgdesc="The GitHub CLI"
-arch=("x86_64")
-url="https://github.com/cli/cli;
-license=("MIT")
-depends=("glibc" "mailcap")
-makedepends=("go" "git")
-optdepends=("git: To interact with repositories")
-source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha256sums=('a94ba6a731ad558f7937d0ac46ff8034b56214ec9e24a9ad70296331b1bb12ed')
-
-prepare() {
-cd "cli-${pkgver}"
-# TODO: These tests invoke the TTY and our container *really* does not 
like that
-rm pkg/cmd/auth/login/login_test.go
-}
-
-build() {
-cd "cli-$pkgver"
-
-export CGO_CPPFLAGS="${CPPFLAGS}"
-export CGO_CFLAGS="${CFLAGS}"
-export CGO_CXXFLAGS="${CXXFLAGS}"
-export CGO_LDFLAGS="${LDFLAGS}"
-export CGO_ENABLED=0
-export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw 
-ldflags=-linkmode=external"
-
-make GH_VERSION="v$pkgver" bin/gh manpages
-bin/gh completion -s bash | install -Dm644 /dev/stdin 
share/bash-completion/completions/gh
-bin/gh completion -s zsh | install -Dm644 /dev/stdin 
share/zsh/site-functions/_gh
-bin/gh completion -s fish | install -Dm644 /dev/stdin 
share/fish/vendor_completions.d/gh.fish
-}
-
-check(){
-cd "cli-$pkgver"
-make test
-}
-
-package() {
-cd "cli-$pkgver"
-make DESTDIR="${pkgdir}" prefix="/usr" install
-cp -r share/ "$pkgdir"/usr
-install -Dm644 "LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-install -Dm644 "README.md" "$pkgdir/usr/share/doc/$pkgname/README.md"
-}

Copied: github-cli/repos/community-x86_64/PKGBUILD (from rev 1210220, 
github-cli/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-24 16:22:41 UTC (rev 1210221)
@@ -0,0 +1,52 @@
+# Maintainer: Morten Linderud 
+# Maintainer: Caleb Maclennan 
+# Contributor: Eli Schwartz 
+# Contributor: Richard Bradfield 
+
+pkgname=github-cli
+pkgver=2.11.1
+pkgrel=1
+pkgdesc="The GitHub CLI"
+arch=("x86_64")
+url="https://github.com/cli/cli;
+license=("MIT")
+depends=("glibc" "mailcap")
+makedepends=("go" "git")
+optdepends=("git: To interact with repositories")
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha256sums=('7acb4097c329686ba07836d13bc45c1d269c7d7690b3bd9212e38072c22c8520')
+
+prepare() {
+cd "cli-${pkgver}"
+# TODO: These tests invoke the TTY and our container *really* does not 
like that
+rm pkg/cmd/auth/login/login_test.go
+}
+
+build() {
+cd "cli-$pkgver"
+
+export CGO_CPPFLAGS="${CPPFLAGS}"
+export CGO_CFLAGS="${CFLAGS}"
+export CGO_CXXFLAGS="${CXXFLAGS}"
+export CGO_LDFLAGS="${LDFLAGS}"
+export CGO_ENABLED=0
+export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw 
-ldflags=-linkmode=external"
+
+make GH_VERSION="v$pkgver" bin/gh manpages
+bin/gh completion -s bash | install -Dm644 /dev/stdin 
share/bash-completion/completions/gh
+bin/gh completion -s zsh | install -Dm644 /dev/stdin 
share/zsh/site-functions/_gh
+bin/gh completion -s fish | install -Dm644 /dev/stdin 
share/fish/vendor_completions.d/gh.fish
+}
+
+check(){
+cd "cli-$pkgver"
+make test
+}
+
+package() {
+cd "cli-$pkgver"
+make DESTDIR="${pkgdir}" prefix="/usr" install
+cp -r share/ "$pkgdir"/usr
+install -Dm644 "LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+install -Dm644 "README.md" "$pkgdir/usr/share/doc/$pkgname/README.md"
+}



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

2022-05-24 Thread Morten Linderud via arch-commits
Date: Tuesday, May 24, 2022 @ 16:22:34
  Author: foxboron
Revision: 1210220

upgpkg: github-cli 2.11.1-1: upgpkg: github-cli 2.11.1-1

Modified:
  github-cli/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-24 15:34:43 UTC (rev 1210219)
+++ PKGBUILD2022-05-24 16:22:34 UTC (rev 1210220)
@@ -4,7 +4,7 @@
 # Contributor: Richard Bradfield 
 
 pkgname=github-cli
-pkgver=2.10.1
+pkgver=2.11.1
 pkgrel=1
 pkgdesc="The GitHub CLI"
 arch=("x86_64")
@@ -14,7 +14,7 @@
 makedepends=("go" "git")
 optdepends=("git: To interact with repositories")
 source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha256sums=('a94ba6a731ad558f7937d0ac46ff8034b56214ec9e24a9ad70296331b1bb12ed')
+sha256sums=('7acb4097c329686ba07836d13bc45c1d269c7d7690b3bd9212e38072c22c8520')
 
 prepare() {
 cd "cli-${pkgver}"



  1   2   >