[Git][archlinux/packaging/packages/openssh][main] 4 commits: Disable unneeded (and broken) zlib version check

2023-09-05 Thread David Runge (@dvzrv)


David Runge pushed to branch main at Arch Linux / Packaging / Packages / openssh


Commits:
f37ae4b4 by David Runge at 2023-09-05T12:30:06+02:00
Disable unneeded (and broken) zlib version check

The zlib version check is broken and leads to build failure:
https://bugs.archlinux.org/task/79568
As it is not useful to us to have openssh check for the zlib version
based on some (potentially outdated) heuristic, we disable it.
Whether zlib is vulnerable or not is defined by the Arch Linux security
tracker.

- - - - -
a4d14adb by David Runge at 2023-09-05T12:34:36+02:00
Switch to more granularly defined SPDX license identifiers

Switch to a more granular set of license identifiers based on
information provided in
https://github.com/openssh/openssh-portable/blob/master/LICENCE

- - - - -
bb1d76e9 by David Runge at 2023-09-05T12:46:59+02:00
Add user services for ssh-agent

Add systemd user services for ssh-agent:
https://bugs.archlinux.org/task/78656

- - - - -
7fe79532 by David Runge at 2023-09-05T12:51:51+02:00
upgpkg: 9.4p1-3

Rebuild to fix issues due to broken configure heuristics:
ahttps://bugs.archlinux.org/task/79568
Add systemd user units for ssh-agent.
Consolidate license identifiers.

- - - - -


3 changed files:

- PKGBUILD
- + ssh-agent.service
- + ssh-agent.socket


Changes:

=
PKGBUILD
=
@@ -6,11 +6,16 @@
 
 pkgname=openssh
 pkgver=9.4p1
-pkgrel=2
+pkgrel=3
 pkgdesc="SSH protocol implementation for remote login, command execution and 
file transfer"
 arch=(x86_64)
 url='https://www.openssh.com/portable.html'
-license=(custom:BSD)
+license=(
+  BSD-2-Clause
+  BSD-3-Clause
+  ISC
+  MIT
+)
 depends=(
   glibc
   krb5 libkrb5.so libgssapi_krb5.so
@@ -41,6 +46,8 @@ source=(
   00-archlinux.conf
   sshdgenkeys.service
   sshd.service
+  ssh-agent.service
+  ssh-agent.socket
   sshd.conf
   sshd.pam
 )
@@ -49,6 +56,8 @@ 
sha256sums=('3608fd9088db2163ceb3e600c85ab79d0de3d221e59192ea1923e23263866a85'
 '78b806c38bc1e246daaa941bfe7880e6eb6f53f093bea5d5868525ae6d223d30'
 'e5305767b2d317183ad1c5022a5f6705bd9014a8b22495a000fd482713738611'
 'e40f8b7c8e5e2ecf3084b3511a6c36d5b5c9f9e61f2bb13e3726c71dc7d4fbc7'
+'5a9594548928fce7e8fc707c3a3b45c560b7f16473bbf73a00357184fadca61b'
+'d09197d3891555cbee379541ff8cc439a8456722f0e8cb131966d4d12b0f2c2c'
 '76635a91526ce44571485e292e3a777ded6a439af78cb93514b999f91fb9b327'
 '64576021515c0a98b0aaf0a0ae02e0f5ebe8ee525b1e647ab68f369f81ecd846')
 
b2sums=('d13d758129cce947d3f12edb6e88406aad10de6887b19ffa3ebd8e382b742a05f2a692a8824aec99939f6c7e13fbccc3bb14e5ee112f9a9255d4882eb87dcf53'
@@ -56,6 +65,8 @@ 
b2sums=('d13d758129cce947d3f12edb6e88406aad10de6887b19ffa3ebd8e382b742a05f2a692a
 
'1ff8cd4ae22efed2b4260f1e518de919c4b290be4e0b5edbc8e2225ffe63788678d1961e6f863b85974c4697428ee827bcbabad371cfc91cc8b36eae9402eb97'
 
'09fad3648f48f13ee80195b90913feeba21240d121b1178e0ce62f4a17b1f7e58e8edc22c04403e377ab300f5022a804c848f5be132765d5ca26a38aab262e50'
 
'07ad5c7fb557411a6646ff6830bc9d564c07cbddc4ce819641d31c05dbdf677bfd8a99907cf529a7ee383b8c250936a6423f4b4b97ba0f1c14f627bbd629bd4e'
+
'3df44cc0a7baac8ad7606dd8a35b71f4ec0135f50e6432921f95d8be7db3d664ce6b3f59be4bc132f47fb8d5f20cbc616717b76cc32ab6c0df179a3c4199'
+
'edf7d6eb62af51e46e2cd04c7545bf57c59629a947c434d5ad65c8f06c36562c2bb96404c615f1a8379d3ae1c4a9b7278d3c7899d2cb308d89425fe37b72db21'
 
'a3fd8f00430168f03dcbc4a5768ed788dd43140e365a882b601510f53f69704da04f24660157bb8a43125f5389528993732d99569d77d5f3358074e7ae36d4ca'
 
'557d015bca7008ce824111f235da67b7e0051a693aaab666e97b78e753ed7928b72274af03d7fde12033986b733d5f996faf2a4feb6ecf53f39accae31334930')
 validpgpkeys=('7168B983815A5EEF59A4ADFD2A3F414E736060BA')  # Damien Miller 

@@ -90,6 +101,7 @@ build() {
 --with-xauth=/usr/bin/xauth
 --with-pid-dir=/run
 --with-default-path='/usr/local/sbin:/usr/local/bin:/usr/bin'
+--without-zlib-version-check
   )
 
   cd $pkgname-$pkgver
@@ -116,6 +128,8 @@ package() {
 
   install -Dm644 ../sshdgenkeys.service -t "$pkgdir"/usr/lib/systemd/system/
   install -Dm644 ../sshd.service -t "$pkgdir"/usr/lib/systemd/system/
+  install -Dm644 ../ssh-agent.service -t "$pkgdir"/usr/lib/systemd/user/
+  install -Dm644 ../ssh-agent.socket -t "$pkgdir"/usr/lib/systemd/user/
   install -Dm644 ../sshd.conf -t "$pkgdir"/usr/lib/tmpfiles.d/
   install -Dm644 ../sshd.pam "$pkgdir"/etc/pam.d/sshd
 


=
ssh-agent.service
=
@@ -0,0 +1,19 @@
+# Requires SSH_AUTH_SOCK="$XDG_RUNTIME_DIR/ssh-agent.socket"
+# set in environment, handled for example in plasma via
+# /etc/xdg/plasma-workspace/env/ssh-agent.sh
+[Unit]
+ConditionEnvironment=!SSH_AGENT_PID
+Description=OpenSSH key agent
+Documentation=man:ssh-agent(1) man:ssh-add(1) man:ssh(1)
+Requires=ssh-agent.socket
+
+[Service]

[Git][archlinux/packaging/packages/openssh] Pushed new tag 9.4p1-3

2023-09-05 Thread David Runge (@dvzrv)


David Runge pushed new tag 9.4p1-3 at Arch Linux / Packaging / Packages / 
openssh

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/openssh/-/tree/9.4p1-3
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/zam-plugins] Pushed new tag 4.1-3

2023-09-02 Thread David Runge (@dvzrv)


David Runge pushed new tag 4.1-3 at Arch Linux / Packaging / Packages / 
zam-plugins

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/zam-plugins/-/tree/4.1-3
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/zam-plugins][main] 2 commits: Use alphabetically sorted bash arrays with one entry per line for better handling

2023-09-02 Thread David Runge (@dvzrv)


David Runge pushed to branch main at Arch Linux / Packaging / Packages / 
zam-plugins


Commits:
e4e773ef by David Runge at 2023-09-02T18:46:03+02:00
Use alphabetically sorted bash arrays with one entry per line for better 
handling

- - - - -
e49bd93d by David Runge at 2023-09-02T18:49:41+02:00
upgpkg: 4.1-3

Rebuild to fix typo causing creation of a broken XDG desktop file:
https://bugs.archlinux.org/task/79378

- - - - -


1 changed file:

- PKGBUILD


Changes:

=
PKGBUILD
=
@@ -4,12 +4,24 @@ pkgbase=zam-plugins
 pkgname=(zam-plugins{,-{clap,ladspa,lv2,standalone,vst,vst3}})
 pkgver=4.1
 _commit=f04276002b91eb63c3fbf6348290ea905f462f85  # refs/tags/4.0
-pkgrel=2
+pkgrel=3
 pkgdesc="Collection of audio plugins for high-quality processing"
 arch=(x86_64)
 url="https://github.com/zamaudio/zam-plugins;
 license=(GPL2)
-makedepends=(gcc-libs glibc gendesk git ladspa libglvnd libsamplerate libx11 
jack lv2 zita-convolver)
+makedepends=(
+  gcc-libs
+  glibc
+  gendesk
+  git
+  ladspa
+  libglvnd
+  libsamplerate
+  libx11
+  jack
+  lv2
+  zita-convolver
+)
 source=(
   $pkgname::git+https://github.com/zamaudio/$pkgname.git#tag=$_commit?signed
   git+https://github.com/distrho/dpf.git
@@ -29,9 +41,25 @@ b2sums=('SKIP'
 
'830efd881fe5f66ef51e13cf9a4026446aa185c8b161209e97212652771d1938c26eed4d9eb81849256f600ec01029f6a50dd98436856fa910aef11d22bc5715')
 validpgpkeys=('B86F8ABAEDB92DF68AE2BE40577C1739585FA920') # Damien Zammit 

 
-_names=(zamaximx2 zamulticomp zammulticompx2 zamautosat zamcomp
-zamcompx2 zamdelay zamdynamiceq zameq2 zamgeq31 zamgate zamgatex2
-zamgrains zamheadx2 zamphono zamtube zamverb)
+_names=(
+  zamaximx2
+  zamulticomp
+  zamulticompx2
+  zamautosat
+  zamcomp
+  zamcompx2
+  zamdelay
+  zamdynamiceq
+  zameq2
+  zamgeq31
+  zamgate
+  zamgatex2
+  zamgrains
+  zamheadx2
+  zamphono
+  zamtube
+  zamverb
+)
 
 _pick() {
   local p="$1" f d; shift



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/zam-plugins/-/compare/841d212612bc1680c7e72619b913c1227c929d46...e49bd93df889995b3f79e613f5b85f90e2d9510f

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/zam-plugins/-/compare/841d212612bc1680c7e72619b913c1227c929d46...e49bd93df889995b3f79e613f5b85f90e2d9510f
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/shadow][main] upgpkg: 4.13-3

2023-09-02 Thread David Runge (@dvzrv)


David Runge pushed to branch main at Arch Linux / Packaging / Packages / shadow


Commits:
b525b96c by David Runge at 2023-09-02T19:08:03+02:00
upgpkg: 4.13-3

Rebuild to change shadow.service to only fail on errors not on warnings:
https://bugs.archlinux.org/task/79216

- - - - -


2 changed files:

- PKGBUILD
- shadow.service


Changes:

=
PKGBUILD
=
@@ -4,7 +4,7 @@
 
 pkgname=shadow
 pkgver=4.13
-pkgrel=2
+pkgrel=3
 pkgdesc="Password and account management tool suite with support for shadow 
files and PAM"
 arch=(x86_64)
 url="https://github.com/shadow-maint/shadow;
@@ -41,7 +41,7 @@ 
sha512sums=('2949a728c3312bef13d23138d6b79caf402781b1cb179e33b5be546c1790971ec20
 
'3b8bec1dc5dfdc5a3b7b3a4579c05d7fc71ac80c87bdb35031820c2442efcae5dfcc97c763ca9430c1dc3f5d3827dc391999cb67e89d3758d31bdc694dff4601'
 
'fcedd59f0c1294ca03ff2553591058295073e9c795500f66e571e34635016898b999afa816c5994846e459bf743d2c7a358a5be1f561a86a75846df2112194e1'
 
'e4edf705dd04e088c6b561713eaa1afeb92f42ac13722bff037aede6ac5ad7d4d00828cfb677f7b1ff048db8b6788238c1ab6a71dfcfd3e02ef6cb78ae09a621'
-
'79afad34a698444e6971408d353ea7510aa2e3d0b93e096b2ce528748632a76084b4f69b64a97a1fd1d9942ce84165b0b82cfad828c5a5a9dca2e91f82839995'
+
'2c8689b52029f6aa27d75b8b05b0b36e2fc322cab40fdfbb50cdbe331f61bc84e8db20f012cf9af3de8c4e7fdb10c2d5a4925ca1ba3b70eb5627772b94da84b3'
 
'e9ffea021ee4031b9ad3a534bfb94dbf9d0dfd45a55ecac5dedb2453ea0c17fb80bbb9ad039686bc1f3349dc371977eb548e3a665c56531469c22f29fc4eced8')
 
b2sums=('315ab8a7e598aeefb50c11293e20cfa0982c3c3ae21c35ae243d09a4facf97a13c1d672990876e74ef94f5284402acf14997663743e2aaefa6cfc4369b7d24dc'
 'SKIP'
@@ -50,7 +50,7 @@ 
b2sums=('315ab8a7e598aeefb50c11293e20cfa0982c3c3ae21c35ae243d09a4facf97a13c1d672
 
'92474c0a9cd8bc4df08984a304c73122a9711f1e4c036361e1dcbc027b1e43e007d1e35cdd5db4295829603a097ab360adb66289c4b479a5d5ccee4947f72da7'
 
'aee9aaadae6d49872b4eb98334fbffee7a49b1625b81019927908ac79753364fdac4d87433fcd5d2d2327d7b65eddcfc2edabe7c6a2a67ad7b101ab0bf6deaad'
 
'5cfc936555aa2b2e15f8830ff83764dad6e11a80e2a102c5f2bd3b7c83db22a5457a3afdd182e3648c9d7d5bca90fa550f59576d0ac47a11a31dfb636cb18f2b'
-
'9b8946b14607cbe2f2abb8b616ed50d1ea737687b540f22c4ab451acec30aca86eea3400765dd78e0ab2577b5438a66d91507fc4afc6c0888ac4bc97381dd08d'
+
'a69191ab966f146c35e7e911e7e57c29fffd54436ea014aa8ffe0dd46aaf57c635d0a652b35916745c75d82b3fca7234366ea5f810b622e94730b45ec86f122c'
 
'd5bea0cfc2e6d3d1749c65440ca911533d41b6f8117fe09e9efec23524637cfa823d230303a7fbb45d3cd251bf8036d48b9b21049ced208f7ed191fcbd75e879')
 validpgpkeys=(66D0387DB85D320F8408166DB175CFA98F192AF2)  # Serge Hallyn 

 


=
shadow.service
=
@@ -5,7 +5,7 @@ After=systemd-sysusers.service
 [Service]
 CapabilityBoundingSet=CAP_DAC_READ_SEARCH
 # Always run both checks, but fail the service if either fails
-ExecStart=/bin/sh -c '/usr/bin/pwck -r || r=1; /usr/bin/grpck -r && exit $r'
+ExecStart=/bin/sh -c '/usr/bin/pwck -qr || r=1; /usr/bin/grpck -r && exit $r'
 Nice=19
 IOSchedulingClass=best-effort
 IOSchedulingPriority=7



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/shadow/-/commit/b525b96cb6a7554bbc698c6c254ac970b6d0dca4

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/shadow/-/commit/b525b96cb6a7554bbc698c6c254ac970b6d0dca4
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/shadow] Pushed new tag 4.13-3

2023-09-02 Thread David Runge (@dvzrv)


David Runge pushed new tag 4.13-3 at Arch Linux / Packaging / Packages / shadow

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/shadow/-/tree/4.13-3
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/khal][main] Fix typo in description (https://bugs.archlinux.org/task/79538).

2023-09-02 Thread David Runge (@dvzrv)


David Runge pushed to branch main at Arch Linux / Packaging / Packages / khal


Commits:
b81ddc7b by David Runge at 2023-09-03T00:20:45+02:00
Fix typo in description (https://bugs.archlinux.org/task/79538).

- - - - -


1 changed file:

- PKGBUILD


Changes:

=
PKGBUILD
=
@@ -9,7 +9,7 @@
 pkgname=khal
 pkgver=0.11.2
 pkgrel=1
-pkgdesc='CLI calendar application build around CalDAV'
+pkgdesc='CLI calendar application built around CalDAV'
 arch=('any')
 url="https://lostpackets.de/khal/;
 license=('MIT')



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/khal/-/commit/b81ddc7bc1340ce9fa77fd06bff0c88fc36f87af

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/khal/-/commit/b81ddc7bc1340ce9fa77fd06bff0c88fc36f87af
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/mympd] Pushed new tag 11.0.5-1

2023-09-03 Thread David Runge (@dvzrv)


David Runge pushed new tag 11.0.5-1 at Arch Linux / Packaging / Packages / mympd

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/mympd/-/tree/11.0.5-1
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/mympd][main] upgpkg: 11.0.5-1

2023-09-03 Thread David Runge (@dvzrv)


David Runge pushed to branch main at Arch Linux / Packaging / Packages / mympd


Commits:
62f932b1 by David Runge at 2023-09-03T15:43:40+02:00
upgpkg: 11.0.5-1

- - - - -


1 changed file:

- PKGBUILD


Changes:

=
PKGBUILD
=
@@ -2,7 +2,7 @@
 
 _name=myMPD
 pkgname=mympd
-pkgver=11.0.4
+pkgver=11.0.5
 pkgrel=1
 pkgdesc="A standalone and lightweight web-based MPD client"
 arch=(x86_64)
@@ -22,8 +22,8 @@ makedepends=(
   perl
 )
 
source=(https://github.com/jcorporation/$pkgname/archive/v$pkgver/$pkgname-v$pkgver.tar.gz)
-sha512sums=('7789d5e6dbc5eeba5704f772876f8a536b165aff0936b573307e55c3b6ac56ec6095bb4871f37cc96ada8fbf856fe5f28bff8f1bb09b095afc742fd6bb138b98')
-b2sums=('0e710bf1493dbe54853e1e67347094a57c4af41d6fe565d300616cf3206b69daeb21ede55321f4ac37647a558adc19d629bc43d920dc0a1493ad5494ae534697')
+sha512sums=('e68c3c0e38325f8990190415bbfcee150806ee96c56c7d46b9b5ad6550c30c969da4258f721c93c4d2a1337d68274d692ba02b8252443b36b1bed0fd47e630b5')
+b2sums=('986d9fb735f460dfeb633ed3d6d12141e527876d00cb70670ea0f5aa2285ef36f39d9b91f7f22783b25112f844a99df2759b4dbf6ec44edda5335172d0c536da')
 
 build() {
   local cmake_options=(



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/mympd/-/commit/62f932b197b1329f83aacfab5aea8c9d606e1ac3

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/mympd/-/commit/62f932b197b1329f83aacfab5aea8c9d606e1ac3
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/nfoview] Pushed new tag 1.99-1

2023-09-03 Thread David Runge (@dvzrv)


David Runge pushed new tag 1.99-1 at Arch Linux / Packaging / Packages / nfoview

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/nfoview/-/tree/1.99-1
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/nfoview][main] upgpkg: 1.99-1

2023-09-03 Thread David Runge (@dvzrv)


David Runge pushed to branch main at Arch Linux / Packaging / Packages / nfoview


Commits:
3c5971e3 by David Runge at 2023-09-03T16:22:07+02:00
upgpkg: 1.99-1

Add all direct dependencies.
Use bash arrays with one entry per line for better handling.
Use correct SPDX license identifier (GPL-3.0-or-later) for project.

- - - - -


1 changed file:

- PKGBUILD


Changes:

=
PKGBUILD
=
@@ -4,21 +4,42 @@
 # Contributor: VuDu 
 
 pkgname=nfoview
-pkgver=1.29
-_commit=84dc60c423506ad0a8411f3552429fb080f97260
-pkgrel=2
+pkgver=1.99
+_commit=839fbd127765b1d608e3587321e0464d97adb4a2  # refs/tags/1.99
+pkgrel=1
 pkgdesc="Simple NFO file viewer in GTK+ 3"
 arch=(any)
 url="https://otsaloma.io/nfoview/;
-license=(GPL3)
-depends=(gtk3 python-gobject)
-checkdepends=(python-pytest xorg-server-xvfb)
-makedepends=(git python-build python-installer python-setuptools python-wheel)
+license=(GPL-3.0-or-later)
+depends=(
+  gobject-introspection-runtime
+  gtk4
+  hicolor-icon-theme
+  pango
+  python
+  python-gobject
+)
+checkdepends=(
+  python-pytest
+  xorg-server-xvfb
+)
+makedepends=(
+  git
+  python-build
+  python-installer
+  python-setuptools
+  python-wheel
+)
 optdepends=('terminus-font: recommended font')
 
source=($pkgname::git+https://github.com/otsaloma/$pkgname.git#tag=$_commit?signed)
 sha512sums=('SKIP')
 validpgpkeys=('8DD6B3FCDAB33C91EA915B913A584A9504CACA67') # Osmo Salomaa 

 
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
+}
+
 build() {
   make -C $pkgname
 }



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/nfoview/-/commit/3c5971e38edad334c2fb248cf5cbd9fe7d2f6465

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/nfoview/-/commit/3c5971e38edad334c2fb248cf5cbd9fe7d2f6465
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/libcacard][main] upgpkg: 2.7.0-3

2023-09-03 Thread David Runge (@dvzrv)


David Runge pushed to branch main at Arch Linux / Packaging / Packages / 
libcacard


Commits:
0587260a by David Runge at 2023-09-03T18:46:35+02:00
upgpkg: 2.7.0-3

Rebuild to set current upstream url and correct license identifier.
Prevent libtool from overlinking everything.
Remove hardcoding.

- - - - -


1 changed file:

- PKGBUILD


Changes:

=
PKGBUILD
=
@@ -2,12 +2,17 @@
 
 pkgname=libcacard
 pkgver=2.7.0
-pkgrel=2
+pkgrel=3
 pkgdesc='(Common Access Card) library thar provides emulation of smart cards 
to a virtual card reader running in a guest virtual machine'
 arch=(x86_64)
-license=(GPL2)
-url='https://www.spice-space.org/page/Libcacard'
-depends=(nss glib2)
+license=(LGPL-2.1-or-later)
+url='https://gitlab.freedesktop.org/spice/libcacard'
+depends=(
+  glib2
+  glibc
+  nspr
+  nss
+)
 
source=(https://www.spice-space.org/download/libcacard/libcacard-$pkgver.tar.xz{,.asc})
 validpgpkeys=('F7DC50A57DFD52B94253295EF64907AC15B5C33D') #Jakub Jelen (work) 

 sha1sums=('85b85d33e5f2c68f3a792f09cae21de64edc91c0'
@@ -16,12 +21,13 @@ 
sha512sums=('347c13396e6777193e4e158321605410f4cbd90727c1ba8d85a1aac41d5ada96728
 'SKIP')
 
 build () {
-  cd libcacard-$pkgver
+  cd $pkgname-$pkgver
   ./configure --prefix=/usr
+  # prevent excessive overlinking due to libtool
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
   make
 }
 
 package() {
-  cd libcacard-$pkgver
-  make DESTDIR="$pkgdir" install
+  make DESTDIR="$pkgdir" install -C $pkgname-$pkgver
 }



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/libcacard/-/commit/0587260aede7d43a2e49c39601507dc13723eebc

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/libcacard/-/commit/0587260aede7d43a2e49c39601507dc13723eebc
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/libcacard] Pushed new tag 2.7.0-3

2023-09-03 Thread David Runge (@dvzrv)


David Runge pushed new tag 2.7.0-3 at Arch Linux / Packaging / Packages / 
libcacard

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/libcacard/-/tree/2.7.0-3
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/python-appdirs][main] 3 commits: Switch to upstream provided source tarballs

2023-09-03 Thread David Runge (@dvzrv)


David Runge pushed to branch main at Arch Linux / Packaging / Packages / 
python-appdirs


Commits:
464ca050 by David Runge at 2023-09-03T20:42:55+02:00
Switch to upstream provided source tarballs

- - - - -
de969125 by David Runge at 2023-09-03T20:46:02+02:00
Switch to PEP517 and running unittest directly.

- - - - -
475a12c7 by David Runge at 2023-09-03T20:47:04+02:00
upgpkg: 1.4.4-9

Rebuild to switch to PEP517 (https://bugs.archlinux.org/task/78230).
Run unittest directly and do not use setup.py.

- - - - -


1 changed file:

- PKGBUILD


Changes:

=
PKGBUILD
=
@@ -1,31 +1,38 @@
 # Maintainer: Felix Yan 
 # Contributor: Tobias Roettger 
 
+_name=appdirs
 pkgname=python-appdirs
 pkgver=1.4.4
-pkgrel=8
+pkgrel=9
 pkgdesc='A small Python module for determining appropriate platform-specific 
dirs, e.g. a "user data dir".'
 arch=('any')
 url="https://github.com/ActiveState/appdirs;
 license=('MIT')
 depends=('python')
-makedepends=('python-setuptools')
-source=("https://pypi.io/packages/source/a/appdirs/appdirs-$pkgver.tar.gz;)
-sha512sums=('8b0cdd9fd471d45b186aa47607691cf378dabd3edc7b7026a57bd6d6f57698e86f440818a5e23ba4288b35d6bb8cb6eb0106eae8aab09d8863ee15025d300883')
+makedepends=(
+  'python-build'
+  'python-installer'
+  'python-setuptools'
+  'python-wheel'
+)
+source=($_name-$pkgver.tar.gz::$url/archive/refs/tags/$pkgver.tar.gz)
+sha512sums=('4c0e1e8dcd3f91b8b2d215b3f1e2ffaa85137fe054d07d3a2d442b1419e3b44e96fdea1620bd000bd3f4744f71b71f07280094f073df0ff008fac902af614656')
+b2sums=('cb9466f4a7f7c1d6f5b6d7ca031820ec4d3450afcaa8ba571e35387c3109ede4e2afbf2c1141a9d01d13798f55524d5efd3fa12546a9378abbda405353938d79')
 
 build() {
-  cd appdirs-$pkgver
-  python setup.py build
+  cd $_name-$pkgver
+  python -m build --wheel --no-isolation
 }
 
 check() {
-  cd appdirs-$pkgver
-  python setup.py test
+  cd $_name-$pkgver
+  python -m unittest discover -vs test
 }
 
 package() {
-  cd appdirs-$pkgver
-  python setup.py install --root="$pkgdir/" --optimize=1
+  cd $_name-$pkgver
+  python -m installer --destdir="$pkgdir" dist/*.whl
   install -Dm644 LICENSE.txt -t "$pkgdir"/usr/share/licenses/$pkgname/
 }
 



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python-appdirs/-/compare/8df72cd9c2b4222f32d899342fe48d5e876e173d...475a12c73d7c53fc81da9fb70f65f06f1f321d14

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python-appdirs/-/compare/8df72cd9c2b4222f32d899342fe48d5e876e173d...475a12c73d7c53fc81da9fb70f65f06f1f321d14
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/alsa-lib][main] upgpkg: 1.2.10-1

2023-09-03 Thread David Runge (@dvzrv)


David Runge pushed to branch main at Arch Linux / Packaging / Packages / 
alsa-lib


Commits:
539fcaa7 by David Runge at 2023-09-03T15:57:18+02:00
upgpkg: 1.2.10-1

- - - - -


1 changed file:

- PKGBUILD


Changes:

=
PKGBUILD
=
@@ -2,7 +2,7 @@
 # Contributor: judd 
 
 pkgname=alsa-lib
-pkgver=1.2.9
+pkgver=1.2.10
 pkgrel=1
 pkgdesc="An alternative implementation of Linux sound support"
 arch=(x86_64)
@@ -19,9 +19,9 @@ provides=(
 )
 install=$pkgname.install
 
source=(https://www.alsa-project.org/files/pub/lib/$pkgname-$pkgver.tar.bz2{,.sig})
-sha512sums=('8f39c8166c3648d46695a9287d9b9a35e5bfffed11d79e868ff7aba92d0fee792e82784186ebeb2a3e44d6b617c916025c7fce9a802565bb8e0dc8fdcce2311a'
+sha512sums=('4ccbd1dc5a612044571c26290923009e4c3f7959b30a5d0bed47daa68bbefaff9059c4f0fa3bc16f22c1eed2d36f079139369f40243da5921ae4de02a4541939'
 'SKIP')
-b2sums=('ec0c6966802196016679652292a579c6301cce33a2e887fce79cdb80629b6df047269787445cf0645e6cf43d3d2aae8fa57ddad5ab79fc254ee65a0ed695f449'
+b2sums=('b2e4f8431e61f5bb56b2b5d124e67d5a68bbca3c647bebfa93f5e5ff092ec9ef3f6cb6315801fcd93e21151784814ff238d357313b8b44f32d4e7c9ee565388f'
 'SKIP')
 validpgpkeys=('F04DF50737AC1A884C4B3D718380596DA6E59C91') # ALSA Release Team 
(Package Signing Key v1) 
 



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/alsa-lib/-/commit/539fcaa7b302eef4bf7c05e6e469cd149c8ebda3

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/alsa-lib/-/commit/539fcaa7b302eef4bf7c05e6e469cd149c8ebda3
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/alsa-lib] Pushed new tag 1.2.10-1

2023-09-03 Thread David Runge (@dvzrv)


David Runge pushed new tag 1.2.10-1 at Arch Linux / Packaging / Packages / 
alsa-lib

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/alsa-lib/-/tree/1.2.10-1
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/filesystem][main] Add valid locations in /usr/bin to shells (https://bugs.archlinux.org/task/33677).

2023-09-03 Thread David Runge (@dvzrv)


David Runge pushed to branch main at Arch Linux / Packaging / Packages / 
filesystem


Commits:
db8fce05 by David Runge at 2023-09-03T16:40:33+02:00
Add valid locations in /usr/bin to shells 
(https://bugs.archlinux.org/task/33677).

- - - - -


1 changed file:

- shells


Changes:

=
shells
=
@@ -4,3 +4,6 @@
 /bin/sh
 /bin/bash
 /bin/rbash
+/usr/bin/sh
+/usr/bin/bash
+/usr/bin/rbash



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/filesystem/-/commit/db8fce055a018aa7e581ff5901472ca350006d4f

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/filesystem/-/commit/db8fce055a018aa7e581ff5901472ca350006d4f
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/python-django-environ] Pushed new tag 0.11.2-1

2023-09-03 Thread David Runge (@dvzrv)


David Runge pushed new tag 0.11.2-1 at Arch Linux / Packaging / Packages / 
python-django-environ

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python-django-environ/-/tree/0.11.2-1
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/python-django-environ][main] 3 commits: Use alphabetically sorted bash arrays with one entry per line for better handling

2023-09-03 Thread David Runge (@dvzrv)


David Runge pushed to branch main at Arch Linux / Packaging / Packages / 
python-django-environ


Commits:
c86bd554 by David Runge at 2023-09-03T16:36:16+02:00
Use alphabetically sorted bash arrays with one entry per line for better 
handling

- - - - -
e8c47123 by David Runge at 2023-09-03T16:44:39+02:00
Switch to upstream provided source tarballs

- - - - -
25020d9a by David Runge at 2023-09-03T16:45:41+02:00
upgpkg: 0.11.2-1

- - - - -


1 changed file:

- PKGBUILD


Changes:

=
PKGBUILD
=
@@ -2,19 +2,27 @@
 
 _name=django-environ
 pkgname=python-django-environ
-pkgver=0.10.0
-pkgrel=2
+pkgver=0.11.2
+pkgrel=1
 pkgdesc="Utilize 12factor inspired environment variables to configure your 
Django application"
 arch=(any)
 url="https://github.com/joke2k/django-environ;
 license=(MIT)
-depends=(python python-django)
-makedepends=(python-build python-installer python-setuptools python-wheel)
+depends=(
+  python
+  python-django
+)
+makedepends=(
+  python-build
+  python-installer
+  python-setuptools
+  python-wheel
+)
 checkdepends=(python-pytest)
 optdepends=('python-simplejson: for an alternative JSON implementation')
-source=(https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz)
-sha512sums=('6631c959c61754f818a8b2c662e8b265646f29d56d4f4af27dff803445194f7f15cb02e45ced76d508a5fe67773c6e46108791fa3cb3dc6e16c74564c72acefc')
-b2sums=('53a39107f47c4d66d2120d5defb3690711b6ce2681f00e00619404f605e3d6b6d61a161020a5eac6b10886a5aef4f7abd2a4b4ad88ee10afaec9c74c23a4eb16')
+source=($url/releases/download/v$pkgver/$_name-$pkgver.tar.gz)
+sha512sums=('d024858514b2a6edd99a7a2f1ae26e9e7cc007b1454a1c3f2cd2ae061b4e961f16c4acc8c77ee6449e4b11b3d98c72aae849e337339cb5e275b85077a02b59d0')
+b2sums=('bcd53d13b2b936ba499e1481a46101d54b35f79f83584aa447fc222503e19da41545e7281cb6287351350250c4b728d50ef2be797dabf17672799f02976d3e1e')
 
 build() {
   cd $_name-$pkgver



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python-django-environ/-/compare/1038535cb746da14d1eb28adecc45b212f5e17d9...25020d9a40471898a6635f9cdfab60e310fb719d

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python-django-environ/-/compare/1038535cb746da14d1eb28adecc45b212f5e17d9...25020d9a40471898a6635f9cdfab60e310fb719d
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/gnupg] Pushed new tag 2.2.41-2

2023-09-03 Thread David Runge (@dvzrv)


David Runge pushed new tag 2.2.41-2 at Arch Linux / Packaging / Packages / gnupg

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/gnupg/-/tree/2.2.41-2
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/gnupg][main] upgpkg: 2.2.41-2

2023-09-03 Thread David Runge (@dvzrv)


David Runge pushed to branch main at Arch Linux / Packaging / Packages / gnupg


Commits:
999ef9a6 by David Runge at 2023-09-03T15:08:36+02:00
upgpkg: 2.2.41-2

Add all direct library dependencies: https://bugs.archlinux.org/task/77287
Add more specific description for pcsclite as optional dependency.

- - - - -


1 changed file:

- PKGBUILD


Changes:

=
PKGBUILD
=
@@ -8,7 +8,7 @@
 
 pkgname=gnupg
 pkgver=2.2.41
-pkgrel=1
+pkgrel=2
 pkgdesc='Complete and free implementation of the OpenPGP standard'
 arch=('x86_64')
 url='https://www.gnupg.org/'
@@ -21,18 +21,19 @@ depends=(
   'libgpg-error'
   'libksba'
   'libassuan' 'libassuan.so'
+  'libldap'
+  'libusb'
   'npth' 'libnpth.so'
   'pinentry'
   'readline' 'libreadline.so'
+  'sh'
   'sqlite'
   'zlib'
 )
-makedepends=('libldap' 'libusb-compat' 'pcsclite')
+makedepends=('pcsclite')
 checkdepends=('openssh')
 optdepends=(
-  'libldap: gpg2keys_ldap'
-  'libusb-compat: scdaemon'
-  'pcsclite: scdaemon'
+  'pcsclite: for using scdaemon not with the gnupg internal card driver'
 )
 install=$pkgname.install
 source=(



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/gnupg/-/commit/999ef9a69693c9ce3f1d5993fe632bf5e07910ff

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/gnupg/-/commit/999ef9a69693c9ce3f1d5993fe632bf5e07910ff
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/containers-common][main] upgpkg: 1:0.55.4-1

2023-09-03 Thread David Runge (@dvzrv)


David Runge pushed to branch main at Arch Linux / Packaging / Packages / 
containers-common


Commits:
390a29d7 by David Runge at 2023-09-03T16:54:00+02:00
upgpkg: 1:0.55.4-1

- - - - -


1 changed file:

- PKGBUILD


Changes:

=
PKGBUILD
=
@@ -1,13 +1,13 @@
 # Maintainer: David Runge 
 
 pkgname=containers-common
-pkgver=0.55.3
+pkgver=0.55.4
 pkgrel=1
 epoch=1
 _image_pkgver=5.26.1
-_podman_pkgver=4.6.1
+_podman_pkgver=4.6.2
 _shortnames_pkgver=2023.02.20
-_skopeo_pkgver=1.13.2
+_skopeo_pkgver=1.13.3
 _storage_pkgver=1.48.0
 pkgdesc="Configuration files and manpages for containers"
 arch=(any)
@@ -36,18 +36,18 @@ source=(
   mounts.conf
   $pkgname-0.48.0-init_path.patch
 )
-sha512sums=('6420ca1b0b8c010db7481ce5219c67a0e38aa074f74b2d41c7995ed147a9acc38787d939b4a7c1193cb52f29dfb730c57a55a5f3d12d550032d05c1f4517adff'
+sha512sums=('443b64c6d2b5bac45f27f4c6d59db40c38064210e6acfb250fb208806fe9aaca5630da3fa5589643b1320ea408f531a825f55dfc58433cc9c0cece1f15ef99fc'
 
'fa10e98acca566586add698ab9f269da0d2eff72480dd9dc027b0b39b66df7b7e0799ab76ce17e9a93f2117ef124226d48fd56cffb124d8a5f89b883f61b60cb'
-
'e875fd8f40be94a589ac2404e82e282490bdd639b75943f669feadf81a26abf9a1bf6649be7d9d2dd07e62df58af7d495c673f30c98cc27a2cf6e7892daf3f28'
-
'8d321fba452784e3704c058113eb29c76a26e71aa19d0ba2c48fa077e0b74a64a1b8c4ba121d35a1d9ba886a5c28f2e66891e3f592654f2f738d8659443179b3'
+
'0c89ff3df21e9ca0eb6891600eb86c47463a53bd004d1564cc4661f0ea303dc245b47467d586db29587f960d5c78e0326b7f33ef87ba95e142e3320c56ceaa99'
+
'3e706b9600ec295b4abe71a5f649535ff2642889331a2958408b4852eb366d8119ec65b1f40c8b2f79b0f28e1079e2b203370422af0cc92e9d3fcf0f83c151e4'
 
'30c26b40f2858622ce4f63d21cee3ff626ac17f57ddcaf23a2d2d16b785259587cb7eda13309dc145860c3dd847b8546863eb0a32e63609586857c63e44b638a'
 
'856dbbeb2acda276e9605bd1ecec0f8d65952c597ee2af61dd8909d7d3c04e5ef06c40b69ec4a98f79e623c536850f614c1b0af3a19637e300e7d3a285933193'
 
'11fa515bbb0686d2b49c4fd2ab35348cb19f9c6780d6eb951a33b07ed7b7c72a676627f36e8c74e1a2d15e306d4537178f0e127fd3490f6131d078e56b46d5e1'
 
'4a6526d01f192f0eb4dcbd28c019a2b0db6dc2128af644e8e89992e5dcfa45a02c739b06ee01e22606b5cb847213c002f8ab5f87a576846ac73f73eed9b2b469')
-b2sums=('9aacbe6647dec5d90c798f339dac0361d3eb2ba8b3cb7cb370878b5a7a691718214faf6aba2dcd43b8a262b0c5f2b44f9ca401b551136ff1a1ddfcaef73aa12f'
+b2sums=('c3ad635fae8254c54aff5bf1bff79ec398649eb6ef705d4d6b9b38b2f42421b88d86796688afc15fe2e0940cc47b6efd9c3244f158196c7b7aacdc1805986148'
 
'1561667128b0ba59dcd07942caff35c97e597c42fec474f1fe2d464c0fb506ecde3c31a77d856ec1972d950ddfdeaf374d589d10c80f44bd26f0b15d01e56b02'
-
'5775a5fb8214ba73f3ea22edaab697c447efa3e7d03aacc7a925e242abd5637b04a7718fb0ec0605fb8c730e50d632d182897474d9b7b0ed838756a5cf329acb'
-
'9e17254a8b60625ce6014038b8ce3f1cab84f0298b88bab4709fc350138eaf3fd803b7714b41721239f330e9b85a285f71e671d6e2dcb473f821759606c99edf'
+
'3deda9f17832ffa2c33d7ce05a97d184fbf2a0dda3f421f4c028f8acb306405a1e948cd124d1b897b6955d6b83eec0312510fdf1c97d6729bb434caa2caa3e82'
+
'a1084e3b5c3b8624a9dfca3f473b131333b20839c1f5872426c6efb3b0c0c02584ee2c4076895af94e77cf6799583db271883115902a8887c3567a42a8b0c056'
 
'd41afe40c06794c0f82c9dbb64f7ed689acbc85d4a1f1a136ac26d30edc9dbc2ece4f9d694391c0f416b64126d4a92d25dcc2fe4e10cabc607bd158faeb3e18d'
 
'165a4c51bd284078990c94059145bb6b4bd5de4d8595eb2ccd2acc6fe8561e7edc300b7edadc684675ee281d7ada1c3a6d5aa0117c640ec22c2d2ef7e46486b5'
 
'2f4b0af3271103362a898e7fcc3ec05f06755902ad664ac3107bb8debb8b2ac0d50de311d5fc651279a817a56e3ff05864a7e77c0d8fc628ff7411bfb98c9b69'



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/containers-common/-/commit/390a29d733561d3996bad280864bbd2274a5e2e6

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/containers-common/-/commit/390a29d733561d3996bad280864bbd2274a5e2e6
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/containers-common] Pushed new tag 1-0.55.4-1

2023-09-03 Thread David Runge (@dvzrv)


David Runge pushed new tag 1-0.55.4-1 at Arch Linux / Packaging / Packages / 
containers-common

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/containers-common/-/tree/1-0.55.4-1
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/metalog] Pushed new tag 20230719-1

2023-09-03 Thread David Runge (@dvzrv)


David Runge pushed new tag 20230719-1 at Arch Linux / Packaging / Packages / 
metalog

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/metalog/-/tree/20230719-1
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/metalog][main] 3 commits: Switch to correct SPDX license identifier for the project (GPL-2.0-only).

2023-09-03 Thread David Runge (@dvzrv)


David Runge pushed to branch main at Arch Linux / Packaging / Packages / metalog


Commits:
e2ec9331 by David Runge at 2023-09-03T19:20:47+02:00
Switch to correct SPDX license identifier for the project (GPL-2.0-only).

- - - - -
defcad2f by David Runge at 2023-09-03T19:22:27+02:00
Consolidate dependencies (https://bugs.archlinux.org/task/79136)

- - - - -
d01a8018 by David Runge at 2023-09-03T19:23:35+02:00
upgpkg: 20230719-1

Consolidate dependencies.
Set correct license identifier

- - - - -


1 changed file:

- PKGBUILD


Changes:

=
PKGBUILD
=
@@ -2,18 +2,21 @@
 # Contributor: Tom Newsom 
 
 pkgname=metalog
-pkgver=20220214
+pkgver=20230719
 pkgrel=1
 pkgdesc="A modern replacement for syslogd and klogd"
 url="http://metalog.sourceforge.net;
-license=('GPL')
+license=('GPL-2.0-only')
 arch=('x86_64')
 makedepends=('autoconf-archive')
-depends=('pcre')
+depends=(
+  'glibc'
+  'pcre2'
+)
 provides=('logger')
 backup=('etc/metalog.conf')
 source=("https://github.com/hvisage/metalog/archive/metalog-${pkgver}.tar.gz; 
'metalog.service')
-sha256sums=('3a9dd6f1460d90296771c81aa71fc0f45dd25ef22af63f48e6cbe5422a88f3bf'
+sha256sums=('563b41409ee9e396c3709f002b59ccd9aff901b7d7e3adee6344e4b599a02105'
 'd6e51d73683d2d460f9b9cf253f85118a6c63266d0d3a161100f80f148f4c430')
 
 build() {



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/metalog/-/compare/8614a70d4abae5d3a5b30e066b73e2c97aff24e6...d01a80180335cb4183e748dbe0b5435fe594a29a

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/metalog/-/compare/8614a70d4abae5d3a5b30e066b73e2c97aff24e6...d01a80180335cb4183e748dbe0b5435fe594a29a
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/zita-resampler][main] 3 commits: Use alphabetically sorted bash arrays with one entry per line for better handling

2023-09-03 Thread David Runge (@dvzrv)


David Runge pushed to branch main at Arch Linux / Packaging / Packages / 
zita-resampler


Commits:
25a0f0a1 by David Runge at 2023-09-03T15:47:37+02:00
Use alphabetically sorted bash arrays with one entry per line for better 
handling

- - - - -
5bf71fb7 by David Runge at 2023-09-03T15:47:59+02:00
Switch to correct SPDX license identifier for the project (GPL-3.0-or-later).

- - - - -
c24fe8d0 by David Runge at 2023-09-03T15:48:53+02:00
upgpkg: 1.11.2-1

- - - - -


1 changed file:

- PKGBUILD


Changes:

=
PKGBUILD
=
@@ -3,17 +3,24 @@
 # Contributor: Philipp Überbacher 
 
 pkgbase=zita-resampler
-pkgname=(zita-resampler zita-resampler-docs)
-pkgver=1.10.1
+pkgname=(
+  zita-resampler
+  zita-resampler-docs
+)
+pkgver=1.11.2
 pkgrel=1
 pkgdesc="A C++ library for resampling audio signals"
 arch=(x86_64)
 url="https://kokkinizita.linuxaudio.org/linuxaudio;
-license=(GPL3)
-makedepends=(gcc-libs glibc libsndfile)
+license=(GPL-3.0-or-later)
+makedepends=(
+  gcc-libs
+  glibc
+  libsndfile
+)
 source=($url/downloads/$pkgname-$pkgver.tar.xz)
-sha512sums=('ba95286b0744df393194f4f94a8aad62f6c088cf80f6be71482ed55beef6503a9bab6644f2565b69002247611fcf0fb6561fc0072578466a0133311721b43cf5')
-b2sums=('b8871899b7e6cac9b46df3c45c5bb1d8e9c9edd41bcbc5944098d9c4eee2ff4e4d216f97b3bfa96ac43082b5333de26201d6cba9eaa152efd20e8c5017478391')
+sha512sums=('1598c9ead4bf858d3a11677c9512932077e1d0b83588682eba402820936fa1cfc5fe1112abbecd945469b4ae2f7a6f59938a5fbb0fdd79de3b0a3a73703b03dd')
+b2sums=('627b309b38b238902b1cad2cb0963d0182f8f4cc4bc72efcd2b9ecc9810f019968c141e31ffb94110e8c4ca781e1c57b7d3393a3d4699b3f90873958b34ce47c')
 
 prepare() {
   cd $pkgname-$pkgver



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/zita-resampler/-/compare/184959678514613eebf6363834cf8557ecf79e21...c24fe8d00f17566522bd27a771567f5ecb741450

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/zita-resampler/-/compare/184959678514613eebf6363834cf8557ecf79e21...c24fe8d00f17566522bd27a771567f5ecb741450
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/zita-resampler] Pushed new tag 1.11.2-1

2023-09-03 Thread David Runge (@dvzrv)


David Runge pushed new tag 1.11.2-1 at Arch Linux / Packaging / Packages / 
zita-resampler

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/zita-resampler/-/tree/1.11.2-1
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/python-gitpython] Pushed new tag 3.1.33-1

2023-09-03 Thread David Runge (@dvzrv)


David Runge pushed new tag 3.1.33-1 at Arch Linux / Packaging / Packages / 
python-gitpython

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python-gitpython/-/tree/3.1.33-1
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/alsa-ucm-conf] Pushed new tag 1.2.10-1

2023-09-03 Thread David Runge (@dvzrv)


David Runge pushed new tag 1.2.10-1 at Arch Linux / Packaging / Packages / 
alsa-ucm-conf

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/alsa-ucm-conf/-/tree/1.2.10-1
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/alsa-ucm-conf][main] upgpkg: 1.2.10-1

2023-09-03 Thread David Runge (@dvzrv)


David Runge pushed to branch main at Arch Linux / Packaging / Packages / 
alsa-ucm-conf


Commits:
a0479778 by David Runge at 2023-09-03T15:55:10+02:00
upgpkg: 1.2.10-1

- - - - -


1 changed file:

- PKGBUILD


Changes:

=
PKGBUILD
=
@@ -2,16 +2,16 @@
 # Contributor: Jan Alexander Steffens (heftig) 
 
 pkgname=alsa-ucm-conf
-pkgver=1.2.9
+pkgver=1.2.10
 pkgrel=1
 pkgdesc="ALSA Use Case Manager configuration (and topologies)"
 arch=(any)
 url="https://alsa-project.org/;
 license=(BSD)
 
source=(https://www.alsa-project.org/files/pub/lib/$pkgname-$pkgver.tar.bz2{,.sig})
-sha512sums=('3aced4d4df76044a5525f1217851e05f7ad177389d2008e3e3dd0fb4d2cf72cd0897b140659a7729cc37d5b737c2d0cf5b607df4f576647044accd560d8cb87b'
+sha512sums=('172956a2c127e9afa5be9c6ada43bfa9fda825823f8f6acbe252edef3381afe3adfa3299c1419f04375599be7721a551c6800be99db44b091611aeb824ffcd72'
 'SKIP')
-b2sums=('fe71790aa8658ab12378baa55f95a03aaebd3eb0aef2535b65b89884de6cb404a75b44fd238d2089e0a005ca81720f3c44d1912452908e97aa75fcda513908cf'
+b2sums=('215842f1f59c2dea5e3f3fe880dc49d6263998746a50c2591b8a9786ead3afae2c713e179ff6e8caa518b3a8516a1b031872c1fad2a17fbd3afbb0390a803693'
 'SKIP')
 validpgpkeys=('F04DF50737AC1A884C4B3D718380596DA6E59C91') # ALSA Release Team 
(Package Signing Key v1) 
 



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/alsa-ucm-conf/-/commit/a04797786010e7a9a76097fa78aacb098426d933

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/alsa-ucm-conf/-/commit/a04797786010e7a9a76097fa78aacb098426d933
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/python-gitpython][main] upgpkg: 3.1.33-1

2023-09-03 Thread David Runge (@dvzrv)


David Runge pushed to branch main at Arch Linux / Packaging / Packages / 
python-gitpython


Commits:
1049b098 by David Runge at 2023-09-03T15:54:48+02:00
upgpkg: 3.1.33-1

Add pkgver() function to properly set version.

- - - - -


1 changed file:

- PKGBUILD


Changes:

=
PKGBUILD
=
@@ -5,8 +5,8 @@
 _name=gitpython
 pkgdesc="A python library used to interact with Git repositories"
 pkgname=python-gitpython
-_commit=5598d37f64905a5906ba16975b53b59c0ab5381b  # refs/tags/3.1.32
-pkgver=3.1.32
+_commit=c1c877b0ca1cd8429c6b8bd9d8a742360f995160  # refs/tags/3.1.33
+pkgver=3.1.33
 pkgrel=1
 url="https://github.com/gitpython-developers/gitpython;
 license=(BSD)
@@ -34,6 +34,11 @@ sha512sums=('SKIP')
 b2sums=('SKIP')
 validpgpkeys=('27C50E7F590947D7273A741E85194C08421980C9') # Sebastian Thiel 
(In Rust I trust!) 
 
+pkgver() {
+  cd $_name
+  git describe --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
+}
+
 build() {
   cd $_name
   python -m build --wheel --no-isolation



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python-gitpython/-/commit/1049b09805474250f151c85ba60260adf24282c7

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python-gitpython/-/commit/1049b09805474250f151c85ba60260adf24282c7
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/licenses] Pushed new tag 20230903-1

2023-09-03 Thread David Runge (@dvzrv)


David Runge pushed new tag 20230903-1 at Arch Linux / Packaging / Packages / 
licenses

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/licenses/-/tree/20230903-1
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/alsa-utils] Pushed new tag 1.2.10-1

2023-09-03 Thread David Runge (@dvzrv)


David Runge pushed new tag 1.2.10-1 at Arch Linux / Packaging / Packages / 
alsa-utils

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/alsa-utils/-/tree/1.2.10-1
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/alsa-utils][main] upgpkg: 1.2.10-1

2023-09-03 Thread David Runge (@dvzrv)


David Runge pushed to branch main at Arch Linux / Packaging / Packages / 
alsa-utils


Commits:
b7cc46e7 by David Runge at 2023-09-03T16:00:06+02:00
upgpkg: 1.2.10-1

- - - - -


1 changed file:

- PKGBUILD


Changes:

=
PKGBUILD
=
@@ -3,7 +3,7 @@
 # Contributor: judd 
 
 pkgname=alsa-utils
-pkgver=1.2.9
+pkgver=1.2.10
 pkgrel=1
 pkgdesc="Advanced Linux Sound Architecture - Utilities"
 arch=(x86_64)
@@ -32,9 +32,9 @@ optdepends=(
 # we require /var/lib/alsa for state file
 options=(emptydirs)
 
source=(https://www.alsa-project.org/files/pub/utils/$pkgname-$pkgver.tar.bz2{,.sig})
-sha512sums=('f46e13fd57ed05ee38d3fa655e57b14335ecf0664dbe03275808383d87d28df153a81151e2e9d8786625f09929c567c89e145508a706a70eeb91ac1b11fb2fd4'
+sha512sums=('22adedf6d491d7768d24f054262a9c12bc952049db8374e104c0477ebf84266dcbeb0a2a3a1765b89958073d341f64dedbae63e3cae66f4983a0424e5cb3243f'
 'SKIP')
-b2sums=('9d75f63c7ff8b0d7ee835a1ad8fc242dee9b59770b1ad0ff9cd233caf50ac844323fb2ebb8e649f03a0a30a161ec72cba472ac79e390c3f0eb6e2a184d8f576c'
+b2sums=('077b4ad090c1ab40dd4fa22db01ae2a080ca849a5564dfe612654993297c80bd3584541c7e68aaad56c4c05538ba0de449e4677b1c4a9dfe56d8e11706c4ca35'
 'SKIP')
 validpgpkeys=('F04DF50737AC1A884C4B3D718380596DA6E59C91') # ALSA Release Team 
(Package Signing Key v1) 
 



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/alsa-utils/-/commit/b7cc46e71410bbb887b7e513fe9016b4753355e8

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/alsa-utils/-/commit/b7cc46e71410bbb887b7e513fe9016b4753355e8
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/python-hypothesis] Pushed new tag 6.83.0-1

2023-09-03 Thread David Runge (@dvzrv)


David Runge pushed new tag 6.83.0-1 at Arch Linux / Packaging / Packages / 
python-hypothesis

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python-hypothesis/-/tree/6.83.0-1
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/python-hypothesis][main] upgpkg: 6.83.0-1

2023-09-03 Thread David Runge (@dvzrv)


David Runge pushed to branch main at Arch Linux / Packaging / Packages / 
python-hypothesis


Commits:
869974c4 by David Runge at 2023-09-03T16:35:10+02:00
upgpkg: 6.83.0-1

- - - - -


1 changed file:

- PKGBUILD


Changes:

=
PKGBUILD
=
@@ -4,7 +4,7 @@
 _name=hypothesis
 _alt_name="${_name}-python"
 pkgname=python-hypothesis
-pkgver=6.82.7
+pkgver=6.83.0
 _version="${_alt_name}-${pkgver}"
 pkgrel=1
 pkgdesc="Advanced Quickcheck style testing library for Python"
@@ -56,8 +56,8 @@ optdepends=(
   'python-rich: for CLI'
 )
 source=("$_name-$_version.tar.gz::$_url/archive/$_version.tar.gz")
-sha512sums=('b26d459a1b7c5f363830b20d4787f3e7bbac647eb82b94d8d02be3337f77707c6c4de1676b5fb0fabb049b0becab1a73191967ee435cbc096f797fca8cfb0a01')
-b2sums=('ccb35d84bd9fe6b68f396575ed7f55ad4a615870bcfd881e60a6d9813b5713f573d947594c553bd408c9d8709502f5323382a77662a26238114c414feb3d')
+sha512sums=('b68f8e6a4d4aae138ce1bf30fde1870cd23d80dde583a0a758b1ac1baf949bcac8622770ae01b761d0760dc63bba80d630e8cd4ba83174ba6d0924a41a7f7c9e')
+b2sums=('ec878cbd6def0cfd8b8c638775c00e42be30f5129f0083544260be1e2123756266bde67cc1ef3b49a6d47c7827eec7bfe2695dfc113d0af9c205071e6d3c2cf8')
 
 build() {
   cd $_name-$_version/$_alt_name



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python-hypothesis/-/commit/869974c4c7d16b805812d7affae0722e231e8c94

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python-hypothesis/-/commit/869974c4c7d16b805812d7affae0722e231e8c94
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/bash][main] Add /bin and /usr/bin locations for sh and bash for /etc/shells...

2023-09-03 Thread David Runge (@dvzrv)


David Runge pushed to branch main at Arch Linux / Packaging / Packages / bash


Commits:
20244daa by David Runge at 2023-09-03T16:56:16+02:00
Add /bin and /usr/bin locations for sh and bash for /etc/shells 
(https://bugs.archlinux.org/task/33677)

- - - - -


1 changed file:

- bash.install


Changes:

=
bash.install
=
@@ -1,5 +1,9 @@
 post_upgrade() {
+   grep -qe '^/bin/bash$' etc/shells || echo '/bin/bash' >> etc/shells
+   grep -qe '^/usr/bin/bash$' etc/shells || echo '/usr/bin/bash' >> 
etc/shells
grep -qe '^/bin/rbash$' etc/shells || echo '/bin/rbash' >> etc/shells
grep -qe '^/usr/bin/rbash$' etc/shells || echo '/usr/bin/rbash' >> 
etc/shells
+   grep -qe '^/bin/sh$' etc/shells || echo '/bin/sh' >> etc/shells
+   grep -qe '^/usr/bin/sh$' etc/shells || echo '/usr/bin/sh' >> etc/shells
 }
 



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/bash/-/commit/20244daa4cca1e08f0d01db1bf68908176a5aa7e

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/bash/-/commit/20244daa4cca1e08f0d01db1bf68908176a5aa7e
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/python][main] Add more generic description (https://bugs.archlinux.org/task/78165)

2023-09-03 Thread David Runge (@dvzrv)


David Runge pushed to branch main at Arch Linux / Packaging / Packages / python


Commits:
e74309eb by David Runge at 2023-09-03T18:30:03+02:00
Add more generic description (https://bugs.archlinux.org/task/78165)

- - - - -


1 changed file:

- PKGBUILD


Changes:

=
PKGBUILD
=
@@ -12,7 +12,7 @@ pkgname=(python python-tests)
 pkgver=3.11.5
 pkgrel=2
 _pybasever=${pkgver%.*}
-pkgdesc="Next generation of the python high-level scripting language"
+pkgdesc="The Python programming language"
 arch=('x86_64')
 license=('custom')
 url="https://www.python.org/;



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python/-/commit/e74309eb651d63d0b0de3ae8d1917b3fa34159bd

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python/-/commit/e74309eb651d63d0b0de3ae8d1917b3fa34159bd
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/gzip] Pushed new tag 1.13-2

2023-09-03 Thread David Runge (@dvzrv)


David Runge pushed new tag 1.13-2 at Arch Linux / Packaging / Packages / gzip

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/gzip/-/tree/1.13-2
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/gzip][main] 3 commits: Use util-linux instead of more in optdepends for zmore support.

2023-09-03 Thread David Runge (@dvzrv)


David Runge pushed to branch main at Arch Linux / Packaging / Packages / gzip


Commits:
6aad35ef by David Runge at 2023-09-03T19:12:45+02:00
Use util-linux instead of more in optdepends for zmore support.

- - - - -
b09ce0fe by David Runge at 2023-09-03T19:14:39+02:00
Switch to correct SPDX license identifier for the project (GPL-3.0-or-later).

- - - - -
c76b3e06 by David Runge at 2023-09-03T19:16:49+02:00
upgpkg: 1.13-2

Rebuild to fix wrong optdepends: https://bugs.archlinux.org/task/79431
Add correct SPDX license identifier

- - - - -


1 changed file:

- PKGBUILD


Changes:

=
PKGBUILD
=
@@ -4,14 +4,14 @@
 
 pkgname=gzip
 pkgver=1.13
-pkgrel=1
+pkgrel=2
 pkgdesc='GNU compression utility'
 arch=('x86_64')
 url='https://www.gnu.org/software/gzip/'
-license=('GPL3')
+license=('GPL-3.0-or-later')
 depends=('glibc' 'bash' 'coreutils' 'sed' 'grep')
 optdepends=('less: zless support'
-'more: zmore support'
+'util-linux: zmore support'
 'diffutils: zdiff/zcmp support'
)
 validpgpkeys=('155D3FC500C834486D1EEA677FD9FCCB000B') # Jim Meyering



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/gzip/-/compare/96c3e74bb3f2cfda90447d6732d56da2f8f39a73...c76b3e06ea0eb76a22a7472c0145a2d1c620788a

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/gzip/-/compare/96c3e74bb3f2cfda90447d6732d56da2f8f39a73...c76b3e06ea0eb76a22a7472c0145a2d1c620788a
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/conky][main] 4 commits: Use alphabetically sorted bash arrays with one entry per line for better handling

2023-09-03 Thread David Runge (@dvzrv)


David Runge pushed to branch main at Arch Linux / Packaging / Packages / conky


Commits:
50778545 by David Runge at 2023-09-03T21:03:24+02:00
Use alphabetically sorted bash arrays with one entry per line for better 
handling

- - - - -
33540f15 by David Runge at 2023-09-03T21:04:03+02:00
Switch to correct SPDX license identifier for the project (GPL-3.0-or-later and 
BSD-3-Clause).

- - - - -
b78803b9 by David Runge at 2023-09-03T21:10:14+02:00
Lock upstream release to specific commit instead of relying only on tag.

- - - - -
293d79cb by David Runge at 2023-09-03T21:16:54+02:00
upgpkg: 1.18.1-2

Rebuild to add wayland support: https://bugs.archlinux.org/task/78104
Add all direct dependencies.

- - - - -


1 changed file:

- PKGBUILD


Changes:

=
PKGBUILD
=
@@ -6,20 +6,53 @@
 
 pkgname=conky
 pkgver=1.18.1
-_gitcommit=a21a8f7d26f07f1dc5c144be2120e8bc6721159f
-pkgrel=1
-pkgdesc='Lightweight system monitor for X'
+_gitcommit=87858b6ae8f0b5e195faec5c79048ac4171bfc30  # refs/tags/v1.18.1
+pkgrel=2
+pkgdesc='Light-weight system monitor for X, Wayland, and other things, too'
 url='https://github.com/brndnmtthws/conky'
-license=('BSD' 'GPL')
+license=(
+  'BSD-3-Clause'
+  'GPL-3.0-or-later'
+)
 arch=('x86_64')
-makedepends=('cmake' 'docbook2x' 'docbook-xsl' 'man-db' 'git' 'catch2' 
'pandoc' 'python-yaml' 'python-jinja')
+makedepends=(
+  'catch2'
+  'cmake'
+  'docbook2x'
+  'docbook-xsl'
+  'git'
+  'man-db'
+  'pandoc'
+  'python-yaml'
+  'python-jinja'
+  'wayland-protocols'
+)
 depends=(
-  'glibc' 'glib2' 'lua' 'wireless_tools' 'libxdamage' 'libxinerama' 'libxft' 
'imlib2'
-  'libxml2' 'libpulse' 'libxnvctrl' 'systemd-libs' 'ncurses' 'curl'
-  libncursesw.so libXNVCtrl.so libsystemd.so libpulse.so libcurl.so)
-#source=("git+https://github.com/brndnmtthws/conky.git#commit=${_gitcommit}?signed;)
-#v1.17.0 commit not signed
-source=("git+https://github.com/brndnmtthws/conky.git#tag=v$pkgver?signed;)
+  'cairo'
+  'curl' libcurl.so
+  'fontconfig'
+  'gcc-libs'
+  'glib2'
+  'glibc'
+  'hicolor-icon-theme'
+  'imlib2'
+  'libpulse' libpulse.so
+  'libx11'
+  'libxdamage'
+  'libxext'
+  'libxfixes'
+  'libxft'
+  'libxinerama'
+  'libxml2'
+  'libxnvctrl' libXNVCtrl.so
+  'lua'
+  'ncurses' libncursesw.so
+  'pango'
+  'systemd-libs' libsystemd.so
+  'wayland'
+  'wireless_tools'
+)
+source=("git+$url.git#tag=${_gitcommit}?signed")
 sha512sums=('SKIP')
 b2sums=('SKIP')
 validpgpkeys=(
@@ -57,6 +90,7 @@ build() {
 -D BUILD_NVIDIA=ON \
 -D BUILD_PULSEAUDIO=ON \
 -D BUILD_JOURNAL=ON \
+-D BUILD_WAYLAND=ON \
 -D CMAKE_INSTALL_PREFIX=/usr \
 -Wno-dev \
 -S .



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/conky/-/compare/dce6d73f13b76ce48fe395f7adb61cf7a5bff1cd...293d79cbcf6a7abb05dcd8f9227505b70b227a6e

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/conky/-/compare/dce6d73f13b76ce48fe395f7adb61cf7a5bff1cd...293d79cbcf6a7abb05dcd8f9227505b70b227a6e
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/conky] Pushed new tag 1.18.1-2

2023-09-03 Thread David Runge (@dvzrv)


David Runge pushed new tag 1.18.1-2 at Arch Linux / Packaging / Packages / conky

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/conky/-/tree/1.18.1-2
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/vmpk][main] upgpkg: 0.8.10-1

2023-09-03 Thread David Runge (@dvzrv)


David Runge pushed to branch main at Arch Linux / Packaging / Packages / vmpk


Commits:
435e24a6 by David Runge at 2023-09-03T15:45:59+02:00
upgpkg: 0.8.10-1

- - - - -


1 changed file:

- PKGBUILD


Changes:

=
PKGBUILD
=
@@ -2,12 +2,12 @@
 # Contributor: speps 
 
 pkgname=vmpk
-pkgver=0.8.9
+pkgver=0.8.10
 pkgrel=1
 pkgdesc="Virtual MIDI Piano Keyboard"
 arch=(x86_64)
-url="http://vmpk.sourceforge.net/;
-license=(GPL3)
+url="https://vmpk.sourceforge.io/;
+license=(GPL-3.0-or-later)
 groups=(pro-audio)
 depends=(
   gcc-libs
@@ -22,8 +22,8 @@ makedepends=(
   qt6-tools
 )
 
source=(https://downloads.sourceforge.net/project/$pkgname/$pkgname/${pkgver/a/}/$pkgname-$pkgver.tar.bz2)
-sha512sums=('0953e6a25df48321e4ab28f9f9ac8771f9d1fb9cadcef44f522850e073cae473765d5367a8f49d827dd878ebd80ad103f73bd0eae159d63db1f173b37e37c38a')
-b2sums=('94a6a1b3ae20db18003172098eeb5376eead1d92801a04eefc8ac7c4a71fcc0e54238ae875cb0d490612ed2273b9bceb0682bab60662d196c2921ea3466b0fe5')
+sha512sums=('674f6115e60ea02875a485cb722c733d037b7a7212f0e3872b107f233773db8f930db5876f8913e3aa1b49f685c0941bbee20c335b7306bfa1fdd4d272e5ef9e')
+b2sums=('0ba3b1df0499c5e9576c23ed402d86c28ce7f92aa77a2e3a563f9779c9901fc9e4b1fb7cfb4da007ae858f550a34428399d055f5a58e5dcaf81a7e7809414ee2')
 
 build() {
   local cmake_options=(



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/vmpk/-/commit/435e24a63ade667f55c7303241e4402593466900

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/vmpk/-/commit/435e24a63ade667f55c7303241e4402593466900
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/vmpk] Pushed new tag 0.8.10-1

2023-09-03 Thread David Runge (@dvzrv)


David Runge pushed new tag 0.8.10-1 at Arch Linux / Packaging / Packages / vmpk

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/vmpk/-/tree/0.8.10-1
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/python-jaraco.logging][main] 3 commits: Use alphabetically sorted bash arrays with one entry per line for better handling

2023-09-03 Thread David Runge (@dvzrv)


David Runge pushed to branch main at Arch Linux / Packaging / Packages / 
python-jaraco.logging


Commits:
164e26fa by David Runge at 2023-09-03T16:00:23+02:00
Use alphabetically sorted bash arrays with one entry per line for better 
handling

- - - - -
264a78b2 by David Runge at 2023-09-03T16:01:33+02:00
Switch to upstream provided source tarballs

- - - - -
d24630e2 by David Runge at 2023-09-03T16:05:21+02:00
upgpkg: 3.2.0-1

- - - - -


1 changed file:

- PKGBUILD


Changes:

=
PKGBUILD
=
@@ -2,25 +2,33 @@
 
 _name=jaraco.logging
 pkgname=python-jaraco.logging
-pkgver=3.1.2
-pkgrel=2
+pkgver=3.2.0
+pkgrel=1
 pkgdesc="Quickly solicit log level info from command-line parameters"
 arch=(any)
 url="https://github.com/jaraco/jaraco.logging;
 license=(MIT)
-depends=(python-tempora)
-makedepends=(python-build python-installer python-setuptools 
python-setuptools-scm python-toml python-wheel)
+depends=(
+  python
+  python-tempora
+)
+makedepends=(
+  python-build
+  python-installer
+  python-setuptools
+  python-setuptools-scm
+  python-toml
+  python-wheel
+)
 conflicts=(python-jaraco)
 replaces=(python-jaraco)
-source=(https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz)
-sha256sums=('93a70b8b3767779ad6c7b56ee98579ced77b69f16abbcae749f62c2c59e67931')
-b2sums=('add8236bdf345d55186d8ab7432c2b392df6921229c23c253a3b224d0362073c417cd4c0540e28117a1331adea15d4e8a17ad72c2cf7084375a19c64c529ccc0')
+source=($_name-$pkgver.tar.gz::$url/archive/refs/tags/v$pkgver.tar.gz)
+sha256sums=('4208fb9235cd75fcf71b8741324d3ad6697870b8f9c4fa615d84bd197d455014')
+b2sums=('eec9ebc4a8656a698d06c6613b84a236205e452b0b8acbb75633fc8849bf4ec30ad3e1e356e744feb9fb5a33c044bb8433c96feb588f0b38cb96035a0198e596')
 
 build() {
-  export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
-
   cd $_name-$pkgver
-  python -m build --wheel --no-isolation
+  SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver python -m build --wheel --no-isolation
 }
 
 check() {



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python-jaraco.logging/-/compare/d6f716af03667ff45f29b05c09a99971238bd978...d24630e22aee9931eaeb633558c4a565b978d07d

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python-jaraco.logging/-/compare/d6f716af03667ff45f29b05c09a99971238bd978...d24630e22aee9931eaeb633558c4a565b978d07d
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/python-jaraco.logging] Pushed new tag 3.2.0-1

2023-09-03 Thread David Runge (@dvzrv)


David Runge pushed new tag 3.2.0-1 at Arch Linux / Packaging / Packages / 
python-jaraco.logging

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python-jaraco.logging/-/tree/3.2.0-1
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/lib32-alsa-lib][main] upgpkg: 1.2.10-1

2023-09-03 Thread David Runge (@dvzrv)


David Runge pushed to branch main at Arch Linux / Packaging / Packages / 
lib32-alsa-lib


Commits:
28362aa7 by David Runge at 2023-09-03T16:25:44+02:00
upgpkg: 1.2.10-1

- - - - -


1 changed file:

- PKGBUILD


Changes:

=
PKGBUILD
=
@@ -3,7 +3,7 @@
 
 _name=alsa-lib
 pkgname=lib32-alsa-lib
-pkgver=1.2.9
+pkgver=1.2.10
 pkgrel=1
 pkgdesc="An alternative implementation of Linux sound support (32 bit)"
 arch=(x86_64)
@@ -19,9 +19,9 @@ provides=(
   libatopology.so
 )
 
source=(https://www.alsa-project.org/files/pub/lib/$_name-$pkgver.tar.bz2{,.sig})
-sha512sums=('8f39c8166c3648d46695a9287d9b9a35e5bfffed11d79e868ff7aba92d0fee792e82784186ebeb2a3e44d6b617c916025c7fce9a802565bb8e0dc8fdcce2311a'
+sha512sums=('4ccbd1dc5a612044571c26290923009e4c3f7959b30a5d0bed47daa68bbefaff9059c4f0fa3bc16f22c1eed2d36f079139369f40243da5921ae4de02a4541939'
 'SKIP')
-b2sums=('ec0c6966802196016679652292a579c6301cce33a2e887fce79cdb80629b6df047269787445cf0645e6cf43d3d2aae8fa57ddad5ab79fc254ee65a0ed695f449'
+b2sums=('b2e4f8431e61f5bb56b2b5d124e67d5a68bbca3c647bebfa93f5e5ff092ec9ef3f6cb6315801fcd93e21151784814ff238d357313b8b44f32d4e7c9ee565388f'
 'SKIP')
 validpgpkeys=('F04DF50737AC1A884C4B3D718380596DA6E59C91') # ALSA Release Team 
(Package Signing Key v1) 
 



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/lib32-alsa-lib/-/commit/28362aa760f76043518a1188e2bb8cbcbdc41104

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/lib32-alsa-lib/-/commit/28362aa760f76043518a1188e2bb8cbcbdc41104
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/lib32-alsa-lib] Pushed new tag 1.2.10-1

2023-09-03 Thread David Runge (@dvzrv)


David Runge pushed new tag 1.2.10-1 at Arch Linux / Packaging / Packages / 
lib32-alsa-lib

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/lib32-alsa-lib/-/tree/1.2.10-1
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/python-pdm] Pushed new tag 2.9.0-1

2023-09-03 Thread David Runge (@dvzrv)


David Runge pushed new tag 2.9.0-1 at Arch Linux / Packaging / Packages / 
python-pdm

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python-pdm/-/tree/2.9.0-1
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/python-pdm][main] upgpkg: 2.9.0-1

2023-09-03 Thread David Runge (@dvzrv)


David Runge pushed to branch main at Arch Linux / Packaging / Packages / 
python-pdm


Commits:
edd32c9a by David Runge at 2023-09-03T16:26:43+02:00
upgpkg: 2.9.0-1

- - - - -


1 changed file:

- PKGBUILD


Changes:

=
PKGBUILD
=
@@ -2,7 +2,7 @@
 
 _name=pdm
 pkgname=python-pdm
-pkgver=2.8.2
+pkgver=2.9.0
 pkgrel=1
 pkgdesc="A modern Python package manager with PEP 582 support"
 arch=(any)
@@ -47,8 +47,8 @@ optdepends=(
   'python-setuptools: for parsing setup.py files'
 )
 source=($_name-$pkgver.tar.gz::$url/archive/refs/tags/$pkgver.tar.gz)
-sha512sums=('9fdb5917c7808969d964ee12e19a22b7a54296c3bb44eeaeb8797ec662dd62a1affa2f0edb88f46b6606d770847bef5a1f64d0c8c0f57d6fa65cb98e653f439a')
-b2sums=('b43bef55e05675cbd0076f9d9ee4e239e738f160dc68e4b94600d9ec9390059722135a7b0692682ca7fc86599ae8093370fa2ef6f05aa9fa2c204e45fd44a567')
+sha512sums=('fd268bc5d38d882256d7e846b043a929651fbac65ca6210b1a8ec7204206864b97cf4491d0b34becfaa4160065aa8a2952646a53433e7f3ee8011701e7896519')
+b2sums=('8f0c8d9a7fedd7e73a68c74321c0add19d87137e53be1ac01dd416d4a9e72cc775a5ee0f050cd8aa10fbc05d09e27d03057b00997b95f07afa4c47c4e42fd709')
 
 build() {
   cd $_name-$pkgver



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python-pdm/-/commit/edd32c9adf5f4ab168c4ea6ad7feec0caea252c2

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python-pdm/-/commit/edd32c9adf5f4ab168c4ea6ad7feec0caea252c2
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/molecule] Pushed new tag 6.0.2-1

2023-09-03 Thread David Runge (@dvzrv)


David Runge pushed new tag 6.0.2-1 at Arch Linux / Packaging / Packages / 
molecule

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/molecule/-/tree/6.0.2-1
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/molecule][main] upgpkg: 6.0.2-1

2023-09-03 Thread David Runge (@dvzrv)


David Runge pushed to branch main at Arch Linux / Packaging / Packages / 
molecule


Commits:
ee8bdec3 by David Runge at 2023-09-03T16:51:14+02:00
upgpkg: 6.0.2-1

- - - - -


1 changed file:

- PKGBUILD


Changes:

=
PKGBUILD
=
@@ -1,7 +1,7 @@
 # Maintainer: David Runge 
 
 pkgname=molecule
-pkgver=6.0.1
+pkgver=6.0.2
 pkgrel=1
 pkgdesc="Aids in the development and testing of Ansible roles"
 arch=(any)
@@ -50,8 +50,8 @@ optdepends=(
   'python-pytest-testinfra: for the testinfra verifier'
 )
 source=($pkgname-$pkgver.tar.gz::$url/archive/refs/tags/v$pkgver.tar.gz)
-sha512sums=('73b1234145f5d729b5dd922b41db968a1b4ece73174330e0bbbcccf0f0e6e3a3979ea8e4e67b7014dd8342e46dcc0109ed16bdece34fd65cdbcfbc8e634e9b66')
-b2sums=('fe7d6ee5919f6c0247e089fa18be93275bfeed664b8baa4bf17e8436a1a467e74ed77b498854df006e98de79480da7b008dbd74bb8d5424b9c8a93b9ea55e77d')
+sha512sums=('7868a99e31e88d7264e2dc73bfe6c2ccf35ecc97e26d95f531135fb0638c74fd5a2eab809c79f80d5a670e3bf893334439b8274dacb472581a20dd8621adb24c')
+b2sums=('fabc15b17cc950bc0cb776ebc39dfea04b5867b95f5991ff03ba1089195077531c72e3b7786976cec7fac23a7abb5c179b46faaf28abb2bdd467b546399f08a2')
 
 build() {
   cd $pkgname-$pkgver



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/molecule/-/commit/ee8bdec31a53af9391f5a19fdd78f38195393560

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/molecule/-/commit/ee8bdec31a53af9391f5a19fdd78f38195393560
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/jacktrip] Pushed new tag 1-2.0.2-1

2023-09-03 Thread David Runge (@dvzrv)


David Runge pushed new tag 1-2.0.2-1 at Arch Linux / Packaging / Packages / 
jacktrip

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/jacktrip/-/tree/1-2.0.2-1
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/jacktrip][main] upgpkg: 1:2.0.2-1

2023-09-03 Thread David Runge (@dvzrv)


David Runge pushed to branch main at Arch Linux / Packaging / Packages / 
jacktrip


Commits:
9b9fde0e by David Runge at 2023-09-03T17:32:22+02:00
upgpkg: 1:2.0.2-1

Rebuild against rtaudio = 6

- - - - -


1 changed file:

- PKGBUILD


Changes:

=
PKGBUILD
=
@@ -1,15 +1,15 @@
 # Maintainer: David Runge 
 
 pkgname=jacktrip
-pkgver=1.9.0
+pkgver=2.0.2
 pkgrel=1
 epoch=1
 pkgdesc="Multi-machine audio network performance over the Internet"
 arch=(x86_64)
 url="https://github.com/jacktrip/jacktrip;
 license=(
-  LGPL3
-  GPL3
+  LGPL-3.0-only
+  GPL-3.0
   MIT
 )
 groups=(pro-audio)
@@ -17,13 +17,14 @@ depends=(
   gcc-libs
   glibc
   hicolor-icon-theme
-  qt5-base
-  qt5-declarative
-  qt5-graphicaleffects
-  qt5-networkauth
-  qt5-quickcontrols2
-  qt5-svg
-  qt5-websockets
+  qt6-base
+  qt6-declarative
+  qt6-networkauth
+  qt6-quickcontrols2
+  qt6-svg
+  qt6-webchannel
+  qt6-webengine
+  qt6-websockets
 )
 makedepends=(
   help2man
@@ -34,8 +35,8 @@ makedepends=(
   rtaudio
 )
 source=($url/archive/v$pkgver/$pkgname-v$pkgver.tar.gz)
-sha512sums=('aa909e95add78ae25aa011cd5f6ae56343f1fc68174d9cdee5407f8b8573fdbbc00b87855c87ab4e1e6a48d77618c3a26552a3c330352ef52c6ef4f15155caaf')
-b2sums=('fd7d02bddf0f7c28f17324b63646543a7080c0ebc5a7bdbc6e8708f4f26dd0baabd41bcec07d8c5eca5a41b4e8bc58a5fe5c369983cea4b693b9363109ccb530')
+sha512sums=('19ba4ee4ccad1f07416d34019731c40111c787ffd6f7fe93d8fbe7a40aa8298b4c4be05718ad0bb96a4a1cebdb2cd16b3689ef05b9d2fd2a6cd3d55daecd23d6')
+b2sums=('0c76920a631e82f8902c3888b6b22ae38ecde5fa90d4272e3b7b403bf58caf74f76ff4d8d9bbedf45430a27624ff54b0a1893c4e77fed57d5bdd9b19fb392a82')
 
 build() {
   local meson_options=(



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/jacktrip/-/commit/9b9fde0ec90f887db1f3b0caed9af6985007aaa4

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/jacktrip/-/commit/9b9fde0ec90f887db1f3b0caed9af6985007aaa4
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/apache][main] Add optional dependency on logrotate (https://bugs.archlinux.org/task/64255).

2023-09-03 Thread David Runge (@dvzrv)


David Runge pushed to branch main at Arch Linux / Packaging / Packages / apache


Commits:
695a51d7 by David Runge at 2023-09-03T18:50:59+02:00
Add optional dependency on logrotate (https://bugs.archlinux.org/task/64255).

- - - - -


1 changed file:

- PKGBUILD


Changes:

=
PKGBUILD
=
@@ -33,6 +33,7 @@ optdepends=(
 'lynx: apachectl status'
 'perl: for apxs and dbmmanage'
 'systemd-libs: for mod_systemd module'
+'logrotate: for rotating logs'
 )
 source=(
 https://www.apache.org/dist/httpd/httpd-${pkgver}.tar.bz2{,.asc}



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/apache/-/commit/695a51d78c607c8e5fa2d693dcf3bae71915d994

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/apache/-/commit/695a51d78c607c8e5fa2d693dcf3bae71915d994
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/python-appdirs] Pushed new tag 1.4.4-9

2023-09-03 Thread David Runge (@dvzrv)


David Runge pushed new tag 1.4.4-9 at Arch Linux / Packaging / Packages / 
python-appdirs

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python-appdirs/-/tree/1.4.4-9
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/dbus-cplusplus] Pushed new tag 0.9.0-11

2023-09-02 Thread David Runge (@dvzrv)


David Runge pushed new tag 0.9.0-11 at Arch Linux / Packaging / Packages / 
dbus-c++

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/dbus-cplusplus/-/tree/0.9.0-11
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/dbus-cplusplus][main] 3 commits: Rename patches so that they have a unique and package specific name.

2023-09-02 Thread David Runge (@dvzrv)


David Runge pushed to branch main at Arch Linux / Packaging / Packages / 
dbus-c++


Commits:
192a6b77 by David Runge at 2023-09-02T16:35:19+02:00
Rename patches so that they have a unique and package specific name.

- - - - -
c527a22b by David Runge at 2023-09-02T16:37:52+02:00
Fix issue with receiving messages (https://bugs.archlinux.org/task/63337)

- - - - -
b3898476 by David Runge at 2023-09-02T16:39:47+02:00
upgpkg: 0.9.0-11

Rebuild to apply various fixes to the package and fix 
https://bugs.archlinux.org/task/63337

- - - - -


6 changed files:

- PKGBUILD
- + dbus-c++-0.9.0-copy_data_from_received_message.patch
- disable-threading.patch → dbus-c++-0.9.0-disable-threading.patch
- fix-writechar.patch → dbus-c++-0.9.0-fix-writechar.patch
- gcc47.patch → dbus-c++-0.9.0-gcc47.patch
- template-operators.patch → dbus-c++-0.9.0-template-operators.patch


Changes:

=
PKGBUILD
=
@@ -7,7 +7,7 @@ pkgname=dbus-c++
 _pkgname=lib$pkgname
 _upstream=dbus-cplusplus
 pkgver=0.9.0
-pkgrel=10
+pkgrel=11
 pkgdesc="A C++ API for D-BUS"
 arch=(x86_64)
 url="https://sourceforge.net/projects/dbus-cplusplus/;
@@ -30,23 +30,30 @@ provides=(
 )
 source=(
   
https://sourceforge.net/projects/$_upstream/files/$pkgname/$pkgver/$_pkgname-$pkgver.tar.gz
-  gcc47.patch
-  disable-threading.patch
-  fix-writechar.patch
-  template-operators.patch
+  $pkgname-0.9.0-gcc47.patch
+  $pkgname-0.9.0-disable-threading.patch
+  $pkgname-0.9.0-fix-writechar.patch
+  $pkgname-0.9.0-template-operators.patch
+  $pkgname-0.9.0-copy_data_from_received_message.patch
 )
 
sha512sums=('7acebbb4254b2886cc0f05c5ddeeeac0b5863c5552d32249463b89380b0b95b8225c80bd98b8c7fcaada42ab770b5eff41b15390cd0d78bf1ee322ac6c2de319'
 
'd8618e1eafd25be074ffecf958fbc04f1b2a844c865ec2d795565809a5d11e7f60c1a8c3a6d952b1485af6b199753b36c06f1759a5559274eed55cf5e6585e20'
 
'94d95089ea84af1438191285955bf0866a7d7cbe535ac7fb8282ef6fb96c4ee052f439fb8c9d0b18b9ebec65d39cc45754bb48192ffb46c3d0c4ed6b1b6693a6'
 
'df0a3a80d139877eaea5f352da5dfa2bc0407360ddfb59301707c77bd4329ecd986f366f27bbdd7e4ce385125c6ec46fcf115854aa01d97cf11dff905cd9a385'
-
'af8e6281e6eb9c94cae7e8feaf8a8d7b653e4b394f9cc72fa381f647bc9c891906007dd06f55c89449396c5efd84656fe71ff453c7023cabfaad15a23f0b8a86')
+
'af8e6281e6eb9c94cae7e8feaf8a8d7b653e4b394f9cc72fa381f647bc9c891906007dd06f55c89449396c5efd84656fe71ff453c7023cabfaad15a23f0b8a86'
+
'0f203a6ca45d159fa6804e6b38424f7484711856114a1a6054be2b2abb9e23ba31e0c05eba0c9a7b8ce1be55eedb99a5280baa3c0df32de0b4e17f07995109b1')
 
 prepare() {
   cd $_pkgname-$pkgver
-  patch -Np0 -i ../gcc47.patch
-  patch -Np1 -i ../disable-threading.patch
-  patch -Np1 -i ../fix-writechar.patch
-  patch -Np1 -i ../template-operators.patch
+  patch -Np0 -i ../$pkgname-0.9.0-gcc47.patch
+  # https://sourceforge.net/p/dbus-cplusplus/patches/18/
+  patch -Np1 -i ../$pkgname-0.9.0-disable-threading.patch
+  # https://sourceforge.net/p/dbus-cplusplus/patches/19/
+  patch -Np1 -i ../$pkgname-0.9.0-fix-writechar.patch
+  # https://sourceforge.net/p/dbus-cplusplus/patches/22/
+  patch -Np1 -i ../$pkgname-0.9.0-template-operators.patch
+  # https://sourceforge.net/p/dbus-cplusplus/patches/27/
+  patch -Np1 -i ../$pkgname-0.9.0-copy_data_from_received_message.patch
   autoreconf -vfi
 }
 


=
dbus-c++-0.9.0-copy_data_from_received_message.patch
=
@@ -0,0 +1,27 @@
+From 2a770f61c060d19f7fe118c2a066306fa3e9ec3d Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Th=C3=A9o=20Goudout?= 
+Date: Thu, 1 Aug 2019 08:24:29 +
+Subject: [PATCH] Fix assert fail when copying data from received message
+
+---
+ src/message.cpp | 4 +++-
+ 1 file changed, 3 insertions(+), 1 deletion(-)
+
+diff --git a/src/message.cpp b/src/message.cpp
+index 3f0cac4..1c4caab 100644
+--- a/src/message.cpp
 b/src/message.cpp
+@@ -350,7 +350,9 @@ void MessageIter::copy_data(MessageIter )
+   (
+ (DBusMessageIter *) & (to._iter),
+ from.type(),
+-from.type() == DBUS_TYPE_VARIANT ? NULL : sig,
++(from.type() == DBUS_TYPE_STRUCT || from.type() == 
DBUS_TYPE_DICT_ENTRY)
++? NULL
++: sig,
+ (DBusMessageIter *) & (to_container._iter)
+   );
+ 
+-- 
+2.22.0
+


=
disable-threading.patch → dbus-c++-0.9.0-disable-threading.patch
=


=
fix-writechar.patch → dbus-c++-0.9.0-fix-writechar.patch
=


=
gcc47.patch → dbus-c++-0.9.0-gcc47.patch
=


=
template-operators.patch → dbus-c++-0.9.0-template-operators.patch
=



View it on GitLab: 

[Git][archlinux/packaging/packages/openmpi][main] upgpkg: 4.1.5-4

2023-09-02 Thread David Runge (@dvzrv)


David Runge pushed to branch main at Arch Linux / Packaging / Packages / openmpi


Commits:
7ceeb582 by David Runge at 2023-09-02T19:52:46+02:00
upgpkg: 4.1.5-4

Rebuild to apply upstreamed patch for fixing spawn with openpmix 4.2.3
https://bugs.archlinux.org/task/78786

- - - - -


1 changed file:

- PKGBUILD


Changes:

=
PKGBUILD
=
@@ -5,7 +5,7 @@
 
 pkgname=openmpi
 pkgver=4.1.5
-pkgrel=3
+pkgrel=4
 pkgdesc='High performance message passing library (MPI)'
 arch=(x86_64)
 url='https://www.open-mpi.org'
@@ -48,16 +48,21 @@ provides=(
 source=(
   
https://www.open-mpi.org/software/ompi/v${pkgver%.*}/downloads/$pkgname-$pkgver.tar.bz2
   $pkgname-4.1.5-openpmix_4.2.3.patch
+  
$pkgname-4.1.5-openpmix_4.2.3_spawn.patch::https://github.com/open-mpi/ompi/commit/3a7f9e62742e8470dab85aa2250df6182207ef8f.patch
 )
 sha256sums=('a640986bc257389dd379886fdae6264c8cfa56bc98b71ce3ae3dfbd8ce61dbe3'
-'46edac3dbf32f2a611d45e8a3c8edd3ae2f430eec16a1373b510315272115c40')
+'46edac3dbf32f2a611d45e8a3c8edd3ae2f430eec16a1373b510315272115c40'
+'eea9454842bd9442b0b6feb7e11b982a2501bb83da6ef0baf251ef987701a011')
 
b2sums=('135a8373ed6173b7a94def18e3b964c6b6050c909382e0dbb1898a6d261ae428931358121ef6d325d303f4f510017a94970f7c66b280a5fc460365821f36dece'
-
'1268d65f5e521bd466d6bcf92b5920919a0374d985c57e9268ea6db50175fd4646751e3bd73215fbd6d22fed52bdb15e8db58c121adba7dc87c6b81e53c48c15')
+
'1268d65f5e521bd466d6bcf92b5920919a0374d985c57e9268ea6db50175fd4646751e3bd73215fbd6d22fed52bdb15e8db58c121adba7dc87c6b81e53c48c15'
+
'aeda6d76d438c58ac62be386660afbb8c31a57b2a79fb36cedb9a987588de8481b2378f0c2f0fb5628c955f6c811df001c75e69f7f08c3c52202d39b61db7ffb')
 
 prepare() {
   # fix issues with openpmix 4.2.3: 
https://github.com/open-mpi/ompi/issues/10416
   # backport of https://github.com/open-mpi/ompi/pull/11472
   patch -Np1 -d $pkgname-$pkgver -i ../$pkgname-4.1.5-openpmix_4.2.3.patch
+  # backport of https://github.com/open-mpi/ompi/pull/11767
+  patch -Np1 -d $pkgname-$pkgver -i 
../$pkgname-4.1.5-openpmix_4.2.3_spawn.patch
 }
 
 build() {



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/openmpi/-/commit/7ceeb582b64d42e9391b64f1e1c3b37a857eb1e0

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/openmpi/-/commit/7ceeb582b64d42e9391b64f1e1c3b37a857eb1e0
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/openmpi] Pushed new tag 4.1.5-4

2023-09-02 Thread David Runge (@dvzrv)


David Runge pushed new tag 4.1.5-4 at Arch Linux / Packaging / Packages / 
openmpi

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/openmpi/-/tree/4.1.5-4
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/jbigkit][main] upgpkg: 2.1-7

2023-09-02 Thread David Runge (@dvzrv)


David Runge pushed to branch main at Arch Linux / Packaging / Packages / jbigkit


Commits:
1eea12ba by David Runge at 2023-09-02T17:43:58+02:00
upgpkg: 2.1-7

Rebuild to track shared instead of static libraries:
https://bugs.archlinux.org/task/77224

- - - - -


1 changed file:

- PKGBUILD


Changes:

=
PKGBUILD
=
@@ -5,7 +5,7 @@
 
 pkgname=jbigkit
 pkgver=2.1
-pkgrel=6
+pkgrel=7
 pkgdesc="Data compression library/utilities for bi-level high-resolution 
images"
 arch=(x86_64)
 url="https://www.cl.cam.ac.uk/~mgk25/jbigkit/;



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/jbigkit/-/commit/1eea12ba103bc15ccd57446a0f4c9a9ff06ae1a9

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/jbigkit/-/commit/1eea12ba103bc15ccd57446a0f4c9a9ff06ae1a9
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/jbigkit] Pushed new tag 2.1-7

2023-09-02 Thread David Runge (@dvzrv)


David Runge pushed new tag 2.1-7 at Arch Linux / Packaging / Packages / jbigkit

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/jbigkit/-/tree/2.1-7
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/libtiff][main] upgpkg: 4.5.1-2

2023-09-02 Thread David Runge (@dvzrv)


David Runge pushed to branch main at Arch Linux / Packaging / Packages / libtiff


Commits:
19cc816f by David Runge at 2023-09-02T19:47:33+02:00
upgpkg: 4.5.1-2

Rebuild against jbigkit as shared library.

- - - - -


1 changed file:

- PKGBUILD


Changes:

=
PKGBUILD
=
@@ -3,12 +3,12 @@
 
 pkgname=libtiff
 pkgver=4.5.1
-pkgrel=1
+pkgrel=2
 pkgdesc='Library for manipulation of TIFF images'
 url='http://www.simplesystems.org/libtiff/'
 arch=('x86_64')
 license=('custom')
-depends=('glibc' 'libjpeg-turbo' 'libjpeg.so' 'zlib' 'xz' 'zstd')
+depends=('gcc-libs' 'glibc' 'jbigkit' 'libjpeg-turbo' 'libjpeg.so' 'zlib' 'xz' 
'zstd')
 makedepends=('freeglut' 'glu' 'mesa' 'jbigkit')
 optdepends=('freeglut: for using tiffgt')
 provides=('libtiff.so' 'libtiffxx.so')



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/libtiff/-/commit/19cc816ff1b2e798738611eb478054d41be50b66

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/libtiff/-/commit/19cc816ff1b2e798738611eb478054d41be50b66
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/libtiff] Pushed new tag 4.5.1-2

2023-09-02 Thread David Runge (@dvzrv)


David Runge pushed new tag 4.5.1-2 at Arch Linux / Packaging / Packages / 
libtiff

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/libtiff/-/tree/4.5.1-2
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/iempluginsuite][main] upgpkg: 1.14.1-2

2023-09-02 Thread David Runge (@dvzrv)


David Runge pushed to branch main at Arch Linux / Packaging / Packages / 
iempluginsuite


Commits:
91603cb4 by David Runge at 2023-09-02T18:42:53+02:00
upgpkg: 1.14.1-2

Rebuild to add GranularEncoder plugin: https://bugs.archlinux.org/task/79428
Add fix for juce  7.0.5 (because upstream YOLO moved files around).

- - - - -


1 changed file:

- PKGBUILD


Changes:

=
PKGBUILD
=
@@ -7,7 +7,7 @@ pkgname=(
   iempluginsuite-{standalone,vst3}
 )
 pkgver=1.14.1
-pkgrel=1
+pkgrel=2
 pkgdesc="Plug-in suite including Ambisonic plug-ins up to 7th order"
 arch=(x86_64)
 url="https://plugins.iem.at;
@@ -53,6 +53,7 @@ _names=(
   DualDelay
   EnergyVisualizer
   FdnReverb
+  GranularEncoder
   MatrixMultiplier
   MultiBandCompressor
   MultiEQ
@@ -79,6 +80,7 @@ prepare() {
 ['DualDelay']="Two delay-lines, which can be configured independently."
 ['EnergyVisualizer']="Visualizes the energy distribution on the sphere of 
the Ambisonic input signal using a Hammer-Aitoff projection (a spherical 
projection which is area-preserving)"
 ['FdnReverb']="A Feedback-Delay-Network reverberation."
+['GranularEncoder']="An Ambisonic granular synthesis plug-in."
 ['MatrixMultiplier']="Load a configuration which contains a 
TransformationMatrix object which will be applied to the input signal."
 ['MultiBandCompressor']="Splits an Ambisonic signal into four bands and 
compresses them individually."
 ['MultiEQ']="A simple multi-channel equalizer, filtering up to 64 audio 
channels."
@@ -101,6 +103,7 @@ prepare() {
 ['DualDelay']="Delay"
 ['EnergyVisualizer']="Audio Visualizer"
 ['FdnReverb']="Reverb"
+['GranularEncoder']="Granular Synthesis"
 ['MatrixMultiplier']="Matrix Transformation"
 ['MultiBandCompressor']="Multiband Compressor"
 ['MultiEQ']="Multichannel Equalizer"
@@ -114,6 +117,9 @@ prepare() {
 ['ToolBox']="Ambisonic Transformation"
   )
 
+  # juce upstream YOLO moved the directory somewhere between 7.0.5 and 7.0.7
+  sed 's|juce_audio_plugin_client/utility|juce_audio_plugin_client/detail|g' 
-i $_name-v$pkgver/resources/Standalone/MyStandaloneFilterWindow.h
+
   for name in "${_names[@]}"; do
 gendesk -n \
 --pkgname at.iem.plugins.$name \



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/iempluginsuite/-/commit/91603cb43dd242977e5122a54e9088ced5e70df9

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/iempluginsuite/-/commit/91603cb43dd242977e5122a54e9088ced5e70df9
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/iempluginsuite] Pushed new tag 1.14.1-2

2023-09-02 Thread David Runge (@dvzrv)


David Runge pushed new tag 1.14.1-2 at Arch Linux / Packaging / Packages / 
iempluginsuite

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/iempluginsuite/-/tree/1.14.1-2
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/jbigkit][main] 2 commits: Remove unnecessary quotes and curly braces

2023-09-02 Thread David Runge (@dvzrv)


David Runge pushed to branch main at Arch Linux / Packaging / Packages / jbigkit


Commits:
4bb656bb by David Runge at 2023-09-02T16:58:39+02:00
Remove unnecessary quotes and curly braces

- - - - -
44a2487d by David Runge at 2023-09-02T16:59:49+02:00
Switch to correct SPDX license identifier for the project (GPL-2.0-or-later).

- - - - -


1 changed file:

- PKGBUILD


Changes:

=
PKGBUILD
=
@@ -6,23 +6,23 @@ pkgname=jbigkit
 pkgver=2.1
 pkgrel=6
 pkgdesc="Data compression library/utilities for bi-level high-resolution 
images"
-arch=('x86_64')
+arch=(x86_64)
 url="https://www.cl.cam.ac.uk/~mgk25/jbigkit/;
-license=('GPL')
+license=(GPL-2.0-or-later)
 depends=()
-options=('staticlibs')
+options=(staticlibs)
 source=(https://www.cl.cam.ac.uk/~mgk25/download/jbigkit-$pkgver.tar.gz)
 sha256sums=('de7106b6bfaf495d6865c7dd7ac6ca1381bd12e0d81405ea81e7f2167263d932')
 
 build() {
-  cd "$srcdir"/$pkgname-$pkgver
+  cd $pkgname-$pkgver
   unset CFLAGS CPPFLAGS LDFLAGS
   [ "$CARCH" == "x86_64" ] && export CFLAGS="$CFLAGS -fPIC"
   make CFLAGS="$CFLAGS"
 }
 
 package() {
-  cd "$srcdir"/$pkgname-$pkgver
+  cd $pkgname-$pkgver
 
   install -D -m644 libjbig/libjbig.a "$pkgdir"/usr/lib/libjbig.a
   install -D -m644 libjbig/libjbig85.a "$pkgdir"/usr/lib/libjbig85.a



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/jbigkit/-/compare/0841e647abcfe83a9b875177ffe78ed1166b89f6...44a2487dce4b35a79db06bee6783dba37630c652

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/jbigkit/-/compare/0841e647abcfe83a9b875177ffe78ed1166b89f6...44a2487dce4b35a79db06bee6783dba37630c652
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/postfix] Pushed new tag 3.8.2-1

2023-09-02 Thread David Runge (@dvzrv)


David Runge pushed new tag 3.8.2-1 at Arch Linux / Packaging / Packages / 
postfix

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/postfix/-/tree/3.8.2-1
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/postfix][main] upgpkg: 3.8.2-1

2023-09-02 Thread David Runge (@dvzrv)


David Runge pushed to branch main at Arch Linux / Packaging / Packages / postfix


Commits:
be7252c6 by David Runge at 2023-09-02T18:33:44+02:00
upgpkg: 3.8.2-1

- - - - -


1 changed file:

- PKGBUILD


Changes:

=
PKGBUILD
=
@@ -8,8 +8,8 @@ pkgname=(
   postfix
   postfix-{cdb,ldap,lmdb,mysql,pcre,pgsql,sqlite}
 )
-pkgver=3.8.1
-pkgrel=3
+pkgver=3.8.2
+pkgrel=1
 pkgdesc="Fast, easy to administer, secure mail server"
 arch=(x86_64)
 url="http://www.postfix.org/;
@@ -38,13 +38,13 @@ source=(
   $pkgbase.sysusers
   $pkgbase.tmpfiles
 )
-sha512sums=('9eb91f2baab327de22dd55fc5ff398de74856e30be461282f41b1801301873881a8f40ce061c16e0505d51d96aaf0eff8d0ac660e5f6c70c6125133f64a4ee80'
+sha512sums=('1c441c95bcadee6fc038eb5cb826a686a8bd98b0c78afbc36fdcee01ca0b1c7071036542c729ac345ef8f1e6fb42211452da802e86048967ebc4dea7752d'
 'SKIP'
 
'7b2785aa8120ca3ff91b405baf675e9e11f8d58b18a9b842672e7ae30932febddac10556a70823d8746fcb160bceb4dbabdee45cf46b02fc0127057656fb85c4'
 
'27f54747ad480d65b560c9dbc97e12c6353e4bceca0ffe3e358e31de56db0ad79928164c9f8790c73a9f791daa378253d2ee29b5a71778553ec889b2cf97'
 
'a7f15970f613ae7b98ce1b84ca0a6034ce3cc7b2b9ce7160dad9731f740fb762f4a54f44acceb5f06f8744fa9e952b088086af8a69da388a600b742a3cda37f2'
 
'd08574a6acd595fc146513c92dc1bb341c3432d67de1e93ab73a7ce60e385dd34f3a55e3d3d7aec5f358ac4aae260f028599ac47650ebc663cea3043a760a7bc')
-b2sums=('83c043d6e74cbbf0c5d739838ff99d4905aa711b13483fe0f427956b962c432e6f76d9828b5c141260e210c9605ac260df950d273d5729c3c935a3ed4518'
+b2sums=('233693e088901e8ed986e34d60b55fb6b786c37868095ab914e6049c5ad6aee09f07d3b5d1f2bec64d8570e215bb15196760d30074cd8ddfaeff3897ad117b81'
 'SKIP'
 
'b5f19e0619f1fb017cd889c14e341c21146b3afe7b9eefcdb7fb1eb83a357434b899d1e92f3ab0023c78ef8f2de6ae54c4599ee0f0bd04d257f4ca0a4dc9a16c'
 
'02dd441cf6e4a7c2bc0de876f020b0784d811f77a5c6102dd075d67b07158dbc53c8b4d62bc8035283d4f349008574b1c3fac03f4519d56ffd809cb5bcfb7bea'



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/postfix/-/commit/be7252c62470a58f898fe7e7a7e518667ce27d75

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/postfix/-/commit/be7252c62470a58f898fe7e7a7e518667ce27d75
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/zsh-completions][main] upgpkg: 0.35.0-1

2023-09-02 Thread David Runge (@dvzrv)


David Runge pushed to branch main at Arch Linux / Packaging / Packages / 
zsh-completions


Commits:
94768e1f by David Runge at 2023-09-02T18:35:14+02:00
upgpkg: 0.35.0-1

- - - - -


1 changed file:

- PKGBUILD


Changes:

=
PKGBUILD
=
@@ -3,28 +3,22 @@
 # Contributor: Julien Nicoulaud 
 
 pkgname=zsh-completions
-pkgver=0.34.0
-pkgrel=4
+pkgver=0.35.0
+pkgrel=1
 pkgdesc="Additional completion definitions for Zsh"
 arch=(any)
 url="https://github.com/zsh-users/zsh-completions;
 license=(BSD)
 depends=(zsh)
 
source=($pkgname-$pkgver.tar.gz::https://github.com/zsh-users/$pkgname/archive/refs/tags/$pkgver.tar.gz)
-sha512sums=('643e967a77ab708c6316a9b43edd8b411f133aa4abe10bf69d3f5e545b2128423ad80d3509e7f9077b30cb8a83f60fe8d4355ed0a697dadffe1e1aaac6597c04')
-b2sums=('75afed3059e889f92843099ad3eddae1f939a7d9a46d87a8048c5742b44699c2da13a9c2ea00ca2ea02898472199f064c420aac8943338e3b22189a7cc0d23b4')
+sha512sums=('d6ab46db72b311731abca41e82fded954a43a1e13b81deb7b0acf7d85402ef575c69ead66af97dc2c148a1e681f39e48cfcab53993207f2b786bfe20228587e6')
+b2sums=('22b4dff55749852a41373a8d96b01963f47dc1fbee0f2ff2a21e5ec48e43b022967630dd3ad2dc74793efe1f3bf77d6783161b671730d2e726df913981a676da')
 changelog=ChangeLog
 
 package() {
   local completion
   local provided_completions=(
 _tmuxp
-_trash
-_trash-empty
-_trash-list
-_trash-put
-_trash-restore
-_vagrant
   )
 
   cd $pkgname-$pkgver



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/zsh-completions/-/commit/94768e1f942e5c38f7a09d2b66de798dd6f24734

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/zsh-completions/-/commit/94768e1f942e5c38f7a09d2b66de798dd6f24734
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/zsh-completions] Pushed new tag 0.35.0-1

2023-09-02 Thread David Runge (@dvzrv)


David Runge pushed new tag 0.35.0-1 at Arch Linux / Packaging / Packages / 
zsh-completions

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/zsh-completions/-/tree/0.35.0-1
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/khal] Pushed new tag 0.11.2-2

2023-09-02 Thread David Runge (@dvzrv)


David Runge pushed new tag 0.11.2-2 at Arch Linux / Packaging / Packages / khal

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/khal/-/tree/0.11.2-2
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/khal][main] 2 commits: Switch to upstream provided source tarballs

2023-09-02 Thread David Runge (@dvzrv)


David Runge pushed to branch main at Arch Linux / Packaging / Packages / khal


Commits:
8d7c4763 by David Runge at 2023-09-03T00:23:59+02:00
Switch to upstream provided source tarballs

- - - - -
26805812 by David Runge at 2023-09-03T00:26:05+02:00
upgpkg: 0.11.2-2

Rebuild to fix typo in description (https://bugs.archlinux.org/task/79538) and 
switch to upstream provided source
tarballs.

- - - - -


1 changed file:

- PKGBUILD


Changes:

=
PKGBUILD
=
@@ -8,7 +8,7 @@
 
 pkgname=khal
 pkgver=0.11.2
-pkgrel=1
+pkgrel=2
 pkgdesc='CLI calendar application built around CalDAV'
 arch=('any')
 url="https://lostpackets.de/khal/;
@@ -45,13 +45,13 @@ optdepends=(
   'python-setproctitle: to set process name'
   'vdirsyncer: to synchronize CalDAV calendars'
 )
-source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$pkgname-$pkgver.tar.gz;)
-sha256sums=('8fb8d89371e53e2235953a0765e41b97e174848a688d63768477576d03f899ba')
-b2sums=('5802b5c7a715ec300feb2618400753fe7f109a894c6bf5cc82eebc349c5c4f651894f14584c91bd479e62f5fa65fd0e400f7c04fb2cc4bee8fef6ffec891216e')
+source=($pkgname-$pkgver.tar.gz::https://github.com/pimutils/$pkgname/archive/refs/tags/v$pkgver.tar.gz)
+sha256sums=('db28d21f0aee14982b1394f73c0f12b54cfd09f44d577c1f5b37c038ff568463')
+b2sums=('06de876159fe6b8c70062e5ca09983f862f1fee44e33f01af86861f061a46dcbdba93bcfd88d1f8f9b3d1a38d111f8989f585fa461a917f186804c333a8ff7cb')
 
 build() {
   cd $pkgname-$pkgver
-  python -m build --wheel --skip-dependency-check --no-isolation
+  SETUPTOOLS_SCM_PRETEND_VERSION="$pkgver" python -m build --wheel 
--skip-dependency-check --no-isolation
   make -C doc man PYTHONPATH="$PWD"
 }
 



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/khal/-/compare/b81ddc7bc1340ce9fa77fd06bff0c88fc36f87af...268058129bab3fc3f896edd70e57085b9abe8c74

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/khal/-/compare/b81ddc7bc1340ce9fa77fd06bff0c88fc36f87af...268058129bab3fc3f896edd70e57085b9abe8c74
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/ladspa] Pushed new tag 1.17-4

2023-09-02 Thread David Runge (@dvzrv)


David Runge pushed new tag 1.17-4 at Arch Linux / Packaging / Packages / ladspa

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/ladspa/-/tree/1.17-4
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/ladspa][main] upgpkg: 1.17-4

2023-09-02 Thread David Runge (@dvzrv)


David Runge pushed to branch main at Arch Linux / Packaging / Packages / ladspa


Commits:
d02fb34e by David Runge at 2023-09-02T18:58:14+02:00
upgpkg: 1.17-4

Rebuild to fix plugin underlinking: https://bugs.archlinux.org/task/76259

- - - - -


2 changed files:

- PKGBUILD
- + ladspa-1.17-plugin_underlinking.patch


Changes:

=
PKGBUILD
=
@@ -3,7 +3,7 @@
 
 pkgname=ladspa
 pkgver=1.17
-pkgrel=3
+pkgrel=4
 pkgdesc="Linux Audio Developer's Simple Plugin API (LADSPA)"
 arch=(x86_64)
 license=(LGPL-2.1)
@@ -16,16 +16,21 @@ makedepends=(libsndfile)
 optdepends=('libsndfile: for applyplugin')
 source=(
   https://ladspa.org/download/ladspa_sdk_$pkgver.tgz
+  $pkgname-1.17-plugin_underlinking.patch
   fix-memleak-in-plugin-scanning.patch
 )
 
sha512sums=('c096e70d245c50ffad379f2c9aab2735c205dfe7c27b5710cad6e43b39f8accc7b8bd2cd7ebbea2c399ad76018b3d4c701ed271de552d098b12ab218a58f0497'
+
'9660937df8cfcd2005f8e6b4d7257a6d295a2d7e06979dd05ff2894461e91fc3f812497878673724ee9209bffd67fbb690fbdc3669ecb5932503d0770454301b'
 
'e80a575e6afe42f9d0ac1234a7832a29fb9362c7ab7b2d6b14cc3e6da6a9ba67af886cf09f1c0b78c161205084f705049fb4dc22fe2795efaeb7d94da90dc93e')
 
b2sums=('234f6c42e2736d250259b9473f70def136bcf57c2395d79e3a3cd6da715181dbfa87c1c35e8f0b840e0c5c00c39bfbb93d1ddd73b4c1547140caa080589d91b3'
+
'a997afed65bd747c970e0110b1d9d8a3ea69e3ff30c7b9fa65177597661fc2043b252ea90b5eaac24dd5b770480bac7eac1eec31a98ccf0780f69828ca986ffa'
 
'b2235b41d9638cceb93a41452f1f0b710bc3f9264fe735972099244dfc8d98d354c7d15084d79b0bdfc4fa3f437f9368f81aa0ebdb7e39df5900fbbf172927c2')
 
 prepare() {
   cd ${pkgname}_sdk_$pkgver
   patch -Np0 -i "../fix-memleak-in-plugin-scanning.patch"
+  # fix underlinking of plugins
+  patch -Np1 -i ../$pkgname-1.17-plugin_underlinking.patch
   # add LDFLAGS for full RELRO
   sed -e "s#-O2#${CFLAGS} ${LDFLAGS}#" -i src/Makefile
 }


=
ladspa-1.17-plugin_underlinking.patch
=
@@ -0,0 +1,19 @@
+diff -ruN a/src/Makefile b/src/Makefile
+--- a/src/Makefile 2021-09-10 10:44:43.0 +0200
 b/src/Makefile 2023-09-02 18:54:57.552762072 +0200
+@@ -41,6 +41,7 @@
+   plugins/$*.o\
+   -shared \
+   $(CFLAGS)   \
++  -lm 
\
+   -fvisibility=hidden \
+   -fvisibility-inlines-hidden \
+   -s  \
+@@ -52,6 +53,7 @@
+   plugins/$*.o\
+   -shared \
+   $(CXXFLAGS) \
++  -lm 
\
+   -fvisibility=hidden \
+   -fvisibility-inlines-hidden \
+   -s  \



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/ladspa/-/commit/d02fb34e36ae6089017a1166d15e9264f254d0d4

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/ladspa/-/commit/d02fb34e36ae6089017a1166d15e9264f254d0d4
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/netpbm][main] upgpkg: 10.73.43-2

2023-09-02 Thread David Runge (@dvzrv)


David Runge pushed to branch main at Arch Linux / Packaging / Packages / netpbm


Commits:
5558d0e0 by David Runge at 2023-09-02T20:00:13+02:00
upgpkg: 10.73.43-2

Rebuild against jbigkit as shared library.
Add all direct dependencies.

- - - - -


1 changed file:

- PKGBUILD


Changes:

=
PKGBUILD
=
@@ -2,13 +2,24 @@
 
 pkgname=netpbm
 pkgver=10.73.43
-pkgrel=1
+pkgrel=2
 pkgdesc="A toolkit for manipulation of graphic images"
 arch=('x86_64')
 license=('custom' 'BSD' 'GPL' 'LGPL')
 url="http://netpbm.sourceforge.net/;
-depends=('perl' 'libpng' 'libtiff' 'libxml2')
-makedepends=('jbigkit' 'subversion')
+depends=(
+  'bash'
+  'gcc-libs'
+  'glibc'
+  'jbigkit'
+  'libjpeg-turbo'
+  'libpng'
+  'libtiff'
+  'libxml2'
+  'perl'
+  'zlib'
+)
+makedepends=('subversion')
 options=('!makeflags')
 # Get docs with: wget --recursive --relative -nH 
http://netpbm.sourceforge.net/doc/
 
source=(https://downloads.sourceforge.net/project/netpbm/super_stable/$pkgver/netpbm-$pkgver.tgz



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/netpbm/-/commit/5558d0e0514c52e5a9cec11696f265f254d083c2

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/netpbm/-/commit/5558d0e0514c52e5a9cec11696f265f254d083c2
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/netpbm] Pushed new tag 10.73.43-2

2023-09-02 Thread David Runge (@dvzrv)


David Runge pushed new tag 10.73.43-2 at Arch Linux / Packaging / Packages / 
netpbm

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/netpbm/-/tree/10.73.43-2
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/netplan] Pushed new tag 0.107-2

2023-09-05 Thread David Runge (@dvzrv)


David Runge pushed new tag 0.107-2 at Arch Linux / Packaging / Packages / 
netplan

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/netplan/-/tree/0.107-2
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/netplan][main] upgpkg: 0.107-2

2023-09-05 Thread David Runge (@dvzrv)


David Runge pushed to branch main at Arch Linux / Packaging / Packages / netplan


Commits:
5f078464 by David Runge at 2023-09-05T18:37:27+02:00
upgpkg: 0.107-2

Rebuild to remove legacy /lib dir: https://bugs.archlinux.org/task/79574

- - - - -


1 changed file:

- PKGBUILD


Changes:

=
PKGBUILD
=
@@ -3,7 +3,7 @@
 
 pkgname=netplan
 pkgver=0.107
-pkgrel=1
+pkgrel=2
 pkgdesc="Network configuration abstraction renderer"
 arch=('x86_64')
 url="https://github.com/CanonicalLtd/netplan;
@@ -111,4 +111,7 @@ check() {
 
 package() {
   meson install -C build --destdir "$pkgdir"
+  # remove legacy dir which will likely be gone post 0.107:
+  # 
https://github.com/canonical/netplan/blob/a7e4be03918c986020650743cb6cf0934696ef0c/src/meson.build#L40-L44
+  rm -frv "$pkgdir/lib"
 }



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/netplan/-/commit/5f0784641186563dc4392b270be518c34fcc5416

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/netplan/-/commit/5f0784641186563dc4392b270be518c34fcc5416
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/python-hatch] Pushed new tag 1.7.0-4

2023-09-03 Thread David Runge (@dvzrv)


David Runge pushed new tag 1.7.0-4 at Arch Linux / Packaging / Packages / 
python-hatch

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python-hatch/-/tree/1.7.0-4
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/lynx] Pushed new tag 2.8.9-7

2023-09-03 Thread David Runge (@dvzrv)


David Runge pushed new tag 2.8.9-7 at Arch Linux / Packaging / Packages / lynx

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/lynx/-/tree/2.8.9-7
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/lynx][main] upgpkg: 2.8.9-7

2023-09-03 Thread David Runge (@dvzrv)


David Runge pushed to branch main at Arch Linux / Packaging / Packages / lynx


Commits:
1d5a942e by David Runge at 2023-09-04T03:41:01+02:00
upgpkg: 2.8.9-7

Rebuild to enable using external programs 
(https://bugs.archlinux.org/task/53092).
Add all direct library dependencies.
Switch to correct SPDX license identifier (GPL-2.0-only).

- - - - -


1 changed file:

- PKGBUILD


Changes:

=
PKGBUILD
=
@@ -5,12 +5,12 @@
 pkgname=lynx
 pkgver=2.8.9
 _relver=${pkgver}rel.1
-pkgrel=6
+pkgrel=7
 pkgdesc="A text browser for the World Wide Web"
 url="https://lynx.invisible-island.net/;
 arch=('x86_64')
-license=('GPL')
-depends=('openssl' 'libidn' 'ncurses')
+license=('GPL-2.0-only')
+depends=('glibc' 'openssl' 'libidn' 'ncurses')
 backup=('etc/lynx.cfg')
 options=('!lto')
 
source=("https://invisible-mirror.net/archives/lynx/tarballs/${pkgname}${_relver}.tar.bz2"{,.asc}
@@ -30,6 +30,7 @@ build() {
   ./configure --prefix=/usr \
 --sysconfdir=/etc \
 --with-ssl=/usr \
+--enable-externs \
 --enable-nls \
 --enable-ipv6 \
 --mandir=/usr/share/man



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/lynx/-/commit/1d5a942e3c15f480e5ba62d6072327300236de86

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/lynx/-/commit/1d5a942e3c15f480e5ba62d6072327300236de86
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/nfoview] Pushed new tag 1.99-2

2023-09-03 Thread David Runge (@dvzrv)


David Runge pushed new tag 1.99-2 at Arch Linux / Packaging / Packages / nfoview

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/nfoview/-/tree/1.99-2
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/nfoview][main] upgpkg: 1.99-2

2023-09-03 Thread David Runge (@dvzrv)


David Runge pushed to branch main at Arch Linux / Packaging / Packages / nfoview


Commits:
dd267241 by David Runge at 2023-09-04T01:20:42+02:00
upgpkg: 1.99-2

Rebuild to use ttf-cascadia-code as optional dependency: 
https://bugs.archlinux.org/task/79552

- - - - -


1 changed file:

- PKGBUILD


Changes:

=
PKGBUILD
=
@@ -6,7 +6,7 @@
 pkgname=nfoview
 pkgver=1.99
 _commit=839fbd127765b1d608e3587321e0464d97adb4a2  # refs/tags/1.99
-pkgrel=1
+pkgrel=2
 pkgdesc="Simple NFO file viewer in GTK+ 3"
 arch=(any)
 url="https://otsaloma.io/nfoview/;
@@ -30,7 +30,7 @@ makedepends=(
   python-setuptools
   python-wheel
 )
-optdepends=('terminus-font: recommended font')
+optdepends=('ttf-cascadia-code: recommended font')
 
source=($pkgname::git+https://github.com/otsaloma/$pkgname.git#tag=$_commit?signed)
 sha512sums=('SKIP')
 validpgpkeys=('8DD6B3FCDAB33C91EA915B913A584A9504CACA67') # Osmo Salomaa 




View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/nfoview/-/commit/dd267241901777da92b52284b6652833b7b0

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/nfoview/-/commit/dd267241901777da92b52284b6652833b7b0
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/cmake][main] Add make and ninja to optdepends to indicate generator support...

2023-09-03 Thread David Runge (@dvzrv)


David Runge pushed to branch main at Arch Linux / Packaging / Packages / cmake


Commits:
cc536ef4 by David Runge at 2023-09-04T03:24:58+02:00
Add make and ninja to optdepends to indicate generator support 
(https://bugs.archlinux.org/task/67836)

- - - - -


1 changed file:

- PKGBUILD


Changes:

=
PKGBUILD
=
@@ -11,7 +11,11 @@ url="https://www.cmake.org/;
 license=('custom')
 depends=('curl' 'libarchive' 'hicolor-icon-theme' 'jsoncpp' 'libjsoncpp.so' 
'libuv' 'rhash' 'cppdap')
 makedepends=('qt6-base' 'python-sphinx' 'emacs' 'nlohmann-json')
-optdepends=('qt6-base: cmake-gui')
+optdepends=(
+  'make: for unix Makefile generator'
+  'ninja: for ninja generator'
+  'qt6-base: cmake-gui'
+)
 source=("https://www.cmake.org/files/v${pkgver%.*}/${pkgname}-${pkgver}.tar.gz;
 
"https://www.cmake.org/files/v${pkgver%.*}/${pkgname}-${pkgver}-SHA-256.txt"{,.asc})
 
sha512sums=('fc04b041f5c73b0a969ba09251e00e20f33e7a76460630d60e95ce08086c6b41b82315bd8782c19070b5f12a4290858825687f816b69ad5df8101053b4a2b48a'



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/cmake/-/commit/cc536ef46284e1c9dda731c65ebb9d9c7dcc90c4

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/cmake/-/commit/cc536ef46284e1c9dda731c65ebb9d9c7dcc90c4
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/ostree] Pushed new tag 2023.6-2

2023-09-03 Thread David Runge (@dvzrv)


David Runge pushed new tag 2023.6-2 at Arch Linux / Packaging / Packages / 
ostree

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/ostree/-/tree/2023.6-2
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/ostree][main] upgpkg: 2023.6-2

2023-09-03 Thread David Runge (@dvzrv)


David Runge pushed to branch main at Arch Linux / Packaging / Packages / ostree


Commits:
f439c76c by David Runge at 2023-09-04T02:49:52+02:00
upgpkg: 2023.6-2

Rebuild to not build dracut integration by default:
https://bugs.archlinux.org/task/75409
https://github.com/ostreedev/ostree/issues/2723

- - - - -


1 changed file:

- PKGBUILD


Changes:

=
PKGBUILD
=
@@ -5,11 +5,11 @@
 pkgname=ostree
 _commit=cf09e9f4e8f10d772a04ebe0ca9f66698e837f6a  # tags/v2023.6
 pkgver=2023.6
-pkgrel=1
+pkgrel=2
 pkgdesc="Operating system and container binary deployment and upgrades"
 url="https://ostreedev.github.io/ostree/;
 arch=(x86_64)
-license=(custom:LGPL2)
+license=(LGPL-2.0-or-later)
 depends=(
   bash
   fuse3
@@ -91,7 +91,7 @@ build() {
 --enable-gtk-doc
 --with-builtin-grub2-mkconfig
 --with-curl
---with-dracut
+--with-dracut=yesbutnoconf
 --with-ed25519-libsodium
 --with-mkinitcpio
 --with-openssl



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/ostree/-/commit/f439c76ccc41552ee0d5cb5cc49d79375b9a6ef4

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/ostree/-/commit/f439c76ccc41552ee0d5cb5cc49d79375b9a6ef4
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/gperf][main] upgpkg: 3.1-5

2023-09-03 Thread David Runge (@dvzrv)


David Runge pushed to branch main at Arch Linux / Packaging / Packages / gperf


Commits:
3f3b3fe7 by David Runge at 2023-09-04T02:56:54+02:00
upgpkg: 3.1-5

Rebuild to remove texinfo from depends: https://bugs.archlinux.org/task/73457
Switch to correct SPDX license identifier (GPL-3.0-or-later).
Add all direct dependencies.

- - - - -


1 changed file:

- PKGBUILD


Changes:

=
PKGBUILD
=
@@ -3,12 +3,12 @@
 
 pkgname=gperf
 pkgver=3.1
-pkgrel=4
+pkgrel=5
 pkgdesc="Perfect hash function generator"
 arch=('x86_64')
 url="https://www.gnu.org/software/gperf/;
-license=('GPL3')
-depends=('gcc-libs' 'texinfo')
+license=('GPL-3.0-or-later')
+depends=('gcc-libs' 'glibc')
 source=("https://ftp.gnu.org/pub/gnu/gperf/${pkgname}-${pkgver}.tar.gz"{,.sig})
 sha256sums=('588546b945bba4b70b6a3a616e80b4ab466e3f33024a352fc2198112cdbb3ae2'
 'SKIP')



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/gperf/-/commit/3f3b3fe7acc23bfaf306a16c32ed61265101905b

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/gperf/-/commit/3f3b3fe7acc23bfaf306a16c32ed61265101905b
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/gperf] Pushed new tag 3.1-5

2023-09-03 Thread David Runge (@dvzrv)


David Runge pushed new tag 3.1-5 at Arch Linux / Packaging / Packages / gperf

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/gperf/-/tree/3.1-5
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/xjadeo] Pushed new tag 0.8.13-1

2023-09-03 Thread David Runge (@dvzrv)


David Runge pushed new tag 0.8.13-1 at Arch Linux / Packaging / Packages / 
xjadeo

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/xjadeo/-/tree/0.8.13-1
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/xjadeo][main] upgpkg: 0.8.13-1

2023-09-03 Thread David Runge (@dvzrv)


David Runge pushed to branch main at Arch Linux / Packaging / Packages / xjadeo


Commits:
041ba8c5 by David Runge at 2023-09-04T01:27:47+02:00
upgpkg: 0.8.13-1

Switch to correct SPDX license identifier (GPL-2.0-or-later)

- - - - -


1 changed file:

- PKGBUILD


Changes:

=
PKGBUILD
=
@@ -2,12 +2,12 @@
 # Contributor: speps 
 
 pkgname=xjadeo
-pkgver=0.8.12
-pkgrel=3
+pkgver=0.8.13
+pkgrel=1
 pkgdesc="A simple video player that is synchronized to jack transport"
 arch=(x86_64)
 url="https://github.com/x42/xjadeo;
-license=(GPL2)
+license=(GPL-2.0-or-later)
 depends=(
   glibc
   imlib2
@@ -30,8 +30,8 @@ makedepends=(
 )
 backup=(etc/xjadeorc)
 source=($url/archive/v$pkgver/$pkgname-v$pkgver.tar.gz)
-sha512sums=('c63a18b31e9800cf7f79b90da95bdcaa60c528b586d3a105c47bd514e478e0ff5b8cefd8ada1b9dab51382799fadc297dd26688b648b3475cb33382acf2aa9c0')
-b2sums=('8acead9046c24f7d15028f40d60bcdb29fdda128267ee63e173721f6d62e751e3c9983c7fe4831e78a605c5d54d39fef0ef5093b9bf3e51605c44ee928c271d6')
+sha512sums=('ce0822d4a9a477bba3926fbf27ee4c84af1afd67782ccc7c07971b5004ab0843d3587a126621fa0b87f6f28e58d96dde22a26d5f478b77665a6d74d491b6dc68')
+b2sums=('88f8f8e1603eab7fdc21b443b3bcd2cadd212ba5a3af78bf309394be3ad70b9381e2a39163ed24dd1262d035201d2c73351ca32cf67ad9f0a37d92136f7f2887')
 
 prepare() {
   cd $pkgname-$pkgver



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/xjadeo/-/commit/041ba8c5cfbdead3c801be53009ff311d4bb3835

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/xjadeo/-/commit/041ba8c5cfbdead3c801be53009ff311d4bb3835
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/python-gitpython][main] upgpkg: 3.1.34-1

2023-09-03 Thread David Runge (@dvzrv)


David Runge pushed to branch main at Arch Linux / Packaging / Packages / 
python-gitpython


Commits:
827efb4a by David Runge at 2023-09-04T01:26:34+02:00
upgpkg: 3.1.34-1

Switch to correct SPDX license identifier (BSD-3-Clause)

- - - - -


1 changed file:

- PKGBUILD


Changes:

=
PKGBUILD
=
@@ -5,11 +5,11 @@
 _name=gitpython
 pkgdesc="A python library used to interact with Git repositories"
 pkgname=python-gitpython
-_commit=c1c877b0ca1cd8429c6b8bd9d8a742360f995160  # refs/tags/3.1.33
-pkgver=3.1.33
+_commit=b60033e81f54eb734187c33ca4add5a241e970fc  # refs/tags/3.1.34
+pkgver=3.1.34
 pkgrel=1
 url="https://github.com/gitpython-developers/gitpython;
-license=(BSD)
+license=(BSD-3-Clause)
 arch=(any)
 depends=(
   git



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python-gitpython/-/commit/827efb4a64278f10d89405a16261320458d9fa7f

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python-gitpython/-/commit/827efb4a64278f10d89405a16261320458d9fa7f
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/python-gitpython] Pushed new tag 3.1.34-1

2023-09-03 Thread David Runge (@dvzrv)


David Runge pushed new tag 3.1.34-1 at Arch Linux / Packaging / Packages / 
python-gitpython

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python-gitpython/-/tree/3.1.34-1
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/openapi-generator] Pushed new tag 7.0.0-2

2023-09-03 Thread David Runge (@dvzrv)


David Runge pushed new tag 7.0.0-2 at Arch Linux / Packaging / Packages / 
openapi-generator

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/openapi-generator/-/tree/7.0.0-2
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/openapi-generator][main] upgpkg: 7.0.0-2

2023-09-03 Thread David Runge (@dvzrv)


David Runge pushed to branch main at Arch Linux / Packaging / Packages / 
openapi-generator


Commits:
10245dec by David Runge at 2023-09-04T01:29:16+02:00
upgpkg: 7.0.0-2

Rebuild to fix java version in wrapper script: 
https://bugs.archlinux.org/task/79554

- - - - -


2 changed files:

- PKGBUILD
- openapi-generator.sh


Changes:

=
PKGBUILD
=
@@ -2,18 +2,19 @@
 
 pkgname=openapi-generator
 pkgver=7.0.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Generation of API client libraries, server stubs, documentation and 
configuration"
 arch=(any)
 url="https://github.com/openapitools/openapi-generator/;
 license=(Apache)
+_java_version=11
 depends=(
   bash
-  java-runtime=11
+  java-runtime=$_java_version
 )
 makedepends=(
   maven
-  java-environment=11
+  java-environment=$_java_version
   strip-nondeterminism
 )
 source=(
@@ -21,9 +22,14 @@ source=(
   $pkgname.sh
 )
 
sha512sums=('05f1cb00c41eb6a7727ec69a0007160f13bca86933937b9f31164c0aba37775eb1c2eafaa60f168ac76bc9368fe8cc7748c1de9e7e11159870ac06523a7981a5'
-
'0b81955e2da12182b70366c4d8ff48d970a0edee6242a13dc657879b2e1c15205a2bfa01cbef51dd86d90e1176569a211b704d30d19b529e15ead825a89a4e9c')
+
'82a21b46b5340108a6cf54350c25e7d9e9fbb97a0837ff68dc74f7cf2b105c12c33a4cc20aa641e8a9e4034de3e62a3f9ca03f6f7e5dc4f37b3827dff41eac46')
 
b2sums=('ee749c1efa7159a7057b25efec8ba288e3e5aa90ef825751592490e7022d8025654bb642b4ff1431e9c31e91b6af37b2ae5d5d94d4deec2ea2eef402aec557c2'
-
'd2f38df8fd23a32e95e9e09624283ca4927dce8cf6dbdbfc11547396ae2bd9c6c1ff65082447f1e30caba3654fd6e50558272d524242ca6727df7024729a1123')
+
'c7bf34d415aeceba2816edd6010706a7b9b547c9240344e5431f3280a552c2b578de6fc3fc90b0640d4f91d655cc419aabe615b8946d6c82d71061afa65cc302')
+
+prepare() {
+  # set java version for wrapper script
+  sed "s/JAVA_VERSION/$_java_version/" $pkgname.sh > $pkgname
+}
 
 build() {
   cd $pkgname-$pkgver
@@ -36,6 +42,6 @@ build() {
 package() {
   install -vDm 644 
$pkgname-$pkgver/modules/$pkgname-cli/target/openapi-generator-cli.jar -t 
"$pkgdir/usr/share/java/$pkgname/"
   install -vDm 644 $pkgname-$pkgver/scripts/$pkgname-cli-completion.bash 
"$pkgdir/usr/share/bash/bash-completion/completions/openapi-generator"
-  install -vDm 755 $pkgname.sh "$pkgdir/usr/bin/$pkgname"
+  install -vDm 755 $pkgname -t "$pkgdir/usr/bin/"
   ln -svf "$pkgname" "$pkgdir/usr/bin/$pkgname-cli"
 }


=
openapi-generator.sh
=
@@ -1,4 +1,4 @@
 #!/usr/bin/env sh
 
-PATH="/usr/lib/jvm/java-8-openjdk/bin:${PATH}"
+PATH="/usr/lib/jvm/java-JAVA_VERSION-openjdk/bin:${PATH}"
 java -jar /usr/share/java/openapi-generator/openapi-generator-cli.jar "$@"



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/openapi-generator/-/commit/10245dec8ee426925da46559ab940e0587fe1c69

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/openapi-generator/-/commit/10245dec8ee426925da46559ab940e0587fe1c69
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/mtr] Pushed new tag 0.95-4

2023-09-03 Thread David Runge (@dvzrv)


David Runge pushed new tag 0.95-4 at Arch Linux / Packaging / Packages / mtr

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/mtr/-/tree/0.95-4
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/mtr][main] 3 commits: Switch to correct SPDX license identifier for the project (GPL-2.0-only).

2023-09-03 Thread David Runge (@dvzrv)


David Runge pushed to branch main at Arch Linux / Packaging / Packages / mtr


Commits:
27acee32 by David Runge at 2023-09-04T03:13:15+02:00
Switch to correct SPDX license identifier for the project (GPL-2.0-only).

- - - - -
d05bcb2e by David Runge at 2023-09-04T03:16:57+02:00
Use alphabetically sorted bash arrays with one entry per line for better 
handling

- - - - -
f79a42b2 by David Runge at 2023-09-04T03:20:40+02:00
upgpkg: 0.95-4

Rebuild to add jansson as dependency for JSON output:
https://bugs.archlinux.org/task/68237

- - - - -


1 changed file:

- PKGBUILD


Changes:

=
PKGBUILD
=
@@ -5,12 +5,19 @@
 pkgbase=mtr
 pkgname=('mtr' 'mtr-gtk')
 pkgver=0.95
-pkgrel=3
+pkgrel=4
 pkgdesc='Combines the functionality of traceroute and ping into one tool'
 url='https://www.bitwizard.nl/mtr/'
 arch=('x86_64')
-license=('GPL2')
-makedepends=('ncurses' 'gtk3' 'libcap' 'gdk-pixbuf2')
+license=('GPL-2.0-only')
+makedepends=(
+  'gdk-pixbuf2'
+  'glibc'
+  'gtk3'
+  'jansson'
+  'libcap'
+  'ncurses'
+)
 install=mtr.install
 
source=(https://github.com/traviscross/mtr/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
 
sha512sums=('a7d69e0c551a10ae80a650a34588119e6c6b124a8c2c93d3de29e5daa6ef99f9217d875529d443c3760cd6fd7bd04d1e9abe33ef12635826c66a98bd776c1690')
@@ -42,7 +49,12 @@ build() {
 
 package_mtr() {
   pkgdesc='Combines the functionality of traceroute and ping into one tool 
(CLI version)'
-  depends=('ncurses' 'libcap' libncursesw.so)
+  depends=(
+'glibc'
+'jansson'
+'libcap'
+'ncurses' libncursesw.so
+  )
   optdepends=('bash-completion: bash completion support')
   cd ${pkgbase}-${pkgver}-cli
   make DESTDIR="${pkgdir}" install
@@ -50,8 +62,15 @@ package_mtr() {
 
 package_mtr-gtk() {
   pkgdesc='Combines the functionality of traceroute and ping into one tool 
(GTK version)'
-  depends=('ncurses' 'libcap' 'gtk3' 'gdk-pixbuf2'
-   libgtk-3.so libgobject-2.0.so libgdk_pixbuf-2.0.so 
libgobject-2.0.so libglib-2.0.so libncursesw.so)
+  depends=(
+'gdk-pixbuf2' libgdk_pixbuf-2.0.so
+'glib2' libglib-2.0.so libgobject-2.0.so
+'glibc'
+'gtk3' libgtk-3.so
+'jansson'
+'libcap'
+'ncurses' libncursesw.so
+  )
   optdepends=('bash-completion: bash completion support')
   conflicts=('mtr')
   provides=("mtr=${pkgver}")



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/mtr/-/compare/ec5b2c2003b5ea1198e9a20c6f027d7071997b4c...f79a42b2dba6f533bf1fdc28b8c92b846752e8ff

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/mtr/-/compare/ec5b2c2003b5ea1198e9a20c6f027d7071997b4c...f79a42b2dba6f533bf1fdc28b8c92b846752e8ff
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/swh-plugins][main] 8 commits: Remove unnecessary quotes and curly braces

2023-09-02 Thread David Runge (@dvzrv)


David Runge pushed to branch main at Arch Linux / Packaging / Packages / 
swh-plugins


Commits:
4e586a5d by David Runge at 2023-09-02T14:40:21+02:00
Remove unnecessary quotes and curly braces

- - - - -
e9fe8a31 by David Runge at 2023-09-02T14:42:33+02:00
Switch to correct SPDX license identifier for the project (GPL-2.0-or-later).

- - - - -
a0b64892 by David Runge at 2023-09-02T14:43:59+02:00
Use alphabetically sorted bash arrays with one entry per line for better 
handling

- - - - -
2c969d35 by David Runge at 2023-09-02T14:46:17+02:00
Prevent libtool from overlinking everything.

- - - - -
eb16a77e by David Runge at 2023-09-02T14:46:50+02:00
Add ladspa-host to depends, as the plugins need a host to run.

- - - - -
00ed46ae by David Runge at 2023-09-02T14:47:35+02:00
Update maintainer info.

- - - - -
601dfd55 by David Runge at 2023-09-02T14:48:59+02:00
Rename patch so that it has a unique and package specific name.

- - - - -
6af0ead5 by David Runge at 2023-09-02T14:51:00+02:00
Consolidate steps in prepare() (remove unnecessary setting of CFLAGS).

- - - - -


2 changed files:

- PKGBUILD
- use_system_gsm.patch → swh-plugins-0.4.17-use_system_gsm.patch


Changes:

=
PKGBUILD
=
@@ -1,44 +1,58 @@
-# Maintainer: David Runge 
+# Maintainer: David Runge 
 # Contributor: Ray Rashif 
 # Contributor: Rob Til Freedmen 
 # Contributor: Damir Perisa 
 # Contributor: Robert Emil Berge
 
+_name=ladspa
 pkgname=swh-plugins
 pkgver=0.4.17
 pkgrel=4
 pkgdesc="Steve Harris' LADSPA plug-ins suite"
-arch=('x86_64')
+arch=(x86_64)
 url="http://plugin.org.uk/;
-license=('GPL2')
-depends=('fftw' 'gsm')
-makedepends=('ladspa' 'libxml2' 'perl-xml-parser')
-groups=('ladspa-plugins' 'pro-audio')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/swh/ladspa/archive/v${pkgver}.tar.gz;
-'use_system_gsm.patch')
+license=(GPL-2.0-or-later)
+depends=(
+  fftw
+  glibc
+  gsm
+  ladspa-host
+)
+makedepends=(
+  ladspa
+  libxml2
+  perl-xml-parser
+)
+groups=(
+  ladspa-plugins
+  pro-audio
+)
+source=(
+  
$pkgname-$pkgver.tar.gz::https://github.com/swh/$_name/archive/v$pkgver.tar.gz
+  $pkgname-0.4.17-use_system_gsm.patch
+)
 
sha512sums=('6b566030b43c3929ce8938648abd458efa0fea0b4916410a34b4f4fa788c45e4a6ec3f46ca435f8546179ff0c4674303db22314e1c1f1d09e5f2b71e6c5aecc7'
 
'7080a115442d682bdad17b2bfa2694ba5f6ef53efcd214748fe26133dda6a79726f57e34819e2324d1bf0a999baf5c895cba488658cc9695d4903755dce5774f')
 
 prepare() {
-  mv -v ladspa-${pkgver} "${pkgname}-${pkgver}"
-  cd "${pkgname}-${pkgver}"
+  cd $_name-$pkgver
   # patching to use system gsm library
-  patch -Np1 -i "${srcdir}/use_system_gsm.patch"
-  autoreconf -vfi
-  export CFLAGS="$CFLAGS -fPIC"
+  patch -Np1 -i ../$pkgname-0.4.17-use_system_gsm.patch
+  autoreconf -fiv
 }
 
 build() {
-  cd "${pkgname}-${pkgver}"
+  cd $_name-$pkgver
   ./configure --prefix=/usr
+  # prevent excessive overlinking due to libtool
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
   make
 }
 
 package() {
-  cd "${pkgname}-${pkgver}"
+  cd $_name-$pkgver
   make DESTDIR="$pkgdir/" install
-  install -t "${pkgdir}/usr/share/doc/${pkgname}" \
--vDm 644 {AUTHORS,ChangeLog,NEWS,README,TODO}
+  install -vDm 644 {AUTHORS,ChangeLog,NEWS,README,TODO} -t 
"$pkgdir/usr/share/doc/$pkgname/"
 }
 
 # vim:set ts=2 sw=2 et:


=
use_system_gsm.patch → swh-plugins-0.4.17-use_system_gsm.patch
=



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/swh-plugins/-/compare/262783727860e78b259391d2dd6d9925f8293c4e...6af0ead549427faa38e4645a2db6cd62dcc21958

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/swh-plugins/-/compare/262783727860e78b259391d2dd6d9925f8293c4e...6af0ead549427faa38e4645a2db6cd62dcc21958
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/swh-plugins] Pushed new tag 0.4.17-5

2023-09-02 Thread David Runge (@dvzrv)


David Runge pushed new tag 0.4.17-5 at Arch Linux / Packaging / Packages / 
swh-plugins

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/swh-plugins/-/tree/0.4.17-5
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/swh-plugins][main] upgpkg: 0.4.17-5

2023-09-02 Thread David Runge (@dvzrv)


David Runge pushed to branch main at Arch Linux / Packaging / Packages / 
swh-plugins


Commits:
9a0aa3f1 by David Runge at 2023-09-02T14:52:35+02:00
upgpkg: 0.4.17-5

Rebuild to fix issues related to pipewire (more likely glibc):
https://bugs.archlinux.org/task/79240

- - - - -


1 changed file:

- PKGBUILD


Changes:

=
PKGBUILD
=
@@ -7,7 +7,7 @@
 _name=ladspa
 pkgname=swh-plugins
 pkgver=0.4.17
-pkgrel=4
+pkgrel=5
 pkgdesc="Steve Harris' LADSPA plug-ins suite"
 arch=(x86_64)
 url="http://plugin.org.uk/;



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/swh-plugins/-/commit/9a0aa3f1d1d1c082ea1bc85cc81cc770203491e8

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/swh-plugins/-/commit/9a0aa3f1d1d1c082ea1bc85cc81cc770203491e8
You're receiving this email because of your account on gitlab.archlinux.org.




  1   2   3   4   5   6   7   8   9   10   >