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

2022-09-11 Thread Alexander Rødseth via arch-commits
Date: Sunday, September 11, 2022 @ 13:26:54
  Author: arodseth
Revision: 1300537

archrelease: copy trunk to community-x86_64

Added:
  bat/repos/community-x86_64/PKGBUILD
(from rev 1300536, bat/trunk/PKGBUILD)
Deleted:
  bat/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-09-11 13:26:48 UTC (rev 1300536)
+++ PKGBUILD2022-09-11 13:26:54 UTC (rev 1300537)
@@ -1,55 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Contributor: Wesley Moore 
-
-pkgname=bat
-pkgver=0.22.0
-pkgrel=1
-pkgdesc='Cat clone with syntax highlighting and git integration'
-arch=(x86_64)
-url='https://github.com/sharkdp/bat'
-license=(APACHE MIT)
-depends=(libgit2 oniguruma)
-makedepends=(clang cmake git rust)
-source=("git+$url#commit=1f9519d8b9bd3efac979766eefa0c6fae594b984") # tag: 
v0.22.0
-b2sums=(SKIP)
-
-prepare() {
-  cargo fetch --locked --manifest-path $pkgname/Cargo.toml
-}
-
-build() {
-  export CFLAGS+=' -ffat-lto-objects -w'
-  cargo build --locked --manifest-path $pkgname/Cargo.toml --release
-}
-
-check() {
-  cargo test --locked --manifest-path $pkgname/Cargo.toml
-}
-
-package() {
-  install -Dm755 $pkgname/target/release/$pkgname "$pkgdir/usr/bin/$pkgname"
-
-  # Package licenses
-  install -Dm644 $pkgname/LICENSE-APACHE \
-"$pkgdir/usr/share/licenses/$pkgname/LICENSE-APACHE"
-  install -Dm644 $pkgname/LICENSE-MIT \
-"$pkgdir/usr/share/licenses/$pkgname/LICENSE-MIT"
-
-  cd $pkgname/target/release/build
-
-  # Find and package the man page (because cargo --out-dir is too new)
-  find . -name bat.1 -type f -exec install -Dm644 {} \
-"$pkgdir/usr/share/man/man1/bat.1" \;
-
-  # Find and package the bash completion file
-  find . -name bat.bash -type f -exec install -Dm644 {} \
-"$pkgdir/usr/share/bash-completion/completions/bat" \;
-
-  # Find and package the zsh completion file (not in zsh-completions yet)
-  find . -name bat.zsh -type f -exec install -Dm644 {} \
-"$pkgdir/usr/share/zsh/site-functions/_bat" \;
-
-  # Find and package the fish completion file
-  find . -name bat.fish -type f -exec install -Dm644 {} \
-"$pkgdir/usr/share/fish/vendor_completions.d/bat.fish" \;
-}

Copied: bat/repos/community-x86_64/PKGBUILD (from rev 1300536, 
bat/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-09-11 13:26:54 UTC (rev 1300537)
@@ -0,0 +1,55 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: Wesley Moore 
+
+pkgname=bat
+pkgver=0.22.1
+pkgrel=1
+pkgdesc='Cat clone with syntax highlighting and git integration'
+arch=(x86_64)
+url='https://github.com/sharkdp/bat'
+license=(APACHE MIT)
+depends=(libgit2 oniguruma)
+makedepends=(clang cmake git rust)
+source=("git+$url#commit=e5d95796141a719e208208182a5d3c2090a009c6") # tag: 
v0.22.1
+b2sums=(SKIP)
+
+prepare() {
+  cargo fetch --locked --manifest-path $pkgname/Cargo.toml
+}
+
+build() {
+  export CFLAGS+=' -ffat-lto-objects -w'
+  cargo build --locked --manifest-path $pkgname/Cargo.toml --release
+}
+
+check() {
+  cargo test --locked --manifest-path $pkgname/Cargo.toml
+}
+
+package() {
+  install -Dm755 $pkgname/target/release/$pkgname "$pkgdir/usr/bin/$pkgname"
+
+  # Package licenses
+  install -Dm644 $pkgname/LICENSE-APACHE \
+"$pkgdir/usr/share/licenses/$pkgname/LICENSE-APACHE"
+  install -Dm644 $pkgname/LICENSE-MIT \
+"$pkgdir/usr/share/licenses/$pkgname/LICENSE-MIT"
+
+  cd $pkgname/target/release/build
+
+  # Find and package the man page (because cargo --out-dir is too new)
+  find . -name bat.1 -type f -exec install -Dm644 {} \
+"$pkgdir/usr/share/man/man1/bat.1" \;
+
+  # Find and package the bash completion file
+  find . -name bat.bash -type f -exec install -Dm644 {} \
+"$pkgdir/usr/share/bash-completion/completions/bat" \;
+
+  # Find and package the zsh completion file (not in zsh-completions yet)
+  find . -name bat.zsh -type f -exec install -Dm644 {} \
+"$pkgdir/usr/share/zsh/site-functions/_bat" \;
+
+  # Find and package the fish completion file
+  find . -name bat.fish -type f -exec install -Dm644 {} \
+"$pkgdir/usr/share/fish/vendor_completions.d/bat.fish" \;
+}



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

2022-09-11 Thread Alexander Rødseth via arch-commits
Date: Sunday, September 11, 2022 @ 13:26:48
  Author: arodseth
Revision: 1300536

upgpkg: bat 0.22.1-1

Modified:
  bat/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-09-11 12:28:49 UTC (rev 1300535)
+++ PKGBUILD2022-09-11 13:26:48 UTC (rev 1300536)
@@ -2,7 +2,7 @@
 # Contributor: Wesley Moore 
 
 pkgname=bat
-pkgver=0.22.0
+pkgver=0.22.1
 pkgrel=1
 pkgdesc='Cat clone with syntax highlighting and git integration'
 arch=(x86_64)
@@ -10,7 +10,7 @@
 license=(APACHE MIT)
 depends=(libgit2 oniguruma)
 makedepends=(clang cmake git rust)
-source=("git+$url#commit=1f9519d8b9bd3efac979766eefa0c6fae594b984") # tag: 
v0.22.0
+source=("git+$url#commit=e5d95796141a719e208208182a5d3c2090a009c6") # tag: 
v0.22.1
 b2sums=(SKIP)
 
 prepare() {



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

2022-09-10 Thread Alexander Rødseth via arch-commits
Date: Saturday, September 10, 2022 @ 08:32:14
  Author: arodseth
Revision: 1298792

archrelease: copy trunk to community-any

Added:
  grails/repos/community-any/PKGBUILD
(from rev 1298791, grails/trunk/PKGBUILD)
Deleted:
  grails/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-09-10 08:32:06 UTC (rev 1298791)
+++ PKGBUILD2022-09-10 08:32:14 UTC (rev 1298792)
@@ -1,50 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Contributor: Levente Polyak 
-
-pkgbase=grails
-pkgname=(grails grails-docs)
-pkgver=5.1.2
-pkgrel=1
-pkgdesc='Groovy on rails, web framework'
-url='https://grails.org/'
-arch=(any)
-license=(Apache)
-makedepends=(apache-ant java-environment junit setconf unzip)
-optdepends=('grails-docs: documentation for grails'
-'groovy: the groovy programming language')
-options=('!emptydirs')
-noextract=("${pkgname[1]}-${pkgver}.zip")
-source=(${pkgname[0]}-${pkgver}.zip::https://github.com/grails/grails-core/releases/download/v${pkgver}/grails-${pkgver}.zip
-
${pkgname[1]}-${pkgver}.zip::https://github.com/grails/grails-doc/releases/download/v${pkgver}/grails-docs.zip)
-b2sums=('60befa361c8df05c7cf6dcf85343856fb422b806ec60fabad65643d0393213d934e276f2a1e51fa9ef1298fb49d2cdf43013991440f294b8dfc167589b1a5014'
-
'b4a71f5d9ab5627903552370df0787d210db1203ea91e20d3abd394ed8e34d508ec56c761dd87f198c021b0fa1a71d7061a7965a6eb9b173de5b9dd10ac0a8fc')
-
-prepare() {
-  cd $pkgbase-$pkgver
-  echo 'export GRAILS_HOME=/usr/share/grails' > "${srcdir}/${pkgbase}.profile"
-  setconf bin/grails APP_HOME /usr/share/grails
-  tail bin/grails
-}
-
-package_grails() {
-  depends=('java-environment' 'junit' 'bash')
-
-  install -Dm755 $pkgbase.profile "$pkgdir/etc/profile.d/$pkgname.sh"
-  cd $pkgbase-$pkgver
-  install -d "$pkgdir/usr/share/pixmaps"
-  cp -r . "$pkgdir/usr/share/$pkgname"
-  install -Dm755 bin/grails "$pkgdir/usr/bin/grails"
-  install -Dm644 media/icons/*.png -t "$pkgdir/usr/share/pixmaps"
-
-  # clean up
-  cd "$pkgdir/usr/share/$pkgname"
-  rm -rf doc INSTALL LICENSE README
-  find "${pkgdir}/usr/share" -name "*.bat" -exec rm {} \;
-}
-
-package_grails-docs() {
-  pkgdesc='Documentation for Grails'
-  install -d "$pkgdir/usr/share/doc" "$pkgdir/usr/share/grails"
-  unzip "grails-docs-$pkgver.zip" -d "$pkgdir/usr/share/doc/grails-$pkgver"
-  ln -s "/usr/share/doc/grails-$pkgver" "$pkgdir/usr/share/grails/doc"
-}

Copied: grails/repos/community-any/PKGBUILD (from rev 1298791, 
grails/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-09-10 08:32:14 UTC (rev 1298792)
@@ -0,0 +1,50 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: Levente Polyak 
+
+pkgbase=grails
+pkgname=(grails grails-docs)
+pkgver=5.2.3
+pkgrel=1
+pkgdesc='Groovy on rails, a web framework'
+url='https://grails.org/'
+arch=(any)
+license=(Apache)
+makedepends=(apache-ant java-environment junit setconf unzip)
+optdepends=('grails-docs: documentation for grails'
+'groovy: the groovy programming language')
+options=(!emptydirs)
+noextract=(${pkgname[1]}-$pkgver.zip)
+source=(${pkgname[0]}-$pkgver.zip::https://github.com/grails/grails-core/releases/download/v$pkgver/grails-$pkgver.zip
+
${pkgname[1]}-$pkgver.zip::https://github.com/grails/grails-doc/releases/download/v$pkgver/grails-docs.zip)
+b2sums=('0fd4b0918206f03f4fd330eff3a4271e562128baa196bc82c94be66b9e4b78af78ed20f3bd3a7f878c3f2128d4b94eff25c596e641a7c4a9675bcd0528cadcc8'
+
'a71bd8d67c4ee08cbb2db530340d667cf9f77229e377bd75de1c0c064de934e628b0db71fafb6cc37a3cbbbda25a89943f323618ace790868f8377a20c5c972c')
+
+prepare() {
+  cd $pkgbase-$pkgver
+  echo 'export GRAILS_HOME=/usr/share/grails' > "${srcdir}/${pkgbase}.profile"
+  setconf bin/grails APP_HOME /usr/share/grails
+  tail bin/grails
+}
+
+package_grails() {
+  depends=(bash java-environment junit)
+
+  install -Dm755 $pkgbase.profile "$pkgdir/etc/profile.d/$pkgname.sh"
+  cd $pkgbase-$pkgver
+  install -d "$pkgdir/usr/share/pixmaps"
+  cp -r . "$pkgdir/usr/share/$pkgname"
+  install -Dm755 bin/grails "$pkgdir/usr/bin/grails"
+  install -Dm644 media/icons/*.png -t "$pkgdir/usr/share/pixmaps"
+
+  # clean up
+  cd "$pkgdir/usr/share/$pkgname"
+  rm -rf doc INSTALL LICENSE README
+  find "${pkgdir}/usr/share" -name "*.bat" -exec rm {} \;
+}
+
+package_grails-docs() {
+  pkgdesc='Documentation for Grails'
+  install -d "$pkgdir/usr/share/doc" "$pkgdir/usr/share/grails"
+  unzip "grails-docs-$pkgver.zip" -d "$pkgdir/usr/share/doc/grails-$pkgver"
+  ln -s "/usr/share/doc/grails-$pkgver" "$pkgdir/usr/share/grails/doc"
+}



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

2022-09-10 Thread Alexander Rødseth via arch-commits
Date: Saturday, September 10, 2022 @ 08:32:06
  Author: arodseth
Revision: 1298791

upgpkg: grails 5.2.3-1

Modified:
  grails/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-09-10 08:28:51 UTC (rev 1298790)
+++ PKGBUILD2022-09-10 08:32:06 UTC (rev 1298791)
@@ -3,9 +3,9 @@
 
 pkgbase=grails
 pkgname=(grails grails-docs)
-pkgver=5.1.2
+pkgver=5.2.3
 pkgrel=1
-pkgdesc='Groovy on rails, web framework'
+pkgdesc='Groovy on rails, a web framework'
 url='https://grails.org/'
 arch=(any)
 license=(Apache)
@@ -12,12 +12,12 @@
 makedepends=(apache-ant java-environment junit setconf unzip)
 optdepends=('grails-docs: documentation for grails'
 'groovy: the groovy programming language')
-options=('!emptydirs')
-noextract=("${pkgname[1]}-${pkgver}.zip")
-source=(${pkgname[0]}-${pkgver}.zip::https://github.com/grails/grails-core/releases/download/v${pkgver}/grails-${pkgver}.zip
-
${pkgname[1]}-${pkgver}.zip::https://github.com/grails/grails-doc/releases/download/v${pkgver}/grails-docs.zip)
-b2sums=('60befa361c8df05c7cf6dcf85343856fb422b806ec60fabad65643d0393213d934e276f2a1e51fa9ef1298fb49d2cdf43013991440f294b8dfc167589b1a5014'
-
'b4a71f5d9ab5627903552370df0787d210db1203ea91e20d3abd394ed8e34d508ec56c761dd87f198c021b0fa1a71d7061a7965a6eb9b173de5b9dd10ac0a8fc')
+options=(!emptydirs)
+noextract=(${pkgname[1]}-$pkgver.zip)
+source=(${pkgname[0]}-$pkgver.zip::https://github.com/grails/grails-core/releases/download/v$pkgver/grails-$pkgver.zip
+
${pkgname[1]}-$pkgver.zip::https://github.com/grails/grails-doc/releases/download/v$pkgver/grails-docs.zip)
+b2sums=('0fd4b0918206f03f4fd330eff3a4271e562128baa196bc82c94be66b9e4b78af78ed20f3bd3a7f878c3f2128d4b94eff25c596e641a7c4a9675bcd0528cadcc8'
+
'a71bd8d67c4ee08cbb2db530340d667cf9f77229e377bd75de1c0c064de934e628b0db71fafb6cc37a3cbbbda25a89943f323618ace790868f8377a20c5c972c')
 
 prepare() {
   cd $pkgbase-$pkgver
@@ -27,7 +27,7 @@
 }
 
 package_grails() {
-  depends=('java-environment' 'junit' 'bash')
+  depends=(bash java-environment junit)
 
   install -Dm755 $pkgbase.profile "$pkgdir/etc/profile.d/$pkgname.sh"
   cd $pkgbase-$pkgver



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

2022-09-10 Thread Alexander Rødseth via arch-commits
Date: Saturday, September 10, 2022 @ 08:25:42
  Author: arodseth
Revision: 1298788

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-09-10 08:25:29 UTC (rev 1298787)
+++ PKGBUILD2022-09-10 08:25:42 UTC (rev 1298788)
@@ -1,24 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-
-pkgname=python-glfw
-pkgver=2.5.4
-pkgrel=1
-pkgdesc='Module for OpenGL, OpenGL ES, Vulkan, window and input support'
-arch=(any)
-url='https://github.com/FlorianRhiem/pyGLFW'
-license=(MIT)
-depends=(glfw python)
-makedepends=(git python-setuptools)
-source=("git+$url#commit=23cd892aff3fab8485ae453ef4edf25101e9d6cb") # tag: 
v2.5.4
-b2sums=('SKIP')
-
-build() {
-  cd pyGLFW
-  python setup.py build
-}
-
-package() {
-  cd pyGLFW
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: python-glfw/repos/community-any/PKGBUILD (from rev 1298787, 
python-glfw/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-09-10 08:25:42 UTC (rev 1298788)
@@ -0,0 +1,24 @@
+# Maintainer: Alexander F. Rødseth 
+
+pkgname=python-glfw
+pkgver=2.5.5
+pkgrel=1
+pkgdesc='Module for OpenGL, OpenGL ES, Vulkan, window and input support'
+arch=(any)
+url='https://github.com/FlorianRhiem/pyGLFW'
+license=(MIT)
+depends=(glfw python)
+makedepends=(git python-setuptools)
+source=("git+$url#commit=f7827d094999ee487a4a778a22e6b9686f5c0488") # tag: 
v2.5.5
+b2sums=('SKIP')
+
+build() {
+  cd pyGLFW
+  python setup.py build
+}
+
+package() {
+  cd pyGLFW
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}



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

2022-09-10 Thread Alexander Rødseth via arch-commits
Date: Saturday, September 10, 2022 @ 08:25:29
  Author: arodseth
Revision: 1298787

archrelease: copy trunk to community-x86_64

Added:
  erlang/repos/community-x86_64/PKGBUILD
(from rev 1298786, erlang/trunk/PKGBUILD)
  erlang/repos/community-x86_64/epmd.conf
(from rev 1298786, erlang/trunk/epmd.conf)
  erlang/repos/community-x86_64/epmd.service
(from rev 1298786, erlang/trunk/epmd.service)
  erlang/repos/community-x86_64/epmd.socket
(from rev 1298786, erlang/trunk/epmd.socket)
Deleted:
  erlang/repos/community-x86_64/PKGBUILD
  erlang/repos/community-x86_64/epmd.conf
  erlang/repos/community-x86_64/epmd.service
  erlang/repos/community-x86_64/epmd.socket

--+
 PKGBUILD |  180 -
 epmd.conf|6 -
 epmd.service |   22 +++---
 epmd.socket  |   18 ++---
 4 files changed, 113 insertions(+), 113 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-09-10 08:25:15 UTC (rev 1298786)
+++ PKGBUILD2022-09-10 08:25:29 UTC (rev 1298787)
@@ -1,90 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Contributor: loqs
-# Contributor: Lukas Fleischer 
-# Contributor: Vesa Kaihlavirta 
-# Contributor: Sarah Hay 
-# Contributor: Tom Burdick 
-# Contributor: Ricardo Catalinas Jiménez 
-
-pkgbase=erlang
-pkgname=(erlang erlang-unixodbc)
-pkgver=25.0.3
-pkgrel=1
-_docver=25.0
-arch=(x86_64)
-url='https://erlang.org'
-license=(Apache)
-makedepends=(fop git glu java-environment libxslt lksctp-tools mesa perl 
unixodbc wxwidgets-gtk3)
-options=(staticlibs)
-source=(epmd.conf
-epmd.service
-epmd.socket
-"$url/download/otp_doc_man_$_docver.tar.gz"
-
"git+https://github.com/erlang/otp#commit=89c04fb1836fb865565125a4d5880b93e784d856;)
 # tag: OTP-25.0.3
-b2sums=('1675ac9bf948ab19e8b63077d870ccf356fcdbce14de2777f00b3488aa1ce34a5e0a5cdc0428707f744dee5940b12653a44e0ded0554de95ebb31bce4676ff87'
-
'1f765318bcd322ce697a48c064ccdb1bd107b4a84e164a87f62678391cb82a9ab17a397d679cf266e037a5a2d91772b85f7a97f9cc5478c0f18118743b30045f'
-
'c37706f5f6e2d49100104fb442ebf15edd6ee0a1e8038d0364794cf34fd3f02a61b9ad2706228b3327b85b0cadcd11aac6087e7c98408eae2d307a09191b6553'
-
'cb48044163b265fb339b774a854662705d1bdf52cfabf3d4a268538c5e53b984c3d26f05acea2f217a1bf6e838469564cef1a4c591d9af43980e1d8f422c43fd'
-'SKIP')
-
-prepare() {
-  # adjust how LDFLAGS are handled
-  sed -i 's/^LDFLAGS = /LDFLAGS += /g' \
-otp/lib/{odbc/c_src,megaco/src/flex}/Makefile.in
-}
-
-build() {
-  export CFLAGS+=' -ffat-lto-objects'
-  export WX_GKT_VER='3.2'
-  cd otp
-  ./otp_build autoconf
-  ./configure \
---enable-builtin-zlib \
---enable-smp-support \
---prefix=/usr \
---with-odbc
-  make
-}
-
-package_erlang() {
-  pkgdesc='General-purpose concurrent functional programming language 
developed by Ericsson'
-  depends=(glu ncurses openssl webkit2gtk wxwidgets-gtk3)
-  optdepends=('erlang-unixodbc: database support'
-  'java-environment: for Java support'
-  'lksctp-tools: for SCTP support')
-  provides=(erlang-nox)
-  conflicts=(erlang-nox)
-
-  export PATH="$srcdir/bin:$PATH"
-  make -C otp DESTDIR="$pkgdir" install
-
-  # move files that belong to the erlang-unixodbc package
-  mkdir -p unixodbc
-  mv "$pkgdir/usr/lib/erlang/lib/odbc"* "$srcdir/unixodbc/"
-
-  # services and configuration
-  install -Dm644 epmd.service "$pkgdir/usr/lib/systemd/system/epmd.service"
-  install -Dm644 epmd.socket "$pkgdir/usr/lib/systemd/system/epmd.socket"
-  install -Dm644 epmd.conf "$pkgdir/etc/conf.d/epmd"
-
-  # readme and licenses
-  install -Dm644 otp/README.md "$pkgdir/usr/share/doc/$pkgname/README.md"
-  install -Dm644 otp/LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-  install -Dm644 otp/CONTRIBUTING.md 
"$pkgdir/usr/share/doc/$pkgname/CONTRIBUTING.md"
-  install -Dm644 otp/AUTHORS "$pkgdir/usr/share/doc/$pkgname/AUTHORS"
-
-  # man pages
-  cp -r -v man "$pkgdir/usr/lib/erlang/"
-}
-
-package_erlang-unixodbc() {
-  pkgdesc='Unixodbc support for Erlang'
-  depends=(erlang-nox unixodbc)
-
-  install -d "$pkgdir/usr/lib/erlang/lib"
-  mv unixodbc/* "$pkgdir/usr/lib/erlang/lib/"
-  install -Dm644 otp/LICENSE.txt \
-"$pkgdir/usr/share/licenses/$pkgname/LICENCE.txt"
-}
-
-# getver: raw.githubusercontent.com/erlang/otp/maint/OTP_VERSION

Copied: erlang/repos/community-x86_64/PKGBUILD (from rev 1298786, 
erlang/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-09-10 08:25:29 UTC (rev 1298787)
@@ -0,0 +1,90 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: loqs
+# Contributor: Lukas Fleischer 
+# Contributor: Vesa Kaihlavirta 
+# Contributor: Sarah Hay 
+# Contributor: Tom Burdick 
+# Contributor: Ricardo Catalinas Jiménez 
+
+pkgbase=erlang
+pkgname=(erlang erlang-unixodbc)
+pkgver=25.0.4
+pkgrel=1

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

2022-09-10 Thread Alexander Rødseth via arch-commits
Date: Saturday, September 10, 2022 @ 08:25:15
  Author: arodseth
Revision: 1298786

upgpkg: erlang 25.0.4-1

Modified:
  erlang/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-09-10 08:25:09 UTC (rev 1298785)
+++ PKGBUILD2022-09-10 08:25:15 UTC (rev 1298786)
@@ -8,7 +8,7 @@
 
 pkgbase=erlang
 pkgname=(erlang erlang-unixodbc)
-pkgver=25.0.3
+pkgver=25.0.4
 pkgrel=1
 _docver=25.0
 arch=(x86_64)
@@ -20,7 +20,7 @@
 epmd.service
 epmd.socket
 "$url/download/otp_doc_man_$_docver.tar.gz"
-
"git+https://github.com/erlang/otp#commit=89c04fb1836fb865565125a4d5880b93e784d856;)
 # tag: OTP-25.0.3
+
"git+https://github.com/erlang/otp#commit=c028b855ee3f12c835ff3538a90ac5dbc155631b;)
 # tag: OTP-25.0.4
 
b2sums=('1675ac9bf948ab19e8b63077d870ccf356fcdbce14de2777f00b3488aa1ce34a5e0a5cdc0428707f744dee5940b12653a44e0ded0554de95ebb31bce4676ff87'
 
'1f765318bcd322ce697a48c064ccdb1bd107b4a84e164a87f62678391cb82a9ab17a397d679cf266e037a5a2d91772b85f7a97f9cc5478c0f18118743b30045f'
 
'c37706f5f6e2d49100104fb442ebf15edd6ee0a1e8038d0364794cf34fd3f02a61b9ad2706228b3327b85b0cadcd11aac6087e7c98408eae2d307a09191b6553'



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

2022-09-10 Thread Alexander Rødseth via arch-commits
Date: Saturday, September 10, 2022 @ 08:25:09
  Author: arodseth
Revision: 1298785

upgpkg: python-glfw 2.5.5-1

Modified:
  python-glfw/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-09-10 08:24:59 UTC (rev 1298784)
+++ PKGBUILD2022-09-10 08:25:09 UTC (rev 1298785)
@@ -1,7 +1,7 @@
 # Maintainer: Alexander F. Rødseth 
 
 pkgname=python-glfw
-pkgver=2.5.4
+pkgver=2.5.5
 pkgrel=1
 pkgdesc='Module for OpenGL, OpenGL ES, Vulkan, window and input support'
 arch=(any)
@@ -9,7 +9,7 @@
 license=(MIT)
 depends=(glfw python)
 makedepends=(git python-setuptools)
-source=("git+$url#commit=23cd892aff3fab8485ae453ef4edf25101e9d6cb") # tag: 
v2.5.4
+source=("git+$url#commit=f7827d094999ee487a4a778a22e6b9686f5c0488") # tag: 
v2.5.5
 b2sums=('SKIP')
 
 build() {



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

2022-09-10 Thread Alexander Rødseth via arch-commits
Date: Saturday, September 10, 2022 @ 08:24:59
  Author: arodseth
Revision: 1298784

archrelease: copy trunk to community-x86_64

Added:
  erlang-nox/repos/community-x86_64/PKGBUILD
(from rev 1298783, erlang-nox/trunk/PKGBUILD)
  erlang-nox/repos/community-x86_64/epmd.conf
(from rev 1298783, erlang-nox/trunk/epmd.conf)
  erlang-nox/repos/community-x86_64/epmd.service
(from rev 1298783, erlang-nox/trunk/epmd.service)
  erlang-nox/repos/community-x86_64/epmd.socket
(from rev 1298783, erlang-nox/trunk/epmd.socket)
Deleted:
  erlang-nox/repos/community-x86_64/PKGBUILD
  erlang-nox/repos/community-x86_64/epmd.conf
  erlang-nox/repos/community-x86_64/epmd.service
  erlang-nox/repos/community-x86_64/epmd.socket

--+
 PKGBUILD |  134 -
 epmd.conf|6 +-
 epmd.service |   22 -
 epmd.socket  |   18 +++
 4 files changed, 90 insertions(+), 90 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-09-10 08:24:49 UTC (rev 1298783)
+++ PKGBUILD2022-09-10 08:24:59 UTC (rev 1298784)
@@ -1,67 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Contributor: Lukas Fleischer 
-# Contributor: Vesa Kaihlavirta 
-# Contributor: Sarah Hay 
-# Contributor: Tom Burdick 
-# Contributor: Ricardo Catalinas Jiménez 
-
-pkgname=erlang-nox
-pkgver=25.0.3
-pkgrel=1
-_docver=25.0
-pkgdesc='General-purpose concurrent functional programming language (headless 
version)'
-arch=(x86_64)
-url='https://erlang.org/'
-license=(Apache)
-depends=(ncurses openssl)
-makedepends=(fop git java-environment libxslt lksctp-tools unixodbc)
-conflicts=(erlang)
-optdepends=('erlang-unixodbc: database support'
-'java-environment: for Java support'
-'lksctp-tools: for SCTP support')
-options=(staticlibs)
-source=(epmd.conf
-epmd.service
-epmd.socket
-"$url/download/otp_doc_man_$_docver.tar.gz"
-
"git+https://github.com/erlang/otp#commit=89c04fb1836fb865565125a4d5880b93e784d856;)
 # tag: OTP-25.0.3
-b2sums=('1675ac9bf948ab19e8b63077d870ccf356fcdbce14de2777f00b3488aa1ce34a5e0a5cdc0428707f744dee5940b12653a44e0ded0554de95ebb31bce4676ff87'
-
'1f765318bcd322ce697a48c064ccdb1bd107b4a84e164a87f62678391cb82a9ab17a397d679cf266e037a5a2d91772b85f7a97f9cc5478c0f18118743b30045f'
-
'c37706f5f6e2d49100104fb442ebf15edd6ee0a1e8038d0364794cf34fd3f02a61b9ad2706228b3327b85b0cadcd11aac6087e7c98408eae2d307a09191b6553'
-
'cb48044163b265fb339b774a854662705d1bdf52cfabf3d4a268538c5e53b984c3d26f05acea2f217a1bf6e838469564cef1a4c591d9af43980e1d8f422c43fd'
-'SKIP')
-
-build() {
-  cd otp
-  export CFLAGS+=' -ffat-lto-objects'
-  ./otp_build autoconf
-  ./configure \
---enable-builtin-zlib \
---enable-smp-support \
---prefix=/usr \
---with-odbc
-  make
-}
-
-package() {
-  make -C otp DESTDIR="$pkgdir" install
-
-  # services and configuration
-  install -Dm644 epmd.service "$pkgdir/usr/lib/systemd/system/epmd.service"
-  install -Dm644 epmd.socket "$pkgdir/usr/lib/systemd/system/epmd.socket"
-  install -Dm644 epmd.conf "$pkgdir/etc/conf.d/epmd"
-
-  # readme and licenses
-  install -Dm644 otp/README.md "$pkgdir/usr/share/doc/$pkgname/README.md"
-  install -Dm644 otp/LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-  install -Dm644 otp/CONTRIBUTING.md 
"$pkgdir/usr/share/doc/$pkgname/CONTRIBUTING.md"
-  install -Dm644 otp/AUTHORS "$pkgdir/usr/share/doc/$pkgname/AUTHORS"
-
-  # man pages
-  cp -r -v man "$pkgdir/usr/lib/erlang/"
-
-  # remove files that are included in the erlang-unixodbc package
-  rm -rf "$pkgdir/usr/lib/erlang/"{lib/odbc*,man/man3/odbc.3}
-}
-
-# getver: raw.githubusercontent.com/erlang/otp/maint/OTP_VERSION

Copied: erlang-nox/repos/community-x86_64/PKGBUILD (from rev 1298783, 
erlang-nox/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-09-10 08:24:59 UTC (rev 1298784)
@@ -0,0 +1,67 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: Lukas Fleischer 
+# Contributor: Vesa Kaihlavirta 
+# Contributor: Sarah Hay 
+# Contributor: Tom Burdick 
+# Contributor: Ricardo Catalinas Jiménez 
+
+pkgname=erlang-nox
+pkgver=25.0.4
+pkgrel=1
+_docver=25.0
+pkgdesc='General-purpose concurrent functional programming language (headless 
version)'
+arch=(x86_64)
+url='https://erlang.org/'
+license=(Apache)
+depends=(ncurses openssl)
+makedepends=(fop git java-environment libxslt lksctp-tools unixodbc)
+conflicts=(erlang)
+optdepends=('erlang-unixodbc: database support'
+'java-environment: for Java support'
+'lksctp-tools: for SCTP support')
+options=(staticlibs)
+source=(epmd.conf
+epmd.service
+epmd.socket
+"$url/download/otp_doc_man_$_docver.tar.gz"
+
"git+https://github.com/erlang/otp#commit=c028b855ee3f12c835ff3538a90ac5dbc155631b;)
 # tag: 

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

2022-09-10 Thread Alexander Rødseth via arch-commits
Date: Saturday, September 10, 2022 @ 08:24:49
  Author: arodseth
Revision: 1298783

upgpkg: erlang-nox 25.0.4-1

Modified:
  erlang-nox/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-09-10 08:13:37 UTC (rev 1298782)
+++ PKGBUILD2022-09-10 08:24:49 UTC (rev 1298783)
@@ -6,7 +6,7 @@
 # Contributor: Ricardo Catalinas Jiménez 
 
 pkgname=erlang-nox
-pkgver=25.0.3
+pkgver=25.0.4
 pkgrel=1
 _docver=25.0
 pkgdesc='General-purpose concurrent functional programming language (headless 
version)'
@@ -24,7 +24,7 @@
 epmd.service
 epmd.socket
 "$url/download/otp_doc_man_$_docver.tar.gz"
-
"git+https://github.com/erlang/otp#commit=89c04fb1836fb865565125a4d5880b93e784d856;)
 # tag: OTP-25.0.3
+
"git+https://github.com/erlang/otp#commit=c028b855ee3f12c835ff3538a90ac5dbc155631b;)
 # tag: OTP-25.0.4
 
b2sums=('1675ac9bf948ab19e8b63077d870ccf356fcdbce14de2777f00b3488aa1ce34a5e0a5cdc0428707f744dee5940b12653a44e0ded0554de95ebb31bce4676ff87'
 
'1f765318bcd322ce697a48c064ccdb1bd107b4a84e164a87f62678391cb82a9ab17a397d679cf266e037a5a2d91772b85f7a97f9cc5478c0f18118743b30045f'
 
'c37706f5f6e2d49100104fb442ebf15edd6ee0a1e8038d0364794cf34fd3f02a61b9ad2706228b3327b85b0cadcd11aac6087e7c98408eae2d307a09191b6553'



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

2022-09-08 Thread Alexander Rødseth via arch-commits
Date: Thursday, September 8, 2022 @ 08:51:29
  Author: arodseth
Revision: 1296328

archrelease: copy trunk to community-x86_64

Added:
  coin/repos/community-x86_64/PKGBUILD
(from rev 1296327, coin/trunk/PKGBUILD)
Deleted:
  coin/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-09-08 08:51:24 UTC (rev 1296327)
+++ PKGBUILD2022-09-08 08:51:29 UTC (rev 1296328)
@@ -1,56 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Contributor: Gabriel Souza Franco
-# Contributor: Florian Pritz
-# Contributor: Christian Hesse 
-# Contributor: Thomas Dziedzic 
-# Contributor: Mickele
-# Contributor: Marcus Fritzsch 
-
-pkgname=coin
-pkgver=4.0.0.f4e446
-pkgrel=3
-pkgdesc='3D graphics library compatible with Open Inventor'
-url='https://github.com/coin3d/coin'
-license=(GPL)
-arch=(x86_64)
-depends=(libgl)
-makedepends=(boost cmake doxygen ninja git glu)
-optdepends=('fontconfig: dynamic linking support'
-'freetype2: dynamic linking support'
-'openal: audio/dynamic linking support'
-'zlib: dynamic linking support')
-# f4e446e is the same as version 4.0.0 + patches
-source=("git+$url#commit=f4e446e3d510a880d1b7808fb7e45d781e8b8a4c"
-
'man3.patch::https://github.com/coin3d/coin/commit/5a97506a7fa80c5ebcc8aa4685d5cd07b7d95bed.patch')
-sha256sums=('SKIP'
-'527619771572adf3c57da2e19690e595c66997555a9f3fef22c637a87c61602c')
-
-prepare() {
-  cd coin
-  patch -p1 -i ../man3.patch || true
-}
-
-build() {
-  mkdir -p build
-  cd build
-  cmake ../coin \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DCOIN_THREADSAFE=ON \
--DCOIN_BUILD_DOCUMENTATION=ON \
--DCOIN_BUILD_DOCUMENTATION_CHM=OFF \
--DCOIN_BUILD_DOCUMENTATION_MAN=ON \
--DUSE_EXTERNAL_EXPAT=ON \
--DCMAKE_C_FLAGS="$CFLAGS -fPIC -w" \
--DCMAKE_CXX_FLAGS="$CXXFLAGS -fPIC -w" \
--GNinja
-  ninja
-}
-
-package() {
-  DESTDIR="$pkgdir" ninja -C build install
-  # Skip the HTML documentation
-  rm -rf "$pkgdir/usr/share/doc"
-  # Remove an empty directory
-  rmdir "$pkgdir/usr/share/Coin/profiler"
-}

Copied: coin/repos/community-x86_64/PKGBUILD (from rev 1296327, 
coin/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-09-08 08:51:29 UTC (rev 1296328)
@@ -0,0 +1,56 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: Gabriel Souza Franco
+# Contributor: Florian Pritz
+# Contributor: Christian Hesse 
+# Contributor: Thomas Dziedzic 
+# Contributor: Mickele
+# Contributor: Marcus Fritzsch 
+
+pkgname=coin
+pkgver=4.0.0.04c190
+pkgrel=4
+pkgdesc='3D graphics library compatible with Open Inventor'
+url='https://github.com/coin3d/coin'
+license=(GPL)
+arch=(x86_64)
+depends=(libgl)
+makedepends=(boost cmake doxygen ninja git glu)
+optdepends=('fontconfig: dynamic linking support'
+'freetype2: dynamic linking support'
+'openal: audio/dynamic linking support'
+'zlib: dynamic linking support')
+# 04c190 is the same as version 4.0.0 + patches
+source=("git+$url#commit=04c19005bfd124d980e8946cb5bc1fc2b37bda29"
+
'man3.patch::https://github.com/coin3d/coin/commit/5a97506a7fa80c5ebcc8aa4685d5cd07b7d95bed.patch')
+b2sums=('SKIP'
+
'd1b2d7f740f8abca17e080b53e5d7c22c699b4cfe65c6115dc2a721484ac429a1f6a5fffd3fd4ce705a62b68cd276bc4ad3c2bd3c1a0ddb5e28a20ed4ba80889')
+
+prepare() {
+  cd coin
+  patch -i ../man3.patch -p1 -s -t
+}
+
+build() {
+  cmake \
+-B build \
+-D CMAKE_C_FLAGS="$CFLAGS -fPIC -w" \
+-D CMAKE_CXX_FLAGS="$CXXFLAGS -fPIC -w" \
+-D CMAKE_INSTALL_LIBDIR=lib \
+-D CMAKE_INSTALL_PREFIX=/usr \
+-D COIN_BUILD_DOCUMENTATION=ON \
+-D COIN_BUILD_DOCUMENTATION_CHM=OFF \
+-D COIN_BUILD_DOCUMENTATION_MAN=ON \
+-D COIN_THREADSAFE=ON \
+-D USE_EXTERNAL_EXPAT=ON \
+-G Ninja \
+-S coin
+  ninja -C build
+}
+
+package() {
+  DESTDIR="$pkgdir" ninja -C build install
+  # Skip the HTML documentation
+  rm -rf "$pkgdir/usr/share/doc"
+  # Remove an empty directory
+  rmdir "$pkgdir/usr/share/Coin/profiler"
+}



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

2022-09-08 Thread Alexander Rødseth via arch-commits
Date: Thursday, September 8, 2022 @ 08:51:24
  Author: arodseth
Revision: 1296327

upgpkg: coin 4.0.0.04c190-4

Modified:
  coin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-09-08 08:47:43 UTC (rev 1296326)
+++ PKGBUILD2022-09-08 08:51:24 UTC (rev 1296327)
@@ -7,8 +7,8 @@
 # Contributor: Marcus Fritzsch 
 
 pkgname=coin
-pkgver=4.0.0.f4e446
-pkgrel=3
+pkgver=4.0.0.04c190
+pkgrel=4
 pkgdesc='3D graphics library compatible with Open Inventor'
 url='https://github.com/coin3d/coin'
 license=(GPL)
@@ -19,32 +19,32 @@
 'freetype2: dynamic linking support'
 'openal: audio/dynamic linking support'
 'zlib: dynamic linking support')
-# f4e446e is the same as version 4.0.0 + patches
-source=("git+$url#commit=f4e446e3d510a880d1b7808fb7e45d781e8b8a4c"
+# 04c190 is the same as version 4.0.0 + patches
+source=("git+$url#commit=04c19005bfd124d980e8946cb5bc1fc2b37bda29"
 
'man3.patch::https://github.com/coin3d/coin/commit/5a97506a7fa80c5ebcc8aa4685d5cd07b7d95bed.patch')
-sha256sums=('SKIP'
-'527619771572adf3c57da2e19690e595c66997555a9f3fef22c637a87c61602c')
+b2sums=('SKIP'
+
'd1b2d7f740f8abca17e080b53e5d7c22c699b4cfe65c6115dc2a721484ac429a1f6a5fffd3fd4ce705a62b68cd276bc4ad3c2bd3c1a0ddb5e28a20ed4ba80889')
 
 prepare() {
   cd coin
-  patch -p1 -i ../man3.patch || true
+  patch -i ../man3.patch -p1 -s -t
 }
 
 build() {
-  mkdir -p build
-  cd build
-  cmake ../coin \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DCOIN_THREADSAFE=ON \
--DCOIN_BUILD_DOCUMENTATION=ON \
--DCOIN_BUILD_DOCUMENTATION_CHM=OFF \
--DCOIN_BUILD_DOCUMENTATION_MAN=ON \
--DUSE_EXTERNAL_EXPAT=ON \
--DCMAKE_C_FLAGS="$CFLAGS -fPIC -w" \
--DCMAKE_CXX_FLAGS="$CXXFLAGS -fPIC -w" \
--GNinja
-  ninja
+  cmake \
+-B build \
+-D CMAKE_C_FLAGS="$CFLAGS -fPIC -w" \
+-D CMAKE_CXX_FLAGS="$CXXFLAGS -fPIC -w" \
+-D CMAKE_INSTALL_LIBDIR=lib \
+-D CMAKE_INSTALL_PREFIX=/usr \
+-D COIN_BUILD_DOCUMENTATION=ON \
+-D COIN_BUILD_DOCUMENTATION_CHM=OFF \
+-D COIN_BUILD_DOCUMENTATION_MAN=ON \
+-D COIN_THREADSAFE=ON \
+-D USE_EXTERNAL_EXPAT=ON \
+-G Ninja \
+-S coin
+  ninja -C build
 }
 
 package() {



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

2022-09-08 Thread Alexander Rødseth via arch-commits
Date: Thursday, September 8, 2022 @ 08:34:05
  Author: arodseth
Revision: 1296303

archrelease: copy trunk to community-any

Added:
  nuitka/repos/community-any/PKGBUILD
(from rev 1296302, nuitka/trunk/PKGBUILD)
Deleted:
  nuitka/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-09-08 08:33:59 UTC (rev 1296302)
+++ PKGBUILD2022-09-08 08:34:05 UTC (rev 1296303)
@@ -1,41 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Maintainer: David Runge 
-# Contributor: Panagiotis Mavrogiorgos 
-
-pkgname=nuitka
-pkgver=1.0.5
-pkgrel=2
-pkgdesc='Python compiler with full language support and CPython compatibility'
-arch=(any)
-url='https://nuitka.net/'
-license=(Apache)
-depends=(patchelf python-appdirs scons)
-makedepends=(gdb python-build python-installer python-setuptools python-wheel)
-checkdepends=(ccache fuse2 python-boto3 python-brotli strace)
-optdepends=('ccache: for build caching'
-'pyside2: for using Qt5 APIs')
-source=("https://nuitka.net/releases/${pkgname^}-${pkgver}.tar.bz2;)
-b2sums=('d4d1fb588d6390c3d58054751c26fd68c132b6ca9738576edebcff4fda0734de34b9ffe3822624ca1dbc138807d054839e7104b1b506b37ea7e0eacc92c31c22')
-
-prepare() {
-  cd ${pkgname^}-$pkgver
-  # in the build environment /etc/os-release does not exist, but 
/usr/lib/os-release does
-  sed -e 's,/etc/os-release,/usr/lib/os-release,' -i nuitka/utils/Utils.py
-}
-
-build() {
-  cd ${pkgname^}-$pkgver
-  python -m build --wheel --no-isolation
-}
-
-# TODO: Make tests pass and/or report issues upstream (some have already been 
reported)
-#check() {
-#  cd ${pkgname^}-$pkgver
-#  ./tests/run-tests --no-other-python --skip-onefile-tests 
--skip-other-cpython-tests --skip-reflection-test
-#}
-
-package() {
-  cd ${pkgname^}-$pkgver
-  python -m installer --destdir="$pkgdir" dist/*.whl
-  install -vDm 644 {Changelog,Developer_Manual,README}.rst -t 
"$pkgdir/usr/share/doc/$pkgname/"
-}

Copied: nuitka/repos/community-any/PKGBUILD (from rev 1296302, 
nuitka/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-09-08 08:34:05 UTC (rev 1296303)
@@ -0,0 +1,41 @@
+# Maintainer: Alexander F. Rødseth 
+# Maintainer: David Runge 
+# Contributor: Panagiotis Mavrogiorgos 
+
+pkgname=nuitka
+pkgver=1.0.6
+pkgrel=1
+pkgdesc='Python compiler with full language support and CPython compatibility'
+arch=(any)
+url='https://nuitka.net/'
+license=(Apache)
+depends=(patchelf python-appdirs scons)
+makedepends=(gdb python-build python-installer python-setuptools python-wheel)
+checkdepends=(ccache fuse2 python-boto3 python-brotli strace)
+optdepends=('ccache: for build caching'
+'pyside2: for using Qt5 APIs')
+source=("https://nuitka.net/releases/${pkgname^}-${pkgver}.tar.bz2;)
+b2sums=('9bb6348ae285eba8790b992669e2ac6ad5cf4e4081e2402456aeb2dae6dcfa5896326572951d1ba3de4b45d2d45a3a466f0e1b45a7ba53d5d9940b6de025e71a')
+
+prepare() {
+  cd ${pkgname^}-$pkgver
+  # in the build environment /etc/os-release does not exist, but 
/usr/lib/os-release does
+  sed -e 's,/etc/os-release,/usr/lib/os-release,' -i nuitka/utils/Utils.py
+}
+
+build() {
+  cd ${pkgname^}-$pkgver
+  python -m build --wheel --no-isolation
+}
+
+# TODO: Make tests pass and/or report issues upstream (some have already been 
reported)
+#check() {
+#  cd ${pkgname^}-$pkgver
+#  ./tests/run-tests --no-other-python --skip-onefile-tests 
--skip-other-cpython-tests --skip-reflection-test
+#}
+
+package() {
+  cd ${pkgname^}-$pkgver
+  python -m installer --destdir="$pkgdir" dist/*.whl
+  install -vDm 644 {Changelog,Developer_Manual,README}.rst -t 
"$pkgdir/usr/share/doc/$pkgname/"
+}



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

2022-09-08 Thread Alexander Rødseth via arch-commits
Date: Thursday, September 8, 2022 @ 08:33:59
  Author: arodseth
Revision: 1296302

upgpkg: nuitka 1.0.6-1

Modified:
  nuitka/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-09-08 08:33:55 UTC (rev 1296301)
+++ PKGBUILD2022-09-08 08:33:59 UTC (rev 1296302)
@@ -3,8 +3,8 @@
 # Contributor: Panagiotis Mavrogiorgos 
 
 pkgname=nuitka
-pkgver=1.0.5
-pkgrel=2
+pkgver=1.0.6
+pkgrel=1
 pkgdesc='Python compiler with full language support and CPython compatibility'
 arch=(any)
 url='https://nuitka.net/'
@@ -15,7 +15,7 @@
 optdepends=('ccache: for build caching'
 'pyside2: for using Qt5 APIs')
 source=("https://nuitka.net/releases/${pkgname^}-${pkgver}.tar.bz2;)
-b2sums=('d4d1fb588d6390c3d58054751c26fd68c132b6ca9738576edebcff4fda0734de34b9ffe3822624ca1dbc138807d054839e7104b1b506b37ea7e0eacc92c31c22')
+b2sums=('9bb6348ae285eba8790b992669e2ac6ad5cf4e4081e2402456aeb2dae6dcfa5896326572951d1ba3de4b45d2d45a3a466f0e1b45a7ba53d5d9940b6de025e71a')
 
 prepare() {
   cd ${pkgname^}-$pkgver



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

2022-09-07 Thread Alexander Rødseth via arch-commits
Date: Wednesday, September 7, 2022 @ 22:31:15
  Author: arodseth
Revision: 1296128

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-09-07 22:31:09 UTC (rev 1296127)
+++ PKGBUILD2022-09-07 22:31:15 UTC (rev 1296128)
@@ -1,22 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Contributor: robertfoster 
-# Contributor: Håvard Pettersson 
-
-pkgname=python-sounddevice
-pkgver=0.4.4
-pkgrel=1
-pkgdesc='Record and play back sound'
-url='https://python-sounddevice.rtfd.io/'
-arch=(any)
-license=(MIT)
-depends=(portaudio python-cffi)
-makedepends=(python-setuptools)
-optdepends=('python-numpy: to play back and record NumPy arrays')
-source=("https://files.pythonhosted.org/packages/source/s/sounddevice/sounddevice-$pkgver.tar.gz;)
-b2sums=('f93d30d136c5f47929fccf8923009130ae8287d5706e107c5281393889c2cf1c4c23e483c919a7d75b997bee4327ff86b477f07b6a9809f16608aa5e08deed86')
-
-package() {
-  cd sounddevice-$pkgver
-  python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: python-sounddevice/repos/community-any/PKGBUILD (from rev 1296127, 
python-sounddevice/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-09-07 22:31:15 UTC (rev 1296128)
@@ -0,0 +1,22 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: robertfoster 
+# Contributor: Håvard Pettersson 
+
+pkgname=python-sounddevice
+pkgver=0.4.5
+pkgrel=1
+pkgdesc='Record and play back sound'
+url='https://python-sounddevice.rtfd.io/'
+arch=(any)
+license=(MIT)
+depends=(portaudio python-cffi)
+makedepends=(python-setuptools)
+optdepends=('python-numpy: to play back and record NumPy arrays')
+source=("https://files.pythonhosted.org/packages/source/s/sounddevice/sounddevice-$pkgver.tar.gz;)
+b2sums=('2288faa23280fd0a82fb239eac632e8a3e681ad9f681f7508312bad8be64b57a86de8e7384f168e362ae7c39a118fe9aeeaf40d16502b5aee3d25c7d1df48cfb')
+
+package() {
+  cd sounddevice-$pkgver
+  python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}



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

2022-09-07 Thread Alexander Rødseth via arch-commits
Date: Wednesday, September 7, 2022 @ 22:31:09
  Author: arodseth
Revision: 1296127

upgpkg: python-sounddevice 0.4.5-1

Modified:
  python-sounddevice/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-09-07 21:52:22 UTC (rev 1296126)
+++ PKGBUILD2022-09-07 22:31:09 UTC (rev 1296127)
@@ -3,7 +3,7 @@
 # Contributor: Håvard Pettersson 
 
 pkgname=python-sounddevice
-pkgver=0.4.4
+pkgver=0.4.5
 pkgrel=1
 pkgdesc='Record and play back sound'
 url='https://python-sounddevice.rtfd.io/'
@@ -13,7 +13,7 @@
 makedepends=(python-setuptools)
 optdepends=('python-numpy: to play back and record NumPy arrays')
 
source=("https://files.pythonhosted.org/packages/source/s/sounddevice/sounddevice-$pkgver.tar.gz;)
-b2sums=('f93d30d136c5f47929fccf8923009130ae8287d5706e107c5281393889c2cf1c4c23e483c919a7d75b997bee4327ff86b477f07b6a9809f16608aa5e08deed86')
+b2sums=('2288faa23280fd0a82fb239eac632e8a3e681ad9f681f7508312bad8be64b57a86de8e7384f168e362ae7c39a118fe9aeeaf40d16502b5aee3d25c7d1df48cfb')
 
 package() {
   cd sounddevice-$pkgver



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

2022-09-07 Thread Alexander Rødseth via arch-commits
Date: Wednesday, September 7, 2022 @ 21:00:12
  Author: arodseth
Revision: 1296118

archrelease: copy trunk to community-x86_64

Added:
  bat/repos/community-x86_64/PKGBUILD
(from rev 1296117, bat/trunk/PKGBUILD)
Deleted:
  bat/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-09-07 21:00:04 UTC (rev 1296117)
+++ PKGBUILD2022-09-07 21:00:12 UTC (rev 1296118)
@@ -1,55 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Contributor: Wesley Moore 
-
-pkgname=bat
-pkgver=0.21.0
-pkgrel=3
-pkgdesc='Cat clone with syntax highlighting and git integration'
-arch=(x86_64)
-url='https://github.com/sharkdp/bat'
-license=(APACHE MIT)
-depends=(libgit2 oniguruma)
-makedepends=(clang cmake git rust)
-source=("git+$url#commit=405e5f74602d8f680168ef52350150921c696d54") # tag: 
v0.21.0
-b2sums=(SKIP)
-
-prepare() {
-  cargo fetch --locked --manifest-path $pkgname/Cargo.toml
-}
-
-build() {
-  export CFLAGS+=' -ffat-lto-objects -w'
-  cargo build --locked --manifest-path $pkgname/Cargo.toml --release
-}
-
-check() {
-  cargo test --locked --manifest-path $pkgname/Cargo.toml
-}
-
-package() {
-  install -Dm755 $pkgname/target/release/$pkgname "$pkgdir/usr/bin/$pkgname"
-
-  # Package licenses
-  install -Dm644 $pkgname/LICENSE-APACHE \
-"$pkgdir/usr/share/licenses/$pkgname/LICENSE-APACHE"
-  install -Dm644 $pkgname/LICENSE-MIT \
-"$pkgdir/usr/share/licenses/$pkgname/LICENSE-MIT"
-
-  cd $pkgname/target/release/build
-
-  # Find and package the man page (because cargo --out-dir is too new)
-  find . -name bat.1 -type f -exec install -Dm644 {} \
-"$pkgdir/usr/share/man/man1/bat.1" \;
-
-  # Find and package the bash completion file
-  find . -name bat.bash -type f -exec install -Dm644 {} \
-"$pkgdir/usr/share/bash-completion/completions/bat" \;
-
-  # Find and package the zsh completion file (not in zsh-completions yet)
-  find . -name bat.zsh -type f -exec install -Dm644 {} \
-"$pkgdir/usr/share/zsh/site-functions/_bat" \;
-
-  # Find and package the fish completion file
-  find . -name bat.fish -type f -exec install -Dm644 {} \
-"$pkgdir/usr/share/fish/vendor_completions.d/bat.fish" \;
-}

Copied: bat/repos/community-x86_64/PKGBUILD (from rev 1296117, 
bat/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-09-07 21:00:12 UTC (rev 1296118)
@@ -0,0 +1,55 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: Wesley Moore 
+
+pkgname=bat
+pkgver=0.22.0
+pkgrel=1
+pkgdesc='Cat clone with syntax highlighting and git integration'
+arch=(x86_64)
+url='https://github.com/sharkdp/bat'
+license=(APACHE MIT)
+depends=(libgit2 oniguruma)
+makedepends=(clang cmake git rust)
+source=("git+$url#commit=1f9519d8b9bd3efac979766eefa0c6fae594b984") # tag: 
v0.22.0
+b2sums=(SKIP)
+
+prepare() {
+  cargo fetch --locked --manifest-path $pkgname/Cargo.toml
+}
+
+build() {
+  export CFLAGS+=' -ffat-lto-objects -w'
+  cargo build --locked --manifest-path $pkgname/Cargo.toml --release
+}
+
+check() {
+  cargo test --locked --manifest-path $pkgname/Cargo.toml
+}
+
+package() {
+  install -Dm755 $pkgname/target/release/$pkgname "$pkgdir/usr/bin/$pkgname"
+
+  # Package licenses
+  install -Dm644 $pkgname/LICENSE-APACHE \
+"$pkgdir/usr/share/licenses/$pkgname/LICENSE-APACHE"
+  install -Dm644 $pkgname/LICENSE-MIT \
+"$pkgdir/usr/share/licenses/$pkgname/LICENSE-MIT"
+
+  cd $pkgname/target/release/build
+
+  # Find and package the man page (because cargo --out-dir is too new)
+  find . -name bat.1 -type f -exec install -Dm644 {} \
+"$pkgdir/usr/share/man/man1/bat.1" \;
+
+  # Find and package the bash completion file
+  find . -name bat.bash -type f -exec install -Dm644 {} \
+"$pkgdir/usr/share/bash-completion/completions/bat" \;
+
+  # Find and package the zsh completion file (not in zsh-completions yet)
+  find . -name bat.zsh -type f -exec install -Dm644 {} \
+"$pkgdir/usr/share/zsh/site-functions/_bat" \;
+
+  # Find and package the fish completion file
+  find . -name bat.fish -type f -exec install -Dm644 {} \
+"$pkgdir/usr/share/fish/vendor_completions.d/bat.fish" \;
+}



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

2022-09-07 Thread Alexander Rødseth via arch-commits
Date: Wednesday, September 7, 2022 @ 21:00:04
  Author: arodseth
Revision: 1296117

upgpkg: bat 0.22.0-1

Modified:
  bat/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-09-07 20:05:36 UTC (rev 1296116)
+++ PKGBUILD2022-09-07 21:00:04 UTC (rev 1296117)
@@ -2,8 +2,8 @@
 # Contributor: Wesley Moore 
 
 pkgname=bat
-pkgver=0.21.0
-pkgrel=3
+pkgver=0.22.0
+pkgrel=1
 pkgdesc='Cat clone with syntax highlighting and git integration'
 arch=(x86_64)
 url='https://github.com/sharkdp/bat'
@@ -10,7 +10,7 @@
 license=(APACHE MIT)
 depends=(libgit2 oniguruma)
 makedepends=(clang cmake git rust)
-source=("git+$url#commit=405e5f74602d8f680168ef52350150921c696d54") # tag: 
v0.21.0
+source=("git+$url#commit=1f9519d8b9bd3efac979766eefa0c6fae594b984") # tag: 
v0.22.0
 b2sums=(SKIP)
 
 prepare() {



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

2022-09-07 Thread Alexander Rødseth via arch-commits
Date: Wednesday, September 7, 2022 @ 15:22:43
  Author: arodseth
Revision: 1296099

archrelease: copy trunk to community-x86_64

Added:
  monitor/repos/community-x86_64/PKGBUILD
(from rev 1296098, monitor/trunk/PKGBUILD)

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

Copied: monitor/repos/community-x86_64/PKGBUILD (from rev 1296098, 
monitor/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-09-07 15:22:43 UTC (rev 1296099)
@@ -0,0 +1,27 @@
+# Maintainer: Alexander F. Rødseth 
+
+pkgname=monitor
+pkgver=20220907
+pkgrel=1
+pkgdesc='Network forensics and sniffer tool'
+arch=(x86_64)
+url='https://github.com/jo-lund/monitor'
+license=(MIT)
+depends=(geoip ncurses)
+makedepends=(git re2c setconf)
+optdepends=("geoip-database-extra: for extra geolocation data")
+source=("git+$url#commit=311daea7ebd82819a91d25fc5a213231e30a75e8") # 
2022-09-07
+b2sums=(SKIP)
+
+build() {
+  cd $pkgname
+  ./configure --prefix /usr
+  make CFLAGS+='-Wl,-z,now'
+}
+
+package() {
+  cd $pkgname
+  setconf config.mk PREFIX="$pkgdir/usr"
+  make install
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}



[arch-commits] Commit in (5 files)

2022-09-07 Thread Alexander Rødseth via arch-commits
Date: Wednesday, September 7, 2022 @ 15:22:32
  Author: arodseth
Revision: 1296098

Add a network monitoring tool that uses ncurses

Added:
  monitor/
  monitor/repos/
  monitor/repos/community-x86_64/
  monitor/trunk/
  monitor/trunk/PKGBUILD

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

Added: monitor/trunk/PKGBUILD
===
--- monitor/trunk/PKGBUILD  (rev 0)
+++ monitor/trunk/PKGBUILD  2022-09-07 15:22:32 UTC (rev 1296098)
@@ -0,0 +1,27 @@
+# Maintainer: Alexander F. Rødseth 
+
+pkgname=monitor
+pkgver=20220907
+pkgrel=1
+pkgdesc='Network forensics and sniffer tool'
+arch=(x86_64)
+url='https://github.com/jo-lund/monitor'
+license=(MIT)
+depends=(geoip ncurses)
+makedepends=(git re2c setconf)
+optdepends=("geoip-database-extra: for extra geolocation data")
+source=("git+$url#commit=311daea7ebd82819a91d25fc5a213231e30a75e8") # 
2022-09-07
+b2sums=(SKIP)
+
+build() {
+  cd $pkgname
+  ./configure --prefix /usr
+  make CFLAGS+='-Wl,-z,now'
+}
+
+package() {
+  cd $pkgname
+  setconf config.mk PREFIX="$pkgdir/usr"
+  make install
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}



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

2022-09-06 Thread Alexander Rødseth via arch-commits
Date: Tuesday, September 6, 2022 @ 14:21:02
  Author: arodseth
Revision: 1294445

archrelease: copy trunk to community-x86_64

Added:
  robotfindskitten/repos/community-x86_64/PKGBUILD
(from rev 129, robotfindskitten/trunk/PKGBUILD)
Deleted:
  robotfindskitten/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-09-06 14:20:57 UTC (rev 129)
+++ PKGBUILD2022-09-06 14:21:02 UTC (rev 1294445)
@@ -1,34 +0,0 @@
-# Maintainer: Alexander F Rødseth 
-# Contributor: muflax 
-# Contributor: Adrian Siekierka 
-
-pkgname=robotfindskitten
-pkgver=2.7182818.701
-pkgrel=6
-pkgdesc='Yet another Zen simulation'
-arch=('x86_64')
-url='http://www.robotfindskitten.org/'
-license=('GPL2')
-depends=('ncurses')
-makedepends=('setconf')
-source=("http://robotfindskitten.org/download/POSIX/$pkgname-$pkgver.tar.gz;)
-sha256sums=('7749a370796fd23e3b306b00de5f7fb7997a35fef30e3910ff159448c932d719')
-
-prepare() {
-  setconf "$pkgname-$pkgver/src/Makefile.in" execgamesdir '$(prefix)/bin'
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  make -C "$pkgname-$pkgver" prefix="$pkgdir/usr" install
-  install -Dm644 "$pkgname-$pkgver/nki/vanilla.nki" \
-"$pkgdir/usr/share/games/robotfindskitten/vanilla.nki"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: robotfindskitten/repos/community-x86_64/PKGBUILD (from rev 129, 
robotfindskitten/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-09-06 14:21:02 UTC (rev 1294445)
@@ -0,0 +1,31 @@
+# Maintainer: Alexander F Rødseth 
+# Contributor: muflax 
+# Contributor: Adrian Siekierka 
+
+pkgname=robotfindskitten
+pkgver=2.8284271.702
+pkgrel=1
+pkgdesc='Yet another Zen simulation'
+arch=(x86_64)
+url='http://robotfindskitten.org/' # no https available
+license=(GPL2)
+depends=(ncurses)
+makedepends=(setconf)
+source=("https://master.dl.sourceforge.net/project/rfk/robotfindskitten-POSIX/ship_it_anyway/robotfindskitten-2.8284271.702.tar.gz;)
+b2sums=('06024275da4b3b5f87f3f6ab57797aa080263ca920e324b7b34a9e6540a7bae301b4a00b9935f1ffe208779eb5a1becd34b8764b9dbffe4bac95920e8f454afd')
+
+prepare() {
+  setconf $pkgname-$pkgver/src/Makefile.in execgamesdir '$(prefix)/bin'
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  make -C $pkgname-$pkgver prefix="$pkgdir/usr" install
+  install -Dm644 $pkgname-$pkgver/nki/vanilla.nki \
+"$pkgdir/usr/share/games/robotfindskitten/vanilla.nki"
+}



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

2022-09-06 Thread Alexander Rødseth via arch-commits
Date: Tuesday, September 6, 2022 @ 14:20:57
  Author: arodseth
Revision: 129

upgpkg: robotfindskitten 2.8284271.702-1

Modified:
  robotfindskitten/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-09-06 13:46:17 UTC (rev 1294443)
+++ PKGBUILD2022-09-06 14:20:57 UTC (rev 129)
@@ -3,32 +3,29 @@
 # Contributor: Adrian Siekierka 
 
 pkgname=robotfindskitten
-pkgver=2.7182818.701
-pkgrel=6
+pkgver=2.8284271.702
+pkgrel=1
 pkgdesc='Yet another Zen simulation'
-arch=('x86_64')
-url='http://www.robotfindskitten.org/'
-license=('GPL2')
-depends=('ncurses')
-makedepends=('setconf')
-source=("http://robotfindskitten.org/download/POSIX/$pkgname-$pkgver.tar.gz;)
-sha256sums=('7749a370796fd23e3b306b00de5f7fb7997a35fef30e3910ff159448c932d719')
+arch=(x86_64)
+url='http://robotfindskitten.org/' # no https available
+license=(GPL2)
+depends=(ncurses)
+makedepends=(setconf)
+source=("https://master.dl.sourceforge.net/project/rfk/robotfindskitten-POSIX/ship_it_anyway/robotfindskitten-2.8284271.702.tar.gz;)
+b2sums=('06024275da4b3b5f87f3f6ab57797aa080263ca920e324b7b34a9e6540a7bae301b4a00b9935f1ffe208779eb5a1becd34b8764b9dbffe4bac95920e8f454afd')
 
 prepare() {
-  setconf "$pkgname-$pkgver/src/Makefile.in" execgamesdir '$(prefix)/bin'
+  setconf $pkgname-$pkgver/src/Makefile.in execgamesdir '$(prefix)/bin'
 }
 
 build() {
-  cd "$pkgname-$pkgver"
-
+  cd $pkgname-$pkgver
   ./configure --prefix=/usr
   make
 }
 
 package() {
-  make -C "$pkgname-$pkgver" prefix="$pkgdir/usr" install
-  install -Dm644 "$pkgname-$pkgver/nki/vanilla.nki" \
+  make -C $pkgname-$pkgver prefix="$pkgdir/usr" install
+  install -Dm644 $pkgname-$pkgver/nki/vanilla.nki \
 "$pkgdir/usr/share/games/robotfindskitten/vanilla.nki"
 }
-
-# vim:set ts=2 sw=2 et:



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

2022-09-05 Thread Alexander Rødseth via arch-commits
Date: Monday, September 5, 2022 @ 19:15:19
  Author: arodseth
Revision: 1293107

archrelease: copy trunk to community-x86_64

Added:
  chuck/repos/community-x86_64/PKGBUILD
(from rev 1293106, chuck/trunk/PKGBUILD)
Deleted:
  chuck/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-09-05 19:15:13 UTC (rev 1293106)
+++ PKGBUILD2022-09-05 19:15:19 UTC (rev 1293107)
@@ -1,32 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Contributor: Laurent Carlier 
-# Contributor: Brad Fanella 
-# Contributor: SpepS 
-# Contributor: Jeff Mickey 
-# Contributor: tardo 
-
-pkgname=chuck
-pkgver=1.4.1.0
-pkgrel=2
-pkgdesc='Concurrent, on-the-fly audio programming language'
-arch=(x86_64)
-url='https://chuck.cs.princeton.edu/'
-license=(GPL)
-depends=(jack libsndfile)
-groups=(pro-audio)
-source=("https://chuck.cs.princeton.edu/release/files/$pkgname-$pkgver.tgz;)
-sha256sums=('74bf99ad515e3113c55b833152936fad02a3cf006a54105ff11777c473194928')
-
-build() {
-  # "linux-alsa" and "linux-oss" are also available
-  make -C "$pkgname-$pkgver/src" linux-jack
-}
-
-package() {
-  cd $pkgname-$pkgver
-  install -d "$pkgdir/usr/share/doc/$pkgname"
-  cp -r examples "$pkgdir/usr/share/doc/$pkgname"
-  install -Dm755 "src/$pkgname" "$pkgdir/usr/bin/$pkgname"
-}
-
-# getver: chuck.cs.princeton.edu/release

Copied: chuck/repos/community-x86_64/PKGBUILD (from rev 1293106, 
chuck/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-09-05 19:15:19 UTC (rev 1293107)
@@ -0,0 +1,31 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: Laurent Carlier 
+# Contributor: Brad Fanella 
+# Contributor: SpepS 
+# Contributor: Jeff Mickey 
+# Contributor: tardo 
+
+pkgname=chuck
+pkgver=1.4.1.1
+pkgrel=1
+pkgdesc='Concurrent, on-the-fly audio programming language'
+arch=(x86_64)
+url='https://chuck.cs.princeton.edu/'
+license=(GPL)
+depends=(jack libsndfile)
+groups=(pro-audio)
+source=("https://chuck.cs.princeton.edu/release/files/$pkgname-$pkgver.tgz;)
+sha256sums=('4459ee6f151da72dcde1525e0afe05329d61086356b168ecfc0bc3a570290f63')
+
+build() {
+  make -C "$pkgname-$pkgver/src" linux-jack
+}
+
+package() {
+  cd $pkgname-$pkgver
+  install -d "$pkgdir/usr/share/doc/$pkgname"
+  cp -r examples "$pkgdir/usr/share/doc/$pkgname"
+  install -Dm755 "src/$pkgname" "$pkgdir/usr/bin/$pkgname"
+}
+
+# getver: chuck.cs.princeton.edu/release



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

2022-09-05 Thread Alexander Rødseth via arch-commits
Date: Monday, September 5, 2022 @ 19:15:13
  Author: arodseth
Revision: 1293106

upgpkg: chuck 1.4.1.1-1

Modified:
  chuck/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-09-05 19:07:14 UTC (rev 1293105)
+++ PKGBUILD2022-09-05 19:15:13 UTC (rev 1293106)
@@ -6,8 +6,8 @@
 # Contributor: tardo 
 
 pkgname=chuck
-pkgver=1.4.1.0
-pkgrel=2
+pkgver=1.4.1.1
+pkgrel=1
 pkgdesc='Concurrent, on-the-fly audio programming language'
 arch=(x86_64)
 url='https://chuck.cs.princeton.edu/'
@@ -15,10 +15,9 @@
 depends=(jack libsndfile)
 groups=(pro-audio)
 source=("https://chuck.cs.princeton.edu/release/files/$pkgname-$pkgver.tgz;)
-sha256sums=('74bf99ad515e3113c55b833152936fad02a3cf006a54105ff11777c473194928')
+sha256sums=('4459ee6f151da72dcde1525e0afe05329d61086356b168ecfc0bc3a570290f63')
 
 build() {
-  # "linux-alsa" and "linux-oss" are also available
   make -C "$pkgname-$pkgver/src" linux-jack
 }
 



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

2022-09-05 Thread Alexander Rødseth via arch-commits
Date: Monday, September 5, 2022 @ 17:25:41
  Author: arodseth
Revision: 1293072

archrelease: copy trunk to community-x86_64

Added:
  algol68g/repos/community-x86_64/PKGBUILD
(from rev 1293071, algol68g/trunk/PKGBUILD)
Deleted:
  algol68g/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-09-05 17:24:53 UTC (rev 1293071)
+++ PKGBUILD2022-09-05 17:25:41 UTC (rev 1293072)
@@ -1,33 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Contributor: 
-
-pkgname=(algol68g algol68g-doc)
-pkgver=3.0.7
-pkgrel=1
-pkgdesc='Algol 68 compiler and interpreter'
-arch=(x86_64)
-url='https://jmvdveer.home.xs4all.nl/algol.html'
-license=(GPL)
-depends=(gsl plotutils)
-optdepends=('postgresql-libs: for postgresql support')
-# This URL was removed:
-source=("https://jmvdveer.home.xs4all.nl/algol68g-$pkgver.tar.gz;
-'https://ftp.tw.freebsd.org/distfiles/a68g-doc.pdf')
-b2sums=('e9c1185d709b94a701797a0224b6b2e106d0fcb66e94a34ea8d482b8ccfc86c6134c30a0311d6630b23c4d4e219950fdac0c4c2e200f4dab3aef279ecd850470'
-
'f8ca710d9a4f611873de41785e70359bd566645268ebb848803d3cd2e9a9f873f8ac423e3e0868083444b7f6d98df32fdb7a4c6b36692462ee50ddb1e410')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package_algol68g() {
-  make -C $pkgname-$pkgver \
-DESTDIR="$pkgdir" docdir=/usr/share/doc/$pkgname install
-}
-
-package_algol68g-doc() {
-  install -Dm644 a68g-doc.pdf \
-"$pkgdir/usr/share/doc/algol68g/learning_algol.pdf"
-}

Copied: algol68g/repos/community-x86_64/PKGBUILD (from rev 1293071, 
algol68g/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-09-05 17:25:41 UTC (rev 1293072)
@@ -0,0 +1,33 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: 
+
+pkgname=(algol68g algol68g-doc)
+pkgver=3.0.7
+pkgrel=1
+pkgdesc='Algol 68 compiler and interpreter'
+arch=(x86_64)
+url='https://jmvdveer.home.xs4all.nl/algol.html'
+license=(GPL)
+depends=(gsl plotutils)
+optdepends=('postgresql-libs: for postgresql support')
+# This URL was removed:
+source=("https://jmvdveer.home.xs4all.nl/algol68g-$pkgver.tar.gz;
+'https://ftp.tw.freebsd.org/distfiles/a68g-doc.pdf')
+b2sums=('e9c1185d709b94a701797a0224b6b2e106d0fcb66e94a34ea8d482b8ccfc86c6134c30a0311d6630b23c4d4e219950fdac0c4c2e200f4dab3aef279ecd850470'
+
'f8ca710d9a4f611873de41785e70359bd566645268ebb848803d3cd2e9a9f873f8ac423e3e0868083444b7f6d98df32fdb7a4c6b36692462ee50ddb1e410')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package_algol68g() {
+  make -C $pkgname-$pkgver \
+DESTDIR="$pkgdir" docdir=/usr/share/doc/$pkgname install
+}
+
+package_algol68g-doc() {
+  install -Dm644 a68g-doc.pdf \
+"$pkgdir/usr/share/doc/algol68g/learning_algol.pdf"
+}



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

2022-09-05 Thread Alexander Rødseth via arch-commits
Date: Monday, September 5, 2022 @ 17:24:53
  Author: arodseth
Revision: 1293071

archrelease: copy trunk to community-x86_64

Added:
  algol68g/repos/community-x86_64/PKGBUILD
(from rev 1293070, algol68g/trunk/PKGBUILD)
Deleted:
  algol68g/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-09-05 17:24:46 UTC (rev 1293070)
+++ PKGBUILD2022-09-05 17:24:53 UTC (rev 1293071)
@@ -1,33 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Contributor: 
-
-pkgname=(algol68g algol68g-doc)
-pkgver=3.0.6
-pkgrel=1
-pkgdesc='Algol 68 compiler and interpreter'
-arch=(x86_64)
-url='https://jmvdveer.home.xs4all.nl/algol.html'
-license=(GPL)
-depends=(gsl plotutils)
-optdepends=('postgresql-libs: for postgresql support')
-# This URL was removed:
-source=("https://jmvdveer.home.xs4all.nl/algol68g-$pkgver.tar.gz;
-'https://ftp.tw.freebsd.org/distfiles/a68g-doc.pdf')
-b2sums=('37a0c0e7386f31dd9b986e9c6da0f21a762dc099d5ece48dbdd1bad7789f38bf131e23ffe20596e2d874f71a0bd3a8045739e794f75bd8b5316fd7bf8e99e91e'
-
'f8ca710d9a4f611873de41785e70359bd566645268ebb848803d3cd2e9a9f873f8ac423e3e0868083444b7f6d98df32fdb7a4c6b36692462ee50ddb1e410')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package_algol68g() {
-  make -C $pkgname-$pkgver \
-DESTDIR="$pkgdir" docdir=/usr/share/doc/$pkgname install
-}
-
-package_algol68g-doc() {
-  install -Dm644 a68g-doc.pdf \
-"$pkgdir/usr/share/doc/algol68g/learning_algol.pdf"
-}

Copied: algol68g/repos/community-x86_64/PKGBUILD (from rev 1293070, 
algol68g/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-09-05 17:24:53 UTC (rev 1293071)
@@ -0,0 +1,33 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: 
+
+pkgname=(algol68g algol68g-doc)
+pkgver=3.0.7
+pkgrel=1
+pkgdesc='Algol 68 compiler and interpreter'
+arch=(x86_64)
+url='https://jmvdveer.home.xs4all.nl/algol.html'
+license=(GPL)
+depends=(gsl plotutils)
+optdepends=('postgresql-libs: for postgresql support')
+# This URL was removed:
+source=("https://jmvdveer.home.xs4all.nl/algol68g-$pkgver.tar.gz;
+'https://ftp.tw.freebsd.org/distfiles/a68g-doc.pdf')
+b2sums=('e9c1185d709b94a701797a0224b6b2e106d0fcb66e94a34ea8d482b8ccfc86c6134c30a0311d6630b23c4d4e219950fdac0c4c2e200f4dab3aef279ecd850470'
+
'f8ca710d9a4f611873de41785e70359bd566645268ebb848803d3cd2e9a9f873f8ac423e3e0868083444b7f6d98df32fdb7a4c6b36692462ee50ddb1e410')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package_algol68g() {
+  make -C $pkgname-$pkgver \
+DESTDIR="$pkgdir" docdir=/usr/share/doc/$pkgname install
+}
+
+package_algol68g-doc() {
+  install -Dm644 a68g-doc.pdf \
+"$pkgdir/usr/share/doc/algol68g/learning_algol.pdf"
+}



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

2022-09-05 Thread Alexander Rødseth via arch-commits
Date: Monday, September 5, 2022 @ 17:24:46
  Author: arodseth
Revision: 1293070

upgpkg: algol68g 3.0.7-1

Modified:
  algol68g/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-09-05 16:37:12 UTC (rev 1293069)
+++ PKGBUILD2022-09-05 17:24:46 UTC (rev 1293070)
@@ -2,7 +2,7 @@
 # Contributor: 
 
 pkgname=(algol68g algol68g-doc)
-pkgver=3.0.6
+pkgver=3.0.7
 pkgrel=1
 pkgdesc='Algol 68 compiler and interpreter'
 arch=(x86_64)
@@ -13,7 +13,7 @@
 # This URL was removed:
 source=("https://jmvdveer.home.xs4all.nl/algol68g-$pkgver.tar.gz;
 'https://ftp.tw.freebsd.org/distfiles/a68g-doc.pdf')
-b2sums=('37a0c0e7386f31dd9b986e9c6da0f21a762dc099d5ece48dbdd1bad7789f38bf131e23ffe20596e2d874f71a0bd3a8045739e794f75bd8b5316fd7bf8e99e91e'
+b2sums=('e9c1185d709b94a701797a0224b6b2e106d0fcb66e94a34ea8d482b8ccfc86c6134c30a0311d6630b23c4d4e219950fdac0c4c2e200f4dab3aef279ecd850470'
 
'f8ca710d9a4f611873de41785e70359bd566645268ebb848803d3cd2e9a9f873f8ac423e3e0868083444b7f6d98df32fdb7a4c6b36692462ee50ddb1e410')
 
 build() {



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

2022-09-05 Thread Alexander Rødseth via arch-commits
Date: Monday, September 5, 2022 @ 15:23:43
  Author: arodseth
Revision: 1293011

archrelease: copy trunk to community-x86_64

Added:
  bonzomatic/repos/community-x86_64/PKGBUILD
(from rev 1293010, bonzomatic/trunk/PKGBUILD)
Deleted:
  bonzomatic/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-09-05 15:23:37 UTC (rev 1293010)
+++ PKGBUILD2022-09-05 15:23:43 UTC (rev 1293011)
@@ -1,44 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Contributor: Robin Broda 
-
-pkgname=bonzomatic
-pkgver=1.0.20210307
-pkgrel=2
-pkgdesc='Live shader coding tool'
-arch=(x86_64)
-url='https://github.com/Gargaj/bonzomatic'
-license=(custom:Unlicense)
-depends=(alsa-lib fontconfig hicolor-icon-theme libglvnd)
-makedepends=(chrpath cmake git glu imagemagick libxcursor libxi libxinerama 
libxrandr ninja)
-source=("$pkgname::git+$url#commit=59053815ae8f967476e6b68137357ad7f9d8bb3b") 
# tag: 2021-03-07
-b2sums=(SKIP)
-
-prepare() {
-  convert "$pkgname/data/unix/icon.png" -resize 128x128 "$srcdir/$pkgname.png"
-}
-
-build() {
-  cmake \
--B build \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DCMAKE_C_FLAGS="$CFLAGS -fPIC -w" \
--DCMAKE_CXX_FLAGS="$CFLAGS -fPIC -w" \
--G Ninja \
--S $pkgname
-  ninja -C build
-}
-
-package() {
-  DESTDIR="$pkgdir" ninja -C build install
-
-  # Fix insecure rpath
-  chrpath -d "$pkgdir/usr/bin/bonzomatic"
-
-  # Package license
-  install -Dm644 $pkgname/LICENSE \
-"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-
-  # Package desktop icon
-  install -Dm644 $pkgname.png "$pkgdir/usr/share/pixmaps/$pkgname.png"
-}

Copied: bonzomatic/repos/community-x86_64/PKGBUILD (from rev 1293010, 
bonzomatic/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-09-05 15:23:43 UTC (rev 1293011)
@@ -0,0 +1,44 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: Robin Broda 
+
+pkgname=bonzomatic
+pkgver=1.0.20220820
+pkgrel=1
+pkgdesc='Live shader coding tool'
+arch=(x86_64)
+url='https://github.com/Gargaj/bonzomatic'
+license=(Custom:Unlicense)
+depends=(alsa-lib fontconfig hicolor-icon-theme libglvnd)
+makedepends=(chrpath cmake git glu imagemagick libxcursor libxi libxinerama 
libxrandr ninja)
+source=("$pkgname::git+$url#commit=b74363c602614460f2b5ea51b99c5f1096333407") 
# tag: 2022-08-20
+b2sums=(SKIP)
+
+prepare() {
+  convert "$pkgname/data/unix/icon.png" -resize 128x128 "$srcdir/$pkgname.png"
+}
+
+build() {
+  cmake \
+-B build \
+-D CMAKE_C_FLAGS="$CFLAGS -fPIC -w" \
+-D CMAKE_CXX_FLAGS="$CFLAGS -fPIC -w" \
+-D CMAKE_INSTALL_LIBDIR=lib \
+-D CMAKE_INSTALL_PREFIX=/usr \
+-G Ninja \
+-S $pkgname
+  ninja -C build
+}
+
+package() {
+  DESTDIR="$pkgdir" ninja -C build install
+
+  # Fix insecure rpath
+  chrpath -d "$pkgdir/usr/bin/bonzomatic"
+
+  # Package license
+  install -Dm644 $pkgname/LICENSE \
+"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+  # Package desktop icon
+  install -Dm644 $pkgname.png "$pkgdir/usr/share/pixmaps/$pkgname.png"
+}



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

2022-09-05 Thread Alexander Rødseth via arch-commits
Date: Monday, September 5, 2022 @ 15:23:37
  Author: arodseth
Revision: 1293010

upgpkg: bonzomatic 1.0.20220820-1

Modified:
  bonzomatic/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-09-05 15:13:22 UTC (rev 1293009)
+++ PKGBUILD2022-09-05 15:23:37 UTC (rev 1293010)
@@ -2,15 +2,15 @@
 # Contributor: Robin Broda 
 
 pkgname=bonzomatic
-pkgver=1.0.20210307
-pkgrel=2
+pkgver=1.0.20220820
+pkgrel=1
 pkgdesc='Live shader coding tool'
 arch=(x86_64)
 url='https://github.com/Gargaj/bonzomatic'
-license=(custom:Unlicense)
+license=(Custom:Unlicense)
 depends=(alsa-lib fontconfig hicolor-icon-theme libglvnd)
 makedepends=(chrpath cmake git glu imagemagick libxcursor libxi libxinerama 
libxrandr ninja)
-source=("$pkgname::git+$url#commit=59053815ae8f967476e6b68137357ad7f9d8bb3b") 
# tag: 2021-03-07
+source=("$pkgname::git+$url#commit=b74363c602614460f2b5ea51b99c5f1096333407") 
# tag: 2022-08-20
 b2sums=(SKIP)
 
 prepare() {
@@ -20,10 +20,10 @@
 build() {
   cmake \
 -B build \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DCMAKE_C_FLAGS="$CFLAGS -fPIC -w" \
--DCMAKE_CXX_FLAGS="$CFLAGS -fPIC -w" \
+-D CMAKE_C_FLAGS="$CFLAGS -fPIC -w" \
+-D CMAKE_CXX_FLAGS="$CFLAGS -fPIC -w" \
+-D CMAKE_INSTALL_LIBDIR=lib \
+-D CMAKE_INSTALL_PREFIX=/usr \
 -G Ninja \
 -S $pkgname
   ninja -C build



[arch-commits] Commit in plan9port/repos/community-x86_64 (10 files)

2022-09-05 Thread Alexander Rødseth via arch-commits
Date: Monday, September 5, 2022 @ 08:50:46
  Author: arodseth
Revision: 1292984

archrelease: copy trunk to community-x86_64

Added:
  plan9port/repos/community-x86_64/PKGBUILD
(from rev 1292983, plan9port/trunk/PKGBUILD)
  plan9port/repos/community-x86_64/acme.png
(from rev 1292983, plan9port/trunk/acme.png)
  plan9port/repos/community-x86_64/acme.sh
(from rev 1292983, plan9port/trunk/acme.sh)
  plan9port/repos/community-x86_64/plan9.install
(from rev 1292983, plan9port/trunk/plan9.install)
  plan9port/repos/community-x86_64/plan9.sh
(from rev 1292983, plan9port/trunk/plan9.sh)
Deleted:
  plan9port/repos/community-x86_64/PKGBUILD
  plan9port/repos/community-x86_64/acme.png
  plan9port/repos/community-x86_64/acme.sh
  plan9port/repos/community-x86_64/plan9.install
  plan9port/repos/community-x86_64/plan9.sh

---+
 PKGBUILD  |  194 
 acme.sh   |6 -
 plan9.install |   16 ++--
 plan9.sh  |4 -
 4 files changed, 110 insertions(+), 110 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-09-05 08:50:34 UTC (rev 1292983)
+++ PKGBUILD2022-09-05 08:50:46 UTC (rev 1292984)
@@ -1,97 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Contributor: phrakture 
-# Contributor: Fazlul Shahriar <>
-# Contributor: Chris Brannon 
-
-pkgname=plan9port
-pkgver=20220720
-pkgrel=1
-pkgdesc='Ports of applications from Plan 9'
-arch=(x86_64)
-url='https://swtch.com/plan9port/'
-url='https://9fans.github.io/plan9port/'
-license=(custom)
-depends=(fontconfig fuse2 libxt xorg-server)
-makedepends=(gendesk git)
-provides=(plan9)
-install=plan9.install
-options=(staticlibs !zipman)
-source=("git+https://github.com/9fans/plan9port#commit=506de8f6d4acedcb5b30f841611e6a4d95ce0feb;
 # 2022-07-20
-acme.png acme.sh plan9.sh)
-b2sums=('SKIP'
-
'983106b7a91afadae0f3aff5ff69338aa80d7eb6f9b65a95a31c963f162f6fb2dea748e5da698e0bd14d4343fe17281f55b9a1966fcba1c497fbd4bd855caf6c'
-
'6bd5abac872d578523fee4d7287aa9df7faecccefab92377a871596f1526f3a26d3e89098aef3bb3e3773b2de6f5f63be6cb13134b1cbc66be9763403c344598'
-
'743d3b663f8cad370fe4e6f0fe24efd444172327b9e0bd2ac5fd3c4f9595edd4e513c6ba978719a163e0507121cab622de8453289bde19b37365a2a78df4ccf9')
-
-prepare() {
-  # Generate a desktop shortcut for the Acme editor
-  gendesk -f \
---name Acme \
---pkgname acme \
---genericname Editor \
---comment 'Editor from Plan9' \
---categories 'Application;Development;TextEditor'
-
-  cd $pkgname
-
-  # Use _DEFAULT_SOURCE instead of _BSD_SOURCE
-  grep -rl _BSD_SOURCE | xargs sed -i s':_BSD_SOURCE:_DEFAULT_SOURCE:g'
-
-  # Try the Gentoo way for fixing hardcoded paths
-  grep --null -l -r /usr/local/plan9 | xargs --null sed -i 
"s!/usr/local/plan9!/usr/lib/plan9!g"
-
-  # Stop 9l from giving an 'undefined reference error' given no arguments, ref 
#55640
-  sed -i '1i[ "$1" == "" ] && exit 1' bin/9l
-}
-
-build() {
-  cd $pkgname
-  export CFLAGS+=' -ffat-lto-objects -w'
-  ./INSTALL -b
-}
-
-package() {
-  cd $pkgname
-  install -Dm755 ../plan9.sh "$pkgdir/etc/profile.d/plan9.sh"
-  d=usr/lib
-  install -d "$pkgdir/$d"
-  install -d "$pkgdir/usr/share/doc/$pkgname"
-  cp -r "$srcdir/$pkgname" "$pkgdir/$d/plan9"
-  cd "$pkgdir/$d/plan9"
-  ./INSTALL -c -r "$pkgdir/$d/plan9"
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-
-  # Clean up
-  rm -rf .hg/
-  rm -f .hgignore .hgtags
-  find . -name '.cvsignore' -delete
-  rm -f config install.log install.sum install.txt configure Makefile INSTALL \
-LICENSE
-
-  # Package text files
-  for i in CHANGES CONTRIBUTING.md CONTRIBUTORS README.md; do
-install -m644 $i "$pkgdir/usr/share/doc/$pkgname"
-rm -f $i
-  done
-
-  # Decompress the plan9 man pages
-  for i in "$(find "$pkgdir/$d/plan9/man" -type f)"; do
-if [ "${i##*.}" = "gz" ]; then
-  gunzip "$i"
-fi
-  done
-
-  # Once more
-  PLAN9=/usr/lib/plan9
-  grep --null -l -r "$pkgdir$PLAN9" | xargs --null sed -i 
"s!$pkgdir$PLAN9!${PLAN9}!g" || true
-  grep --null -l -r "/build/plan9port/pkg/plan9port/$PLAN9" | xargs --null sed 
-i "s!/build/plan9port/pkg/plan9port/$PLAN9!${PLAN9}!g" || true
-
-  # Acme
-  cd "$srcdir"
-  install -Dm644 acme.desktop "$pkgdir/usr/share/applications/acme.desktop"
-  install -Dm755 acme.sh "$pkgdir/usr/bin/acme"
-  install -Dm644 acme.png "$pkgdir/usr/share/pixmaps/acme.png"
-
-  # Remove git repository
-  rm -rf "$pkgdir/usr/lib/plan9/.git"
-}

Copied: plan9port/repos/community-x86_64/PKGBUILD (from rev 1292983, 
plan9port/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-09-05 08:50:46 UTC (rev 1292984)
@@ -0,0 +1,97 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: phrakture 
+# Contributor: Fazlul Shahriar <>
+# Contributor: Chris Brannon 
+

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

2022-09-05 Thread Alexander Rødseth via arch-commits
Date: Monday, September 5, 2022 @ 08:50:34
  Author: arodseth
Revision: 1292983

upgpkg: plan9port 20220818-1

Modified:
  plan9port/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-09-05 08:47:20 UTC (rev 1292982)
+++ PKGBUILD2022-09-05 08:50:34 UTC (rev 1292983)
@@ -4,7 +4,7 @@
 # Contributor: Chris Brannon 
 
 pkgname=plan9port
-pkgver=20220720
+pkgver=20220818
 pkgrel=1
 pkgdesc='Ports of applications from Plan 9'
 arch=(x86_64)
@@ -16,7 +16,7 @@
 provides=(plan9)
 install=plan9.install
 options=(staticlibs !zipman)
-source=("git+https://github.com/9fans/plan9port#commit=506de8f6d4acedcb5b30f841611e6a4d95ce0feb;
 # 2022-07-20
+source=("git+https://github.com/9fans/plan9port#commit=7b8251125b9f08f03fb9ea26b7617e1551ef6090;
 # 2022-08-18
 acme.png acme.sh plan9.sh)
 b2sums=('SKIP'
 
'983106b7a91afadae0f3aff5ff69338aa80d7eb6f9b65a95a31c963f162f6fb2dea748e5da698e0bd14d4343fe17281f55b9a1966fcba1c497fbd4bd855caf6c'
@@ -37,7 +37,7 @@
   # Use _DEFAULT_SOURCE instead of _BSD_SOURCE
   grep -rl _BSD_SOURCE | xargs sed -i s':_BSD_SOURCE:_DEFAULT_SOURCE:g'
 
-  # Try the Gentoo way for fixing hardcoded paths
+  # Use the Gentoo way for fixing hardcoded paths
   grep --null -l -r /usr/local/plan9 | xargs --null sed -i 
"s!/usr/local/plan9!/usr/lib/plan9!g"
 
   # Stop 9l from giving an 'undefined reference error' given no arguments, ref 
#55640



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

2022-09-05 Thread Alexander Rødseth via arch-commits
Date: Monday, September 5, 2022 @ 08:21:55
  Author: arodseth
Revision: 1292978

archrelease: copy trunk to community-any

Added:
  wordpress/repos/community-any/PKGBUILD
(from rev 1292977, wordpress/trunk/PKGBUILD)
  wordpress/repos/community-any/wordpress.install
(from rev 1292977, wordpress/trunk/wordpress.install)
Deleted:
  wordpress/repos/community-any/PKGBUILD
  wordpress/repos/community-any/wordpress.install

---+
 PKGBUILD  |   56 ++--
 wordpress.install |   38 +--
 2 files changed, 47 insertions(+), 47 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-09-05 08:21:47 UTC (rev 1292977)
+++ PKGBUILD2022-09-05 08:21:55 UTC (rev 1292978)
@@ -1,28 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Contributor: Thomas Dziedzic 
-# Contributor: Jose Valecillos 
-# Contributor: Kaos 
-# Contributor: Christopher Rogers 
-
-pkgname=wordpress
-pkgver=6.0.1
-pkgrel=1
-pkgdesc='Blog tool and publishing platform'
-arch=(any)
-url='https://wordpress.org/'
-license=(GPL)
-depends=(php)
-optdepends=('apache: Web server'
-'mariadb: Database server'
-'nginx: Web server')
-options=(emptydirs)
-install=$pkgname.install
-source=("https://wordpress.org/$pkgname-$pkgver.tar.gz;)
-b2sums=('674ccdc9c035d79dd1c58906480b7aca044b268a2f8b80a57f0a6d5500750c71e1377625a38a63daa2cb84623f23d93d998bb75996174ab3b2d86c765e459a22')
-
-package() {
-  install -d "$pkgdir/usr/share/webapps"
-  cp -r $pkgname "$pkgdir/usr/share/webapps"
-}
-
-# getver: core.trac.wordpress.org/timeline?milestone=on

Copied: wordpress/repos/community-any/PKGBUILD (from rev 1292977, 
wordpress/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-09-05 08:21:55 UTC (rev 1292978)
@@ -0,0 +1,28 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: Thomas Dziedzic 
+# Contributor: Jose Valecillos 
+# Contributor: Kaos 
+# Contributor: Christopher Rogers 
+
+pkgname=wordpress
+pkgver=6.0.2
+pkgrel=1
+pkgdesc='Blog tool and publishing platform'
+arch=(any)
+url='https://wordpress.org/'
+license=(GPL)
+depends=(php)
+optdepends=('apache: Web server'
+'mariadb: Database server'
+'nginx: Web server')
+options=(emptydirs)
+install=$pkgname.install
+source=("https://wordpress.org/$pkgname-$pkgver.tar.gz;)
+b2sums=('e537f628a129bd848db425129d49738c977ff882c89bc16633ba04f9d3733a164bd6699aff3b7a804deb13f9ee42d74ac89fa3f4d50bfd7ba385859d8822d27d')
+
+package() {
+  install -d "$pkgdir/usr/share/webapps"
+  cp -r $pkgname "$pkgdir/usr/share/webapps"
+}
+
+# getver: core.trac.wordpress.org/timeline?milestone=on

Deleted: wordpress.install
===
--- wordpress.install   2022-09-05 08:21:47 UTC (rev 1292977)
+++ wordpress.install   2022-09-05 08:21:55 UTC (rev 1292978)
@@ -1,19 +0,0 @@
-post_install() {
-  # Make uploads work
-  install -dm775 /usr/share/webapps/wordpress/wp-content/uploads
-  chown http:http /usr/share/webapps/wordpress/wp-content/uploads
-  echo 'You can now configure your (PHP compatible) web server to run 
WordPress'
-}
-
-pre_remove() {
-  cp -r /usr/share/webapps/wordpress /usr/share/webapps/wordpress_backup
-  echo 'Your WordPress folder was backed up to 
/usr/share/webapps/wordpress_backup'
-}
-
-post_remove() {
-  rm -rf /usr/share/webapps/wordpress
-}
-
-post_upgrade() {
-  echo 'WordPress was placed in /usr/share/webapps'
-}

Copied: wordpress/repos/community-any/wordpress.install (from rev 1292977, 
wordpress/trunk/wordpress.install)
===
--- wordpress.install   (rev 0)
+++ wordpress.install   2022-09-05 08:21:55 UTC (rev 1292978)
@@ -0,0 +1,19 @@
+post_install() {
+  # Make uploads work
+  install -dm775 /usr/share/webapps/wordpress/wp-content/uploads
+  chown http:http /usr/share/webapps/wordpress/wp-content/uploads
+  echo 'You can now configure your (PHP compatible) web server to run 
WordPress'
+}
+
+pre_remove() {
+  cp -r /usr/share/webapps/wordpress /usr/share/webapps/wordpress_backup
+  echo 'Your WordPress folder was backed up to 
/usr/share/webapps/wordpress_backup'
+}
+
+post_remove() {
+  rm -rf /usr/share/webapps/wordpress
+}
+
+post_upgrade() {
+  echo 'WordPress was placed in /usr/share/webapps'
+}



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

2022-09-05 Thread Alexander Rødseth via arch-commits
Date: Monday, September 5, 2022 @ 08:21:47
  Author: arodseth
Revision: 1292977

upgpkg: wordpress 6.0.2-1

Modified:
  wordpress/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-09-05 08:15:06 UTC (rev 1292976)
+++ PKGBUILD2022-09-05 08:21:47 UTC (rev 1292977)
@@ -5,7 +5,7 @@
 # Contributor: Christopher Rogers 
 
 pkgname=wordpress
-pkgver=6.0.1
+pkgver=6.0.2
 pkgrel=1
 pkgdesc='Blog tool and publishing platform'
 arch=(any)
@@ -18,7 +18,7 @@
 options=(emptydirs)
 install=$pkgname.install
 source=("https://wordpress.org/$pkgname-$pkgver.tar.gz;)
-b2sums=('674ccdc9c035d79dd1c58906480b7aca044b268a2f8b80a57f0a6d5500750c71e1377625a38a63daa2cb84623f23d93d998bb75996174ab3b2d86c765e459a22')
+b2sums=('e537f628a129bd848db425129d49738c977ff882c89bc16633ba04f9d3733a164bd6699aff3b7a804deb13f9ee42d74ac89fa3f4d50bfd7ba385859d8822d27d')
 
 package() {
   install -d "$pkgdir/usr/share/webapps"



[arch-commits] Commit in arduino/repos/community-x86_64 (7 files)

2022-09-01 Thread Alexander Rødseth via arch-commits
Date: Thursday, September 1, 2022 @ 06:45:35
  Author: arodseth
Revision: 1289777

archrelease: copy trunk to community-x86_64

Added:
  arduino/repos/community-x86_64/PKGBUILD
(from rev 1289776, arduino/trunk/PKGBUILD)
  arduino/repos/community-x86_64/arduino.install
(from rev 1289776, arduino/trunk/arduino.install)
  arduino/repos/community-x86_64/arduino.sh
(from rev 1289776, arduino/trunk/arduino.sh)
  arduino/repos/community-x86_64/keys/
Deleted:
  arduino/repos/community-x86_64/PKGBUILD
  arduino/repos/community-x86_64/arduino.install
  arduino/repos/community-x86_64/arduino.sh

-+
 PKGBUILD|  214 +++---
 arduino.install |   80 ++--
 arduino.sh  |6 -
 3 files changed, 150 insertions(+), 150 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-09-01 06:45:25 UTC (rev 1289776)
+++ PKGBUILD2022-09-01 06:45:35 UTC (rev 1289777)
@@ -1,107 +0,0 @@
-# Maintainer: NicoHood 
-# PGP ID: 97312D5EB9D7AE7D0BD4307351DAE9B7C1AE9161
-# Contributor: Tomas Schertel 
-# Contributor: Christopher Loen 
-# Contributor: Peter Reschenhofer 
-# Contributor: Niels Martignène 
-# Contributor: PyroPeter 
-# Contributor: darkapex 
-# Contributor: tty0 
-
-pkgname=arduino
-pkgver=1.8.19
-pkgrel=1
-epoch=1
-pkgdesc="Arduino prototyping platform SDK"
-arch=('x86_64')
-url="https://github.com/arduino/Arduino;
-license=('GPL' 'LGPL')
-depends=('gtk2' 'desktop-file-utils' 'shared-mime-info' 'java-runtime=8' 
'arduino-builder')
-makedepends=('java-environment=8' 'ant' 'unzip' 'asciidoc')
-optdepends=('arduino-docs: Offline documentation for arduino'
-'arduino-avr-core: AVR core with upstream avr-gcc and avrdude')
-options=(!strip)
-install="arduino.install"
-source=("${pkgname}-${pkgver}.tar.xz::https://github.com/arduino/Arduino/releases/download/${pkgver}/arduino-${pkgver}.tar.xz;
-
"${pkgname}-${pkgver}.tar.xz.asc::https://github.com/arduino/Arduino/releases/download/${pkgver}/arduino-${pkgver}.tar.xz.asc;
-# GPG signatures are not required as zip shasum is already provided by 
the buildfile
-# 
https://github.com/arduino/Arduino/issues/11522#issuecomment-840135044
-
"https://github.com/arduino-libraries/WiFi101-FirmwareUpdater-Plugin/releases/download/v0.12.0/WiFi101-Updater-ArduinoIDE-Plugin-0.12.0.zip;
-
"arduino-examples-1.9.1.zip::https://github.com/arduino/arduino-examples/archive/refs/tags/1.9.1.zip;
-"https://downloads.arduino.cc/libastylej-2.05.1-5.zip;
-"https://downloads.arduino.cc/libastylej-2.05.1-5.zip.asc;
-
"https://downloads.arduino.cc/liblistSerials/liblistSerials-1.4.2-2.zip;
-
"https://downloads.arduino.cc/liblistSerials/liblistSerials-1.4.2-2.zip.asc;
-"arduino.sh")
-sha512sums=('a7ebc544c3fdc528763dee6f31b923c889aec65139c7ff8bd5309e034cad681d089a5f5fa7fecf3b00e553f812cbfb5ae330344edabdf2cbdaa34425e3ea06ba'
-'SKIP'
-
'17e2d07fbdca491a8d80abb6f2ceb000c68af59b755da7db70dce2d5f781204340f43365c40e641acf0b084b2073b3b056f63d68990f405adefb76887f4c5b72'
-
'c0e21dd374b2751a1e5f2b790202d4883879da2e26e9a23ccbaec478647e2b8160cbc085e76888deafc05b9b14b1aff4ce2a9b834a7b83e8226c3bc41801015c'
-
'0678ed29caf8d80aeb852aa8a7f6fe545655314e75eaf6660a2a90505cda39863414ed05cfb8a3323f92d250601c8684021551606c40cea5ed81a1c322a0348c'
-'SKIP'
-
'5ee4ca9c3137957b4130434cd0ee740fc1747ed1e015a94e5909e2392563c87ad7b60b156aed305510ec5f6cec495b2b478d8e355a9cdef6ca6bfb3ce97badf5'
-'SKIP'
-
'78e2959daeb84828fe3a17b931831cf2581182ef14cc4afacdfba7c305967ebf461bf4098dbae3c07acab5a54d8ee64ba5245c8a75cd2064172bcfbf5dcc243d')
-validpgpkeys=('326567C1C6B288DF32CB061A95FA6F43E21188C4') # Arduino Packages 

-
-build() {
-cd "arduino-${pkgver}/build"
-
-# Compile with java8
-export PATH=/usr/lib/jvm/default/bin/:"$PATH"
-
-# Do not include their avr-core + tools and no docs. We build them 
seperately
-ant clean dist -Dversion="${pkgver}" build -Dlight_bundle=true \
- -Dno_docs=true \
- -Dlocal_sources=true \
- -Dno_arduino_builder=true
-
-# Build man page
-a2x -f manpage shared/manpage.adoc
-}
-
-package() {
-cd "arduino-${pkgver}/build/linux/work"
-
-# Create directories
-install -dm755 
"${pkgdir}/usr/share/"{doc,icons/hicolor,applications,mime/packages}
-
-# Copy the whole SDK
-cp -a . "${pkgdir}/usr/share/arduino"
-
-# Create wrapper for java8 + buider and documentation symlink
-install -Dm755 "${srcdir}/arduino.sh" "${pkgdir}/usr/bin/arduino"
-
-# Link arduino-builder, libastylej, libserialport and docs
-# TODO astyle libserialport do not work yet
-# TODO remove unzip dependency once all 

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

2022-09-01 Thread Alexander Rødseth via arch-commits
Date: Thursday, September 1, 2022 @ 06:45:25
  Author: arodseth
Revision: 1289776

Use gtk2-compat to upgrade from gtk2 (EOL) to gtk3

Modified:
  arduino/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-09-01 06:44:06 UTC (rev 1289775)
+++ PKGBUILD2022-09-01 06:45:25 UTC (rev 1289776)
@@ -10,14 +10,14 @@
 
 pkgname=arduino
 pkgver=1.8.19
-pkgrel=1
+pkgrel=2
 epoch=1
 pkgdesc="Arduino prototyping platform SDK"
 arch=('x86_64')
 url="https://github.com/arduino/Arduino;
 license=('GPL' 'LGPL')
-depends=('gtk2' 'desktop-file-utils' 'shared-mime-info' 'java-runtime=8' 
'arduino-builder')
-makedepends=('java-environment=8' 'ant' 'unzip' 'asciidoc')
+depends=('gtk3' 'desktop-file-utils' 'shared-mime-info' 'java-runtime=8' 
'arduino-builder')
+makedepends=('gtk2-compat' 'java-environment=8' 'ant' 'unzip' 'asciidoc')
 optdepends=('arduino-docs: Offline documentation for arduino'
 'arduino-avr-core: AVR core with upstream avr-gcc and avrdude')
 options=(!strip)



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

2022-08-31 Thread Alexander Rødseth via arch-commits
Date: Wednesday, August 31, 2022 @ 08:32:54
  Author: arodseth
Revision: 1289131

archrelease: copy trunk to community-x86_64

Added:
  freecad/repos/community-x86_64/PKGBUILD
(from rev 1289130, freecad/trunk/PKGBUILD)
Deleted:
  freecad/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-31 08:32:48 UTC (rev 1289130)
+++ PKGBUILD2022-08-31 08:32:54 UTC (rev 1289131)
@@ -1,72 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Contributor: loqs 
-# Contributor: Gabriel Souza Franco 
-# Contributor: Florian Pritz
-# Contributor: Jonas Heinrich 
-# Contributor: Jordi De Groof 
-# Contributor: mickele
-# Contributor: manwithgrenade
-# Contributor: bricem13
-# Contributor: gborzi
-# Contributor: Adrian Insaurralde
-
-pkgname=freecad
-pkgver=0.20.1
-pkgrel=4
-pkgdesc='Feature based parametric 3D CAD modeler'
-arch=(x86_64)
-url='https://freecadweb.org/'
-license=(LGPL)
-depends=(boost-libs fmt glew jsoncpp libspnav med-openmpi netcdf opencascade
- openmpi pyside2 pyside2-tools python-gitpython python-matplotlib
- python-pivy python-ply pugixml qt5-svg qt5-tools qt5-webkit
- qt5-x11extras qt5-xmlpatterns xerces-c)
-makedepends=(boost cgns cli11 cmake coin eigen gcc-fortran git jdk-openjdk
- libharu liblas ninja openmpi openvdb openvr ospray pdal
- postgresql-libs python-mpi4py python-shiboken2 shiboken2 swig
- utf8cpp)
-optdepends=('graphviz: dependency graph support'
-'openscad: OpenSCAD support'
-'python-markdown: Markdown support in addon manager'
-'python-gitpython: support downloading addons with git')
-source=("git+https://github.com/$pkgname/$pkgname#commit=f5d13554ecc7a456fb6e970568ae5c74ba727563;)
 # tag: 0.20.1 (after upstream force pushed the tag)
-b2sums=(SKIP)
-
-build() {
-  cmake \
--B build \
--D BUILD_ENABLE_CXX_STD=C++17 \
--D BUILD_FLAT_MESH=ON \
--D BUILD_QT5=ON \
--D CMAKE_BUILD_TYPE=Release \
--D CMAKE_C_FLAGS="$CFLAGS -fPIC -w" \
--D CMAKE_CXX_FLAGS="$CXXFLAGS -fPIC -w" \
--D CMAKE_INSTALL_BINDIR=/usr/lib/freecad/bin \
--D CMAKE_INSTALL_DATADIR=/usr/share/freecad \
--D CMAKE_INSTALL_DATAROOTDIR=/usr/share \
--D CMAKE_INSTALL_DOCDIR=/usr/share/freecad/doc \
--D CMAKE_INSTALL_LIBDIR=/usr/lib/freecad/lib \
--D CMAKE_INSTALL_PREFIX=/usr/lib/freecad \
--D FREECAD_USE_EXTERNAL_PIVY=ON \
--D FREECAD_USE_OCC_VARIANT='Official Version' \
--D FREECAD_USE_QT_FILEDIALOG=ON \
--D PYTHON_EXECUTABLE=/usr/bin/python \
--D INSTALL_TO_SITEPACKAGES=ON \
--G Ninja \
--S $pkgname
-  ninja -C build
-}
-
-package() {
-  DESTDIR="$pkgdir" ninja -C build install
-
-  # Thumbnailer
-  install -Dm755 $pkgname/src/Tools/$pkgname-thumbnailer -t "$pkgdir/usr/bin/"
-
-  # Symlinks in /usr/bin
-  install -d "$pkgdir/usr/bin"
-  ln -sf /usr/lib/freecad/bin/FreeCAD "$pkgdir/usr/bin/freecad"
-  ln -sf /usr/lib/freecad/bin/FreeCAD "$pkgdir/usr/bin/FreeCAD"
-  ln -sf /usr/lib/freecad/bin/FreeCADCmd "$pkgdir/usr/bin/freecadcmd"
-  ln -sf /usr/lib/freecad/bin/FreeCADCmd "$pkgdir/usr/bin/FreeCADCmd"
-}

Copied: freecad/repos/community-x86_64/PKGBUILD (from rev 1289130, 
freecad/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-31 08:32:54 UTC (rev 1289131)
@@ -0,0 +1,67 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: loqs 
+# Contributor: Gabriel Souza Franco 
+# Contributor: Florian Pritz
+# Contributor: Jonas Heinrich 
+# Contributor: Jordi De Groof 
+# Contributor: mickele
+# Contributor: manwithgrenade
+# Contributor: bricem13
+# Contributor: gborzi
+# Contributor: Adrian Insaurralde
+
+pkgname=freecad
+pkgver=0.20.1
+pkgrel=5
+pkgdesc='Feature based parametric 3D CAD modeler'
+arch=(x86_64)
+url='https://freecadweb.org/'
+license=(LGPL)
+depends=(boost-libs fmt glew jsoncpp libspnav med-openmpi netcdf opencascade
+ openmpi pyside2 pyside2-tools python-gitpython python-markdown
+ python-matplotlib python-pivy python-ply python-pyqt5-webengine 
pugixml
+ qt5-svg qt5-tools qt5-webkit qt5-x11extras qt5-xmlpatterns xerces-c)
+makedepends=(boost cgns cli11 cmake coin eigen gcc-fortran git jdk-openjdk
+ libharu liblas ninja openmpi openvdb openvr ospray pdal 
postgresql-libs
+ python-mpi4py python-shiboken2 shiboken2 swig utf8cpp)
+optdepends=('graphviz: dependency graph support'
+'openscad: OpenSCAD support')
+source=("git+https://github.com/$pkgname/$pkgname#commit=f5d13554ecc7a456fb6e970568ae5c74ba727563;)
 # tag: 0.20.1 SE
+b2sums=(SKIP)
+
+build() {
+  cmake \
+-B build \
+-D BUILD_ENABLE_CXX_STD=C++17 \
+-D BUILD_FLAT_MESH=ON \
+   

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

2022-08-31 Thread Alexander Rødseth via arch-commits
Date: Wednesday, August 31, 2022 @ 08:32:48
  Author: arodseth
Revision: 1289130

Add dependencies ref #75730

Modified:
  freecad/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-31 08:25:57 UTC (rev 1289129)
+++ PKGBUILD2022-08-31 08:32:48 UTC (rev 1289130)
@@ -12,24 +12,21 @@
 
 pkgname=freecad
 pkgver=0.20.1
-pkgrel=4
+pkgrel=5
 pkgdesc='Feature based parametric 3D CAD modeler'
 arch=(x86_64)
 url='https://freecadweb.org/'
 license=(LGPL)
 depends=(boost-libs fmt glew jsoncpp libspnav med-openmpi netcdf opencascade
- openmpi pyside2 pyside2-tools python-gitpython python-matplotlib
- python-pivy python-ply pugixml qt5-svg qt5-tools qt5-webkit
- qt5-x11extras qt5-xmlpatterns xerces-c)
+ openmpi pyside2 pyside2-tools python-gitpython python-markdown
+ python-matplotlib python-pivy python-ply python-pyqt5-webengine 
pugixml
+ qt5-svg qt5-tools qt5-webkit qt5-x11extras qt5-xmlpatterns xerces-c)
 makedepends=(boost cgns cli11 cmake coin eigen gcc-fortran git jdk-openjdk
- libharu liblas ninja openmpi openvdb openvr ospray pdal
- postgresql-libs python-mpi4py python-shiboken2 shiboken2 swig
- utf8cpp)
+ libharu liblas ninja openmpi openvdb openvr ospray pdal 
postgresql-libs
+ python-mpi4py python-shiboken2 shiboken2 swig utf8cpp)
 optdepends=('graphviz: dependency graph support'
-'openscad: OpenSCAD support'
-'python-markdown: Markdown support in addon manager'
-'python-gitpython: support downloading addons with git')
-source=("git+https://github.com/$pkgname/$pkgname#commit=f5d13554ecc7a456fb6e970568ae5c74ba727563;)
 # tag: 0.20.1 (after upstream force pushed the tag)
+'openscad: OpenSCAD support')
+source=("git+https://github.com/$pkgname/$pkgname#commit=f5d13554ecc7a456fb6e970568ae5c74ba727563;)
 # tag: 0.20.1 SE
 b2sums=(SKIP)
 
 build() {
@@ -59,11 +56,9 @@
 
 package() {
   DESTDIR="$pkgdir" ninja -C build install
-
-  # Thumbnailer
+  # thumbnailer
   install -Dm755 $pkgname/src/Tools/$pkgname-thumbnailer -t "$pkgdir/usr/bin/"
-
-  # Symlinks in /usr/bin
+  # symlinks
   install -d "$pkgdir/usr/bin"
   ln -sf /usr/lib/freecad/bin/FreeCAD "$pkgdir/usr/bin/freecad"
   ln -sf /usr/lib/freecad/bin/FreeCAD "$pkgdir/usr/bin/FreeCAD"



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

2022-08-30 Thread Alexander Rødseth via arch-commits
Date: Tuesday, August 30, 2022 @ 13:46:46
  Author: arodseth
Revision: 1288730

archrelease: copy trunk to community-x86_64

Added:
  amfora/repos/community-x86_64/PKGBUILD
(from rev 1288729, amfora/trunk/PKGBUILD)
Deleted:
  amfora/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-30 13:46:41 UTC (rev 1288729)
+++ PKGBUILD2022-08-30 13:46:46 UTC (rev 1288730)
@@ -1,34 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Contributor: Paul Boyd 
-
-pkgname=amfora
-pkgver=1.9.2
-pkgrel=3
-pkgdesc='Terminal browser for the Gemini protocol'
-arch=(x86_64)
-url='https://github.com/makeworld-the-better-one/amfora'
-license=(GPL3)
-makedepends=(git go)
-source=('https://roboticoverlords.org/amfora.png'
-"git+$url#commit=61d864540140f463a183e187e4211c258bd518bf") # tag: 
v1.9.2
-b2sums=('1f93ca564c2ef8ef9a94102ac50781b740266a2413cb92ac900240c9324d2dee27a19e4b0a95f45edf933e07ed133f696b4f969e3cfa7cb26a57bfdc63a287cb'
-'SKIP')
-options=('!lto')
-
-prepare() {
-  echo Icon=amfora >> amfora.desktop
-}
-
-build() {
-  cd $pkgname
-  go build -buildmode=pie -mod=readonly -modcacherw -trimpath \
--ldflags "-s -w -linkmode=external -extldflags $LDFLAGS -X 
main.version=$pkgver -X main.builtBy=Arch_Linux -X main.commit=${source#*=}"
-}
-
-package() {
-  cd $pkgname
-  install -Dm755 amfora "$pkgdir/usr/bin/amfora"
-  install -Dm644 "$srcdir/amfora.desktop" 
"$pkgdir/usr/share/applications/amfora.desktop"
-  install -Dm644 "$srcdir/amfora.png" "$pkgdir/usr/share/pixmaps/amfora.png"
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: amfora/repos/community-x86_64/PKGBUILD (from rev 1288729, 
amfora/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-30 13:46:46 UTC (rev 1288730)
@@ -0,0 +1,32 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: Paul Boyd 
+
+pkgname=amfora
+pkgver=1.9.2
+pkgrel=4
+pkgdesc='Terminal browser for the Gemini protocol'
+arch=(x86_64)
+url='https://github.com/makeworld-the-better-one/amfora'
+license=(GPL3)
+makedepends=(git go)
+source=('https://roboticoverlords.org/amfora.png'
+"git+$url#commit=61d864540140f463a183e187e4211c258bd518bf") # tag: 
v1.9.2
+b2sums=('1f93ca564c2ef8ef9a94102ac50781b740266a2413cb92ac900240c9324d2dee27a19e4b0a95f45edf933e07ed133f696b4f969e3cfa7cb26a57bfdc63a287cb'
+'SKIP')
+options=('!lto')
+
+prepare() {
+  echo Icon=amfora >> amfora/amfora.desktop
+}
+
+build() {
+  cd amfora
+  go build -buildmode=pie -mod=readonly -modcacherw -trimpath -ldflags \
+"-s -w -linkmode=external -extldflags $LDFLAGS -X main.version=$pkgver -X 
main.builtBy=Arch_Linux -X main.commit=${source#*=}"
+}
+
+package() {
+  install -Dm644 amfora.png "$pkgdir/usr/share/pixmaps/amfora.png"
+  install -Dm755 amfora/amfora "$pkgdir/usr/bin/amfora"
+  install -Dm644 amfora/amfora.desktop 
"$pkgdir/usr/share/applications/amfora.desktop"
+}



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

2022-08-30 Thread Alexander Rødseth via arch-commits
Date: Tuesday, August 30, 2022 @ 13:46:41
  Author: arodseth
Revision: 1288729

upgpkg: amfora 1.9.2-4

Modified:
  amfora/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-30 13:25:12 UTC (rev 1288728)
+++ PKGBUILD2022-08-30 13:46:41 UTC (rev 1288729)
@@ -3,7 +3,7 @@
 
 pkgname=amfora
 pkgver=1.9.2
-pkgrel=3
+pkgrel=4
 pkgdesc='Terminal browser for the Gemini protocol'
 arch=(x86_64)
 url='https://github.com/makeworld-the-better-one/amfora'
@@ -16,19 +16,17 @@
 options=('!lto')
 
 prepare() {
-  echo Icon=amfora >> amfora.desktop
+  echo Icon=amfora >> amfora/amfora.desktop
 }
 
 build() {
-  cd $pkgname
-  go build -buildmode=pie -mod=readonly -modcacherw -trimpath \
--ldflags "-s -w -linkmode=external -extldflags $LDFLAGS -X 
main.version=$pkgver -X main.builtBy=Arch_Linux -X main.commit=${source#*=}"
+  cd amfora
+  go build -buildmode=pie -mod=readonly -modcacherw -trimpath -ldflags \
+"-s -w -linkmode=external -extldflags $LDFLAGS -X main.version=$pkgver -X 
main.builtBy=Arch_Linux -X main.commit=${source#*=}"
 }
 
 package() {
-  cd $pkgname
-  install -Dm755 amfora "$pkgdir/usr/bin/amfora"
-  install -Dm644 "$srcdir/amfora.desktop" 
"$pkgdir/usr/share/applications/amfora.desktop"
-  install -Dm644 "$srcdir/amfora.png" "$pkgdir/usr/share/pixmaps/amfora.png"
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+  install -Dm644 amfora.png "$pkgdir/usr/share/pixmaps/amfora.png"
+  install -Dm755 amfora/amfora "$pkgdir/usr/bin/amfora"
+  install -Dm644 amfora/amfora.desktop 
"$pkgdir/usr/share/applications/amfora.desktop"
 }



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

2022-08-30 Thread Alexander Rødseth via arch-commits
Date: Tuesday, August 30, 2022 @ 08:11:44
  Author: arodseth
Revision: 1288414

archrelease: copy trunk to community-x86_64

Added:
  freecad/repos/community-x86_64/PKGBUILD
(from rev 1288413, freecad/trunk/PKGBUILD)
Deleted:
  freecad/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-30 08:11:39 UTC (rev 1288413)
+++ PKGBUILD2022-08-30 08:11:44 UTC (rev 1288414)
@@ -1,73 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Contributor: loqs 
-# Contributor: Gabriel Souza Franco 
-# Contributor: Florian Pritz
-# Contributor: Jonas Heinrich 
-# Contributor: Jordi De Groof 
-# Contributor: mickele
-# Contributor: manwithgrenade
-# Contributor: bricem13
-# Contributor: gborzi
-# Contributor: Adrian Insaurralde
-
-pkgname=freecad
-pkgver=0.20.1
-pkgrel=2
-pkgdesc='Feature based parametric 3D CAD modeler'
-arch=(x86_64)
-url='https://freecadweb.org/'
-license=(LGPL)
-depends=(boost-libs glew jsoncpp libspnav med-openmpi netcdf opencascade
- openmpi pyside2 pyside2-tools python-gitpython python-matplotlib
- python-pivy python-ply pugixml qt5-svg qt5-tools qt5-webkit
- qt5-x11extras qt5-xmlpatterns xerces-c)
-makedepends=(boost cgns cli11 cmake coin eigen fmt gcc-fortran git jdk-openjdk
- libharu liblas ninja openmpi openvdb openvr ospray pdal
- postgresql-libs python-mpi4py python-shiboken2 shiboken2 swig
- utf8cpp)
-optdepends=('fmt: for the FEM workbench'
-'graphviz: dependency graph support'
-'openscad: OpenSCAD support'
-'python-markdown: Markdown support in addon manager'
-'python-gitpython: support downloading addons with git')
-source=("git+https://github.com/$pkgname/$pkgname#commit=7f23e793eb136def6aee0f0ce81316cd21e6;)
 # tag: 0.20.1
-b2sums=('SKIP')
-
-build() {
-  cmake \
--B build \
--D BUILD_ENABLE_CXX_STD=C++17 \
--D BUILD_FLAT_MESH=ON \
--D BUILD_QT5=ON \
--D CMAKE_BUILD_TYPE=Release \
--D CMAKE_C_FLAGS="$CFLAGS -fPIC -w" \
--D CMAKE_CXX_FLAGS="$CXXFLAGS -fPIC -w" \
--D CMAKE_INSTALL_BINDIR=/usr/lib/freecad/bin \
--D CMAKE_INSTALL_DATADIR=/usr/share/freecad \
--D CMAKE_INSTALL_DATAROOTDIR=/usr/share \
--D CMAKE_INSTALL_DOCDIR=/usr/share/freecad/doc \
--D CMAKE_INSTALL_LIBDIR=/usr/lib/freecad/lib \
--D CMAKE_INSTALL_PREFIX=/usr/lib/freecad \
--D FREECAD_USE_EXTERNAL_PIVY=ON \
--D FREECAD_USE_OCC_VARIANT='Official Version' \
--D FREECAD_USE_QT_FILEDIALOG=ON \
--D PYTHON_EXECUTABLE=/usr/bin/python \
--D INSTALL_TO_SITEPACKAGES=ON \
--G Ninja \
--S $pkgname
-  ninja -C build
-}
-
-package() {
-  DESTDIR="$pkgdir" ninja -C build install
-
-  # Thumbnailer
-  install -Dm755 $pkgname/src/Tools/$pkgname-thumbnailer -t "$pkgdir/usr/bin/"
-
-  # Symlinks in /usr/bin
-  install -d "$pkgdir/usr/bin"
-  ln -sf /usr/lib/freecad/bin/FreeCAD "$pkgdir/usr/bin/freecad"
-  ln -sf /usr/lib/freecad/bin/FreeCAD "$pkgdir/usr/bin/FreeCAD"
-  ln -sf /usr/lib/freecad/bin/FreeCADCmd "$pkgdir/usr/bin/freecadcmd"
-  ln -sf /usr/lib/freecad/bin/FreeCADCmd "$pkgdir/usr/bin/FreeCADCmd"
-}

Copied: freecad/repos/community-x86_64/PKGBUILD (from rev 1288413, 
freecad/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-30 08:11:44 UTC (rev 1288414)
@@ -0,0 +1,72 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: loqs 
+# Contributor: Gabriel Souza Franco 
+# Contributor: Florian Pritz
+# Contributor: Jonas Heinrich 
+# Contributor: Jordi De Groof 
+# Contributor: mickele
+# Contributor: manwithgrenade
+# Contributor: bricem13
+# Contributor: gborzi
+# Contributor: Adrian Insaurralde
+
+pkgname=freecad
+pkgver=0.20.1
+pkgrel=4
+pkgdesc='Feature based parametric 3D CAD modeler'
+arch=(x86_64)
+url='https://freecadweb.org/'
+license=(LGPL)
+depends=(boost-libs fmt glew jsoncpp libspnav med-openmpi netcdf opencascade
+ openmpi pyside2 pyside2-tools python-gitpython python-matplotlib
+ python-pivy python-ply pugixml qt5-svg qt5-tools qt5-webkit
+ qt5-x11extras qt5-xmlpatterns xerces-c)
+makedepends=(boost cgns cli11 cmake coin eigen gcc-fortran git jdk-openjdk
+ libharu liblas ninja openmpi openvdb openvr ospray pdal
+ postgresql-libs python-mpi4py python-shiboken2 shiboken2 swig
+ utf8cpp)
+optdepends=('graphviz: dependency graph support'
+'openscad: OpenSCAD support'
+'python-markdown: Markdown support in addon manager'
+'python-gitpython: support downloading addons with git')
+source=("git+https://github.com/$pkgname/$pkgname#commit=f5d13554ecc7a456fb6e970568ae5c74ba727563;)
 # tag: 0.20.1 (after upstream 

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

2022-08-30 Thread Alexander Rødseth via arch-commits
Date: Tuesday, August 30, 2022 @ 08:11:39
  Author: arodseth
Revision: 1288413

Upstream updated the git tag

Modified:
  freecad/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-30 08:07:49 UTC (rev 1288412)
+++ PKGBUILD2022-08-30 08:11:39 UTC (rev 1288413)
@@ -12,7 +12,7 @@
 
 pkgname=freecad
 pkgver=0.20.1
-pkgrel=3
+pkgrel=4
 pkgdesc='Feature based parametric 3D CAD modeler'
 arch=(x86_64)
 url='https://freecadweb.org/'
@@ -29,7 +29,7 @@
 'openscad: OpenSCAD support'
 'python-markdown: Markdown support in addon manager'
 'python-gitpython: support downloading addons with git')
-source=("git+https://github.com/$pkgname/$pkgname#commit=7f23e793eb136def6aee0f0ce81316cd21e6;)
 # tag: 0.20.1
+source=("git+https://github.com/$pkgname/$pkgname#commit=f5d13554ecc7a456fb6e970568ae5c74ba727563;)
 # tag: 0.20.1 (after upstream force pushed the tag)
 b2sums=(SKIP)
 
 build() {



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

2022-08-30 Thread Alexander Rødseth via arch-commits
Date: Tuesday, August 30, 2022 @ 09:16:34
  Author: arodseth
Revision: 1288519

archrelease: copy trunk to community-any

Added:
  minted/repos/community-any/PKGBUILD
(from rev 1288518, minted/trunk/PKGBUILD)
  minted/repos/community-any/minted.install
(from rev 1288518, minted/trunk/minted.install)
Deleted:
  minted/repos/community-any/PKGBUILD
  minted/repos/community-any/minted.install

+
 PKGBUILD   |   60 +++
 minted.install |   22 ++--
 2 files changed, 41 insertions(+), 41 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-30 09:16:28 UTC (rev 1288518)
+++ PKGBUILD2022-08-30 09:16:34 UTC (rev 1288519)
@@ -1,30 +0,0 @@
-# Maintainer: Alexander F Rødseth 
-# Contributor: Markus Härer 
-# Contributor: robotanarchy
-# Contributor: Philipp Trommler 
-
-pkgname=minted
-pkgver=2.6
-pkgrel=2
-pkgdesc='Syntax highlighted source code for LaTeX'
-url='https://github.com/gpoore/minted'
-arch=(any)
-license=(LPPL)
-depends=(fvextra python-pygments texlive-latexextra)
-source=("$pkgname-$pkgver.tar.gz::https://github.com/gpoore/minted/archive/v$pkgver.tar.gz;
-minted.install)
-install=minted.install
-b2sums=('b8f1686adeb138c61c232502b10aa420f1054180c5a460e9e5058d40435e13d336c15a044202923bd1acd7b62a7b780d95c62cf1a589181c90b9058712479c43'
-
'd0a872e3c36c8364a4819ac597ddaf0be97e0712c9a1871a1e51d1b48ec5928435b7d8eebfc58e0762ee84f150c523b43622654117b2ecd19d13aba7c687e59a')
-
-build() {
-  cd $pkgname-$pkgver/source
-  yes | tex $pkgname.ins
-}
-
-package() {
-  cd $pkgname-$pkgver/source
-  install -Dm644 $pkgname.sty \
-"$pkgdir/usr/share/texmf/tex/latex/$pkgname/$pkgname.sty"
-  install -Dm644 $pkgname.pdf "$pkgdir/usr/share/doc/$pkgname/$pkgname.pdf"
-}

Copied: minted/repos/community-any/PKGBUILD (from rev 1288518, 
minted/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-30 09:16:34 UTC (rev 1288519)
@@ -0,0 +1,30 @@
+# Maintainer: Alexander F Rødseth 
+# Contributor: Markus Härer 
+# Contributor: robotanarchy
+# Contributor: Philipp Trommler 
+
+pkgname=minted
+pkgver=2.6
+pkgrel=3
+pkgdesc='Syntax highlighted source code for LaTeX'
+url='https://github.com/gpoore/minted'
+arch=(any)
+license=(LPPL)
+depends=(fvextra python-pygments texlive-latexextra which)
+source=("$pkgname-$pkgver.tar.gz::https://github.com/gpoore/minted/archive/v$pkgver.tar.gz;
+minted.install)
+install=minted.install
+b2sums=('b8f1686adeb138c61c232502b10aa420f1054180c5a460e9e5058d40435e13d336c15a044202923bd1acd7b62a7b780d95c62cf1a589181c90b9058712479c43'
+
'd0a872e3c36c8364a4819ac597ddaf0be97e0712c9a1871a1e51d1b48ec5928435b7d8eebfc58e0762ee84f150c523b43622654117b2ecd19d13aba7c687e59a')
+
+build() {
+  cd $pkgname-$pkgver/source
+  yes | tex $pkgname.ins
+}
+
+package() {
+  cd $pkgname-$pkgver/source
+  install -Dm644 $pkgname.sty \
+"$pkgdir/usr/share/texmf/tex/latex/$pkgname/$pkgname.sty"
+  install -Dm644 $pkgname.pdf "$pkgdir/usr/share/doc/$pkgname/$pkgname.pdf"
+}

Deleted: minted.install
===
--- minted.install  2022-08-30 09:16:28 UTC (rev 1288518)
+++ minted.install  2022-08-30 09:16:34 UTC (rev 1288519)
@@ -1,11 +0,0 @@
-post_install() {
-  texconfig-sys rehash
-}
-
-post_upgrade() {
-  texconfig-sys rehash
-}
-
-post_remove() {
-  texconfig-sys rehash
-}

Copied: minted/repos/community-any/minted.install (from rev 1288518, 
minted/trunk/minted.install)
===
--- minted.install  (rev 0)
+++ minted.install  2022-08-30 09:16:34 UTC (rev 1288519)
@@ -0,0 +1,11 @@
+post_install() {
+  texconfig-sys rehash
+}
+
+post_upgrade() {
+  texconfig-sys rehash
+}
+
+post_remove() {
+  texconfig-sys rehash
+}



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

2022-08-30 Thread Alexander Rødseth via arch-commits
Date: Tuesday, August 30, 2022 @ 09:16:28
  Author: arodseth
Revision: 1288518

upgpkg: minted 2.6-3

Modified:
  minted/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-30 09:07:44 UTC (rev 1288517)
+++ PKGBUILD2022-08-30 09:16:28 UTC (rev 1288518)
@@ -5,12 +5,12 @@
 
 pkgname=minted
 pkgver=2.6
-pkgrel=2
+pkgrel=3
 pkgdesc='Syntax highlighted source code for LaTeX'
 url='https://github.com/gpoore/minted'
 arch=(any)
 license=(LPPL)
-depends=(fvextra python-pygments texlive-latexextra)
+depends=(fvextra python-pygments texlive-latexextra which)
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/gpoore/minted/archive/v$pkgver.tar.gz;
 minted.install)
 install=minted.install



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

2022-08-30 Thread Alexander Rødseth via arch-commits
Date: Tuesday, August 30, 2022 @ 08:52:47
  Author: arodseth
Revision: 1288493

rebuild for SDL2 + minor changes

Modified:
  milkytracker/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-30 08:52:30 UTC (rev 1288492)
+++ PKGBUILD2022-08-30 08:52:47 UTC (rev 1288493)
@@ -2,10 +2,9 @@
 # Contributor: Christopher O'Neill 
 # Contributor: Maks Verver 
 
-_name=MilkyTracker
 pkgname=milkytracker
 pkgver=1.03.00
-pkgrel=2
+pkgrel=3
 pkgdesc='Music tracker inspired by Fast Tracker II'
 arch=(x86_64)
 url='https://milkytracker.titandemo.org/'
@@ -13,35 +12,35 @@
 depends=(alsa-lib lhasa rtmidi sdl2 zlib zziplib)
 makedepends=(cmake jack ninja)
 optdepends=('jack: JACK audio support')
-# Disable stripping
-# https://bugs.archlinux.org/task/30018
+# disable stripping, see: https://bugs.archlinux.org/task/30018
 options=(!strip)
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/milkytracker/MilkyTracker/archive/v$pkgver.tar.gz;)
-sha256sums=('72d5357e303380b52383b66b51f944a77cd77e2b3bfeb227d87cc0e72ab292f7')
+b2sums=('f14a7112de39748121933d242d89dc6efb71a73c3591fedb92785814e2edc788edfb6608e9237cdfed19ee7337d5920d0232eed5d85f692dbef5d4cb43a27cd0')
 
 prepare() {
-  mv -v $_name-$pkgver $pkgname-$pkgver
-  # remove explicit use of C++98 as dependencies use C++11
-  sed -e '/CMAKE_CXX_STANDARD/d' -e '/CMAKE_CXX_EXTENSIONS/d' -i 
$pkgname-$pkgver/CMakeLists.txt
+  mv MilkyTracker-$pkgver $pkgname-$pkgver
+  # remove explicit use of C++98
+  sed -e '/CMAKE_CXX_STANDARD/d' -e '/CMAKE_CXX_EXTENSIONS/d' \
+-i $pkgname-$pkgver/CMakeLists.txt
 }
 
 build() {
-  cmake -DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--W nodev \
+  cmake \
 -B build \
+-D CMAKE_INSTALL_PREFIX=/usr \
+-D CMAKE_INSTALL_LIBDIR=lib \
 -G Ninja \
-$pkgname-$pkgver
+-W nodev \
+-S $pkgname-$pkgver
   ninja -C build
 }
 
 package() {
   depends+=(libasound.so librtmidi.so)
-
   DESTDIR="$pkgdir" ninja install -C build
   cd $pkgname-$pkgver/resources
-  install -vDm 644 pictures/carton.png 
"$pkgdir/usr/share/pixmaps/${pkgname}.png"
-  install -vDm 644 ${pkgname}.desktop -t "$pkgdir/usr/share/applications/"
-  # yes, this file extension is wrong
-  install -vDm 644 ${pkgname}.appdata 
"$pkgdir/usr/share/appdata/${pkgname}.appdata.xml"
+  install -Dm644 pictures/carton.png "$pkgdir/usr/share/pixmaps/$pkgname.png"
+  install -Dm644 $pkgname.desktop -t "$pkgdir/usr/share/applications/"
+  # also rename from .appdata to .appdata.xml
+  install -Dm644 $pkgname.appdata 
"$pkgdir/usr/share/appdata/$pkgname.appdata.xml"
 }



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

2022-08-30 Thread Alexander Rødseth via arch-commits
Date: Tuesday, August 30, 2022 @ 08:52:53
  Author: arodseth
Revision: 1288494

archrelease: copy trunk to community-x86_64

Added:
  milkytracker/repos/community-x86_64/PKGBUILD
(from rev 1288493, milkytracker/trunk/PKGBUILD)
Deleted:
  milkytracker/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-30 08:52:47 UTC (rev 1288493)
+++ PKGBUILD2022-08-30 08:52:53 UTC (rev 1288494)
@@ -1,47 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Contributor: Christopher O'Neill 
-# Contributor: Maks Verver 
-
-_name=MilkyTracker
-pkgname=milkytracker
-pkgver=1.03.00
-pkgrel=2
-pkgdesc='Music tracker inspired by Fast Tracker II'
-arch=(x86_64)
-url='https://milkytracker.titandemo.org/'
-license=(GPL3)
-depends=(alsa-lib lhasa rtmidi sdl2 zlib zziplib)
-makedepends=(cmake jack ninja)
-optdepends=('jack: JACK audio support')
-# Disable stripping
-# https://bugs.archlinux.org/task/30018
-options=(!strip)
-source=("$pkgname-$pkgver.tar.gz::https://github.com/milkytracker/MilkyTracker/archive/v$pkgver.tar.gz;)
-sha256sums=('72d5357e303380b52383b66b51f944a77cd77e2b3bfeb227d87cc0e72ab292f7')
-
-prepare() {
-  mv -v $_name-$pkgver $pkgname-$pkgver
-  # remove explicit use of C++98 as dependencies use C++11
-  sed -e '/CMAKE_CXX_STANDARD/d' -e '/CMAKE_CXX_EXTENSIONS/d' -i 
$pkgname-$pkgver/CMakeLists.txt
-}
-
-build() {
-  cmake -DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--W nodev \
--B build \
--G Ninja \
-$pkgname-$pkgver
-  ninja -C build
-}
-
-package() {
-  depends+=(libasound.so librtmidi.so)
-
-  DESTDIR="$pkgdir" ninja install -C build
-  cd $pkgname-$pkgver/resources
-  install -vDm 644 pictures/carton.png 
"$pkgdir/usr/share/pixmaps/${pkgname}.png"
-  install -vDm 644 ${pkgname}.desktop -t "$pkgdir/usr/share/applications/"
-  # yes, this file extension is wrong
-  install -vDm 644 ${pkgname}.appdata 
"$pkgdir/usr/share/appdata/${pkgname}.appdata.xml"
-}

Copied: milkytracker/repos/community-x86_64/PKGBUILD (from rev 1288493, 
milkytracker/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-30 08:52:53 UTC (rev 1288494)
@@ -0,0 +1,46 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: Christopher O'Neill 
+# Contributor: Maks Verver 
+
+pkgname=milkytracker
+pkgver=1.03.00
+pkgrel=3
+pkgdesc='Music tracker inspired by Fast Tracker II'
+arch=(x86_64)
+url='https://milkytracker.titandemo.org/'
+license=(GPL3)
+depends=(alsa-lib lhasa rtmidi sdl2 zlib zziplib)
+makedepends=(cmake jack ninja)
+optdepends=('jack: JACK audio support')
+# disable stripping, see: https://bugs.archlinux.org/task/30018
+options=(!strip)
+source=("$pkgname-$pkgver.tar.gz::https://github.com/milkytracker/MilkyTracker/archive/v$pkgver.tar.gz;)
+b2sums=('f14a7112de39748121933d242d89dc6efb71a73c3591fedb92785814e2edc788edfb6608e9237cdfed19ee7337d5920d0232eed5d85f692dbef5d4cb43a27cd0')
+
+prepare() {
+  mv MilkyTracker-$pkgver $pkgname-$pkgver
+  # remove explicit use of C++98
+  sed -e '/CMAKE_CXX_STANDARD/d' -e '/CMAKE_CXX_EXTENSIONS/d' \
+-i $pkgname-$pkgver/CMakeLists.txt
+}
+
+build() {
+  cmake \
+-B build \
+-D CMAKE_INSTALL_PREFIX=/usr \
+-D CMAKE_INSTALL_LIBDIR=lib \
+-G Ninja \
+-W nodev \
+-S $pkgname-$pkgver
+  ninja -C build
+}
+
+package() {
+  depends+=(libasound.so librtmidi.so)
+  DESTDIR="$pkgdir" ninja install -C build
+  cd $pkgname-$pkgver/resources
+  install -Dm644 pictures/carton.png "$pkgdir/usr/share/pixmaps/$pkgname.png"
+  install -Dm644 $pkgname.desktop -t "$pkgdir/usr/share/applications/"
+  # also rename from .appdata to .appdata.xml
+  install -Dm644 $pkgname.appdata 
"$pkgdir/usr/share/appdata/$pkgname.appdata.xml"
+}



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

2022-08-27 Thread Alexander Rødseth via arch-commits
Date: Saturday, August 27, 2022 @ 20:34:47
  Author: arodseth
Revision: 1284888

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-27 20:34:41 UTC (rev 1284887)
+++ PKGBUILD2022-08-27 20:34:47 UTC (rev 1284888)
@@ -1,20 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Contributor: Grey Christoforo
-
-pkgname=python-pivy
-pkgver=0.6.7
-pkgrel=1
-pkgdesc='Bindings to Coin3D'
-arch=(x86_64)
-license=(BSD)
-url='https://github.com/coin3d/pivy'
-depends=(python soqt)
-makedepends=(cmake git glu python-setuptools swig)
-source=("git+$url#commit=81236d917c2d1e20c8403385e8a39d424c78909b") # tag: 
0.6.7
-b2sums=('SKIP')
-
-package() {
-  cd pivy
-  python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: python-pivy/repos/community-x86_64/PKGBUILD (from rev 1284887, 
python-pivy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-27 20:34:47 UTC (rev 1284888)
@@ -0,0 +1,20 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: Grey Christoforo
+
+pkgname=python-pivy
+pkgver=0.6.8
+pkgrel=1
+pkgdesc='Bindings to Coin3D'
+arch=(x86_64)
+license=(BSD)
+url='https://github.com/coin3d/pivy'
+depends=(python soqt)
+makedepends=(cmake git glu python-setuptools swig)
+source=("git+$url#commit=83e99c18545bb66145716123151f6635c367533b") # tag: 
0.6.8
+b2sums=('SKIP')
+
+package() {
+  cd pivy
+  python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}



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

2022-08-27 Thread Alexander Rødseth via arch-commits
Date: Saturday, August 27, 2022 @ 20:34:41
  Author: arodseth
Revision: 1284887

upgpkg: python-pivy 0.6.8-1

Modified:
  python-pivy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-27 20:21:38 UTC (rev 1284886)
+++ PKGBUILD2022-08-27 20:34:41 UTC (rev 1284887)
@@ -2,7 +2,7 @@
 # Contributor: Grey Christoforo
 
 pkgname=python-pivy
-pkgver=0.6.7
+pkgver=0.6.8
 pkgrel=1
 pkgdesc='Bindings to Coin3D'
 arch=(x86_64)
@@ -10,7 +10,7 @@
 url='https://github.com/coin3d/pivy'
 depends=(python soqt)
 makedepends=(cmake git glu python-setuptools swig)
-source=("git+$url#commit=81236d917c2d1e20c8403385e8a39d424c78909b") # tag: 
0.6.7
+source=("git+$url#commit=83e99c18545bb66145716123151f6635c367533b") # tag: 
0.6.8
 b2sums=('SKIP')
 
 package() {



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

2022-08-25 Thread Alexander Rødseth via arch-commits
Date: Thursday, August 25, 2022 @ 20:45:49
  Author: arodseth
Revision: 1280587

archrelease: copy trunk to community-x86_64

Added:
  lshw/repos/community-x86_64/82393aa9b59307a443677df7340a1dd38847a5ef.patch
(from rev 1280586, 
lshw/trunk/82393aa9b59307a443677df7340a1dd38847a5ef.patch)
  lshw/repos/community-x86_64/PKGBUILD
(from rev 1280586, lshw/trunk/PKGBUILD)
Deleted:
  lshw/repos/community-x86_64/82393aa9b59307a443677df7340a1dd38847a5ef.patch
  lshw/repos/community-x86_64/PKGBUILD

+
 82393aa9b59307a443677df7340a1dd38847a5ef.patch |  116 +++
 PKGBUILD   |   84 
 2 files changed, 100 insertions(+), 100 deletions(-)

Deleted: 82393aa9b59307a443677df7340a1dd38847a5ef.patch
===
--- 82393aa9b59307a443677df7340a1dd38847a5ef.patch  2022-08-25 20:45:42 UTC 
(rev 1280586)
+++ 82393aa9b59307a443677df7340a1dd38847a5ef.patch  2022-08-25 20:45:49 UTC 
(rev 1280587)
@@ -1,58 +0,0 @@
-From 82393aa9b59307a443677df7340a1dd38847a5ef Mon Sep 17 00:00:00 2001
-From: Yuan-Chen Cheng 
-Date: Fri, 25 Oct 2019 11:15:24 -0400
-Subject: [PATCH] correct "JSON output format" without/with all class.
-
-test pass on my machine.
-
-Signed-off-by: Yuan-Chen Cheng 

- src/core/hw.cc | 25 -
- 1 file changed, 20 insertions(+), 5 deletions(-)
-
-diff --git a/src/core/hw.cc b/src/core/hw.cc
-index 4522c1a..8232337 100644
 a/src/core/hw.cc
-+++ b/src/core/hw.cc
-@@ -1650,13 +1650,29 @@ string hwNode::asJSON(unsigned level)
- resources.clear();
-   }
- 
--  for (unsigned int i = 0; i < countChildren(); i++)
-+  if(countChildren()>0)
-   {
--out << getChild(i)->asJSON(visible(getClassName()) ? level + 2 : 1);
--if (visible(getChild(i)->getClassName()))
-+bool childOutputed = false;
-+for (unsigned int i = 0; i < countChildren(); i++)
- {
--  out << "," << endl;
-+  string childJSON = getChild(i)->asJSON(visible(getClassName()) ? level 
+ 2 : 1);
-+  string childJSONstrip = strip(childJSON);
-+  if (childJSONstrip.length() > 0)
-+  {
-+if (!childOutputed)
-+{
-+  if(visible(getClassName()))
-+out << "," << endl << spaces(2*level+2) << "\"children\" : [" << 
endl;
-+}
-+else
-+  out << "," << endl;
-+childOutputed = true;
-+out << childJSON;
-+  }
- }
-+
-+if(visible(getClassName()) && childOutputed)
-+  out << endl << spaces(2*level+2) << "]";
-   }
- 
-   if(visible(getClassName()))
-@@ -1667,7 +1683,6 @@ string hwNode::asJSON(unsigned level)
- 
-   if (level == 0)
-   {
--out.seekp(-2, std::ios_base::end);
- out << endl << "]" << endl;
-   }
- 

Copied: 
lshw/repos/community-x86_64/82393aa9b59307a443677df7340a1dd38847a5ef.patch 
(from rev 1280586, lshw/trunk/82393aa9b59307a443677df7340a1dd38847a5ef.patch)
===
--- 82393aa9b59307a443677df7340a1dd38847a5ef.patch  
(rev 0)
+++ 82393aa9b59307a443677df7340a1dd38847a5ef.patch  2022-08-25 20:45:49 UTC 
(rev 1280587)
@@ -0,0 +1,58 @@
+From 82393aa9b59307a443677df7340a1dd38847a5ef Mon Sep 17 00:00:00 2001
+From: Yuan-Chen Cheng 
+Date: Fri, 25 Oct 2019 11:15:24 -0400
+Subject: [PATCH] correct "JSON output format" without/with all class.
+
+test pass on my machine.
+
+Signed-off-by: Yuan-Chen Cheng 
+---
+ src/core/hw.cc | 25 -
+ 1 file changed, 20 insertions(+), 5 deletions(-)
+
+diff --git a/src/core/hw.cc b/src/core/hw.cc
+index 4522c1a..8232337 100644
+--- a/src/core/hw.cc
 b/src/core/hw.cc
+@@ -1650,13 +1650,29 @@ string hwNode::asJSON(unsigned level)
+ resources.clear();
+   }
+ 
+-  for (unsigned int i = 0; i < countChildren(); i++)
++  if(countChildren()>0)
+   {
+-out << getChild(i)->asJSON(visible(getClassName()) ? level + 2 : 1);
+-if (visible(getChild(i)->getClassName()))
++bool childOutputed = false;
++for (unsigned int i = 0; i < countChildren(); i++)
+ {
+-  out << "," << endl;
++  string childJSON = getChild(i)->asJSON(visible(getClassName()) ? level 
+ 2 : 1);
++  string childJSONstrip = strip(childJSON);
++  if (childJSONstrip.length() > 0)
++  {
++if (!childOutputed)
++{
++  if(visible(getClassName()))
++out << "," << endl << spaces(2*level+2) << "\"children\" : [" << 
endl;
++}
++else
++  out << "," << endl;
++childOutputed = true;
++out << childJSON;
++  }
+ }
++
++if(visible(getClassName()) && childOutputed)
++  out << endl << spaces(2*level+2) << "]";
+   }
+ 
+   if(visible(getClassName()))
+@@ -1667,7 +1683,6 @@ string hwNode::asJSON(unsigned level)
+ 
+   if (level == 0)
+   {
+-out.seekp(-2, std::ios_base::end);
+ out << endl << "]" << 

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

2022-08-25 Thread Alexander Rødseth via arch-commits
Date: Thursday, August 25, 2022 @ 20:45:42
  Author: arodseth
Revision: 1280586

Build with gtk2-compat and optdep on gtk3

Modified:
  lshw/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-25 20:42:07 UTC (rev 1280585)
+++ PKGBUILD2022-08-25 20:45:42 UTC (rev 1280586)
@@ -4,16 +4,16 @@
 
 pkgname=lshw
 pkgver=B.02.19.2
-pkgrel=4
+pkgrel=5
 pkgdesc="A small tool to provide detailed information on the hardware 
configuration of the machine."
 url="https://ezix.org/project/wiki/HardwareLiSter;
 license=('GPL')
 arch=('x86_64')
 depends=('gcc-libs' 'hwdata')
-optdepends=('gtk2')
-makedepends=('gcc' 'gtk2' 'sqlite')
+optdepends=('gtk3')
+makedepends=('gcc' 'gtk2-compat' 'sqlite')
 source=(https://ezix.org/software/files/lshw-$pkgver.tar.gz
-   82393aa9b59307a443677df7340a1dd38847a5ef.patch)
+82393aa9b59307a443677df7340a1dd38847a5ef.patch)
 sha256sums=('9bb347ac87142339a366a1759ac845e3dbb337ec000aa1b99b50ac6758a80f80'
 '3906335e802387319900a70c7ce575f0f539fce5befd6d37edc74be0d31141df')
 



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

2022-08-24 Thread Alexander Rødseth via arch-commits
Date: Wednesday, August 24, 2022 @ 19:50:13
  Author: arodseth
Revision: 1276888

archrelease: copy trunk to community-x86_64

Added:
  netsurf/repos/community-x86_64/PKGBUILD
(from rev 1276887, netsurf/trunk/PKGBUILD)
  netsurf/repos/community-x86_64/netsurf.sh
(from rev 1276887, netsurf/trunk/netsurf.sh)
Deleted:
  netsurf/repos/community-x86_64/PKGBUILD
  netsurf/repos/community-x86_64/netsurf.sh

+
 PKGBUILD   |  113 +--
 netsurf.sh |8 ++--
 2 files changed, 61 insertions(+), 60 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-24 19:50:07 UTC (rev 1276887)
+++ PKGBUILD2022-08-24 19:50:13 UTC (rev 1276888)
@@ -1,56 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Contributor: Paulo Matias 
-# Contributor: Georgij Kondratjev 
-# Contributor: Daniel J Griffiths 
-
-pkgname=netsurf
-pkgver=3.10
-pkgrel=4
-pkgdesc='Lightweight and fast web browser'
-arch=(x86_64)
-url='https://www.netsurf-browser.org/'
-license=(MIT GPL2)
-depends=(bash curl gtk3 'libhubbub=0.3.7' libjpeg-turbo 'libnsutils=0.1.0'
- 'libutf8proc>=2.6.0' 'libwapcaplet>=0.4.3' 'libdom>=0.4.1' libwebp)
-# vim is needed only for xxd when building
-makedepends=(check inetutils 'libcss>=0.9.1' 'libnsbmp>=0.1.6'
- 'libnsgif>=0.2.1' 'nsgenbind>=0.8' perl-html-parser setconf vim)
-source=("https://download.netsurf-browser.org/netsurf/releases/source-full/netsurf-all-$pkgver.tar.gz;
-netsurf.sh)
-b2sums=('7c33db550a99000fabc95a9d0e48b86189485076bbcf740d8ff865564ca243c1a66d65fc21c036790cd0d1426e7f8251a376fc8370e1530b75e3f171ddb22ce4'
-
'f0220a0c2c03d567434deeed20f821dc110947e16889aa78e12e3f468a431d2f721b9cff23bd6ed3545323f3ed975ea0941f0ee61c4b09938b8bfb99764f8bc8')
-
-prepare() {
-  cd $pkgname-all-$pkgver/$pkgname
-  # Fix compilation issues
-  sed -i 's:libutf8proc/::;s:UTF8PROC_CCC_VIRAMA:UTF8PROC_BIDI_CLASS_EN:' 
utils/idna.c
-  # Use "netsurf" as the name of the executable in /usr/bin
-  setconf frontends/gtk/res/netsurf-gtk.desktop 'Exec=netsurf %u'
-}
-
-build() {
-  CFLAGS="$CFLAGS -Os -funroll-loops -w" \
-make -C $pkgname-all-$pkgver/$pkgname \
-  INCLUDEDIR=include \
-  LIBDIR=lib \
-  NETSURF_UA_FORMAT_STRING='"NetSurf/%d.%d (%s; Arch Linux)"' \
-  PREFIX=/usr \
-  TARGET=gtk3
-}
-
-package() {
-  make -C $pkgname-all-$pkgver/$pkgname \
-DESTDIR="$pkgdir" \
-INCLUDEDIR=include \
-LIBDIR=lib \
-PREFIX=/usr \
-TARGET=gtk3 \
-install
-  install -Dm755 $pkgname.sh "$pkgdir/usr/bin/$pkgname"
-  cd $pkgname-all-$pkgver/$pkgname
-  install -Dm644 frontends/gtk/res/$pkgname.xpm \
-"$pkgdir/usr/share/pixmaps/$pkgname.xpm"
-  install -Dm644 frontends/gtk/res/$pkgname-gtk.desktop \
-"$pkgdir/usr/share/applications/$pkgname.desktop"
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
-}

Copied: netsurf/repos/community-x86_64/PKGBUILD (from rev 1276887, 
netsurf/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-24 19:50:13 UTC (rev 1276888)
@@ -0,0 +1,57 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: Paulo Matias 
+# Contributor: Georgij Kondratjev 
+# Contributor: Daniel J Griffiths 
+
+pkgname=netsurf
+pkgver=3.10
+pkgrel=5
+pkgdesc='Lightweight and fast web browser'
+arch=(x86_64)
+url='https://www.netsurf-browser.org/'
+license=(GPL2 MIT)
+depends=(curl gtk3 'libcss>=0.9.1' 'libdom>=0.4.1' 'libhubbub=0.3.7'
+ libjpeg-turbo 'libnsbmp>=0.1.6' 'libnsgif>=0.2.1' 'libnsutils=0.1.0'
+ 'libutf8proc>=2.6.0' 'libwapcaplet>=0.4.3' libwebp)
+# vim is needed only for xxd when building
+makedepends=(check inetutils 'nsgenbind>=0.8' perl-html-parser setconf vim)
+source=("https://download.netsurf-browser.org/netsurf/releases/source-full/netsurf-all-$pkgver.tar.gz;
+netsurf.sh)
+b2sums=('7c33db550a99000fabc95a9d0e48b86189485076bbcf740d8ff865564ca243c1a66d65fc21c036790cd0d1426e7f8251a376fc8370e1530b75e3f171ddb22ce4'
+
'f0220a0c2c03d567434deeed20f821dc110947e16889aa78e12e3f468a431d2f721b9cff23bd6ed3545323f3ed975ea0941f0ee61c4b09938b8bfb99764f8bc8')
+
+prepare() {
+  cd $pkgname-all-$pkgver/$pkgname
+  # Fix compilation issues
+  sed -i 's:libutf8proc/::;s:UTF8PROC_CCC_VIRAMA:UTF8PROC_BIDI_CLASS_EN:' 
utils/idna.c
+  # Use "netsurf" as the name of the executable in /usr/bin
+  setconf frontends/gtk/res/netsurf-gtk.desktop 'Exec=netsurf %u'
+}
+
+build() {
+  export CFLAGS+=' -Os -funroll-loops -w'
+  make -C $pkgname-all-$pkgver/$pkgname \
+INCLUDEDIR=include \
+LIBDIR=lib \
+NETSURF_UA_FORMAT_STRING='"NetSurf/%d.%d (%s; Arch Linux)"' \
+PREFIX=/usr \
+TARGET=gtk3
+}
+
+package() {
+  make -C $pkgname-all-$pkgver/$pkgname \
+DESTDIR="$pkgdir" \
+INCLUDEDIR=include \
+LIBDIR=lib \
+PREFIX=/usr \
+TARGET=gtk3 \
+   

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

2022-08-24 Thread Alexander Rødseth via arch-commits
Date: Wednesday, August 24, 2022 @ 19:50:07
  Author: arodseth
Revision: 1276887

Move libcss to the depends array

Modified:
  netsurf/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-24 19:49:22 UTC (rev 1276886)
+++ PKGBUILD2022-08-24 19:50:07 UTC (rev 1276887)
@@ -5,16 +5,16 @@
 
 pkgname=netsurf
 pkgver=3.10
-pkgrel=4
+pkgrel=5
 pkgdesc='Lightweight and fast web browser'
 arch=(x86_64)
 url='https://www.netsurf-browser.org/'
-license=(MIT GPL2)
-depends=(bash curl gtk3 'libhubbub=0.3.7' libjpeg-turbo 'libnsutils=0.1.0'
- 'libutf8proc>=2.6.0' 'libwapcaplet>=0.4.3' 'libdom>=0.4.1' libwebp)
+license=(GPL2 MIT)
+depends=(curl gtk3 'libcss>=0.9.1' 'libdom>=0.4.1' 'libhubbub=0.3.7'
+ libjpeg-turbo 'libnsbmp>=0.1.6' 'libnsgif>=0.2.1' 'libnsutils=0.1.0'
+ 'libutf8proc>=2.6.0' 'libwapcaplet>=0.4.3' libwebp)
 # vim is needed only for xxd when building
-makedepends=(check inetutils 'libcss>=0.9.1' 'libnsbmp>=0.1.6'
- 'libnsgif>=0.2.1' 'nsgenbind>=0.8' perl-html-parser setconf vim)
+makedepends=(check inetutils 'nsgenbind>=0.8' perl-html-parser setconf vim)
 
source=("https://download.netsurf-browser.org/netsurf/releases/source-full/netsurf-all-$pkgver.tar.gz;
 netsurf.sh)
 
b2sums=('7c33db550a99000fabc95a9d0e48b86189485076bbcf740d8ff865564ca243c1a66d65fc21c036790cd0d1426e7f8251a376fc8370e1530b75e3f171ddb22ce4'
@@ -29,13 +29,13 @@
 }
 
 build() {
-  CFLAGS="$CFLAGS -Os -funroll-loops -w" \
-make -C $pkgname-all-$pkgver/$pkgname \
-  INCLUDEDIR=include \
-  LIBDIR=lib \
-  NETSURF_UA_FORMAT_STRING='"NetSurf/%d.%d (%s; Arch Linux)"' \
-  PREFIX=/usr \
-  TARGET=gtk3
+  export CFLAGS+=' -Os -funroll-loops -w'
+  make -C $pkgname-all-$pkgver/$pkgname \
+INCLUDEDIR=include \
+LIBDIR=lib \
+NETSURF_UA_FORMAT_STRING='"NetSurf/%d.%d (%s; Arch Linux)"' \
+PREFIX=/usr \
+TARGET=gtk3
 }
 
 package() {
@@ -46,6 +46,7 @@
 PREFIX=/usr \
 TARGET=gtk3 \
 install
+
   install -Dm755 $pkgname.sh "$pkgdir/usr/bin/$pkgname"
   cd $pkgname-all-$pkgver/$pkgname
   install -Dm644 frontends/gtk/res/$pkgname.xpm \



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

2022-08-24 Thread Alexander Rødseth via arch-commits
Date: Wednesday, August 24, 2022 @ 11:49:25
  Author: arodseth
Revision: 1276106

archrelease: copy trunk to community-x86_64

Added:
  haxe/repos/community-x86_64/PKGBUILD
(from rev 1276105, haxe/trunk/PKGBUILD)
Deleted:
  haxe/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-24 11:49:18 UTC (rev 1276105)
+++ PKGBUILD2022-08-24 11:49:25 UTC (rev 1276106)
@@ -1,69 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Contributor: Daichi Shinozaki 
-# Contributor: Andy Li 
-# Contributor: Kyle Brady  
-# Contributor: Patrick Hof 
-# Contributor: Michael Fellinger 
-
-pkgname=haxe
-pkgver=4.2.4
-pkgrel=2
-pkgdesc='Cross-platform toolkit and programming language'
-arch=(x86_64)
-url='https://haxe.org/'
-license=(GPL LGPL MIT)
-depends=(neko mbedtls)
-makedepends=(camlp5 dune git neko ocaml opam zlib perl-string-shellquote 
perl-ipc-system-simple)
-optdepends=(java-environment mono php python)
-options=(!strip)
-source=("$pkgname-$pkgver::git+https://github.com/HaxeFoundation/haxe#commit=ab0c0548ff80fcbbbc140a381a9031af13b5782c;)
 # tag: 4.2.4
-b2sums=('SKIP')
-
-prepare() {
-  cd $pkgname-$pkgver
-  git submodule update --init
-
-  # Prepare opam and ocamlfind before building
-  export HOME="$srcdir"
-  opam init -a --disable-sandboxing
-  eval $(opam env)
-
-  # Install required OCaml packages
-  opam install -y extlib jbuilder luv ocamlfind ppx_tools_versioned ptmap 
sedlex sha xml-light
-
-  # Create the script that will be placed in /etc/profile.d
-  echo 'export HAXE_STD_PATH=/usr/share/haxe/std' > haxe.sh
-}
-
-build() {
-  # Needed to make Haxe build with OCaml 4.06 and 4.07
-  # For more info, see: 
https://github.com/HaxeFoundation/haxe/issues/6883#issuecomment-370142073
-  export OCAMLPARAM='safe-string=0,_'
-
-  # Prepare opam and ocamlfind before building
-  eval $(opam env)
-
-  cd $pkgname-$pkgver
-  make libs haxe
-
-  # "make tools" did not work. These are the replacement commands:
-  cd "$srcdir/$pkgname-$pkgver/extra/haxelib_src"
-  ../../haxe client.hxml || true
-  nekotools boot run.n
-  mv run ../../haxelib
-}
-
-check() {
-  $pkgname-$pkgver/haxe -version
-  $pkgname-$pkgver/haxelib version
-}
-
-package() {
-  cd $pkgname-$pkgver
-  install -d "$pkgdir/usr/"{bin/,share/haxe/}
-  install -m 755 haxe{,lib} "$pkgdir"/usr/bin/
-  cp -rf std "$pkgdir/usr/share/$pkgname/"
-  install -Dm 644 haxe.sh "$pkgdir/etc/profile.d/haxe.sh"
-  install -Dm 644 extra/LICENSE.txt \
-"$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt
-}

Copied: haxe/repos/community-x86_64/PKGBUILD (from rev 1276105, 
haxe/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-24 11:49:25 UTC (rev 1276106)
@@ -0,0 +1,66 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: Andy Li 
+# Contributor: Daichi Shinozaki 
+# Contributor: Kyle Brady  
+# Contributor: Patrick Hof 
+# Contributor: Michael Fellinger 
+
+pkgname=haxe
+pkgver=4.2.5
+pkgrel=1
+pkgdesc='Cross-platform toolkit and programming language'
+arch=(x86_64)
+url='https://haxe.org/'
+license=(GPL LGPL MIT)
+depends=(neko mbedtls)
+makedepends=(camlp5 git neko ocaml opam zlib perl-string-shellquote 
perl-ipc-system-simple)
+optdepends=(java-environment mono php python)
+options=(!strip)
+source=("$pkgname-$pkgver::git+https://github.com/HaxeFoundation/haxe#commit=e5eec3122454bfc95412437d938d1d8d3e77ed68;)
 # tag: 4.2.5
+b2sums=('SKIP')
+
+prepare() {
+  cd $pkgname-$pkgver
+  git submodule update --init
+
+  # Prepare opam and ocamlfind before building
+  export HOME="$srcdir"
+  opam init -a --disable-sandboxing --compiler=ocaml-system
+  eval $(opam env)
+
+  # Install required OCaml packages
+  opam install -y extlib luv ocamlfind ptmap sedlex sha xml-light
+
+  # Create the script that will be placed in /etc/profile.d
+  echo 'export HAXE_STD_PATH=/usr/share/haxe/std' > haxe.sh
+}
+
+build() {
+  # Prepare opam and ocamlfind before building
+  eval $(opam env --switch=ocaml-system)
+
+  cd $pkgname-$pkgver
+  make libs haxe
+
+  # "make tools" did not work. These are the replacement commands:
+  cd "$srcdir/$pkgname-$pkgver/extra/haxelib_src"
+  ../../haxe client.hxml || true
+  nekotools boot run.n
+  mv run ../../haxelib
+}
+
+check() {
+  cd $pkgname-$pkgver
+  ./haxe -version
+  ./haxelib version
+}
+
+package() {
+  cd $pkgname-$pkgver
+  install -d "$pkgdir/usr/"{bin/,share/haxe/}
+  install -m 755 haxe{,lib} "$pkgdir"/usr/bin/
+  cp -rf std "$pkgdir/usr/share/$pkgname/"
+  install -Dm 644 haxe.sh "$pkgdir/etc/profile.d/haxe.sh"
+  install -Dm 644 extra/LICENSE.txt \
+"$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt
+}



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

2022-08-24 Thread Alexander Rødseth via arch-commits
Date: Wednesday, August 24, 2022 @ 11:49:18
  Author: arodseth
Revision: 1276105

upgpkg: haxe 4.2.5-1

Modified:
  haxe/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-24 11:30:08 UTC (rev 1276104)
+++ PKGBUILD2022-08-24 11:49:18 UTC (rev 1276105)
@@ -1,22 +1,22 @@
 # Maintainer: Alexander F. Rødseth 
+# Contributor: Andy Li 
 # Contributor: Daichi Shinozaki 
-# Contributor: Andy Li 
 # Contributor: Kyle Brady  
 # Contributor: Patrick Hof 
 # Contributor: Michael Fellinger 
 
 pkgname=haxe
-pkgver=4.2.4
-pkgrel=2
+pkgver=4.2.5
+pkgrel=1
 pkgdesc='Cross-platform toolkit and programming language'
 arch=(x86_64)
 url='https://haxe.org/'
 license=(GPL LGPL MIT)
 depends=(neko mbedtls)
-makedepends=(camlp5 dune git neko ocaml opam zlib perl-string-shellquote 
perl-ipc-system-simple)
+makedepends=(camlp5 git neko ocaml opam zlib perl-string-shellquote 
perl-ipc-system-simple)
 optdepends=(java-environment mono php python)
 options=(!strip)
-source=("$pkgname-$pkgver::git+https://github.com/HaxeFoundation/haxe#commit=ab0c0548ff80fcbbbc140a381a9031af13b5782c;)
 # tag: 4.2.4
+source=("$pkgname-$pkgver::git+https://github.com/HaxeFoundation/haxe#commit=e5eec3122454bfc95412437d938d1d8d3e77ed68;)
 # tag: 4.2.5
 b2sums=('SKIP')
 
 prepare() {
@@ -25,11 +25,11 @@
 
   # Prepare opam and ocamlfind before building
   export HOME="$srcdir"
-  opam init -a --disable-sandboxing
+  opam init -a --disable-sandboxing --compiler=ocaml-system
   eval $(opam env)
 
   # Install required OCaml packages
-  opam install -y extlib jbuilder luv ocamlfind ppx_tools_versioned ptmap 
sedlex sha xml-light
+  opam install -y extlib luv ocamlfind ptmap sedlex sha xml-light
 
   # Create the script that will be placed in /etc/profile.d
   echo 'export HAXE_STD_PATH=/usr/share/haxe/std' > haxe.sh
@@ -36,12 +36,8 @@
 }
 
 build() {
-  # Needed to make Haxe build with OCaml 4.06 and 4.07
-  # For more info, see: 
https://github.com/HaxeFoundation/haxe/issues/6883#issuecomment-370142073
-  export OCAMLPARAM='safe-string=0,_'
-
   # Prepare opam and ocamlfind before building
-  eval $(opam env)
+  eval $(opam env --switch=ocaml-system)
 
   cd $pkgname-$pkgver
   make libs haxe
@@ -54,8 +50,9 @@
 }
 
 check() {
-  $pkgname-$pkgver/haxe -version
-  $pkgname-$pkgver/haxelib version
+  cd $pkgname-$pkgver
+  ./haxe -version
+  ./haxelib version
 }
 
 package() {



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

2022-08-23 Thread Alexander Rødseth via arch-commits
Date: Tuesday, August 23, 2022 @ 22:11:25
  Author: arodseth
Revision: 1275961

archrelease: copy trunk to community-x86_64

Added:
  netsurf/repos/community-x86_64/PKGBUILD
(from rev 1275960, netsurf/trunk/PKGBUILD)
  netsurf/repos/community-x86_64/netsurf.sh
(from rev 1275960, netsurf/trunk/netsurf.sh)
Deleted:
  netsurf/repos/community-x86_64/PKGBUILD
  netsurf/repos/community-x86_64/netsurf.sh

+
 PKGBUILD   |  122 +++
 netsurf.sh |8 +--
 2 files changed, 60 insertions(+), 70 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-23 22:11:19 UTC (rev 1275960)
+++ PKGBUILD2022-08-23 22:11:25 UTC (rev 1275961)
@@ -1,66 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Contributor: Paulo Matias 
-# Contributor: Georgij Kondratjev 
-# Contributor: Daniel J Griffiths 
-
-pkgname=netsurf
-pkgver=3.10
-pkgrel=2
-pkgdesc='Lightweight and fast web browser'
-arch=(x86_64)
-url='https://www.netsurf-browser.org/'
-license=(MIT GPL2)
-depends=(curl gtk3 'libhubbub=0.3.7' libjpeg-turbo 'libnsutils=0.1.0'
- 'libutf8proc>=2.5.0' 'libwapcaplet>=0.4.3' 'libdom>=0.4.1' libwebp)
-# vim is needed only for xxd when building
-makedepends=(check inetutils 'libcss>=0.9.1' 'libnsbmp>=0.1.6'
- 'libnsgif>=0.2.1' 'nsgenbind>=0.8' perl-html-parser setconf vim)
-source=("https://download.netsurf-browser.org/netsurf/releases/source-full/netsurf-all-$pkgver.tar.gz;
-netsurf.sh)
-sha256sums=('495adf6b6614ce36fca6c605f7c321f9cb4a3df838043158122678ce2b3325b7'
-'34c1f41c02ff3791a1b734197d99ec7f58c403dee05f0f9b7b9b3509d32b51ac')
-
-prepare() {
-  cd "$pkgname-all-$pkgver/$pkgname"
-
-  # Fix compilation issues
-  sed -i 's:libutf8proc/::;s:UTF8PROC_CCC_VIRAMA:UTF8PROC_BIDI_CLASS_EN:' 
utils/idna.c
-  # Use "netsurf" as the name of the executable in /usr/bin
-  setconf frontends/gtk/res/netsurf-gtk.desktop 'Exec=netsurf %u'
-}
-
-build() {
-  CFLAGS="$CFLAGS -w -Os -funroll-loops" \
-make -C "$pkgname-all-$pkgver/$pkgname" \
-NETSURF_UA_FORMAT_STRING='"NetSurf/%d.%d (%s; Arch Linux)"' \
-TARGET=gtk3 \
-LIBDIR=lib \
-INCLUDEDIR=include \
-PREFIX=/usr
-}
-
-package() {
-  make -C "$pkgname-all-$pkgver/$pkgname" \
-TARGET=gtk3 \
-LIBDIR=lib \
-INCLUDEDIR=include \
-DESTDIR="$pkgdir" \
-PREFIX=/usr \
-install
-
-  # Launch script
-  install -Dm755 $pkgname.sh "$pkgdir/usr/bin/$pkgname"
-
-  cd "$pkgname-all-$pkgver/$pkgname"
-
-  # Desktop icon and shortcut
-  install -Dm644 frontends/gtk/res/$pkgname.xpm \
-"$pkgdir/usr/share/pixmaps/$pkgname.xpm"
-  install -Dm644 frontends/gtk/res/$pkgname-gtk.desktop \
-"$pkgdir/usr/share/applications/$pkgname.desktop"
-
-  # License
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
-}
-
-# vim: ts=2 sw=2 et:

Copied: netsurf/repos/community-x86_64/PKGBUILD (from rev 1275960, 
netsurf/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-23 22:11:25 UTC (rev 1275961)
@@ -0,0 +1,56 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: Paulo Matias 
+# Contributor: Georgij Kondratjev 
+# Contributor: Daniel J Griffiths 
+
+pkgname=netsurf
+pkgver=3.10
+pkgrel=4
+pkgdesc='Lightweight and fast web browser'
+arch=(x86_64)
+url='https://www.netsurf-browser.org/'
+license=(MIT GPL2)
+depends=(bash curl gtk3 'libhubbub=0.3.7' libjpeg-turbo 'libnsutils=0.1.0'
+ 'libutf8proc>=2.6.0' 'libwapcaplet>=0.4.3' 'libdom>=0.4.1' libwebp)
+# vim is needed only for xxd when building
+makedepends=(check inetutils 'libcss>=0.9.1' 'libnsbmp>=0.1.6'
+ 'libnsgif>=0.2.1' 'nsgenbind>=0.8' perl-html-parser setconf vim)
+source=("https://download.netsurf-browser.org/netsurf/releases/source-full/netsurf-all-$pkgver.tar.gz;
+netsurf.sh)
+b2sums=('7c33db550a99000fabc95a9d0e48b86189485076bbcf740d8ff865564ca243c1a66d65fc21c036790cd0d1426e7f8251a376fc8370e1530b75e3f171ddb22ce4'
+
'f0220a0c2c03d567434deeed20f821dc110947e16889aa78e12e3f468a431d2f721b9cff23bd6ed3545323f3ed975ea0941f0ee61c4b09938b8bfb99764f8bc8')
+
+prepare() {
+  cd $pkgname-all-$pkgver/$pkgname
+  # Fix compilation issues
+  sed -i 's:libutf8proc/::;s:UTF8PROC_CCC_VIRAMA:UTF8PROC_BIDI_CLASS_EN:' 
utils/idna.c
+  # Use "netsurf" as the name of the executable in /usr/bin
+  setconf frontends/gtk/res/netsurf-gtk.desktop 'Exec=netsurf %u'
+}
+
+build() {
+  CFLAGS="$CFLAGS -Os -funroll-loops -w" \
+make -C $pkgname-all-$pkgver/$pkgname \
+  INCLUDEDIR=include \
+  LIBDIR=lib \
+  NETSURF_UA_FORMAT_STRING='"NetSurf/%d.%d (%s; Arch Linux)"' \
+  PREFIX=/usr \
+  TARGET=gtk3
+}
+
+package() {
+  make -C $pkgname-all-$pkgver/$pkgname \
+DESTDIR="$pkgdir" \
+INCLUDEDIR=include \
+LIBDIR=lib \
+PREFIX=/usr \
+TARGET=gtk3 \
+install
+  

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

2022-08-23 Thread Alexander Rødseth via arch-commits
Date: Tuesday, August 23, 2022 @ 22:11:19
  Author: arodseth
Revision: 1275960

upgpkg: netsurf 3.10-4

Modified:
  netsurf/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-23 22:06:56 UTC (rev 1275959)
+++ PKGBUILD2022-08-23 22:11:19 UTC (rev 1275960)
@@ -5,7 +5,7 @@
 
 pkgname=netsurf
 pkgver=3.10
-pkgrel=3
+pkgrel=4
 pkgdesc='Lightweight and fast web browser'
 arch=(x86_64)
 url='https://www.netsurf-browser.org/'
@@ -17,11 +17,11 @@
  'libnsgif>=0.2.1' 'nsgenbind>=0.8' perl-html-parser setconf vim)
 
source=("https://download.netsurf-browser.org/netsurf/releases/source-full/netsurf-all-$pkgver.tar.gz;
 netsurf.sh)
-sha256sums=('495adf6b6614ce36fca6c605f7c321f9cb4a3df838043158122678ce2b3325b7'
-'34c1f41c02ff3791a1b734197d99ec7f58c403dee05f0f9b7b9b3509d32b51ac')
+b2sums=('7c33db550a99000fabc95a9d0e48b86189485076bbcf740d8ff865564ca243c1a66d65fc21c036790cd0d1426e7f8251a376fc8370e1530b75e3f171ddb22ce4'
+
'f0220a0c2c03d567434deeed20f821dc110947e16889aa78e12e3f468a431d2f721b9cff23bd6ed3545323f3ed975ea0941f0ee61c4b09938b8bfb99764f8bc8')
 
 prepare() {
-  cd "$pkgname-all-$pkgver/$pkgname"
+  cd $pkgname-all-$pkgver/$pkgname
   # Fix compilation issues
   sed -i 's:libutf8proc/::;s:UTF8PROC_CCC_VIRAMA:UTF8PROC_BIDI_CLASS_EN:' 
utils/idna.c
   # Use "netsurf" as the name of the executable in /usr/bin
@@ -29,25 +29,25 @@
 }
 
 build() {
-  CFLAGS="$CFLAGS -w -Os -funroll-loops" \
-make -C "$pkgname-all-$pkgver/$pkgname" \
-NETSURF_UA_FORMAT_STRING='"NetSurf/%d.%d (%s; Arch Linux)"' \
-TARGET=gtk3 \
-LIBDIR=lib \
-INCLUDEDIR=include \
-PREFIX=/usr
+  CFLAGS="$CFLAGS -Os -funroll-loops -w" \
+make -C $pkgname-all-$pkgver/$pkgname \
+  INCLUDEDIR=include \
+  LIBDIR=lib \
+  NETSURF_UA_FORMAT_STRING='"NetSurf/%d.%d (%s; Arch Linux)"' \
+  PREFIX=/usr \
+  TARGET=gtk3
 }
 
 package() {
-  make -C "$pkgname-all-$pkgver/$pkgname" \
-TARGET=gtk3 \
+  make -C $pkgname-all-$pkgver/$pkgname \
+DESTDIR="$pkgdir" \
+INCLUDEDIR=include \
 LIBDIR=lib \
-INCLUDEDIR=include \
-DESTDIR="$pkgdir" \
 PREFIX=/usr \
+TARGET=gtk3 \
 install
   install -Dm755 $pkgname.sh "$pkgdir/usr/bin/$pkgname"
-  cd "$pkgname-all-$pkgver/$pkgname"
+  cd $pkgname-all-$pkgver/$pkgname
   install -Dm644 frontends/gtk/res/$pkgname.xpm \
 "$pkgdir/usr/share/pixmaps/$pkgname.xpm"
   install -Dm644 frontends/gtk/res/$pkgname-gtk.desktop \



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

2022-08-23 Thread Alexander Rødseth via arch-commits
Date: Tuesday, August 23, 2022 @ 22:06:56
  Author: arodseth
Revision: 1275959

archrelease: copy trunk to community-x86_64

Added:
  libcss/repos/community-x86_64/PKGBUILD
(from rev 1275958, libcss/trunk/PKGBUILD)
Deleted:
  libcss/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-23 22:06:50 UTC (rev 1275958)
+++ PKGBUILD2022-08-23 22:06:56 UTC (rev 1275959)
@@ -1,40 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Contributor: Brad Fanella 
-# Contributor: Daniel J Griffiths 
-
-pkgname=libcss
-pkgver=0.9.1
-pkgrel=5
-pkgdesc='CSS parser and selection engine'
-arch=(x86_64)
-url='https://www.netsurf-browser.org/projects/libcss/'
-license=(MIT)
-makedepends=(netsurf-buildsystem)
-depends=('libparserutils>=0.2.4' 'libwapcaplet>=0.4.3')
-source=("https://download.netsurf-browser.org/libs/releases/libcss-$pkgver-src.tar.gz;)
-b2sums=('32206403f77997e6692eed00c9233e6f49f08efc2515901a8bef7590883e44ef320511368fe5a67968102911d849696a4419735c7f6691f0f272fcc3b9a000d8')
-
-prepare() {
-  sed -i 's,_BSD_SOURCE,_DEFAULT_SOURCE,' $pkgname-$pkgver/Makefile
-}
-
-build() {
-  CFLAGS+=' -ffat-lto-objects -w'
-  make -C $pkgname-$pkgver \
-COMPONENT_TYPE=lib-shared \
-INCLUDEDIR=include \
-LIBDIR=lib \
-PREFIX=/usr
-}
-
-package() {
-  make -C $pkgname-$pkgver \
-COMPONENT_TYPE=lib-shared \
-DESTDIR="$pkgdir" \
-INCLUDEDIR=include \
-LIBDIR=lib \
-PREFIX=/usr \
-install
-  install -Dm644 $pkgname-$pkgver/COPYING \
-"$pkgdir/usr/share/licenses/$pkgname/COPYING"
-}

Copied: libcss/repos/community-x86_64/PKGBUILD (from rev 1275958, 
libcss/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-23 22:06:56 UTC (rev 1275959)
@@ -0,0 +1,41 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: Brad Fanella 
+# Contributor: Daniel J Griffiths 
+
+pkgname=libcss
+pkgver=0.9.1
+pkgrel=6
+pkgdesc='CSS parser and selection engine'
+arch=(x86_64)
+url='https://www.netsurf-browser.org/projects/libcss/'
+license=(MIT)
+makedepends=(netsurf-buildsystem)
+depends=('libparserutils>=0.2.4' 'libwapcaplet>=0.4.3')
+source=("https://download.netsurf-browser.org/libs/releases/libcss-$pkgver-src.tar.gz;)
+b2sums=('32206403f77997e6692eed00c9233e6f49f08efc2515901a8bef7590883e44ef320511368fe5a67968102911d849696a4419735c7f6691f0f272fcc3b9a000d8')
+
+prepare() {
+  sed -i 's,_BSD_SOURCE,_DEFAULT_SOURCE,' $pkgname-$pkgver/Makefile
+}
+
+build() {
+  export CFLAGS="$CFLAGS -shared -fPIC -w"
+  export LDFLAGS="$LDFLAGS -shared -z,now"
+  make -C $pkgname-$pkgver \
+COMPONENT_TYPE=lib-shared \
+INCLUDEDIR=include \
+LIBDIR=lib \
+PREFIX=/usr
+}
+
+package() {
+  make -C $pkgname-$pkgver \
+COMPONENT_TYPE=lib-shared \
+DESTDIR="$pkgdir" \
+INCLUDEDIR=include \
+LIBDIR=lib \
+PREFIX=/usr \
+install
+  install -Dm644 $pkgname-$pkgver/COPYING \
+"$pkgdir/usr/share/licenses/$pkgname/COPYING"
+}



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

2022-08-23 Thread Alexander Rødseth via arch-commits
Date: Tuesday, August 23, 2022 @ 22:06:50
  Author: arodseth
Revision: 1275958

Use the same build and link flags as libdom

Modified:
  libcss/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-23 21:54:28 UTC (rev 1275957)
+++ PKGBUILD2022-08-23 22:06:50 UTC (rev 1275958)
@@ -4,7 +4,7 @@
 
 pkgname=libcss
 pkgver=0.9.1
-pkgrel=5
+pkgrel=6
 pkgdesc='CSS parser and selection engine'
 arch=(x86_64)
 url='https://www.netsurf-browser.org/projects/libcss/'
@@ -19,7 +19,8 @@
 }
 
 build() {
-  CFLAGS+=' -ffat-lto-objects -w'
+  export CFLAGS="$CFLAGS -shared -fPIC -w"
+  export LDFLAGS="$LDFLAGS -shared -z,now"
   make -C $pkgname-$pkgver \
 COMPONENT_TYPE=lib-shared \
 INCLUDEDIR=include \



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

2022-08-23 Thread Alexander Rødseth via arch-commits
Date: Tuesday, August 23, 2022 @ 21:54:28
  Author: arodseth
Revision: 1275957

archrelease: copy trunk to community-x86_64

Added:
  libcss/repos/community-x86_64/PKGBUILD
(from rev 1275956, libcss/trunk/PKGBUILD)
Deleted:
  libcss/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-23 21:54:23 UTC (rev 1275956)
+++ PKGBUILD2022-08-23 21:54:28 UTC (rev 1275957)
@@ -1,39 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Contributor: Brad Fanella 
-# Contributor: Daniel J Griffiths 
-
-pkgname=libcss
-pkgver=0.9.1
-pkgrel=4
-pkgdesc='CSS parser and selection engine'
-arch=(x86_64)
-url='https://www.netsurf-browser.org/projects/libcss/'
-license=(MIT)
-makedepends=(netsurf-buildsystem)
-depends=('libparserutils>=0.2.4' 'libwapcaplet>=0.4.3')
-source=("https://download.netsurf-browser.org/libs/releases/libcss-$pkgver-src.tar.gz;)
-b2sums=('32206403f77997e6692eed00c9233e6f49f08efc2515901a8bef7590883e44ef320511368fe5a67968102911d849696a4419735c7f6691f0f272fcc3b9a000d8')
-
-prepare() {
-  sed -i 's,_BSD_SOURCE,_DEFAULT_SOURCE,' "$pkgname-$pkgver/Makefile"
-}
-
-build() {
-  CFLAGS+=' -ffat-lto-objects -w'
-  make -C $pkgname-$pkgver \
-COMPONENT_TYPE=lib-shared \
-INCLUDEDIR=include \
-LIBDIR=lib \
-PREFIX=/usr
-}
-
-package() {
-  make -C $pkgname-$pkgver \
-DESTDIR="$pkgdir" \
-INCLUDEDIR=include \
-LIBDIR=lib \
-PREFIX=/usr \
-install
-  install -Dm644 $pkgname-$pkgver/COPYING \
-"$pkgdir/usr/share/licenses/$pkgname/COPYING"
-}

Copied: libcss/repos/community-x86_64/PKGBUILD (from rev 1275956, 
libcss/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-23 21:54:28 UTC (rev 1275957)
@@ -0,0 +1,40 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: Brad Fanella 
+# Contributor: Daniel J Griffiths 
+
+pkgname=libcss
+pkgver=0.9.1
+pkgrel=5
+pkgdesc='CSS parser and selection engine'
+arch=(x86_64)
+url='https://www.netsurf-browser.org/projects/libcss/'
+license=(MIT)
+makedepends=(netsurf-buildsystem)
+depends=('libparserutils>=0.2.4' 'libwapcaplet>=0.4.3')
+source=("https://download.netsurf-browser.org/libs/releases/libcss-$pkgver-src.tar.gz;)
+b2sums=('32206403f77997e6692eed00c9233e6f49f08efc2515901a8bef7590883e44ef320511368fe5a67968102911d849696a4419735c7f6691f0f272fcc3b9a000d8')
+
+prepare() {
+  sed -i 's,_BSD_SOURCE,_DEFAULT_SOURCE,' $pkgname-$pkgver/Makefile
+}
+
+build() {
+  CFLAGS+=' -ffat-lto-objects -w'
+  make -C $pkgname-$pkgver \
+COMPONENT_TYPE=lib-shared \
+INCLUDEDIR=include \
+LIBDIR=lib \
+PREFIX=/usr
+}
+
+package() {
+  make -C $pkgname-$pkgver \
+COMPONENT_TYPE=lib-shared \
+DESTDIR="$pkgdir" \
+INCLUDEDIR=include \
+LIBDIR=lib \
+PREFIX=/usr \
+install
+  install -Dm644 $pkgname-$pkgver/COPYING \
+"$pkgdir/usr/share/licenses/$pkgname/COPYING"
+}



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

2022-08-23 Thread Alexander Rødseth via arch-commits
Date: Tuesday, August 23, 2022 @ 21:54:23
  Author: arodseth
Revision: 1275956

Add COMPONENT_TYPE=lib-shared

Modified:
  libcss/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-23 21:52:20 UTC (rev 1275955)
+++ PKGBUILD2022-08-23 21:54:23 UTC (rev 1275956)
@@ -4,7 +4,7 @@
 
 pkgname=libcss
 pkgver=0.9.1
-pkgrel=4
+pkgrel=5
 pkgdesc='CSS parser and selection engine'
 arch=(x86_64)
 url='https://www.netsurf-browser.org/projects/libcss/'
@@ -15,7 +15,7 @@
 
b2sums=('32206403f77997e6692eed00c9233e6f49f08efc2515901a8bef7590883e44ef320511368fe5a67968102911d849696a4419735c7f6691f0f272fcc3b9a000d8')
 
 prepare() {
-  sed -i 's,_BSD_SOURCE,_DEFAULT_SOURCE,' "$pkgname-$pkgver/Makefile"
+  sed -i 's,_BSD_SOURCE,_DEFAULT_SOURCE,' $pkgname-$pkgver/Makefile
 }
 
 build() {
@@ -29,6 +29,7 @@
 
 package() {
   make -C $pkgname-$pkgver \
+COMPONENT_TYPE=lib-shared \
 DESTDIR="$pkgdir" \
 INCLUDEDIR=include \
 LIBDIR=lib \



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

2022-08-23 Thread Alexander Rødseth via arch-commits
Date: Tuesday, August 23, 2022 @ 21:24:31
  Author: arodseth
Revision: 1275947

archrelease: copy trunk to community-any

Added:
  nuitka/repos/community-any/PKGBUILD
(from rev 1275946, nuitka/trunk/PKGBUILD)
Deleted:
  nuitka/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-23 21:24:26 UTC (rev 1275946)
+++ PKGBUILD2022-08-23 21:24:31 UTC (rev 1275947)
@@ -1,42 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Maintainer: David Runge 
-# Contributor: Panagiotis Mavrogiorgos 
-
-pkgname=nuitka
-pkgver=1.0.5
-pkgrel=1
-pkgdesc='Python compiler with full language support and CPython compatibility'
-arch=(any)
-url='https://nuitka.net/'
-license=(Apache)
-depends=(python-appdirs scons)
-makedepends=(gdb patchelf python-build python-installer python-setuptools 
python-wheel)
-checkdepends=(ccache fuse2 python-boto3 python-brotli strace)
-optdepends=('ccache: for build caching'
-'chrpath: for building standalone executables'
-'pyside2: for using Qt5 APIs')
-source=("https://nuitka.net/releases/${pkgname^}-${pkgver}.tar.bz2;)
-b2sums=('d4d1fb588d6390c3d58054751c26fd68c132b6ca9738576edebcff4fda0734de34b9ffe3822624ca1dbc138807d054839e7104b1b506b37ea7e0eacc92c31c22')
-
-prepare() {
-  cd ${pkgname^}-$pkgver
-  # in the build environment /etc/os-release does not exist, but 
/usr/lib/os-release does
-  sed -e 's,/etc/os-release,/usr/lib/os-release,' -i nuitka/utils/Utils.py
-}
-
-build() {
-  cd ${pkgname^}-$pkgver
-  python -m build --wheel --no-isolation
-}
-
-# TODO: Make all tests pass and/or report issues upstream (some have already 
been reported)
-#check() {
-#  cd ${pkgname^}-$pkgver
-#  ./tests/run-tests --no-other-python --skip-onefile-tests 
--skip-other-cpython-tests --skip-reflection-test
-#}
-
-package() {
-  cd ${pkgname^}-$pkgver
-  python -m installer --destdir="$pkgdir" dist/*.whl
-  install -vDm 644 {Changelog,Developer_Manual,README}.rst -t 
"$pkgdir/usr/share/doc/$pkgname/"
-}

Copied: nuitka/repos/community-any/PKGBUILD (from rev 1275946, 
nuitka/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-23 21:24:31 UTC (rev 1275947)
@@ -0,0 +1,41 @@
+# Maintainer: Alexander F. Rødseth 
+# Maintainer: David Runge 
+# Contributor: Panagiotis Mavrogiorgos 
+
+pkgname=nuitka
+pkgver=1.0.5
+pkgrel=2
+pkgdesc='Python compiler with full language support and CPython compatibility'
+arch=(any)
+url='https://nuitka.net/'
+license=(Apache)
+depends=(patchelf python-appdirs scons)
+makedepends=(gdb python-build python-installer python-setuptools python-wheel)
+checkdepends=(ccache fuse2 python-boto3 python-brotli strace)
+optdepends=('ccache: for build caching'
+'pyside2: for using Qt5 APIs')
+source=("https://nuitka.net/releases/${pkgname^}-${pkgver}.tar.bz2;)
+b2sums=('d4d1fb588d6390c3d58054751c26fd68c132b6ca9738576edebcff4fda0734de34b9ffe3822624ca1dbc138807d054839e7104b1b506b37ea7e0eacc92c31c22')
+
+prepare() {
+  cd ${pkgname^}-$pkgver
+  # in the build environment /etc/os-release does not exist, but 
/usr/lib/os-release does
+  sed -e 's,/etc/os-release,/usr/lib/os-release,' -i nuitka/utils/Utils.py
+}
+
+build() {
+  cd ${pkgname^}-$pkgver
+  python -m build --wheel --no-isolation
+}
+
+# TODO: Make tests pass and/or report issues upstream (some have already been 
reported)
+#check() {
+#  cd ${pkgname^}-$pkgver
+#  ./tests/run-tests --no-other-python --skip-onefile-tests 
--skip-other-cpython-tests --skip-reflection-test
+#}
+
+package() {
+  cd ${pkgname^}-$pkgver
+  python -m installer --destdir="$pkgdir" dist/*.whl
+  install -vDm 644 {Changelog,Developer_Manual,README}.rst -t 
"$pkgdir/usr/share/doc/$pkgname/"
+}



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

2022-08-23 Thread Alexander Rødseth via arch-commits
Date: Tuesday, August 23, 2022 @ 21:24:26
  Author: arodseth
Revision: 1275946

Remove chrpath optdep, add patchelf dep, ref #75674

Modified:
  nuitka/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-23 20:54:44 UTC (rev 1275945)
+++ PKGBUILD2022-08-23 21:24:26 UTC (rev 1275946)
@@ -4,16 +4,15 @@
 
 pkgname=nuitka
 pkgver=1.0.5
-pkgrel=1
+pkgrel=2
 pkgdesc='Python compiler with full language support and CPython compatibility'
 arch=(any)
 url='https://nuitka.net/'
 license=(Apache)
-depends=(python-appdirs scons)
-makedepends=(gdb patchelf python-build python-installer python-setuptools 
python-wheel)
+depends=(patchelf python-appdirs scons)
+makedepends=(gdb python-build python-installer python-setuptools python-wheel)
 checkdepends=(ccache fuse2 python-boto3 python-brotli strace)
 optdepends=('ccache: for build caching'
-'chrpath: for building standalone executables'
 'pyside2: for using Qt5 APIs')
 source=("https://nuitka.net/releases/${pkgname^}-${pkgver}.tar.bz2;)
 
b2sums=('d4d1fb588d6390c3d58054751c26fd68c132b6ca9738576edebcff4fda0734de34b9ffe3822624ca1dbc138807d054839e7104b1b506b37ea7e0eacc92c31c22')
@@ -29,7 +28,7 @@
   python -m build --wheel --no-isolation
 }
 
-# TODO: Make all tests pass and/or report issues upstream (some have already 
been reported)
+# TODO: Make tests pass and/or report issues upstream (some have already been 
reported)
 #check() {
 #  cd ${pkgname^}-$pkgver
 #  ./tests/run-tests --no-other-python --skip-onefile-tests 
--skip-other-cpython-tests --skip-reflection-test



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

2022-08-23 Thread Alexander Rødseth via arch-commits
Date: Tuesday, August 23, 2022 @ 07:37:37
  Author: arodseth
Revision: 1274920

archrelease: copy trunk to community-any

Added:
  nuitka/repos/community-any/PKGBUILD
(from rev 1274919, nuitka/trunk/PKGBUILD)
Deleted:
  nuitka/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-23 07:37:31 UTC (rev 1274919)
+++ PKGBUILD2022-08-23 07:37:37 UTC (rev 1274920)
@@ -1,43 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Maintainer: David Runge 
-# Contributor: Panagiotis Mavrogiorgos 
-
-pkgname=nuitka
-pkgver=0.8.4
-pkgrel=1
-pkgdesc='Python compiler with full language support and CPython compatibility'
-arch=(any)
-url='https://nuitka.net/'
-license=(Apache)
-depends=(python-appdirs scons)
-makedepends=(python-build python-installer python-setuptools python-wheel)
-checkdepends=(ccache fuse2 patchelf python-boto3 python-brotli strace)
-optdepends=('ccache: for build caching'
-'chrpath: for building standalone executables'
-'pyside2: for using Qt5 APIs')
-source=("https://files.pythonhosted.org/packages/source/N/${pkgname^}/${pkgname^}-${pkgver}.tar.gz;)
-b2sums=('b0a275592db3d17572892d9824170ba179b82b4b175eab3af7a6e4f710d3cc65d99251a945d0d1634e364d47b044373f952571466c6d0df955372a48d50e69af')
-
-prepare() {
-  cd ${pkgname^}-$pkgver
-  # in our build environment /etc/os-release will not exist, but 
/usr/lib/os-release will
-  sed -e 's,/etc/os-release,/usr/lib/os-release,' -i nuitka/utils/Utils.py
-}
-
-build() {
-  cd ${pkgname^}-$pkgver
-  python -m build --wheel --no-isolation
-}
-
-check() {
-  cd ${pkgname^}-$pkgver
-  # skip tests for other interpreters, jinja2 and for those that require 
network access
-  # NOTE: the test uses "strace", which is currently not supported by the 
reproducible build system
-  ./tests/run-tests --no-other-python --skip-onefile-tests 
--skip-other-cpython-tests --skip-reflection-test
-}
-
-package() {
-  cd ${pkgname^}-$pkgver
-  python -m installer --destdir="$pkgdir" dist/*.whl
-  install -vDm 644 {Changelog,Developer_Manual,README}.rst -t 
"$pkgdir/usr/share/doc/$pkgname/"
-}

Copied: nuitka/repos/community-any/PKGBUILD (from rev 1274919, 
nuitka/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-23 07:37:37 UTC (rev 1274920)
@@ -0,0 +1,42 @@
+# Maintainer: Alexander F. Rødseth 
+# Maintainer: David Runge 
+# Contributor: Panagiotis Mavrogiorgos 
+
+pkgname=nuitka
+pkgver=1.0.5
+pkgrel=1
+pkgdesc='Python compiler with full language support and CPython compatibility'
+arch=(any)
+url='https://nuitka.net/'
+license=(Apache)
+depends=(python-appdirs scons)
+makedepends=(gdb patchelf python-build python-installer python-setuptools 
python-wheel)
+checkdepends=(ccache fuse2 python-boto3 python-brotli strace)
+optdepends=('ccache: for build caching'
+'chrpath: for building standalone executables'
+'pyside2: for using Qt5 APIs')
+source=("https://nuitka.net/releases/${pkgname^}-${pkgver}.tar.bz2;)
+b2sums=('d4d1fb588d6390c3d58054751c26fd68c132b6ca9738576edebcff4fda0734de34b9ffe3822624ca1dbc138807d054839e7104b1b506b37ea7e0eacc92c31c22')
+
+prepare() {
+  cd ${pkgname^}-$pkgver
+  # in the build environment /etc/os-release does not exist, but 
/usr/lib/os-release does
+  sed -e 's,/etc/os-release,/usr/lib/os-release,' -i nuitka/utils/Utils.py
+}
+
+build() {
+  cd ${pkgname^}-$pkgver
+  python -m build --wheel --no-isolation
+}
+
+# TODO: Make all tests pass and/or report issues upstream (some have already 
been reported)
+#check() {
+#  cd ${pkgname^}-$pkgver
+#  ./tests/run-tests --no-other-python --skip-onefile-tests 
--skip-other-cpython-tests --skip-reflection-test
+#}
+
+package() {
+  cd ${pkgname^}-$pkgver
+  python -m installer --destdir="$pkgdir" dist/*.whl
+  install -vDm 644 {Changelog,Developer_Manual,README}.rst -t 
"$pkgdir/usr/share/doc/$pkgname/"
+}



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

2022-08-23 Thread Alexander Rødseth via arch-commits
Date: Tuesday, August 23, 2022 @ 07:37:31
  Author: arodseth
Revision: 1274919

upgpkg: nuitka 1.0.5-1

Modified:
  nuitka/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-23 07:34:38 UTC (rev 1274918)
+++ PKGBUILD2022-08-23 07:37:31 UTC (rev 1274919)
@@ -3,7 +3,7 @@
 # Contributor: Panagiotis Mavrogiorgos 
 
 pkgname=nuitka
-pkgver=0.8.4
+pkgver=1.0.5
 pkgrel=1
 pkgdesc='Python compiler with full language support and CPython compatibility'
 arch=(any)
@@ -10,17 +10,17 @@
 url='https://nuitka.net/'
 license=(Apache)
 depends=(python-appdirs scons)
-makedepends=(python-build python-installer python-setuptools python-wheel)
-checkdepends=(ccache fuse2 patchelf python-boto3 python-brotli strace)
+makedepends=(gdb patchelf python-build python-installer python-setuptools 
python-wheel)
+checkdepends=(ccache fuse2 python-boto3 python-brotli strace)
 optdepends=('ccache: for build caching'
 'chrpath: for building standalone executables'
 'pyside2: for using Qt5 APIs')
-source=("https://files.pythonhosted.org/packages/source/N/${pkgname^}/${pkgname^}-${pkgver}.tar.gz;)
-b2sums=('b0a275592db3d17572892d9824170ba179b82b4b175eab3af7a6e4f710d3cc65d99251a945d0d1634e364d47b044373f952571466c6d0df955372a48d50e69af')
+source=("https://nuitka.net/releases/${pkgname^}-${pkgver}.tar.bz2;)
+b2sums=('d4d1fb588d6390c3d58054751c26fd68c132b6ca9738576edebcff4fda0734de34b9ffe3822624ca1dbc138807d054839e7104b1b506b37ea7e0eacc92c31c22')
 
 prepare() {
   cd ${pkgname^}-$pkgver
-  # in our build environment /etc/os-release will not exist, but 
/usr/lib/os-release will
+  # in the build environment /etc/os-release does not exist, but 
/usr/lib/os-release does
   sed -e 's,/etc/os-release,/usr/lib/os-release,' -i nuitka/utils/Utils.py
 }
 
@@ -29,12 +29,11 @@
   python -m build --wheel --no-isolation
 }
 
-check() {
-  cd ${pkgname^}-$pkgver
-  # skip tests for other interpreters, jinja2 and for those that require 
network access
-  # NOTE: the test uses "strace", which is currently not supported by the 
reproducible build system
-  ./tests/run-tests --no-other-python --skip-onefile-tests 
--skip-other-cpython-tests --skip-reflection-test
-}
+# TODO: Make all tests pass and/or report issues upstream (some have already 
been reported)
+#check() {
+#  cd ${pkgname^}-$pkgver
+#  ./tests/run-tests --no-other-python --skip-onefile-tests 
--skip-other-cpython-tests --skip-reflection-test
+#}
 
 package() {
   cd ${pkgname^}-$pkgver



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

2022-08-20 Thread Alexander Rødseth via arch-commits
Date: Saturday, August 20, 2022 @ 17:09:01
  Author: arodseth
Revision: 1271090

archrelease: copy trunk to community-x86_64

Added:
  goxel/repos/community-x86_64/PKGBUILD
(from rev 1271089, goxel/trunk/PKGBUILD)
Deleted:
  goxel/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-20 17:08:54 UTC (rev 1271089)
+++ PKGBUILD2022-08-20 17:09:01 UTC (rev 1271090)
@@ -1,35 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Contributor: Tesx 
-
-pkgname=goxel
-pkgver=0.10.8
-pkgrel=3
-pkgdesc='3D program that lets you create voxel volumes'
-arch=(x86_64)
-url='https://goxel.xyz/'
-license=(GPL3)
-depends=(glfw gtk3)
-makedepends=(scons)
-source=("$pkgname-$pkgver.tar.gz::https://github.com/guillaumechereau/$pkgname/archive/v$pkgver.tar.gz;)
-b2sums=('6752c350b456fd021f066e51d8d3f0af8d1146703998858b80dd39328c0137a8e243598f6103cdae511a13d8e4666d90958676ddd6b48d5a26e892672d2c221a')
-
-prepare() {
-  cd $pkgname-$pkgver
-
-  # Quick hack for the imgui.ini file that is placed directly in the home 
directory.
-  # Upstream bug report: https://github.com/guillaumechereau/goxel/issues/250
-  sed -i 's,"imgui.ini",".goxelrc",g' ext_src/imgui/imgui.cpp
-
-  # Desktop shortcut fixes
-  sed -i 
's|/share/applications/goxel.desktop|/share/applications/io.github.guillaumechereau.Goxel.desktop|g'
 Makefile
-  sed -i 's|\${SNAP}/icon.png|goxel|;s|Name=goxel|Name=Goxel|' 
snap/gui/goxel.desktop
-}
-
-build() {
-  cd $pkgname-$pkgver
-  scons mode=release werror=n
-}
-
-package() {
-  make -C $pkgname-$pkgver DESTDIR="$pkgdir" PREFIX=/usr install
-}

Copied: goxel/repos/community-x86_64/PKGBUILD (from rev 1271089, 
goxel/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-20 17:09:01 UTC (rev 1271090)
@@ -0,0 +1,29 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: Tesx 
+
+pkgname=goxel
+pkgver=0.11.0
+pkgrel=1
+pkgdesc='3D program that lets you create voxel volumes'
+arch=(x86_64)
+url='https://goxel.xyz/'
+license=(GPL3)
+depends=(glfw gtk3)
+makedepends=(git scons)
+source=("git+https://github.com/guillaumechereau/goxel#commit=4c22f3304e1fd4478413fda2a8d39098f1c1bb28;)
 # tag: v0.11.0
+b2sums=(SKIP)
+
+prepare() {
+  cd $pkgname
+  sed -i 's|\${SNAP}/icon.png|goxel|;s|Name=goxel|Name=Goxel|' 
snap/gui/goxel.desktop
+  sed -i 
's|/share/applications/goxel.desktop|/share/applications/io.github.guillaumechereau.Goxel.desktop|g'
 Makefile
+}
+
+build() {
+  cd $pkgname
+  scons mode=release werror=n
+}
+
+package() {
+  make -C $pkgname DESTDIR="$pkgdir" PREFIX=/usr install
+}



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

2022-08-20 Thread Alexander Rødseth via arch-commits
Date: Saturday, August 20, 2022 @ 17:08:54
  Author: arodseth
Revision: 1271089

upgpkg: goxel 0.11.0-1

Modified:
  goxel/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-20 17:05:14 UTC (rev 1271088)
+++ PKGBUILD2022-08-20 17:08:54 UTC (rev 1271089)
@@ -2,34 +2,28 @@
 # Contributor: Tesx 
 
 pkgname=goxel
-pkgver=0.10.8
-pkgrel=3
+pkgver=0.11.0
+pkgrel=1
 pkgdesc='3D program that lets you create voxel volumes'
 arch=(x86_64)
 url='https://goxel.xyz/'
 license=(GPL3)
 depends=(glfw gtk3)
-makedepends=(scons)
-source=("$pkgname-$pkgver.tar.gz::https://github.com/guillaumechereau/$pkgname/archive/v$pkgver.tar.gz;)
-b2sums=('6752c350b456fd021f066e51d8d3f0af8d1146703998858b80dd39328c0137a8e243598f6103cdae511a13d8e4666d90958676ddd6b48d5a26e892672d2c221a')
+makedepends=(git scons)
+source=("git+https://github.com/guillaumechereau/goxel#commit=4c22f3304e1fd4478413fda2a8d39098f1c1bb28;)
 # tag: v0.11.0
+b2sums=(SKIP)
 
 prepare() {
-  cd $pkgname-$pkgver
-
-  # Quick hack for the imgui.ini file that is placed directly in the home 
directory.
-  # Upstream bug report: https://github.com/guillaumechereau/goxel/issues/250
-  sed -i 's,"imgui.ini",".goxelrc",g' ext_src/imgui/imgui.cpp
-
-  # Desktop shortcut fixes
+  cd $pkgname
+  sed -i 's|\${SNAP}/icon.png|goxel|;s|Name=goxel|Name=Goxel|' 
snap/gui/goxel.desktop
   sed -i 
's|/share/applications/goxel.desktop|/share/applications/io.github.guillaumechereau.Goxel.desktop|g'
 Makefile
-  sed -i 's|\${SNAP}/icon.png|goxel|;s|Name=goxel|Name=Goxel|' 
snap/gui/goxel.desktop
 }
 
 build() {
-  cd $pkgname-$pkgver
+  cd $pkgname
   scons mode=release werror=n
 }
 
 package() {
-  make -C $pkgname-$pkgver DESTDIR="$pkgdir" PREFIX=/usr install
+  make -C $pkgname DESTDIR="$pkgdir" PREFIX=/usr install
 }



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

2022-08-16 Thread Alexander Rødseth via arch-commits
Date: Wednesday, August 17, 2022 @ 01:31:39
  Author: arodseth
Revision: 1266690

archrelease: copy trunk to community-staging-x86_64

Added:
  freecad/repos/community-staging-x86_64/
  freecad/repos/community-staging-x86_64/PKGBUILD
(from rev 1266689, freecad/trunk/PKGBUILD)

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

Copied: freecad/repos/community-staging-x86_64/PKGBUILD (from rev 1266689, 
freecad/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-08-17 01:31:39 UTC (rev 1266690)
@@ -0,0 +1,72 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: loqs 
+# Contributor: Gabriel Souza Franco 
+# Contributor: Florian Pritz
+# Contributor: Jonas Heinrich 
+# Contributor: Jordi De Groof 
+# Contributor: mickele
+# Contributor: manwithgrenade
+# Contributor: bricem13
+# Contributor: gborzi
+# Contributor: Adrian Insaurralde
+
+pkgname=freecad
+pkgver=0.20.1
+pkgrel=3
+pkgdesc='Feature based parametric 3D CAD modeler'
+arch=(x86_64)
+url='https://freecadweb.org/'
+license=(LGPL)
+depends=(boost-libs fmt glew jsoncpp libspnav med-openmpi netcdf opencascade
+ openmpi pyside2 pyside2-tools python-gitpython python-matplotlib
+ python-pivy python-ply pugixml qt5-svg qt5-tools qt5-webkit
+ qt5-x11extras qt5-xmlpatterns xerces-c)
+makedepends=(boost cgns cli11 cmake coin eigen gcc-fortran git jdk-openjdk
+ libharu liblas ninja openmpi openvdb openvr ospray pdal
+ postgresql-libs python-mpi4py python-shiboken2 shiboken2 swig
+ utf8cpp)
+optdepends=('graphviz: dependency graph support'
+'openscad: OpenSCAD support'
+'python-markdown: Markdown support in addon manager'
+'python-gitpython: support downloading addons with git')
+source=("git+https://github.com/$pkgname/$pkgname#commit=7f23e793eb136def6aee0f0ce81316cd21e6;)
 # tag: 0.20.1
+b2sums=(SKIP)
+
+build() {
+  cmake \
+-B build \
+-D BUILD_ENABLE_CXX_STD=C++17 \
+-D BUILD_FLAT_MESH=ON \
+-D BUILD_QT5=ON \
+-D CMAKE_BUILD_TYPE=Release \
+-D CMAKE_C_FLAGS="$CFLAGS -fPIC -w" \
+-D CMAKE_CXX_FLAGS="$CXXFLAGS -fPIC -w" \
+-D CMAKE_INSTALL_BINDIR=/usr/lib/freecad/bin \
+-D CMAKE_INSTALL_DATADIR=/usr/share/freecad \
+-D CMAKE_INSTALL_DATAROOTDIR=/usr/share \
+-D CMAKE_INSTALL_DOCDIR=/usr/share/freecad/doc \
+-D CMAKE_INSTALL_LIBDIR=/usr/lib/freecad/lib \
+-D CMAKE_INSTALL_PREFIX=/usr/lib/freecad \
+-D FREECAD_USE_EXTERNAL_PIVY=ON \
+-D FREECAD_USE_OCC_VARIANT='Official Version' \
+-D FREECAD_USE_QT_FILEDIALOG=ON \
+-D PYTHON_EXECUTABLE=/usr/bin/python \
+-D INSTALL_TO_SITEPACKAGES=ON \
+-G Ninja \
+-S $pkgname
+  ninja -C build
+}
+
+package() {
+  DESTDIR="$pkgdir" ninja -C build install
+
+  # Thumbnailer
+  install -Dm755 $pkgname/src/Tools/$pkgname-thumbnailer -t "$pkgdir/usr/bin/"
+
+  # Symlinks in /usr/bin
+  install -d "$pkgdir/usr/bin"
+  ln -sf /usr/lib/freecad/bin/FreeCAD "$pkgdir/usr/bin/freecad"
+  ln -sf /usr/lib/freecad/bin/FreeCAD "$pkgdir/usr/bin/FreeCAD"
+  ln -sf /usr/lib/freecad/bin/FreeCADCmd "$pkgdir/usr/bin/freecadcmd"
+  ln -sf /usr/lib/freecad/bin/FreeCADCmd "$pkgdir/usr/bin/FreeCADCmd"
+}



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

2022-08-16 Thread Alexander Rødseth via arch-commits
Date: Wednesday, August 17, 2022 @ 01:31:06
  Author: arodseth
Revision: 1266689

archrelease: copy trunk to community-staging-x86_64

Added:
  geany-plugins/repos/community-staging-x86_64/
  geany-plugins/repos/community-staging-x86_64/PKGBUILD
(from rev 1266688, geany-plugins/trunk/PKGBUILD)
  geany-plugins/repos/community-staging-x86_64/keys/
  geany-plugins/repos/community-staging-x86_64/libgit2.patch
(from rev 1266688, geany-plugins/trunk/libgit2.patch)

---+
 PKGBUILD  |   41 +
 libgit2.patch |   22 ++
 2 files changed, 63 insertions(+)

Copied: geany-plugins/repos/community-staging-x86_64/PKGBUILD (from rev 
1266688, geany-plugins/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-08-17 01:31:06 UTC (rev 1266689)
@@ -0,0 +1,41 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: Angel 'angvp' Velasquez 
+# Contributor: Gerardo Exequiel Pozzi 
+# Contributor: Patrick Melo 
+
+pkgname=geany-plugins
+pkgver=1.38
+pkgrel=4
+pkgdesc='Plugins for Geany'
+arch=(x86_64)
+url='https://plugins.geany.org/'
+license=(GPL)
+depends=(ctpl "geany>=$pkgver" gpgme gtkspell3 libgit2 lua51 python vte3 
webkit2gtk)
+makedepends=(cppcheck intltool)
+source=(libgit2.patch
+"$url$pkgname/$pkgname-$pkgver.tar.bz2"{,.sig})
+b2sums=('8daf8357caf09eb62844b6c44fa2a819231879b6d7e69bde4039f87230419cf371d1e8b5dede2f23dbb65d5d652b0bce3e51c79164ab8e3d76b445130cd5d387'
+
'a2fd9e59218e4b5359b910ccff8d0a6504845081f827d2f1c798ea6401914e8e01222c784a76ab0a126f5fe07c8aa86018cef4c71bb5e2891193f6c8965a3e47'
+'SKIP')
+validpgpkeys=('986FA7E80256D3D16F30FB7A01380DF54FD09D02') # Frank Lanitz 

+
+prepare() {
+  cd $pkgname-$pkgver
+  # https://github.com/geany/geany-plugins/issues/1164
+  patch -p1 -i ../libgit2.patch
+  autoreconf -fi
+}
+
+build() {
+  cd $pkgname-$pkgver
+  export CFLAGS+=' -w' PYTHON=/usr/bin/python
+  ./configure --prefix=/usr --libexecdir=/usr/lib
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  make -C $pkgname-$pkgver DESTDIR="$pkgdir" install
+}
+
+# getver: plugins.geany.org/downloads.html

Copied: geany-plugins/repos/community-staging-x86_64/libgit2.patch (from rev 
1266688, geany-plugins/trunk/libgit2.patch)
===
--- community-staging-x86_64/libgit2.patch  (rev 0)
+++ community-staging-x86_64/libgit2.patch  2022-08-17 01:31:06 UTC (rev 
1266689)
@@ -0,0 +1,22 @@
+diff --git i/git-changebar/src/gcb-plugin.c w/git-changebar/src/gcb-plugin.c
+index f8ce20cd..4488b22f 100644
+--- i/git-changebar/src/gcb-plugin.c
 w/git-changebar/src/gcb-plugin.c
+@@ -216,7 +216,7 @@ static int
+ gcb_git_buf_grow (git_buf  *buf,
+   size_ttarget_size)
+ {
+-  if (buf->asize == 0) {
++  if (buf->reserved == 0) {
+ if (target_size == 0) {
+   target_size = buf->size;
+ }
+@@ -234,7 +234,7 @@ buf_zero (git_buf *buf)
+   if (buf) {
+ buf->ptr = NULL;
+ buf->size = 0;
+-buf->asize = 0;
++buf->reserved = 0;
+   }
+ }
+ 



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

2022-08-16 Thread Alexander Rødseth via arch-commits
Date: Wednesday, August 17, 2022 @ 01:30:46
  Author: arodseth
Revision: 1266688

archrelease: copy trunk to community-staging-x86_64

Added:
  bat/repos/community-staging-x86_64/
  bat/repos/community-staging-x86_64/PKGBUILD
(from rev 1266687, bat/trunk/PKGBUILD)

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

Copied: bat/repos/community-staging-x86_64/PKGBUILD (from rev 1266687, 
bat/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-08-17 01:30:46 UTC (rev 1266688)
@@ -0,0 +1,55 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: Wesley Moore 
+
+pkgname=bat
+pkgver=0.21.0
+pkgrel=3
+pkgdesc='Cat clone with syntax highlighting and git integration'
+arch=(x86_64)
+url='https://github.com/sharkdp/bat'
+license=(APACHE MIT)
+depends=(libgit2 oniguruma)
+makedepends=(clang cmake git rust)
+source=("git+$url#commit=405e5f74602d8f680168ef52350150921c696d54") # tag: 
v0.21.0
+b2sums=(SKIP)
+
+prepare() {
+  cargo fetch --locked --manifest-path $pkgname/Cargo.toml
+}
+
+build() {
+  export CFLAGS+=' -ffat-lto-objects -w'
+  cargo build --locked --manifest-path $pkgname/Cargo.toml --release
+}
+
+check() {
+  cargo test --locked --manifest-path $pkgname/Cargo.toml
+}
+
+package() {
+  install -Dm755 $pkgname/target/release/$pkgname "$pkgdir/usr/bin/$pkgname"
+
+  # Package licenses
+  install -Dm644 $pkgname/LICENSE-APACHE \
+"$pkgdir/usr/share/licenses/$pkgname/LICENSE-APACHE"
+  install -Dm644 $pkgname/LICENSE-MIT \
+"$pkgdir/usr/share/licenses/$pkgname/LICENSE-MIT"
+
+  cd $pkgname/target/release/build
+
+  # Find and package the man page (because cargo --out-dir is too new)
+  find . -name bat.1 -type f -exec install -Dm644 {} \
+"$pkgdir/usr/share/man/man1/bat.1" \;
+
+  # Find and package the bash completion file
+  find . -name bat.bash -type f -exec install -Dm644 {} \
+"$pkgdir/usr/share/bash-completion/completions/bat" \;
+
+  # Find and package the zsh completion file (not in zsh-completions yet)
+  find . -name bat.zsh -type f -exec install -Dm644 {} \
+"$pkgdir/usr/share/zsh/site-functions/_bat" \;
+
+  # Find and package the fish completion file
+  find . -name bat.fish -type f -exec install -Dm644 {} \
+"$pkgdir/usr/share/fish/vendor_completions.d/bat.fish" \;
+}



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

2022-08-16 Thread Alexander Rødseth via arch-commits
Date: Wednesday, August 17, 2022 @ 01:30:27
  Author: arodseth
Revision: 1266687

archrelease: copy trunk to community-staging-x86_64

Added:
  exa/repos/community-staging-x86_64/
  exa/repos/community-staging-x86_64/PKGBUILD
(from rev 1266686, exa/trunk/PKGBUILD)

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

Copied: exa/repos/community-staging-x86_64/PKGBUILD (from rev 1266686, 
exa/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-08-17 01:30:27 UTC (rev 1266687)
@@ -0,0 +1,46 @@
+# Maintainer: Alexander F. Rødseth 
+# Maintainer: kpcyrd 
+# Maintainer: Caleb Maclennan 
+# Contributor: Lucas Raab 
+
+pkgname=exa
+pkgver=0.10.1
+pkgrel=6
+pkgdesc='ls replacement'
+arch=(x86_64)
+url='https://the.exa.website/'
+license=(MIT)
+depends=(libgit2.so)
+makedepends=(cargo git pandoc)
+source=("$pkgname-$pkgver.tar.gz::https://github.com/ogham/exa/archive/v$pkgver.tar.gz;)
+b2sums=('07f489fc0f3a755ea4ac6374e6ebd7b17d8d4fc6de92e695ea9b2868bcbca9c6f2788ec11329d0051abc2ffb8d1746898bdcef8a1d18ba9d67c94a627d30b6e2')
+
+prepare() {
+  cd $pkgname-$pkgver
+  # Fix outdated Cargo.lock
+  sed -i 's/version = "0.11.0-pre"/version = "0.10.1"/' Cargo.lock
+  cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
+}
+
+build() {
+  cd $pkgname-$pkgver
+  cargo build --frozen --release
+  for manpage in exa.1 exa_colors.5; do
+pandoc --standalone -f markdown -t man man/$manpage.md > $manpage
+  done
+}
+
+package() {
+  cd $pkgname-$pkgver
+  install -Dm755 target/release/exa -t "$pkgdir/usr/bin"
+  install -Dm644 completions/completions.bash \
+"$pkgdir/usr/share/bash-completion/completions/$pkgname"
+  install -Dm644 completions/completions.zsh \
+"$pkgdir/usr/share/zsh/site-functions/_$pkgname"
+  install -Dm644 completions/completions.fish \
+"$pkgdir/usr/share/fish/vendor_completions.d/$pkgname.fish"
+  install -Dm644 LICEN?E \
+"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+  install -Dm644 exa.1 "$pkgdir/usr/share/man/man1/exa.1"
+  install -Dm644 exa_colors.5 "$pkgdir/usr/share/man/man5/exa_colors.5"
+}



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

2022-08-16 Thread Alexander Rødseth via arch-commits
Date: Wednesday, August 17, 2022 @ 01:29:41
  Author: arodseth
Revision: 1266686

archrelease: copy trunk to staging-x86_64

Added:
  exa/repos/staging-x86_64/PKGBUILD
(from rev 1266685, exa/trunk/PKGBUILD)
Deleted:
  exa/repos/staging-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-17 00:55:08 UTC (rev 1266685)
+++ PKGBUILD2022-08-17 01:29:41 UTC (rev 1266686)
@@ -1,46 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Maintainer: kpcyrd 
-# Maintainer: Caleb Maclennan 
-# Contributor: Lucas Raab 
-
-pkgname=exa
-pkgver=0.10.1
-pkgrel=6
-pkgdesc='ls replacement'
-arch=(x86_64)
-url='https://the.exa.website/'
-license=(MIT)
-depends=(libgit2.so)
-makedepends=(cargo git pandoc)
-source=("$pkgname-$pkgver.tar.gz::https://github.com/ogham/exa/archive/v$pkgver.tar.gz;)
-b2sums=('07f489fc0f3a755ea4ac6374e6ebd7b17d8d4fc6de92e695ea9b2868bcbca9c6f2788ec11329d0051abc2ffb8d1746898bdcef8a1d18ba9d67c94a627d30b6e2')
-
-prepare() {
-  cd $pkgname-$pkgver
-  # Fix outdated Cargo.lock
-  sed -i 's/version = "0.11.0-pre"/version = "0.10.1"/' Cargo.lock
-  cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
-}
-
-build() {
-  cd $pkgname-$pkgver
-  cargo build --frozen --release
-  for manpage in exa.1 exa_colors.5; do
-pandoc --standalone -f markdown -t man man/$manpage.md > $manpage
-  done
-}
-
-package() {
-  cd $pkgname-$pkgver
-  install -Dm755 target/release/exa -t "$pkgdir/usr/bin"
-  install -Dm644 completions/completions.bash \
-"$pkgdir/usr/share/bash-completion/completions/$pkgname"
-  install -Dm644 completions/completions.zsh \
-"$pkgdir/usr/share/zsh/site-functions/_$pkgname"
-  install -Dm644 completions/completions.fish \
-"$pkgdir/usr/share/fish/vendor_completions.d/$pkgname.fish"
-  install -Dm644 LICEN?E \
-"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-  install -Dm644 exa.1 "$pkgdir/usr/share/man/man1/exa.1"
-  install -Dm644 exa_colors.5 "$pkgdir/usr/share/man/man5/exa_colors.5"
-}

Copied: exa/repos/staging-x86_64/PKGBUILD (from rev 1266685, exa/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-17 01:29:41 UTC (rev 1266686)
@@ -0,0 +1,46 @@
+# Maintainer: Alexander F. Rødseth 
+# Maintainer: kpcyrd 
+# Maintainer: Caleb Maclennan 
+# Contributor: Lucas Raab 
+
+pkgname=exa
+pkgver=0.10.1
+pkgrel=6
+pkgdesc='ls replacement'
+arch=(x86_64)
+url='https://the.exa.website/'
+license=(MIT)
+depends=(libgit2.so)
+makedepends=(cargo git pandoc)
+source=("$pkgname-$pkgver.tar.gz::https://github.com/ogham/exa/archive/v$pkgver.tar.gz;)
+b2sums=('07f489fc0f3a755ea4ac6374e6ebd7b17d8d4fc6de92e695ea9b2868bcbca9c6f2788ec11329d0051abc2ffb8d1746898bdcef8a1d18ba9d67c94a627d30b6e2')
+
+prepare() {
+  cd $pkgname-$pkgver
+  # Fix outdated Cargo.lock
+  sed -i 's/version = "0.11.0-pre"/version = "0.10.1"/' Cargo.lock
+  cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
+}
+
+build() {
+  cd $pkgname-$pkgver
+  cargo build --frozen --release
+  for manpage in exa.1 exa_colors.5; do
+pandoc --standalone -f markdown -t man man/$manpage.md > $manpage
+  done
+}
+
+package() {
+  cd $pkgname-$pkgver
+  install -Dm755 target/release/exa -t "$pkgdir/usr/bin"
+  install -Dm644 completions/completions.bash \
+"$pkgdir/usr/share/bash-completion/completions/$pkgname"
+  install -Dm644 completions/completions.zsh \
+"$pkgdir/usr/share/zsh/site-functions/_$pkgname"
+  install -Dm644 completions/completions.fish \
+"$pkgdir/usr/share/fish/vendor_completions.d/$pkgname.fish"
+  install -Dm644 LICEN?E \
+"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+  install -Dm644 exa.1 "$pkgdir/usr/share/man/man1/exa.1"
+  install -Dm644 exa_colors.5 "$pkgdir/usr/share/man/man5/exa_colors.5"
+}



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

2022-08-16 Thread Alexander Rødseth via arch-commits
Date: Tuesday, August 16, 2022 @ 17:50:21
  Author: arodseth
Revision: 1266655

archrelease: copy trunk to staging-x86_64

Added:
  exa/repos/staging-x86_64/
  exa/repos/staging-x86_64/PKGBUILD
(from rev 1266654, exa/trunk/PKGBUILD)

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

Copied: exa/repos/staging-x86_64/PKGBUILD (from rev 1266654, exa/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2022-08-16 17:50:21 UTC (rev 1266655)
@@ -0,0 +1,46 @@
+# Maintainer: Alexander F. Rødseth 
+# Maintainer: kpcyrd 
+# Maintainer: Caleb Maclennan 
+# Contributor: Lucas Raab 
+
+pkgname=exa
+pkgver=0.10.1
+pkgrel=6
+pkgdesc='ls replacement'
+arch=(x86_64)
+url='https://the.exa.website/'
+license=(MIT)
+depends=(libgit2.so)
+makedepends=(cargo git pandoc)
+source=("$pkgname-$pkgver.tar.gz::https://github.com/ogham/exa/archive/v$pkgver.tar.gz;)
+b2sums=('07f489fc0f3a755ea4ac6374e6ebd7b17d8d4fc6de92e695ea9b2868bcbca9c6f2788ec11329d0051abc2ffb8d1746898bdcef8a1d18ba9d67c94a627d30b6e2')
+
+prepare() {
+  cd $pkgname-$pkgver
+  # Fix outdated Cargo.lock
+  sed -i 's/version = "0.11.0-pre"/version = "0.10.1"/' Cargo.lock
+  cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
+}
+
+build() {
+  cd $pkgname-$pkgver
+  cargo build --frozen --release
+  for manpage in exa.1 exa_colors.5; do
+pandoc --standalone -f markdown -t man man/$manpage.md > $manpage
+  done
+}
+
+package() {
+  cd $pkgname-$pkgver
+  install -Dm755 target/release/exa -t "$pkgdir/usr/bin"
+  install -Dm644 completions/completions.bash \
+"$pkgdir/usr/share/bash-completion/completions/$pkgname"
+  install -Dm644 completions/completions.zsh \
+"$pkgdir/usr/share/zsh/site-functions/_$pkgname"
+  install -Dm644 completions/completions.fish \
+"$pkgdir/usr/share/fish/vendor_completions.d/$pkgname.fish"
+  install -Dm644 LICEN?E \
+"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+  install -Dm644 exa.1 "$pkgdir/usr/share/man/man1/exa.1"
+  install -Dm644 exa_colors.5 "$pkgdir/usr/share/man/man5/exa_colors.5"
+}



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

2022-08-16 Thread Alexander Rødseth via arch-commits
Date: Tuesday, August 16, 2022 @ 17:36:04
  Author: arodseth
Revision: 1266654

upgpkg: exa 0.10.1-6

Modified:
  exa/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-16 17:31:45 UTC (rev 1266653)
+++ PKGBUILD2022-08-16 17:36:04 UTC (rev 1266654)
@@ -5,7 +5,7 @@
 
 pkgname=exa
 pkgver=0.10.1
-pkgrel=5
+pkgrel=6
 pkgdesc='ls replacement'
 arch=(x86_64)
 url='https://the.exa.website/'
@@ -16,7 +16,7 @@
 
b2sums=('07f489fc0f3a755ea4ac6374e6ebd7b17d8d4fc6de92e695ea9b2868bcbca9c6f2788ec11329d0051abc2ffb8d1746898bdcef8a1d18ba9d67c94a627d30b6e2')
 
 prepare() {
-  cd "${pkgname}-${pkgver}"
+  cd $pkgname-$pkgver
   # Fix outdated Cargo.lock
   sed -i 's/version = "0.11.0-pre"/version = "0.10.1"/' Cargo.lock
   cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
@@ -25,8 +25,9 @@
 build() {
   cd $pkgname-$pkgver
   cargo build --frozen --release
-  pandoc --standalone -f markdown -t man man/exa.1.md > exa.1
-  pandoc --standalone -f markdown -t man man/exa_colors.5.md > exa_colors.5
+  for manpage in exa.1 exa_colors.5; do
+pandoc --standalone -f markdown -t man man/$manpage.md > $manpage
+  done
 }
 
 package() {



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

2022-08-16 Thread Alexander Rødseth via arch-commits
Date: Tuesday, August 16, 2022 @ 17:31:45
  Author: arodseth
Revision: 1266653

archrelease: copy trunk to staging-x86_64

Added:
  geany-plugins/repos/staging-x86_64/
  geany-plugins/repos/staging-x86_64/PKGBUILD
(from rev 1266652, geany-plugins/trunk/PKGBUILD)
  geany-plugins/repos/staging-x86_64/keys/
  geany-plugins/repos/staging-x86_64/libgit2.patch
(from rev 1266652, geany-plugins/trunk/libgit2.patch)

---+
 PKGBUILD  |   41 +
 libgit2.patch |   22 ++
 2 files changed, 63 insertions(+)

Copied: geany-plugins/repos/staging-x86_64/PKGBUILD (from rev 1266652, 
geany-plugins/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2022-08-16 17:31:45 UTC (rev 1266653)
@@ -0,0 +1,41 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: Angel 'angvp' Velasquez 
+# Contributor: Gerardo Exequiel Pozzi 
+# Contributor: Patrick Melo 
+
+pkgname=geany-plugins
+pkgver=1.38
+pkgrel=4
+pkgdesc='Plugins for Geany'
+arch=(x86_64)
+url='https://plugins.geany.org/'
+license=(GPL)
+depends=(ctpl "geany>=$pkgver" gpgme gtkspell3 libgit2 lua51 python vte3 
webkit2gtk)
+makedepends=(cppcheck intltool)
+source=(libgit2.patch
+"$url$pkgname/$pkgname-$pkgver.tar.bz2"{,.sig})
+b2sums=('8daf8357caf09eb62844b6c44fa2a819231879b6d7e69bde4039f87230419cf371d1e8b5dede2f23dbb65d5d652b0bce3e51c79164ab8e3d76b445130cd5d387'
+
'a2fd9e59218e4b5359b910ccff8d0a6504845081f827d2f1c798ea6401914e8e01222c784a76ab0a126f5fe07c8aa86018cef4c71bb5e2891193f6c8965a3e47'
+'SKIP')
+validpgpkeys=('986FA7E80256D3D16F30FB7A01380DF54FD09D02') # Frank Lanitz 

+
+prepare() {
+  cd $pkgname-$pkgver
+  # https://github.com/geany/geany-plugins/issues/1164
+  patch -p1 -i ../libgit2.patch
+  autoreconf -fi
+}
+
+build() {
+  cd $pkgname-$pkgver
+  export CFLAGS+=' -w' PYTHON=/usr/bin/python
+  ./configure --prefix=/usr --libexecdir=/usr/lib
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  make -C $pkgname-$pkgver DESTDIR="$pkgdir" install
+}
+
+# getver: plugins.geany.org/downloads.html

Copied: geany-plugins/repos/staging-x86_64/libgit2.patch (from rev 1266652, 
geany-plugins/trunk/libgit2.patch)
===
--- staging-x86_64/libgit2.patch(rev 0)
+++ staging-x86_64/libgit2.patch2022-08-16 17:31:45 UTC (rev 1266653)
@@ -0,0 +1,22 @@
+diff --git i/git-changebar/src/gcb-plugin.c w/git-changebar/src/gcb-plugin.c
+index f8ce20cd..4488b22f 100644
+--- i/git-changebar/src/gcb-plugin.c
 w/git-changebar/src/gcb-plugin.c
+@@ -216,7 +216,7 @@ static int
+ gcb_git_buf_grow (git_buf  *buf,
+   size_ttarget_size)
+ {
+-  if (buf->asize == 0) {
++  if (buf->reserved == 0) {
+ if (target_size == 0) {
+   target_size = buf->size;
+ }
+@@ -234,7 +234,7 @@ buf_zero (git_buf *buf)
+   if (buf) {
+ buf->ptr = NULL;
+ buf->size = 0;
+-buf->asize = 0;
++buf->reserved = 0;
+   }
+ }
+ 



[arch-commits] Commit in geany-plugins/trunk (6 files)

2022-08-16 Thread Alexander Rødseth via arch-commits
Date: Tuesday, August 16, 2022 @ 17:31:39
  Author: arodseth
Revision: 1266652

upgpkg: geany-plugins 1.38-4

Added:
  geany-plugins/trunk/keys/
  geany-plugins/trunk/keys/pgp/
  geany-plugins/trunk/keys/pgp/986FA7E80256D3D16F30FB7A01380DF54FD09D02.asc
  geany-plugins/trunk/libgit2.patch
(from rev 1266651, geany-plugins/trunk/geany-plugins-1.38-libgit2_1.4.patch)
Modified:
  geany-plugins/trunk/PKGBUILD
Deleted:
  geany-plugins/trunk/geany-plugins-1.38-libgit2_1.4.patch

---+
 PKGBUILD  |   27 +---
 geany-plugins-1.38-libgit2_1.4.patch  |   22 -
 keys/pgp/986FA7E80256D3D16F30FB7A01380DF54FD09D02.asc |1 
 libgit2.patch |   22 +
 4 files changed, 32 insertions(+), 40 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-08-16 17:19:28 UTC (rev 1266651)
+++ PKGBUILD2022-08-16 17:31:39 UTC (rev 1266652)
@@ -5,7 +5,7 @@
 
 pkgname=geany-plugins
 pkgver=1.38
-pkgrel=3
+pkgrel=4
 pkgdesc='Plugins for Geany'
 arch=(x86_64)
 url='https://plugins.geany.org/'
@@ -12,32 +12,23 @@
 license=(GPL)
 depends=(ctpl "geany>=$pkgver" gpgme gtkspell3 libgit2 lua51 python vte3 
webkit2gtk)
 makedepends=(cppcheck intltool)
-source=(
-  "$url$pkgname/$pkgname-$pkgver.tar.bz2"{,.sig}
-  $pkgname-1.38-libgit2_1.4.patch
-)
-b2sums=('a2fd9e59218e4b5359b910ccff8d0a6504845081f827d2f1c798ea6401914e8e01222c784a76ab0a126f5fe07c8aa86018cef4c71bb5e2891193f6c8965a3e47'
-'SKIP'
-
'8daf8357caf09eb62844b6c44fa2a819231879b6d7e69bde4039f87230419cf371d1e8b5dede2f23dbb65d5d652b0bce3e51c79164ab8e3d76b445130cd5d387')
+source=(libgit2.patch
+"$url$pkgname/$pkgname-$pkgver.tar.bz2"{,.sig})
+b2sums=('8daf8357caf09eb62844b6c44fa2a819231879b6d7e69bde4039f87230419cf371d1e8b5dede2f23dbb65d5d652b0bce3e51c79164ab8e3d76b445130cd5d387'
+
'a2fd9e59218e4b5359b910ccff8d0a6504845081f827d2f1c798ea6401914e8e01222c784a76ab0a126f5fe07c8aa86018cef4c71bb5e2891193f6c8965a3e47'
+'SKIP')
 validpgpkeys=('986FA7E80256D3D16F30FB7A01380DF54FD09D02') # Frank Lanitz 

 
 prepare() {
-  # fix for changes to git_buf with libgit2 >= 1.4
+  cd $pkgname-$pkgver
   # https://github.com/geany/geany-plugins/issues/1164
-  patch -d $pkgname-$pkgver -p1 -i ../$pkgname-1.38-libgit2_1.4.patch
-
-  cd $pkgname-$pkgver
+  patch -p1 -i ../libgit2.patch
   autoreconf -fi
-
-  # don't redefine bool
-  sed -i 's/typedef unsigned int bool/#include /g' \
-pretty-printer/src/PrettyPrinter.h
 }
 
 build() {
   cd $pkgname-$pkgver
-  export CFLAGS+=' -w'
-  export PYTHON=/usr/bin/python
+  export CFLAGS+=' -w' PYTHON=/usr/bin/python
   ./configure --prefix=/usr --libexecdir=/usr/lib
   sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
   make

Deleted: geany-plugins-1.38-libgit2_1.4.patch
===
--- geany-plugins-1.38-libgit2_1.4.patch2022-08-16 17:19:28 UTC (rev 
1266651)
+++ geany-plugins-1.38-libgit2_1.4.patch2022-08-16 17:31:39 UTC (rev 
1266652)
@@ -1,22 +0,0 @@
-diff --git i/git-changebar/src/gcb-plugin.c w/git-changebar/src/gcb-plugin.c
-index f8ce20cd..4488b22f 100644
 i/git-changebar/src/gcb-plugin.c
-+++ w/git-changebar/src/gcb-plugin.c
-@@ -216,7 +216,7 @@ static int
- gcb_git_buf_grow (git_buf  *buf,
-   size_ttarget_size)
- {
--  if (buf->asize == 0) {
-+  if (buf->reserved == 0) {
- if (target_size == 0) {
-   target_size = buf->size;
- }
-@@ -234,7 +234,7 @@ buf_zero (git_buf *buf)
-   if (buf) {
- buf->ptr = NULL;
- buf->size = 0;
--buf->asize = 0;
-+buf->reserved = 0;
-   }
- }
- 

Added: keys/pgp/986FA7E80256D3D16F30FB7A01380DF54FD09D02.asc
===
(Binary files differ)

Index: geany-plugins/trunk/keys/pgp/986FA7E80256D3D16F30FB7A01380DF54FD09D02.asc
===
--- keys/pgp/986FA7E80256D3D16F30FB7A01380DF54FD09D02.asc   2022-08-16 
17:19:28 UTC (rev 1266651)
+++ keys/pgp/986FA7E80256D3D16F30FB7A01380DF54FD09D02.asc   2022-08-16 
17:31:39 UTC (rev 1266652)

Property changes on: 
geany-plugins/trunk/keys/pgp/986FA7E80256D3D16F30FB7A01380DF54FD09D02.asc
___
Added: svn:mime-type
## -0,0 +1 ##
+application/pgp-keys
\ No newline at end of property
Copied: geany-plugins/trunk/libgit2.patch (from rev 1266651, 
geany-plugins/trunk/geany-plugins-1.38-libgit2_1.4.patch)
===
--- libgit2.patch   (rev 0)
+++ libgit2.patch   2022-08-16 17:31:39 UTC (rev 1266652)
@@ -0,0 +1,22 @@
+diff --git i/git-changebar/src/gcb-plugin.c w/git-changebar/src/gcb-plugin.c
+index 

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

2022-08-16 Thread Alexander Rødseth via arch-commits
Date: Tuesday, August 16, 2022 @ 17:19:28
  Author: arodseth
Revision: 1266651

archrelease: copy trunk to staging-x86_64

Added:
  bat/repos/staging-x86_64/
  bat/repos/staging-x86_64/PKGBUILD
(from rev 1266650, bat/trunk/PKGBUILD)

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

Copied: bat/repos/staging-x86_64/PKGBUILD (from rev 1266650, bat/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2022-08-16 17:19:28 UTC (rev 1266651)
@@ -0,0 +1,55 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: Wesley Moore 
+
+pkgname=bat
+pkgver=0.21.0
+pkgrel=3
+pkgdesc='Cat clone with syntax highlighting and git integration'
+arch=(x86_64)
+url='https://github.com/sharkdp/bat'
+license=(APACHE MIT)
+depends=(libgit2 oniguruma)
+makedepends=(clang cmake git rust)
+source=("git+$url#commit=405e5f74602d8f680168ef52350150921c696d54") # tag: 
v0.21.0
+b2sums=(SKIP)
+
+prepare() {
+  cargo fetch --locked --manifest-path $pkgname/Cargo.toml
+}
+
+build() {
+  export CFLAGS+=' -ffat-lto-objects -w'
+  cargo build --locked --manifest-path $pkgname/Cargo.toml --release
+}
+
+check() {
+  cargo test --locked --manifest-path $pkgname/Cargo.toml
+}
+
+package() {
+  install -Dm755 $pkgname/target/release/$pkgname "$pkgdir/usr/bin/$pkgname"
+
+  # Package licenses
+  install -Dm644 $pkgname/LICENSE-APACHE \
+"$pkgdir/usr/share/licenses/$pkgname/LICENSE-APACHE"
+  install -Dm644 $pkgname/LICENSE-MIT \
+"$pkgdir/usr/share/licenses/$pkgname/LICENSE-MIT"
+
+  cd $pkgname/target/release/build
+
+  # Find and package the man page (because cargo --out-dir is too new)
+  find . -name bat.1 -type f -exec install -Dm644 {} \
+"$pkgdir/usr/share/man/man1/bat.1" \;
+
+  # Find and package the bash completion file
+  find . -name bat.bash -type f -exec install -Dm644 {} \
+"$pkgdir/usr/share/bash-completion/completions/bat" \;
+
+  # Find and package the zsh completion file (not in zsh-completions yet)
+  find . -name bat.zsh -type f -exec install -Dm644 {} \
+"$pkgdir/usr/share/zsh/site-functions/_bat" \;
+
+  # Find and package the fish completion file
+  find . -name bat.fish -type f -exec install -Dm644 {} \
+"$pkgdir/usr/share/fish/vendor_completions.d/bat.fish" \;
+}



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

2022-08-16 Thread Alexander Rødseth via arch-commits
Date: Tuesday, August 16, 2022 @ 17:19:17
  Author: arodseth
Revision: 1266650

upgpkg: bat 0.21.0-3

Modified:
  bat/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-16 17:12:26 UTC (rev 1266649)
+++ PKGBUILD2022-08-16 17:19:17 UTC (rev 1266650)
@@ -3,34 +3,27 @@
 
 pkgname=bat
 pkgver=0.21.0
-pkgrel=2
+pkgrel=3
 pkgdesc='Cat clone with syntax highlighting and git integration'
 arch=(x86_64)
 url='https://github.com/sharkdp/bat'
 license=(APACHE MIT)
-depends=(gcc-libs libgit2 oniguruma)
+depends=(libgit2 oniguruma)
 makedepends=(clang cmake git rust)
 source=("git+$url#commit=405e5f74602d8f680168ef52350150921c696d54") # tag: 
v0.21.0
-b2sums=('SKIP')
+b2sums=(SKIP)
 
 prepare() {
-  cargo fetch \
---locked \
---manifest-path "$srcdir/$pkgname/Cargo.toml"
+  cargo fetch --locked --manifest-path $pkgname/Cargo.toml
 }
 
 build() {
   export CFLAGS+=' -ffat-lto-objects -w'
-  cargo build \
---locked \
---manifest-path "$srcdir/$pkgname/Cargo.toml" \
---release
+  cargo build --locked --manifest-path $pkgname/Cargo.toml --release
 }
 
 check() {
-  cargo test \
---locked \
---manifest-path "$srcdir/$pkgname/Cargo.toml"
+  cargo test --locked --manifest-path $pkgname/Cargo.toml
 }
 
 package() {



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

2022-08-16 Thread Alexander Rødseth via arch-commits
Date: Tuesday, August 16, 2022 @ 17:12:26
  Author: arodseth
Revision: 1266649

archrelease: copy trunk to staging-x86_64

Added:
  freecad/repos/staging-x86_64/
  freecad/repos/staging-x86_64/PKGBUILD
(from rev 1266648, freecad/trunk/PKGBUILD)

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

Copied: freecad/repos/staging-x86_64/PKGBUILD (from rev 1266648, 
freecad/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2022-08-16 17:12:26 UTC (rev 1266649)
@@ -0,0 +1,72 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: loqs 
+# Contributor: Gabriel Souza Franco 
+# Contributor: Florian Pritz
+# Contributor: Jonas Heinrich 
+# Contributor: Jordi De Groof 
+# Contributor: mickele
+# Contributor: manwithgrenade
+# Contributor: bricem13
+# Contributor: gborzi
+# Contributor: Adrian Insaurralde
+
+pkgname=freecad
+pkgver=0.20.1
+pkgrel=3
+pkgdesc='Feature based parametric 3D CAD modeler'
+arch=(x86_64)
+url='https://freecadweb.org/'
+license=(LGPL)
+depends=(boost-libs fmt glew jsoncpp libspnav med-openmpi netcdf opencascade
+ openmpi pyside2 pyside2-tools python-gitpython python-matplotlib
+ python-pivy python-ply pugixml qt5-svg qt5-tools qt5-webkit
+ qt5-x11extras qt5-xmlpatterns xerces-c)
+makedepends=(boost cgns cli11 cmake coin eigen gcc-fortran git jdk-openjdk
+ libharu liblas ninja openmpi openvdb openvr ospray pdal
+ postgresql-libs python-mpi4py python-shiboken2 shiboken2 swig
+ utf8cpp)
+optdepends=('graphviz: dependency graph support'
+'openscad: OpenSCAD support'
+'python-markdown: Markdown support in addon manager'
+'python-gitpython: support downloading addons with git')
+source=("git+https://github.com/$pkgname/$pkgname#commit=7f23e793eb136def6aee0f0ce81316cd21e6;)
 # tag: 0.20.1
+b2sums=(SKIP)
+
+build() {
+  cmake \
+-B build \
+-D BUILD_ENABLE_CXX_STD=C++17 \
+-D BUILD_FLAT_MESH=ON \
+-D BUILD_QT5=ON \
+-D CMAKE_BUILD_TYPE=Release \
+-D CMAKE_C_FLAGS="$CFLAGS -fPIC -w" \
+-D CMAKE_CXX_FLAGS="$CXXFLAGS -fPIC -w" \
+-D CMAKE_INSTALL_BINDIR=/usr/lib/freecad/bin \
+-D CMAKE_INSTALL_DATADIR=/usr/share/freecad \
+-D CMAKE_INSTALL_DATAROOTDIR=/usr/share \
+-D CMAKE_INSTALL_DOCDIR=/usr/share/freecad/doc \
+-D CMAKE_INSTALL_LIBDIR=/usr/lib/freecad/lib \
+-D CMAKE_INSTALL_PREFIX=/usr/lib/freecad \
+-D FREECAD_USE_EXTERNAL_PIVY=ON \
+-D FREECAD_USE_OCC_VARIANT='Official Version' \
+-D FREECAD_USE_QT_FILEDIALOG=ON \
+-D PYTHON_EXECUTABLE=/usr/bin/python \
+-D INSTALL_TO_SITEPACKAGES=ON \
+-G Ninja \
+-S $pkgname
+  ninja -C build
+}
+
+package() {
+  DESTDIR="$pkgdir" ninja -C build install
+
+  # Thumbnailer
+  install -Dm755 $pkgname/src/Tools/$pkgname-thumbnailer -t "$pkgdir/usr/bin/"
+
+  # Symlinks in /usr/bin
+  install -d "$pkgdir/usr/bin"
+  ln -sf /usr/lib/freecad/bin/FreeCAD "$pkgdir/usr/bin/freecad"
+  ln -sf /usr/lib/freecad/bin/FreeCAD "$pkgdir/usr/bin/FreeCAD"
+  ln -sf /usr/lib/freecad/bin/FreeCADCmd "$pkgdir/usr/bin/freecadcmd"
+  ln -sf /usr/lib/freecad/bin/FreeCADCmd "$pkgdir/usr/bin/FreeCADCmd"
+}



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

2022-08-16 Thread Alexander Rødseth via arch-commits
Date: Tuesday, August 16, 2022 @ 17:12:21
  Author: arodseth
Revision: 1266648

upgpkg: freecad 0.20.1-3

Modified:
  freecad/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-16 16:55:11 UTC (rev 1266647)
+++ PKGBUILD2022-08-16 17:12:21 UTC (rev 1266648)
@@ -12,26 +12,25 @@
 
 pkgname=freecad
 pkgver=0.20.1
-pkgrel=2
+pkgrel=3
 pkgdesc='Feature based parametric 3D CAD modeler'
 arch=(x86_64)
 url='https://freecadweb.org/'
 license=(LGPL)
-depends=(boost-libs glew jsoncpp libspnav med-openmpi netcdf opencascade
+depends=(boost-libs fmt glew jsoncpp libspnav med-openmpi netcdf opencascade
  openmpi pyside2 pyside2-tools python-gitpython python-matplotlib
  python-pivy python-ply pugixml qt5-svg qt5-tools qt5-webkit
  qt5-x11extras qt5-xmlpatterns xerces-c)
-makedepends=(boost cgns cli11 cmake coin eigen fmt gcc-fortran git jdk-openjdk
+makedepends=(boost cgns cli11 cmake coin eigen gcc-fortran git jdk-openjdk
  libharu liblas ninja openmpi openvdb openvr ospray pdal
  postgresql-libs python-mpi4py python-shiboken2 shiboken2 swig
  utf8cpp)
-optdepends=('fmt: for the FEM workbench'
-'graphviz: dependency graph support'
+optdepends=('graphviz: dependency graph support'
 'openscad: OpenSCAD support'
 'python-markdown: Markdown support in addon manager'
 'python-gitpython: support downloading addons with git')
 
source=("git+https://github.com/$pkgname/$pkgname#commit=7f23e793eb136def6aee0f0ce81316cd21e6;)
 # tag: 0.20.1
-b2sums=('SKIP')
+b2sums=(SKIP)
 
 build() {
   cmake \



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

2022-08-14 Thread Alexander Rødseth via arch-commits
Date: Sunday, August 14, 2022 @ 15:11:43
  Author: arodseth
Revision: 1266052

archrelease: copy trunk to community-x86_64

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

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

Deleted: 001-null-pointer-fix.patch
===
--- 001-null-pointer-fix.patch  2022-08-14 15:11:22 UTC (rev 1266051)
+++ 001-null-pointer-fix.patch  2022-08-14 15:11:43 UTC (rev 1266052)
@@ -1,27 +0,0 @@
-Description: Fixing null pointer crash
-
-Origin: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=773713
-Bug-Ubuntu: https://launchpad.net/bugs/1415880
-Last-Update: 2015-08-18
-

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

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

2022-08-14 Thread Alexander Rødseth via arch-commits
Date: Sunday, August 14, 2022 @ 15:11:22
  Author: arodseth
Revision: 1266051

upgpkg: broadcom-wl-dkms 6.30.223.271-33

Modified:
  broadcom-wl-dkms/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-14 14:36:42 UTC (rev 1266050)
+++ PKGBUILD2022-08-14 15:11:22 UTC (rev 1266051)
@@ -6,29 +6,29 @@
 
 pkgname=broadcom-wl-dkms
 pkgver=6.30.223.271
-pkgrel=32
+pkgrel=33
 pkgdesc='Broadcom 802.11 Linux STA wireless driver'
 arch=(x86_64)
 
url='https://www.broadcom.com/site-search?filters[pages][content_type][type]=and[pages][content_type][values][]=Downloads=1_page=10=802.11%20linux%20sta%20wireless%20driver'
 license=(custom)
-depends=(dkms linux-headers)
+depends=(dkms)
 conflicts=(broadcom-wl)
 install=broadcom-wl-dkms.install
-source=('broadcom-wl-dkms.conf'
-'dkms.conf.in'
-'001-null-pointer-fix.patch'
-'002-rdtscl.patch'
-'003-linux47.patch'
-'004-linux48.patch'
-'005-debian-fix-kernel-warnings.patch'
-'006-linux411.patch'
-'007-linux412.patch'
-'008-linux415.patch'
-'009-fix_mac_profile_discrepancy.patch'
-'010-linux56.patch'
-'011-linux59.patch'
-'012-linux517.patch'
-'013-linux518.patch'
+source=(broadcom-wl-dkms.conf
+dkms.conf.in
+001-null-pointer-fix.patch
+002-rdtscl.patch
+003-linux47.patch
+004-linux48.patch
+005-debian-fix-kernel-warnings.patch
+006-linux411.patch
+007-linux412.patch
+008-linux415.patch
+009-fix_mac_profile_discrepancy.patch
+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'
 
'9c271945a30069d01cefa24c7dae84f359dd2f181699464b34ab884e279fdf5c2d2673a0b2ebdee50df92f76d22da68c77bfd22d003becfd1879b4fd2d10c412'



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

2022-08-14 Thread Alexander Rødseth via arch-commits
Date: Sunday, August 14, 2022 @ 13:02:42
  Author: arodseth
Revision: 1266038

archrelease: copy trunk to community-x86_64

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

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

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

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



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

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

update package, git tag was modified upstream

Modified:
  raylib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-14 09:38:55 UTC (rev 1266036)
+++ PKGBUILD2022-08-14 13:02:37 UTC (rev 1266037)
@@ -3,13 +3,13 @@
 
 pkgname=raylib
 pkgver=4.2.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Simple and easy-to-use game programming library'
 arch=(x86_64)
 url='https://www.raylib.com'
 license=(ZLIB)
 makedepends=(cmake git libx11 libxcursor libxinerama libxrandr ninja 
vulkan-headers xorg-server-devel xorg-xinput)
-source=("git+https://github.com/raysan5/raylib#commit=d658e6772d75bce52fbe46cc9789f0b33500bc0f;)
 # tag: 4.2.0
+source=("git+https://github.com/raysan5/raylib#commit=bf2ad9df5fdcaa385b2a7f66fd85632eeebbadaa;)
 # tag: 4.2.0
 b2sums=('SKIP')
 
 build() {



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

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

archrelease: copy trunk to community-x86_64

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

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

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

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



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

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

upgpkg: raylib 4.2.0-1

Modified:
  raylib/trunk/PKGBUILD

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

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



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

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

archrelease: copy trunk to community-x86_64

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

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

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

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



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

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

upgpkg: opam 2.1.3-1

Modified:
  opam/trunk/PKGBUILD

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

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



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

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

archrelease: copy trunk to community-x86_64

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

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

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

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

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

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

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

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

upgpkg: hwinfo 22.1-1

Modified:
  hwinfo/trunk/PKGBUILD

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

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



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

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

archrelease: copy trunk to community-any

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

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

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

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

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

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



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

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

upgpkg: leiningen 2.9.10-2

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

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

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

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

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

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


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

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

archrelease: copy trunk to community-any

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

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

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

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

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

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



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

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

archrelease: copy trunk to community-any

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

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

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

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

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

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



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

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

upgpkg: leiningen 2.9.10-1

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

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

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

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

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

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

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


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

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

archrelease: copy trunk to community-x86_64

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

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

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

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

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

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

New "url"

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

Modified:
  broadcom-wl-dkms/trunk/PKGBUILD

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

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



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

2022-08-12 Thread Alexander Rødseth via arch-commits
Date: Friday, August 12, 2022 @ 19:12:51
  Author: arodseth
Revision: 1265719

archrelease: copy trunk to community-x86_64

Added:
  freecad/repos/community-x86_64/PKGBUILD
(from rev 1265718, freecad/trunk/PKGBUILD)
Deleted:
  freecad/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-12 19:12:45 UTC (rev 1265718)
+++ PKGBUILD2022-08-12 19:12:51 UTC (rev 1265719)
@@ -1,72 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Contributor: loqs 
-# Contributor: Gabriel Souza Franco 
-# Contributor: Florian Pritz
-# Contributor: Jonas Heinrich 
-# Contributor: Jordi De Groof 
-# Contributor: mickele
-# Contributor: manwithgrenade
-# Contributor: bricem13
-# Contributor: gborzi
-# Contributor: Adrian Insaurralde
-
-pkgname=freecad
-pkgver=0.20.1
-pkgrel=1
-pkgdesc='Feature based parametric 3D CAD modeler'
-arch=(x86_64)
-url='https://freecadweb.org/'
-license=(LGPL)
-depends=(boost-libs glew jsoncpp libspnav med-openmpi netcdf opencascade
- openmpi pyside2 pyside2-tools python-gitpython python-matplotlib
- python-pivy python-ply pugixml qt5-svg qt5-tools qt5-webkit
- qt5-x11extras qt5-xmlpatterns xerces-c)
-makedepends=(boost cgns cli11 cmake coin eigen fmt gcc-fortran git jdk-openjdk
- libharu liblas ninja openmpi openvdb openvr ospray pdal
- postgresql-libs python-mpi4py python-shiboken2 shiboken2 swig
- utf8cpp)
-optdepends=('graphviz: dependency graph support'
-'openscad: OpenSCAD support'
-'python-markdown: Markdown support in addon manager'
-'python-gitpython: support downloading addons with git')
-source=("git+https://github.com/$pkgname/$pkgname#commit=7f23e793eb136def6aee0f0ce81316cd21e6;)
 # tag: 0.20.1
-b2sums=('SKIP')
-
-build() {
-  cmake \
--B build \
--D BUILD_ENABLE_CXX_STD=C++17 \
--D BUILD_FLAT_MESH=ON \
--D BUILD_QT5=ON \
--D CMAKE_BUILD_TYPE=Release \
--D CMAKE_C_FLAGS="$CFLAGS -fPIC -w" \
--D CMAKE_CXX_FLAGS="$CXXFLAGS -fPIC -w" \
--D CMAKE_INSTALL_BINDIR=/usr/lib/freecad/bin \
--D CMAKE_INSTALL_DATADIR=/usr/share/freecad \
--D CMAKE_INSTALL_DATAROOTDIR=/usr/share \
--D CMAKE_INSTALL_DOCDIR=/usr/share/freecad/doc \
--D CMAKE_INSTALL_LIBDIR=/usr/lib/freecad/lib \
--D CMAKE_INSTALL_PREFIX=/usr/lib/freecad \
--D FREECAD_USE_EXTERNAL_PIVY=ON \
--D FREECAD_USE_OCC_VARIANT='Official Version' \
--D FREECAD_USE_QT_FILEDIALOG=ON \
--D PYTHON_EXECUTABLE=/usr/bin/python \
--D INSTALL_TO_SITEPACKAGES=ON \
--G Ninja \
--S $pkgname
-  ninja -C build
-}
-
-package() {
-  DESTDIR="$pkgdir" ninja -C build install
-
-  # Thumbnailer
-  install -Dm755 $pkgname/src/Tools/$pkgname-thumbnailer -t "$pkgdir/usr/bin/"
-
-  # Symlinks in /usr/bin
-  install -d "$pkgdir/usr/bin"
-  ln -sf /usr/lib/freecad/bin/FreeCAD "$pkgdir/usr/bin/freecad"
-  ln -sf /usr/lib/freecad/bin/FreeCAD "$pkgdir/usr/bin/FreeCAD"
-  ln -sf /usr/lib/freecad/bin/FreeCADCmd "$pkgdir/usr/bin/freecadcmd"
-  ln -sf /usr/lib/freecad/bin/FreeCADCmd "$pkgdir/usr/bin/FreeCADCmd"
-}

Copied: freecad/repos/community-x86_64/PKGBUILD (from rev 1265718, 
freecad/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-12 19:12:51 UTC (rev 1265719)
@@ -0,0 +1,73 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: loqs 
+# Contributor: Gabriel Souza Franco 
+# Contributor: Florian Pritz
+# Contributor: Jonas Heinrich 
+# Contributor: Jordi De Groof 
+# Contributor: mickele
+# Contributor: manwithgrenade
+# Contributor: bricem13
+# Contributor: gborzi
+# Contributor: Adrian Insaurralde
+
+pkgname=freecad
+pkgver=0.20.1
+pkgrel=2
+pkgdesc='Feature based parametric 3D CAD modeler'
+arch=(x86_64)
+url='https://freecadweb.org/'
+license=(LGPL)
+depends=(boost-libs glew jsoncpp libspnav med-openmpi netcdf opencascade
+ openmpi pyside2 pyside2-tools python-gitpython python-matplotlib
+ python-pivy python-ply pugixml qt5-svg qt5-tools qt5-webkit
+ qt5-x11extras qt5-xmlpatterns xerces-c)
+makedepends=(boost cgns cli11 cmake coin eigen fmt gcc-fortran git jdk-openjdk
+ libharu liblas ninja openmpi openvdb openvr ospray pdal
+ postgresql-libs python-mpi4py python-shiboken2 shiboken2 swig
+ utf8cpp)
+optdepends=('fmt: for the FEM workbench'
+'graphviz: dependency graph support'
+'openscad: OpenSCAD support'
+'python-markdown: Markdown support in addon manager'
+'python-gitpython: support downloading addons with git')
+source=("git+https://github.com/$pkgname/$pkgname#commit=7f23e793eb136def6aee0f0ce81316cd21e6;)
 # tag: 0.20.1
+b2sums=('SKIP')

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

2022-08-12 Thread Alexander Rødseth via arch-commits
Date: Friday, August 12, 2022 @ 19:12:45
  Author: arodseth
Revision: 1265718

upgpkg: freecad 0.20.1-2

Modified:
  freecad/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-12 19:12:36 UTC (rev 1265717)
+++ PKGBUILD2022-08-12 19:12:45 UTC (rev 1265718)
@@ -12,7 +12,7 @@
 
 pkgname=freecad
 pkgver=0.20.1
-pkgrel=1
+pkgrel=2
 pkgdesc='Feature based parametric 3D CAD modeler'
 arch=(x86_64)
 url='https://freecadweb.org/'
@@ -25,7 +25,8 @@
  libharu liblas ninja openmpi openvdb openvr ospray pdal
  postgresql-libs python-mpi4py python-shiboken2 shiboken2 swig
  utf8cpp)
-optdepends=('graphviz: dependency graph support'
+optdepends=('fmt: for the FEM workbench'
+'graphviz: dependency graph support'
 'openscad: OpenSCAD support'
 'python-markdown: Markdown support in addon manager'
 'python-gitpython: support downloading addons with git')



[arch-commits] Commit in networkmanager-l2tp/repos/community-x86_64 (2 files)

2022-08-12 Thread Alexander Rødseth via arch-commits
Date: Friday, August 12, 2022 @ 18:10:11
  Author: arodseth
Revision: 1265631

archrelease: copy trunk to community-x86_64

Added:
  networkmanager-l2tp/repos/community-x86_64/PKGBUILD
(from rev 1265630, networkmanager-l2tp/trunk/PKGBUILD)
Deleted:
  networkmanager-l2tp/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-12 18:10:05 UTC (rev 1265630)
+++ PKGBUILD2022-08-12 18:10:11 UTC (rev 1265631)
@@ -1,47 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Contributor: Miles McLean 
-# Contributor: Andrea Scarpino 
-# Contributor: Brad Pitcher 
-# Contributor: Moritz Lipp 
-
-pkgname=networkmanager-l2tp
-pkgver=1.20.4
-_pppver=2.4.9
-pkgrel=4
-pkgdesc='L2TP support for NetworkManager'
-arch=(x86_64)
-url='https://github.com/nm-l2tp/NetworkManager-l2tp'
-license=(GPL2)
-conflicts=(networkmanager-l2tp-gtk3 networkmanager-l2tp-gtk4)
-depends=(ppp=$_pppver xl2tpd)
-makedepends=(intltool libnma libnma-gtk4 python)
-optdepends=(
-  'libnma: GUI support (GTK 3)'
-  'libnma-gtk4: GUI support (GTK 4)'
-  'strongswan: IPSec support')
-source=("$pkgname-$pkgver.tar.gz"::"$url/archive/$pkgver.tar.gz")
-b2sums=('ccd4f0a15b9b47635d3f1798ef1b6778657c269c2499b630b35261be6279d6bbffddcd0bc4c6cf17f5d929c88e356376f143227dc3ae1f3c138a7f166e5b46bf')
-
-prepare() {
-  ln -sf NetworkManager-l2tp-$pkgver $pkgname-$pkgver
-}
-
-build() {
-  export NOCONFIGURE=1
-  cd $pkgname-$pkgver
-  ./autogen.sh
-  ./configure \
---libexecdir=/usr/lib/NetworkManager \
---localstatedir=/var \
---prefix=/usr \
---sysconfdir=/etc \
---with-pppd-plugin-dir=/usr/lib/pppd/$_pppver \
---with-gtk4
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-package() {
-  make -C $pkgname-$pkgver DESTDIR="$pkgdir" install
-  install -Dm644 $pkgname-$pkgver/NEWS "$pkgdir/usr/share/doc/$pkgname/NEWS"
-}

Copied: networkmanager-l2tp/repos/community-x86_64/PKGBUILD (from rev 1265630, 
networkmanager-l2tp/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-12 18:10:11 UTC (rev 1265631)
@@ -0,0 +1,48 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: Miles McLean 
+# Contributor: Andrea Scarpino 
+# Contributor: Brad Pitcher 
+# Contributor: Moritz Lipp 
+
+pkgname=networkmanager-l2tp
+pkgver=1.20.4
+_pppver=2.4.9
+pkgrel=5
+pkgdesc='L2TP support for NetworkManager'
+arch=(x86_64)
+url='https://github.com/nm-l2tp/NetworkManager-l2tp'
+license=(GPL2)
+conflicts=(networkmanager-l2tp-gtk3 networkmanager-l2tp-gtk4)
+replaces=(networkmanager-l2tp-gtk3 networkmanager-l2tp-gtk4)
+depends=(ppp=$_pppver xl2tpd)
+makedepends=(intltool libnma libnma-gtk4 python)
+optdepends=(
+  'libnma: GUI support (GTK 3)'
+  'libnma-gtk4: GUI support (GTK 4)'
+  'strongswan: IPSec support')
+source=("$pkgname-$pkgver.tar.gz"::"$url/archive/$pkgver.tar.gz")
+b2sums=('ccd4f0a15b9b47635d3f1798ef1b6778657c269c2499b630b35261be6279d6bbffddcd0bc4c6cf17f5d929c88e356376f143227dc3ae1f3c138a7f166e5b46bf')
+
+prepare() {
+  ln -sf NetworkManager-l2tp-$pkgver $pkgname-$pkgver
+}
+
+build() {
+  export NOCONFIGURE=1
+  cd $pkgname-$pkgver
+  ./autogen.sh
+  ./configure \
+--libexecdir=/usr/lib/NetworkManager \
+--localstatedir=/var \
+--prefix=/usr \
+--sysconfdir=/etc \
+--with-pppd-plugin-dir=/usr/lib/pppd/$_pppver \
+--with-gtk4
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  make -C $pkgname-$pkgver DESTDIR="$pkgdir" install
+  install -Dm644 $pkgname-$pkgver/NEWS "$pkgdir/usr/share/doc/$pkgname/NEWS"
+}



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

2022-08-12 Thread Alexander Rødseth via arch-commits
Date: Friday, August 12, 2022 @ 18:10:05
  Author: arodseth
Revision: 1265630

upgpkg: networkmanager-l2tp 1.20.4-5

Modified:
  networkmanager-l2tp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-12 18:08:10 UTC (rev 1265629)
+++ PKGBUILD2022-08-12 18:10:05 UTC (rev 1265630)
@@ -7,12 +7,13 @@
 pkgname=networkmanager-l2tp
 pkgver=1.20.4
 _pppver=2.4.9
-pkgrel=4
+pkgrel=5
 pkgdesc='L2TP support for NetworkManager'
 arch=(x86_64)
 url='https://github.com/nm-l2tp/NetworkManager-l2tp'
 license=(GPL2)
 conflicts=(networkmanager-l2tp-gtk3 networkmanager-l2tp-gtk4)
+replaces=(networkmanager-l2tp-gtk3 networkmanager-l2tp-gtk4)
 depends=(ppp=$_pppver xl2tpd)
 makedepends=(intltool libnma libnma-gtk4 python)
 optdepends=(



[arch-commits] Commit in algol68g/repos/community-x86_64 (3 files)

2022-08-12 Thread Alexander Rødseth via arch-commits
Date: Friday, August 12, 2022 @ 16:25:40
  Author: arodseth
Revision: 1265435

archrelease: copy trunk to community-x86_64

Added:
  algol68g/repos/community-x86_64/PKGBUILD
(from rev 1265434, algol68g/trunk/PKGBUILD)
Deleted:
  algol68g/repos/community-x86_64/PKGBUILD
  algol68g/repos/community-x86_64/plotutils.patch

-+
 PKGBUILD|   73 --
 plotutils.patch |   20 --
 2 files changed, 33 insertions(+), 60 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-12 16:25:34 UTC (rev 1265434)
+++ PKGBUILD2022-08-12 16:25:40 UTC (rev 1265435)
@@ -1,40 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Contributor: 
-
-pkgname=(algol68g algol68g-doc)
-pkgver=2.8.5
-pkgrel=6
-pkgdesc='Algol 68 compiler and interpreter'
-arch=(x86_64)
-url='https://jmvdveer.home.xs4all.nl/algol.html'
-license=(GPL)
-depends=(gsl plotutils)
-optdepends=('postgresql-libs: for postgresql support')
-# This URL was removed: https://jmvdveer.home.xs4all.nl/algol68g-$pkgver.tar.gz
-source=("https://mirror.vdms.com/pub/OpenBSD/distfiles/by_cipher/sha256/D3/D3V8ZKg0L+OOxQG95oth0m0FHf/UV0LKWLcoipnH4tg=/algol68g-$pkgver.tar.gz;
-'plotutils.patch'
-'https://ftp.tw.freebsd.org/distfiles/a68g-doc.pdf')
-sha256sums=('0f757c64a8342fe38ec501bde68b61d26d051dffd45742ca58b7288a99c7e2d8'
-'50afcc7812d117e5f0a2f5240c9cd58f8bfcc04b3da0634b9aa0ab06183ed0aa'
-'064b6761207d937aa704d245fc871a072f5a33ea23a346cb136ec8b2078ea321')
-
-prepare() {
-  cd $pkgname-$pkgver
-  patch -p1 -i ../plotutils.patch
-}
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package_algol68g() {
-  make -C $pkgname-$pkgver \
-DESTDIR="$pkgdir" docdir=/usr/share/doc/$pkgname install
-}
-
-package_algol68g-doc() {
-  install -Dm644 a68g-doc.pdf \
-"$pkgdir/usr/share/doc/algol68g/learning_algol.pdf"
-}

Copied: algol68g/repos/community-x86_64/PKGBUILD (from rev 1265434, 
algol68g/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-12 16:25:40 UTC (rev 1265435)
@@ -0,0 +1,33 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: 
+
+pkgname=(algol68g algol68g-doc)
+pkgver=3.0.6
+pkgrel=1
+pkgdesc='Algol 68 compiler and interpreter'
+arch=(x86_64)
+url='https://jmvdveer.home.xs4all.nl/algol.html'
+license=(GPL)
+depends=(gsl plotutils)
+optdepends=('postgresql-libs: for postgresql support')
+# This URL was removed:
+source=("https://jmvdveer.home.xs4all.nl/algol68g-$pkgver.tar.gz;
+'https://ftp.tw.freebsd.org/distfiles/a68g-doc.pdf')
+b2sums=('37a0c0e7386f31dd9b986e9c6da0f21a762dc099d5ece48dbdd1bad7789f38bf131e23ffe20596e2d874f71a0bd3a8045739e794f75bd8b5316fd7bf8e99e91e'
+
'f8ca710d9a4f611873de41785e70359bd566645268ebb848803d3cd2e9a9f873f8ac423e3e0868083444b7f6d98df32fdb7a4c6b36692462ee50ddb1e410')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package_algol68g() {
+  make -C $pkgname-$pkgver \
+DESTDIR="$pkgdir" docdir=/usr/share/doc/$pkgname install
+}
+
+package_algol68g-doc() {
+  install -Dm644 a68g-doc.pdf \
+"$pkgdir/usr/share/doc/algol68g/learning_algol.pdf"
+}

Deleted: plotutils.patch
===
--- plotutils.patch 2022-08-12 16:25:34 UTC (rev 1265434)
+++ plotutils.patch 2022-08-12 16:25:40 UTC (rev 1265435)
@@ -1,20 +0,0 @@
 ./source/plotutils.c.orig  2012-04-05 00:44:52.0 +0200
-+++ ./source/plotutils.c   2012-04-28 05:27:04.0 +0200
-@@ -1018,7 +1018,7 @@
- X_COORD ( (f)) = 0;
- Y_COORD ( (f)) = 0;
- return (PLOTTER ( (f)));
--  } else if (!strcmp (device_type, "gif")) {
-+  } else if (!strcmp (device_type, "gif") || !strcmp (device_type, "png")) {
- /*+
- | Supported plotter type - pseudo GIF |
- +*/
-@@ -1059,7 +1059,7 @@
- (void) pl_setplparam (PLOTTER_PARAMS ( (f)), "BITMAPSIZE", size);
- (void) pl_setplparam (PLOTTER_PARAMS ( (f)), "BG_COLOR", (void *) 
"black");
- (void) pl_setplparam (PLOTTER_PARAMS ( (f)), "GIF_ANIMATION", 
(void *) "no");
--PLOTTER ( (f)) = pl_newpl_r ("gif", NULL, STREAM ( (f)), 
stderr, PLOTTER_PARAMS ( (f)));
-+PLOTTER ( (f)) = pl_newpl_r (device_type, NULL, STREAM ( 
(f)), stderr, PLOTTER_PARAMS ( (f)));
- if (PLOTTER ( (f)) == NULL) {
-   diagnostic_node (A68_RUNTIME_ERROR, p, ERROR_DEVICE_CANNOT_OPEN);
-   exit_genie (p, A68_RUNTIME_ERROR);



  1   2   3   4   5   6   7   8   9   10   >