[Git][archlinux/packaging/packages/chromium][main] Build Qt6 shim

2024-04-24 Thread Evangelos Foutras (@foutrelis)


Evangelos Foutras pushed to branch main at Arch Linux / Packaging / Packages / 
chromium


Commits:
53eba715 by Antonio Rojas at 2024-04-24T07:07:47+00:00
Build Qt6 shim

Makes Chromium work on Plasma with --ozone-platform=wayland without
needing to install Qt5.

Also drop obsolete mention to -enable-features=AllowQt in optdepends,
this is now enabled by default.

Fixes #7

- - - - -


3 changed files:

- .SRCINFO
- PKGBUILD
- + qt-6.7.patch


Changes:

=
.SRCINFO
=
@@ -15,6 +15,7 @@ pkgbase = chromium
makedepends = pipewire
makedepends = rust
makedepends = qt5-base
+   makedepends = qt6-base
makedepends = java-runtime-headless
makedepends = git
depends = gtk3
@@ -59,11 +60,13 @@ pkgbase = chromium
source = drop-flag-unsupported-by-clang17.patch
source = compiler-rt-adjust-paths.patch
source = use-oauth2-client-switches-as-default.patch
+   source = qt-6.7.patch
sha256sums = 
ebd553527149cb8477a522df90acd6cea2388a6f431e2db589a0301df1d0cae2
sha256sums = 
213e50f48b67feb4441078d50b0fd431df34323be15be97c55302d3fdac4483a
sha256sums = 
c2bc4e65ed2a4e23528dd10d5c15bf99f880b7bbb789cc720d451b78098a7e12
sha256sums = 
3bd35dab1ded5d9e1befa10d5c6c4555fe0a76d909fb724ac57d0bf10cb666c1
sha256sums = 
b3de01b7df227478687d7517f61a777450dca765756002c80c4915f271e2d961
sha256sums = 
e393174d7695d0bafed69e868c5fbfecf07aa6969f3b64596d0bae8b067e1711
+   sha256sums = 
e30623f36c54f4af3a8aa7d9400f7d2bed6ef560f15d665d2aa8fd777cb2565f
 
 pkgname = chromium


=
PKGBUILD
=
@@ -17,10 +17,9 @@ depends=('gtk3' 'nss' 'alsa-lib' 'xdg-utils' 'libxss' 
'libcups' 'libgcrypt'
  'ttf-liberation' 'systemd' 'dbus' 'libpulse' 'pciutils' 'libva'
  'libffi' 'desktop-file-utils' 'hicolor-icon-theme')
 makedepends=('python' 'gn' 'ninja' 'clang' 'lld' 'gperf' 'nodejs' 'pipewire'
- 'rust' 'qt5-base' 'java-runtime-headless' 'git')
+ 'rust' 'qt5-base' 'qt6-base' 'java-runtime-headless' 'git')
 optdepends=('pipewire: WebRTC desktop sharing under Wayland'
 'kdialog: support for native dialogs in Plasma'
-'qt5-base: enable Qt5 with --enable-features=AllowQt'
 'gtk4: for --gtk-version=4 (GTK4 IME might work better on Wayland)'
 'org.freedesktop.secrets: password storage backend on GNOME / Xfce'
 'kwallet: support for storing passwords in KWallet on Plasma')
@@ -30,12 +29,14 @@ 
source=(https://commondatastorage.googleapis.com/chromium-browser-official/chrom
 
https://gitlab.com/Matt.Jolly/chromium-patches/-/archive/${pkgver%%.*}/chromium-patches-${pkgver%%.*}.tar.bz2
 drop-flag-unsupported-by-clang17.patch
 compiler-rt-adjust-paths.patch
+qt-6.7.patch
 use-oauth2-client-switches-as-default.patch)
 sha256sums=('ebd553527149cb8477a522df90acd6cea2388a6f431e2db589a0301df1d0cae2'
 '213e50f48b67feb4441078d50b0fd431df34323be15be97c55302d3fdac4483a'
 'c2bc4e65ed2a4e23528dd10d5c15bf99f880b7bbb789cc720d451b78098a7e12'
 '3bd35dab1ded5d9e1befa10d5c6c4555fe0a76d909fb724ac57d0bf10cb666c1'
 'b3de01b7df227478687d7517f61a777450dca765756002c80c4915f271e2d961'
+'e30623f36c54f4af3a8aa7d9400f7d2bed6ef560f15d665d2aa8fd777cb2565f'
 'e393174d7695d0bafed69e868c5fbfecf07aa6969f3b64596d0bae8b067e1711')
 
 if (( _manual_clone )); then
@@ -113,6 +114,9 @@ prepare() {
   # Allow libclang_rt.builtins from compiler-rt >= 16 to be used
   patch -Np1 -i ../compiler-rt-adjust-paths.patch
 
+  # Fix build with Qt 6.7
+  patch -Np1 -i ../qt-6.7.patch
+
   # Fixes for building with libstdc++ instead of libc++
   patch -Np1 -i ../chromium-patches-*/chromium-117-material-color-include.patch
 
@@ -183,6 +187,8 @@ build() {
 'enable_hangout_services_extension=true'
 'enable_widevine=true'
 'enable_nacl=false'
+'use_qt6=true'
+'moc_qt6_path="/usr/lib/qt6"'
 "google_api_key=\"$_google_api_key\""
   )
 
@@ -279,6 +285,7 @@ package() {
 chrome_200_percent.pak
 chrome_crashpad_handler
 libqt5_shim.so
+libqt6_shim.so
 resources.pak
 v8_context_snapshot.bin
 


=
qt-6.7.patch
=
@@ -0,0 +1,31 @@
+From 3a812de6e7e0b285eda21ebbb670ca809c4db2b5 Mon Sep 17 00:00:00 2001
+From: Matt Jolly 
+Date: Thu, 11 Apr 2024 12:42:17 +1000
+Subject: [PATCH] Add QtGui to the list of Qt modules
+
+Re: https://bugreports.qt.io/browse/QTBUG-124135 - certain versions of QT
+(6.6.3, 6.7.0) produce pkg-config files that no longer emit dependencies.
+This causes Chromium builds to fail as due to not seeing QtGui as a dependency
+of QtWidgets:
+
+`gen/qt6/../../../../ui/qt/qt_shim.h:11:10: fatal error: 'QImage' file not 
found`
+
+

[Git][archlinux/packaging/packages/oxipng] Pushed new tag 9.1.1-2

2024-04-24 Thread Jelle van der Waa (@jelle)


Jelle van der Waa pushed new tag 9.1.1-2 at Arch Linux / Packaging / Packages / 
oxipng

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/oxipng/-/tree/9.1.1-2
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/oxipng][main] Add missing man page

2024-04-24 Thread Jelle van der Waa (@jelle)


Jelle van der Waa pushed to branch main at Arch Linux / Packaging / Packages / 
oxipng


Commits:
0f10c179 by Jelle van der Waa at 2024-04-24T09:27:01+02:00
Add missing man page

Closes: 
https://gitlab.archlinux.org/archlinux/packaging/packages/oxipng/-/issues/1

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = oxipng
pkgdesc = A lossless PNG compression optimiser
pkgver = 9.1.1
-   pkgrel = 1
+   pkgrel = 2
url = https://github.com/shssoichiro/oxipng
arch = x86_64
license = MIT


=
PKGBUILD
=
@@ -3,7 +3,7 @@
 
 pkgname=oxipng
 pkgver=9.1.1
-pkgrel=1
+pkgrel=2
 pkgdesc="A lossless PNG compression optimiser"
 arch=(x86_64)
 url="https://github.com/shssoichiro/oxipng";
@@ -24,5 +24,6 @@ package() {
   cd "$pkgname-$pkgver"
 
   install -Dm755 target/release/oxipng "$pkgdir/usr/bin/oxipng"
+  install -Dm644 target/release/assets/oxipng.1 
"$pkgdir/usr/share/man/man1/oxipng.1"
   install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
 }



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/oxipng/-/commit/0f10c17944f7989357f43b8a655b944b290535b7

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/oxipng/-/commit/0f10c17944f7989357f43b8a655b944b290535b7
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/chromium][main] upgpkg: 124.0.6367.78-1

2024-04-24 Thread Evangelos Foutras (@foutrelis)


Evangelos Foutras pushed to branch main at Arch Linux / Packaging / Packages / 
chromium


Commits:
31c25e62 by Evangelos Foutras at 2024-04-24T11:01:49+03:00
upgpkg: 124.0.6367.78-1

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,6 +1,6 @@
 pkgbase = chromium
pkgdesc = A web browser built for speed, simplicity, and security
-   pkgver = 124.0.6367.60
+   pkgver = 124.0.6367.78
pkgrel = 1
url = https://www.chromium.org/Home
arch = x86_64
@@ -49,24 +49,23 @@ pkgbase = chromium
depends = freetype2
optdepends = pipewire: WebRTC desktop sharing under Wayland
optdepends = kdialog: support for native dialogs in Plasma
-   optdepends = qt5-base: enable Qt5 with --enable-features=AllowQt
optdepends = gtk4: for --gtk-version=4 (GTK4 IME might work better on 
Wayland)
optdepends = org.freedesktop.secrets: password storage backend on GNOME 
/ Xfce
optdepends = kwallet: support for storing passwords in KWallet on Plasma
options = !lto
-   source = 
https://commondatastorage.googleapis.com/chromium-browser-official/chromium-124.0.6367.60.tar.xz
+   source = 
https://commondatastorage.googleapis.com/chromium-browser-official/chromium-124.0.6367.78.tar.xz
source = 
https://github.com/foutrelis/chromium-launcher/archive/v8/chromium-launcher-8.tar.gz
source = 
https://gitlab.com/Matt.Jolly/chromium-patches/-/archive/124/chromium-patches-124.tar.bz2
source = drop-flag-unsupported-by-clang17.patch
source = compiler-rt-adjust-paths.patch
-   source = use-oauth2-client-switches-as-default.patch
source = qt-6.7.patch
-   sha256sums = 
ebd553527149cb8477a522df90acd6cea2388a6f431e2db589a0301df1d0cae2
+   source = use-oauth2-client-switches-as-default.patch
+   sha256sums = 
697ea9e8591e0a74deea260a50441711b1ea499ca19e91d6012c5b4d200d1acf
sha256sums = 
213e50f48b67feb4441078d50b0fd431df34323be15be97c55302d3fdac4483a
sha256sums = 
c2bc4e65ed2a4e23528dd10d5c15bf99f880b7bbb789cc720d451b78098a7e12
sha256sums = 
3bd35dab1ded5d9e1befa10d5c6c4555fe0a76d909fb724ac57d0bf10cb666c1
sha256sums = 
b3de01b7df227478687d7517f61a777450dca765756002c80c4915f271e2d961
-   sha256sums = 
e393174d7695d0bafed69e868c5fbfecf07aa6969f3b64596d0bae8b067e1711
sha256sums = 
e30623f36c54f4af3a8aa7d9400f7d2bed6ef560f15d665d2aa8fd777cb2565f
+   sha256sums = 
e393174d7695d0bafed69e868c5fbfecf07aa6969f3b64596d0bae8b067e1711
 
 pkgname = chromium


=
PKGBUILD
=
@@ -4,7 +4,7 @@
 # Contributor: Daniel J Griffiths 
 
 pkgname=chromium
-pkgver=124.0.6367.60
+pkgver=124.0.6367.78
 pkgrel=1
 _launcher_ver=8
 _manual_clone=0
@@ -31,7 +31,7 @@ 
source=(https://commondatastorage.googleapis.com/chromium-browser-official/chrom
 compiler-rt-adjust-paths.patch
 qt-6.7.patch
 use-oauth2-client-switches-as-default.patch)
-sha256sums=('ebd553527149cb8477a522df90acd6cea2388a6f431e2db589a0301df1d0cae2'
+sha256sums=('697ea9e8591e0a74deea260a50441711b1ea499ca19e91d6012c5b4d200d1acf'
 '213e50f48b67feb4441078d50b0fd431df34323be15be97c55302d3fdac4483a'
 'c2bc4e65ed2a4e23528dd10d5c15bf99f880b7bbb789cc720d451b78098a7e12'
 '3bd35dab1ded5d9e1befa10d5c6c4555fe0a76d909fb724ac57d0bf10cb666c1'



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/chromium/-/commit/31c25e6231366d4b621c4203cc9d8683fa4ce73e

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/chromium/-/commit/31c25e6231366d4b621c4203cc9d8683fa4ce73e
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/chromium] Pushed new tag 124.0.6367.78-1

2024-04-24 Thread Evangelos Foutras (@foutrelis)


Evangelos Foutras pushed new tag 124.0.6367.78-1 at Arch Linux / Packaging / 
Packages / chromium

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/chromium/-/tree/124.0.6367.78-1
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/eza] Pushed new tag 0.18.11-2

2024-04-24 Thread Caleb Maclennan (@alerque)


Caleb Maclennan pushed new tag 0.18.11-2 at Arch Linux / Packaging / Packages / 
eza

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/eza/-/tree/0.18.11-2
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/eza][main] upgpkg: 0.18.11-2: Rebuild with libgit2-1.8

2024-04-24 Thread Caleb Maclennan (@alerque)


Caleb Maclennan pushed to branch main at Arch Linux / Packaging / Packages / eza


Commits:
6bdf99a2 by Caleb Maclennan at 2024-04-24T11:09:45+03:00
upgpkg: 0.18.11-2: Rebuild with libgit2-1.8

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,17 +1,20 @@
 pkgbase = eza
pkgdesc = A modern replacement for ls (community fork of exa)
pkgver = 0.18.11
-   pkgrel = 1
+   pkgrel = 2
url = https://github.com/eza-community/eza
arch = x86_64
license = MIT
makedepends = cargo
makedepends = pandoc
+   depends = gcc-libs
+   depends = glibc
+   depends = libgit2
depends = libgit2.so
provides = exa
conflicts = exa
replaces = exa
-   source = 
eza-0.18.11.tar.gz::https://github.com/eza-community/eza/archive/v0.18.11.tar.gz
+   source = 
https://github.com/eza-community/eza/archive/v0.18.11/eza-0.18.11.tar.gz
sha256sums = 
92d810c36ac67038e2ed3c421087de8793eb0b9de332c9239096df9d52eb30e3
b2sums = 
7e49ed0cf4d701138549494f63fd09cda5eea2827dc86b849048e9aecbd374edf022c2120eac13f19bac5cfd890033e3ebfe456e3e11bf9ba23eed3a61ee0669
 


=
PKGBUILD
=
@@ -4,17 +4,19 @@
 
 pkgname=eza
 pkgver=0.18.11
-pkgrel=1
+pkgrel=2
 pkgdesc="A modern replacement for ls (community fork of exa)"
 url="https://github.com/eza-community/eza";
-arch=("x86_64")
-license=("MIT")
-provides=('exa')
-replaces=('exa')
-conflicts=('exa')
-depends=('libgit2.so')
+arch=(x86_64)
+license=(MIT)
+provides=(exa)
+replaces=(exa)
+conflicts=(exa)
+depends=(gcc-libs # libgcc_s.so
+ glibc # libc.so libm.so
+ libgit2 libgit2.so)
 makedepends=("cargo" "pandoc")
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/eza-community/eza/archive/v${pkgver}.tar.gz";)
+source=("$url/archive/v$pkgver/$pkgname-$pkgver.tar.gz")
 sha256sums=('92d810c36ac67038e2ed3c421087de8793eb0b9de332c9239096df9d52eb30e3')
 
b2sums=('7e49ed0cf4d701138549494f63fd09cda5eea2827dc86b849048e9aecbd374edf022c2120eac13f19bac5cfd890033e3ebfe456e3e11bf9ba23eed3a61ee0669')
 
@@ -25,6 +27,7 @@ prepare() {
 
 build() {
   cd "${pkgname}-${pkgver}"
+  CFLAGS+=' -ffat-lto-objects'
   cargo build --frozen --release
   mkdir -p target/man
   for manpage in eza.1 eza_colors.5 eza_colors-explanation.5; do



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/eza/-/commit/6bdf99a2a57b0b2e43ddb877a10577cdd3acf945

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/eza/-/commit/6bdf99a2a57b0b2e43ddb877a10577cdd3acf945
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/hawkeye] Pushed new tag 5.5.1-1

2024-04-24 Thread Caleb Maclennan (@alerque)


Caleb Maclennan pushed new tag 5.5.1-1 at Arch Linux / Packaging / Packages / 
hawkeye

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/hawkeye/-/tree/5.5.1-1
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/hawkeye][main] upgpkg: 5.5.1-1

2024-04-24 Thread Caleb Maclennan (@alerque)


Caleb Maclennan pushed to branch main at Arch Linux / Packaging / Packages / 
hawkeye


Commits:
a166e124 by Caleb Maclennan at 2024-04-24T11:22:30+03:00
upgpkg: 5.5.1-1

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,13 +1,13 @@
 pkgbase = hawkeye
pkgdesc = Simple license header checker and formatter
-   pkgver = 5.4.0
+   pkgver = 5.5.1
pkgrel = 1
url = https://github.com/korandoru/hawkeye
arch = x86_64
license = Apache-2.0
makedepends = cargo-nightly
depends = gcc-libs
-   source = 
hawkeye-5.4.0.tar.gz::https://github.com/korandoru/hawkeye/archive/v5.4.0.tar.gz
-   sha256sums = 
059aad6eaf831a049445ee2b82c435a5096ce8f2dedb3cd8e6984e3b91b5f11b
+   source = 
hawkeye-5.5.1.tar.gz::https://github.com/korandoru/hawkeye/archive/v5.5.1.tar.gz
+   sha256sums = 
48e897748ca2509a8cf248d62bb7c5415a0e67f3171bd99e95b3ad7835f297a9
 
 pkgname = hawkeye


=
PKGBUILD
=
@@ -2,7 +2,7 @@
 # Maintainer: Caleb Maclennan 
 
 pkgname=hawkeye
-pkgver=5.4.0
+pkgver=5.5.1
 pkgrel=1
 pkgdesc="Simple license header checker and formatter"
 arch=('x86_64')
@@ -11,7 +11,7 @@ license=('Apache-2.0')
 depends=('gcc-libs')
 makedepends=('cargo-nightly')
 source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha256sums=('059aad6eaf831a049445ee2b82c435a5096ce8f2dedb3cd8e6984e3b91b5f11b')
+sha256sums=('48e897748ca2509a8cf248d62bb7c5415a0e67f3171bd99e95b3ad7835f297a9')
 
 prepare() {
   cd "$pkgname-$pkgver"



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/hawkeye/-/commit/a166e1245038e888a119f5cad74ef9084e5ed559

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/hawkeye/-/commit/a166e1245038e888a119f5cad74ef9084e5ed559
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/electron22] Pushed new tag 22.3.27-6

2024-04-24 Thread Caleb Maclennan (@alerque)


Caleb Maclennan pushed new tag 22.3.27-6 at Arch Linux / Packaging / Packages / 
electron22

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/electron22/-/tree/22.3.27-6
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/hurl][main] upgpkg: 4.3.0-1

2024-04-24 Thread kpcyrd (@kpcyrd)


kpcyrd pushed to branch main at Arch Linux / Packaging / Packages / hurl


Commits:
201be532 by kpcyrd at 2024-04-24T10:26:39+02:00
upgpkg: 4.3.0-1

- - - - -


3 changed files:

- .SRCINFO
- + .nvchecker.toml
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,6 +1,6 @@
 pkgbase = hurl
pkgdesc = Run and test HTTP requests with plain text
-   pkgver = 4.2.0
+   pkgver = 4.3.0
pkgrel = 1
url = https://github.com/Orange-OpenSource/hurl
arch = x86_64
@@ -13,8 +13,8 @@ pkgbase = hurl
depends = libxml2
depends = libxml2.so
options = !lto
-   source = 
https://github.com/Orange-OpenSource/hurl/archive/4.2.0/hurl-4.2.0.tar.gz
-   sha256sums = 
8ede2b3e9e1e1fb8362750814b0fd07911506c1ea13e38e6c2fe80f447f0
-   b2sums = 
79b2ff72561f7e177be0b4de056d31026e55227e5325452559ca6003f983ce4e34cbff8b9a53fa1db581589744a4e237e98d4dea507888400a99027966f0c5b4
+   source = 
https://github.com/Orange-OpenSource/hurl/archive/4.3.0/hurl-4.3.0.tar.gz
+   sha256sums = 
499f2430ee6b73b0414ab8aa3c9298be8276e7b404b13c76e4c02a86eb1db9cd
+   b2sums = 
7d5edc1709e36193a535593bbf058669b7f61f0637e117050cb85e0cb386aefed26c18a1c5f7f5964ca2649abb684e593acf15adcb1da74e39ca73f066eef610
 
 pkgname = hurl


=
.nvchecker.toml
=
@@ -0,0 +1,4 @@
+[hurl]
+source = "github"
+github = "Orange-OpenSource/hurl"
+use_latest_release = true


=
PKGBUILD
=
@@ -1,7 +1,7 @@
 # Maintainer: kpcyrd 
 
 pkgname=hurl
-pkgver=4.2.0
+pkgver=4.3.0
 pkgrel=1
 pkgdesc="Run and test HTTP requests with plain text"
 url='https://github.com/Orange-OpenSource/hurl'
@@ -18,8 +18,8 @@ makedepends=(
 )
 options=(!lto)
 
source=(https://github.com/Orange-OpenSource/${pkgname}/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha256sums=('8ede2b3e9e1e1fb8362750814b0fd07911506c1ea13e38e6c2fe80f447f0')
-b2sums=('79b2ff72561f7e177be0b4de056d31026e55227e5325452559ca6003f983ce4e34cbff8b9a53fa1db581589744a4e237e98d4dea507888400a99027966f0c5b4')
+sha256sums=('499f2430ee6b73b0414ab8aa3c9298be8276e7b404b13c76e4c02a86eb1db9cd')
+b2sums=('7d5edc1709e36193a535593bbf058669b7f61f0637e117050cb85e0cb386aefed26c18a1c5f7f5964ca2649abb684e593acf15adcb1da74e39ca73f066eef610')
 
 prepare() {
   cd "${pkgname}-${pkgver}"



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/hurl/-/commit/201be53204076d0e9552a4c6c6dc5baf98146af4

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/hurl/-/commit/201be53204076d0e9552a4c6c6dc5baf98146af4
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/hurl] Pushed new tag 4.3.0-1

2024-04-24 Thread kpcyrd (@kpcyrd)


kpcyrd pushed new tag 4.3.0-1 at Arch Linux / Packaging / Packages / hurl

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/hurl/-/tree/4.3.0-1
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/cutefish-qt-plugins][main] upgpkg: 0.5-4: Switch to libqt5xdg, see https://archlinux.org/todo/

2024-04-24 Thread Chih-Hsuan Yen (@yan12125)


Chih-Hsuan Yen pushed to branch main at Arch Linux / Packaging / Packages / 
cutefish-qt-plugins


Commits:
fdf6742b by Chih-Hsuan Yen at 2024-04-24T16:29:35+08:00
upgpkg: 0.5-4: Switch to libqt5xdg, see https://archlinux.org/todo/

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = cutefish-qt-plugins
pkgdesc = Unify Qt application style of CutefishOS
pkgver = 0.5
-   pkgrel = 3
+   pkgrel = 4
url = https://github.com/cutefishos/qt-plugins
arch = x86_64
groups = cutefish
@@ -11,7 +11,7 @@ pkgbase = cutefish-qt-plugins
makedepends = qt5-tools
depends = kwindowsystem5
depends = libdbusmenu-qt5
-   depends = libqtxdg
+   depends = libqt5xdg
depends = qt5-quickcontrols2
source = 
https://github.com/cutefishos/qt-plugins/archive/0.5/cutefish-qt-plugins-0.5.tar.gz
sha512sums = 
ac1e614d41e202cc94125dc5862d8d31b746daa1f1509a775b3e7c084b815f284f1dbd221337b784af0488c50c832af25f4ee0951739fc1e4549e511638d0a95


=
PKGBUILD
=
@@ -2,13 +2,13 @@
 
 pkgname=cutefish-qt-plugins
 pkgver=0.5
-pkgrel=3
+pkgrel=4
 pkgdesc="Unify Qt application style of CutefishOS"
 arch=('x86_64')
 url="https://github.com/cutefishos/qt-plugins";
 license=('GPL')
 groups=('cutefish')
-depends=('kwindowsystem5' 'libdbusmenu-qt5' 'libqtxdg' 'qt5-quickcontrols2')
+depends=('kwindowsystem5' 'libdbusmenu-qt5' 'libqt5xdg' 'qt5-quickcontrols2')
 makedepends=('extra-cmake-modules' 'ninja' 'qt5-tools')
 
source=("https://github.com/cutefishos/qt-plugins/archive/$pkgver/$pkgname-$pkgver.tar.gz";)
 
sha512sums=('ac1e614d41e202cc94125dc5862d8d31b746daa1f1509a775b3e7c084b815f284f1dbd221337b784af0488c50c832af25f4ee0951739fc1e4549e511638d0a95')



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/cutefish-qt-plugins/-/commit/fdf6742ba02a20d1cd8fc29c898f802f4ed022ac

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/cutefish-qt-plugins/-/commit/fdf6742ba02a20d1cd8fc29c898f802f4ed022ac
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/cutefish-qt-plugins] Pushed new tag 0.5-4

2024-04-24 Thread Chih-Hsuan Yen (@yan12125)


Chih-Hsuan Yen pushed new tag 0.5-4 at Arch Linux / Packaging / Packages / 
cutefish-qt-plugins

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/cutefish-qt-plugins/-/tree/0.5-4
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/deepin-qt5integration] Pushed new tag 5.6.26-2

2024-04-24 Thread Chih-Hsuan Yen (@yan12125)


Chih-Hsuan Yen pushed new tag 5.6.26-2 at Arch Linux / Packaging / Packages / 
deepin-qt5integration

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/deepin-qt5integration/-/tree/5.6.26-2
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/deepin-qt5integration][main] upgpkg: 5.6.26-2: Switch to libqt5xdg, see https://archlinux.org/todo/

2024-04-24 Thread Chih-Hsuan Yen (@yan12125)


Chih-Hsuan Yen pushed to branch main at Arch Linux / Packaging / Packages / 
deepin-qt5integration


Commits:
76348a20 by Chih-Hsuan Yen at 2024-04-24T16:29:55+08:00
upgpkg: 5.6.26-2: Switch to libqt5xdg, see https://archlinux.org/todo/

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = deepin-qt5integration
pkgdesc = Qt platform theme integration plugins for DDE
pkgver = 5.6.26
-   pkgrel = 1
+   pkgrel = 2
url = https://github.com/linuxdeepin/qt5integration
arch = x86_64
groups = deepin
@@ -14,7 +14,7 @@ pkgbase = deepin-qt5integration
depends = dtkcore
depends = dtkgui
depends = dtkwidget
-   depends = libqtxdg
+   depends = libqt5xdg
depends = qt5-x11extras
depends = qt5-base
depends = libx11


=
PKGBUILD
=
@@ -2,12 +2,12 @@
 
 pkgname=deepin-qt5integration
 pkgver=5.6.26
-pkgrel=1
+pkgrel=2
 pkgdesc='Qt platform theme integration plugins for DDE'
 arch=('x86_64')
 url="https://github.com/linuxdeepin/qt5integration";
 license=('GPL3')
-depends=('dtkcore' 'dtkgui' 'dtkwidget' 'libqtxdg' 'qt5-x11extras' 'qt5-base' 
'libx11' 'glibc'
+depends=('dtkcore' 'dtkgui' 'dtkwidget' 'libqt5xdg' 'qt5-x11extras' 'qt5-base' 
'libx11' 'glibc'
  'gcc-libs')
 makedepends=('cmake' 'ninja' 'qt5-tools' 'xcb-util-renderutil' 'gtest')
 groups=('deepin')



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/deepin-qt5integration/-/commit/76348a207efca24dde07f0c9f8310518eaa80c28

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/deepin-qt5integration/-/commit/76348a207efca24dde07f0c9f8310518eaa80c28
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/dtkgui][main] upgpkg: 1:5.6.26-2: Switch to libqt5xdg, see https://archlinux.org/todo/

2024-04-24 Thread Chih-Hsuan Yen (@yan12125)


Chih-Hsuan Yen pushed to branch main at Arch Linux / Packaging / Packages / 
dtkgui


Commits:
593a7844 by Chih-Hsuan Yen at 2024-04-24T16:30:07+08:00
upgpkg: 1:5.6.26-2: Switch to libqt5xdg, see https://archlinux.org/todo/

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = dtkgui
pkgdesc = Deepin Toolkit, gui module for DDE look and feel
pkgver = 5.6.26
-   pkgrel = 1
+   pkgrel = 2
epoch = 1
url = https://github.com/linuxdeepin/dtkgui
arch = x86_64
@@ -14,7 +14,7 @@ pkgbase = dtkgui
depends = dtkcore
depends = freeimage
depends = libraw
-   depends = libqtxdg
+   depends = libqt5xdg
depends = librsvg
depends = qt5-base
depends = glib2


=
PKGBUILD
=
@@ -2,13 +2,13 @@
 
 pkgname=dtkgui
 pkgver=5.6.26
-pkgrel=1
+pkgrel=2
 epoch=1
 pkgdesc='Deepin Toolkit, gui module for DDE look and feel'
 arch=('x86_64')
 url="https://github.com/linuxdeepin/dtkgui";
 license=('LGPL3')
-depends=('dtkcore' 'freeimage' 'libraw' 'libqtxdg' 'librsvg' 'qt5-base' 
'glib2' 'libx11' 'gcc-libs')
+depends=('dtkcore' 'freeimage' 'libraw' 'libqt5xdg' 'librsvg' 'qt5-base' 
'glib2' 'libx11' 'gcc-libs')
 makedepends=('cmake' 'ninja' 'qt5-tools' 'gtest' 'doxygen')
 
source=("https://github.com/linuxdeepin/dtkgui/archive/$pkgver/$pkgname-$pkgver.tar.gz";)
 
sha512sums=('95e86ac252b9c6e20fe48a29fd07a6924eeed2f96400aa8f4632e4eddfc13c642c11fe47dcc7d88af06c44c7ea0394733c90b1385ca8408af740653e287371ba')



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/dtkgui/-/commit/593a7844d049f33c93c73d71036ddd4567ca2b2e

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/dtkgui/-/commit/593a7844d049f33c93c73d71036ddd4567ca2b2e
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/dtkgui] Pushed new tag 1-5.6.26-2

2024-04-24 Thread Chih-Hsuan Yen (@yan12125)


Chih-Hsuan Yen pushed new tag 1-5.6.26-2 at Arch Linux / Packaging / Packages / 
dtkgui

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/dtkgui/-/tree/1-5.6.26-2
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/qt5-ukui-platformtheme][main] upgpkg: 1.0.8-11: Switch to libqt5xdg, see https://archlinux.org/todo/

2024-04-24 Thread Chih-Hsuan Yen (@yan12125)


Chih-Hsuan Yen pushed to branch main at Arch Linux / Packaging / Packages / 
qt5-ukui-platformtheme


Commits:
ac7c7f4d by Chih-Hsuan Yen at 2024-04-24T16:30:18+08:00
upgpkg: 1.0.8-11: Switch to libqt5xdg, see https://archlinux.org/todo/

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = qt5-ukui-platformtheme
pkgdesc = The UKUI platform theme for qt5 QPA
pkgver = 1.0.8
-   pkgrel = 10
+   pkgrel = 11
url = https://github.com/ukui/qt5-ukui-platformtheme
arch = x86_64
groups = ukui
@@ -11,7 +11,7 @@ pkgbase = qt5-ukui-platformtheme
depends = gsettings-qt
depends = kwayland5
depends = kwindowsystem5
-   depends = libqtxdg
+   depends = libqt5xdg
source = 
https://github.com/ukui/qt5-ukui-platformtheme/archive/v1.0.8/qt5-ukui-platformtheme-1.0.8.tar.gz
sha512sums = 
e66bacfc3e00bd62e86f5c87ff9d204b851e7a56a17c64900c31ec612ce6b994f41b0107b826efa9d803799410b936ec7b2f0ea2ab77aa3d6b8878f30fb37591
 


=
PKGBUILD
=
@@ -2,13 +2,13 @@
 
 pkgname=qt5-ukui-platformtheme
 pkgver=1.0.8
-pkgrel=10
+pkgrel=11
 pkgdesc="The UKUI platform theme for qt5 QPA"
 arch=('x86_64')
 license=('GPL')
 url="https://github.com/ukui/qt5-ukui-platformtheme";
 groups=('ukui')
-depends=('dconf' 'gsettings-qt' 'kwayland5' 'kwindowsystem5' 'libqtxdg')
+depends=('dconf' 'gsettings-qt' 'kwayland5' 'kwindowsystem5' 'libqt5xdg')
 makedepends=('qt5-tools')
 
source=("https://github.com/ukui/qt5-ukui-platformtheme/archive/v$pkgver/$pkgname-$pkgver.tar.gz";)
 
sha512sums=('e66bacfc3e00bd62e86f5c87ff9d204b851e7a56a17c64900c31ec612ce6b994f41b0107b826efa9d803799410b936ec7b2f0ea2ab77aa3d6b8878f30fb37591')



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/qt5-ukui-platformtheme/-/commit/ac7c7f4d094da7ffd3a54dcd61193adbe61cf6cd

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/qt5-ukui-platformtheme/-/commit/ac7c7f4d094da7ffd3a54dcd61193adbe61cf6cd
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/qt5-ukui-platformtheme] Pushed new tag 1.0.8-11

2024-04-24 Thread Chih-Hsuan Yen (@yan12125)


Chih-Hsuan Yen pushed new tag 1.0.8-11 at Arch Linux / Packaging / Packages / 
qt5-ukui-platformtheme

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/qt5-ukui-platformtheme/-/tree/1.0.8-11
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/ukui-media][main] upgpkg: 3.0.4-3: Switch to libqt5xdg, see https://archlinux.org/todo/

2024-04-24 Thread Chih-Hsuan Yen (@yan12125)


Chih-Hsuan Yen pushed to branch main at Arch Linux / Packaging / Packages / 
ukui-media


Commits:
54b4a88d by Chih-Hsuan Yen at 2024-04-24T16:30:29+08:00
upgpkg: 3.0.4-3: Switch to libqt5xdg, see https://archlinux.org/todo/

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = ukui-media
pkgdesc = UKUI media utilities
pkgver = 3.0.4
-   pkgrel = 2
+   pkgrel = 3
url = https://github.com/ukui/ukui-media
arch = x86_64
groups = ukui
@@ -13,7 +13,7 @@ pkgbase = ukui-media
depends = gsettings-qt
depends = kwindowsystem5
depends = libmatemixer
-   depends = libqtxdg
+   depends = libqt5xdg
depends = mate-desktop
depends = qt5-multimedia
depends = qt5-svg


=
PKGBUILD
=
@@ -2,13 +2,13 @@
 
 pkgname=ukui-media
 pkgver=3.0.4
-pkgrel=2
+pkgrel=3
 pkgdesc="UKUI media utilities"
 arch=('x86_64')
 license=('GPL')
 url="https://github.com/ukui/ukui-media";
 groups=('ukui')
-depends=('gsettings-qt' 'kwindowsystem5' 'libmatemixer' 'libqtxdg' 
'mate-desktop' 'qt5-multimedia'
+depends=('gsettings-qt' 'kwindowsystem5' 'libmatemixer' 'libqt5xdg' 
'mate-desktop' 'qt5-multimedia'
  'qt5-svg' 'libcanberra' 'ukui-interface')
 makedepends=('autoconf-archive' 'intltool' 'mate-common' 'qt5-tools')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/ukui/ukui-media/archive/v$pkgver.tar.gz";)



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/ukui-media/-/commit/54b4a88d1fd9ca921e449dfd8362b71e93c0ab24

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/ukui-media/-/commit/54b4a88d1fd9ca921e449dfd8362b71e93c0ab24
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/ukui-media] Pushed new tag 3.0.4-3

2024-04-24 Thread Chih-Hsuan Yen (@yan12125)


Chih-Hsuan Yen pushed new tag 3.0.4-3 at Arch Linux / Packaging / Packages / 
ukui-media

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/ukui-media/-/tree/3.0.4-3
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/ukui-panel] Pushed new tag 3.0.6.4-4

2024-04-24 Thread Chih-Hsuan Yen (@yan12125)


Chih-Hsuan Yen pushed new tag 3.0.6.4-4 at Arch Linux / Packaging / Packages / 
ukui-panel

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/ukui-panel/-/tree/3.0.6.4-4
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/ukui-panel][main] upgpkg: 3.0.6.4-4: Switch to libqt5xdg, see https://archlinux.org/todo/

2024-04-24 Thread Chih-Hsuan Yen (@yan12125)


Chih-Hsuan Yen pushed to branch main at Arch Linux / Packaging / Packages / 
ukui-panel


Commits:
1b490475 by Chih-Hsuan Yen at 2024-04-24T16:30:40+08:00
upgpkg: 3.0.6.4-4: Switch to libqt5xdg, see https://archlinux.org/todo/

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = ukui-panel
pkgdesc = Launcher and docking facility for UKUI
pkgver = 3.0.6.4
-   pkgrel = 3
+   pkgrel = 4
url = https://github.com/ukui/ukui-panel
arch = x86_64
groups = ukui
@@ -13,7 +13,7 @@ pkgbase = ukui-panel
depends = gsettings-qt
depends = kwindowsystem5
depends = libdbusmenu-qt5
-   depends = libqtxdg
+   depends = libqt5xdg
depends = peony
depends = ukui-biometric-auth
depends = ukui-menu


=
PKGBUILD
=
@@ -2,7 +2,7 @@
 
 pkgname=ukui-panel
 pkgver=3.0.6.4
-pkgrel=3
+pkgrel=4
 pkgdesc="Launcher and docking facility for UKUI"
 arch=('x86_64')
 license=('GPL')
@@ -10,7 +10,7 @@ url="https://github.com/ukui/ukui-panel";
 groups=('ukui')
 provides=('ukui-indicators')
 replaces=('ukui-indicators')
-depends=('dconf' 'gsettings-qt' 'kwindowsystem5' 'libdbusmenu-qt5' 'libqtxdg' 
'peony'
+depends=('dconf' 'gsettings-qt' 'kwindowsystem5' 'libdbusmenu-qt5' 'libqt5xdg' 
'peony'
  'ukui-biometric-auth' 'ukui-menu' 'ukui-menus')
 makedepends=('cmake' 'ninja' 'qt5-tools')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/ukui/ukui-panel/archive/v$pkgver.tar.gz";)



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/ukui-panel/-/commit/1b49047549fc1b94433636cb11370dff91f2fe9a

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/ukui-panel/-/commit/1b49047549fc1b94433636cb11370dff91f2fe9a
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/ukui-sidebar] Pushed new tag 3.1.2-2

2024-04-24 Thread Chih-Hsuan Yen (@yan12125)


Chih-Hsuan Yen pushed new tag 3.1.2-2 at Arch Linux / Packaging / Packages / 
ukui-sidebar

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/ukui-sidebar/-/tree/3.1.2-2
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/ukui-sidebar][main] upgpkg: 3.1.2-2: Switch to libqt5xdg, see https://archlinux.org/todo/

2024-04-24 Thread Chih-Hsuan Yen (@yan12125)


Chih-Hsuan Yen pushed to branch main at Arch Linux / Packaging / Packages / 
ukui-sidebar


Commits:
04a7d597 by Chih-Hsuan Yen at 2024-04-24T16:30:52+08:00
upgpkg: 3.1.2-2: Switch to libqt5xdg, see https://archlinux.org/todo/

- - - - -


2 changed files:

- + .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -0,0 +1,15 @@
+pkgbase = ukui-sidebar
+   pkgdesc = Parallels toolbox for UKUI
+   pkgver = 3.1.2
+   pkgrel = 2
+   url = https://github.com/ukui/ukui-sidebar
+   arch = x86_64
+   groups = ukui
+   license = GPL
+   makedepends = qt5-tools
+   depends = libqt5xdg
+   depends = ukui-interface
+   source = 
https://github.com/ukui/ukui-sidebar/archive/v3.1.2/ukui-sidebar-3.1.2.tar.gz
+   sha512sums = 
713dd286827157efceb590f3034f19bf043391df871a2a3e38a6bf421f5827c2bb3aee01ccc9974f779c95cba4f3a1df1a98be91de7afaf7ce88c387185b5030
+
+pkgname = ukui-sidebar


=
PKGBUILD
=
@@ -2,13 +2,13 @@
 
 pkgname=ukui-sidebar
 pkgver=3.1.2
-pkgrel=1
+pkgrel=2
 pkgdesc="Parallels toolbox for UKUI"
 arch=('x86_64')
 license=('GPL')
 url="https://github.com/ukui/ukui-sidebar";
 groups=('ukui')
-depends=('libqtxdg' 'ukui-interface')
+depends=('libqt5xdg' 'ukui-interface')
 makedepends=('qt5-tools')
 
source=("https://github.com/ukui/ukui-sidebar/archive/v$pkgver/$pkgname-$pkgver.tar.gz";)
 
sha512sums=('713dd286827157efceb590f3034f19bf043391df871a2a3e38a6bf421f5827c2bb3aee01ccc9974f779c95cba4f3a1df1a98be91de7afaf7ce88c387185b5030')



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/ukui-sidebar/-/commit/04a7d59757a3280e1a4f8b91908dac2dca71aecb

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/ukui-sidebar/-/commit/04a7d59757a3280e1a4f8b91908dac2dca71aecb
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/freerdp][main] Enable PNG, JPEG and WEBP support in winpr image/clipboard

2024-04-24 Thread David Runge (@dvzrv)


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


Commits:
8acecf2b by Kayzzen Stormstout at 2024-04-24T10:21:18+02:00
Enable PNG, JPEG and WEBP support in winpr image/clipboard

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -15,9 +15,12 @@ pkgbase = freerdp
makedepends = gtk3
makedepends = icu
makedepends = krb5
+   makedepends = libjpeg-turbo
makedepends = libp11
+   makedepends = libpng
makedepends = libpulse
makedepends = libusb
+   makedepends = libwebp
makedepends = openssl
makedepends = pam
makedepends = pkcs11-helper
@@ -102,8 +105,14 @@ pkgname = freerdp
depends = libkrb5.so
depends = libpulse
depends = libpulse.so
+   depends = libpng
+   depends = libpng16.so
+   depends = libjpeg-turbo
+   depends = libjpeg.so
depends = libusb
depends = libusb-1.0.so
+   depends = libwebp
+   depends = libwebp.so
depends = openssl
depends = libcrypto.so
depends = libssl.so


=
PKGBUILD
=
@@ -44,9 +44,12 @@ makedepends=(
   gtk3
   icu
   krb5
+  libjpeg-turbo
   libp11
+  libpng
   libpulse
   libusb
+  libwebp
   openssl
   pam
   pkcs11-helper
@@ -111,6 +114,9 @@ build() {
 -D WITH_WAYLAND=ON
 -D WITH_WINPR_TOOLS=ON
 -D WITH_X11=ON
+-D WINPR_UTILS_IMAGE_PNG=ON
+-D WINPR_UTILS_IMAGE_JPEG=ON
+-D WINPR_UTILS_IMAGE_WEBP=ON
 -S $_name-$pkgver
 -W no-dev
   )
@@ -133,7 +139,10 @@ package() {
 icu libicuuc.so
 krb5 libk5crypto.so libkrb5.so
 libpulse libpulse.so
+libpng libpng16.so
+libjpeg-turbo libjpeg.so
 libusb libusb-1.0.so
+libwebp libwebp.so
 openssl libcrypto.so libssl.so
 pam libpam.so
 webkit2gtk-4.1 libjavascriptcoregtk-4.1.so libwebkit2gtk-4.1.so



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/freerdp/-/commit/8acecf2b6e374561092d8d0c392b27e4c944e5c2

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/freerdp/-/commit/8acecf2b6e374561092d8d0c392b27e4c944e5c2
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/freerdp][main] upgpkg: 2:3.5.1-1

2024-04-24 Thread David Runge (@dvzrv)


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


Commits:
eed62f43 by David Runge at 2024-04-24T10:36:02+02:00
upgpkg: 2:3.5.1-1

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,6 +1,6 @@
 pkgbase = freerdp
pkgdesc = Free implementation of the Remote Desktop Protocol (RDP)
-   pkgver = 3.5.0
+   pkgver = 3.5.1
pkgrel = 1
epoch = 2
url = https://www.freerdp.com/
@@ -56,11 +56,11 @@ pkgbase = freerdp
provides = libfreerdp3.so
provides = libwinpr-tools3.so
provides = libwinpr3.so
-   source = 
https://github.com/freerdp/freerdp/archive/3.5.0/freerdp-3.5.0.tar.gz
+   source = 
https://github.com/freerdp/freerdp/archive/3.5.1/freerdp-3.5.1.tar.gz
source = 0001-Use-webkit2gtk-4.1.patch
-   sha512sums = 
9f9f5898cdd9fe19035aa7a3a016b33513d0e9d9c2325ed62713a287253de468f339b397ba3bdfa729163800858aa25e22e41d46faf94742ed16e586b67efd05
+   sha512sums = 
28082ca5a714362c684f2c551b0ac5823c1708d8e929db93f0ab3911601d3b0d724bbdc06eed517542fb4bd957bb61fcdd00e34c0bda017f0019d52d59cb6b07
sha512sums = 
0bfdf8825f586a548eaef309f64fb50ea9e2598592f778aa835bbec1a0600d715b8fb28f5950aaeb5ef981a33d5f9f3f39f4fd1800bdf9e5630d9925a9fbab04
-   b2sums = 
b48fc8e452c2251c75995af524dddaad742c9e962d0fe046b6f9479c66a14956604bd9e5a6e6cd1853f14ddcfa8ee9a411554f3f5e18979158a992d3f6e464d9
+   b2sums = 
7f243593c2da1fb8cef483cd423c3e4d1127cac16ab857eaf7d5c222deaeca6657f32010fd40e90f1b47bd925e493848a3ab6b6b1e9db01a5355d0177c42953a
b2sums = 
bbee3975cdcd0ce421ecd8825d1b6dbdbd1565b612a51e7d9423e79226579587031b5ebe7e5251c88015e9047cd35818bad338a7048acfddac137ffe23197b71
 
 pkgname = freerdp


=
PKGBUILD
=
@@ -4,7 +4,7 @@
 
 _name=FreeRDP
 pkgname=freerdp
-pkgver=3.5.0
+pkgver=3.5.1
 _libver=${pkgver/.*/}
 pkgrel=1
 epoch=2
@@ -72,9 +72,9 @@ source=(
   https://github.com/$pkgname/$pkgname/archive/$pkgver/$pkgname-$pkgver.tar.gz
   0001-Use-webkit2gtk-4.1.patch
 )
-sha512sums=('9f9f5898cdd9fe19035aa7a3a016b33513d0e9d9c2325ed62713a287253de468f339b397ba3bdfa729163800858aa25e22e41d46faf94742ed16e586b67efd05'
+sha512sums=('28082ca5a714362c684f2c551b0ac5823c1708d8e929db93f0ab3911601d3b0d724bbdc06eed517542fb4bd957bb61fcdd00e34c0bda017f0019d52d59cb6b07'
 
'0bfdf8825f586a548eaef309f64fb50ea9e2598592f778aa835bbec1a0600d715b8fb28f5950aaeb5ef981a33d5f9f3f39f4fd1800bdf9e5630d9925a9fbab04')
-b2sums=('b48fc8e452c2251c75995af524dddaad742c9e962d0fe046b6f9479c66a14956604bd9e5a6e6cd1853f14ddcfa8ee9a411554f3f5e18979158a992d3f6e464d9'
+b2sums=('7f243593c2da1fb8cef483cd423c3e4d1127cac16ab857eaf7d5c222deaeca6657f32010fd40e90f1b47bd925e493848a3ab6b6b1e9db01a5355d0177c42953a'
 
'bbee3975cdcd0ce421ecd8825d1b6dbdbd1565b612a51e7d9423e79226579587031b5ebe7e5251c88015e9047cd35818bad338a7048acfddac137ffe23197b71')
 
 prepare() {



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/freerdp/-/commit/eed62f437ba1dded7d8073d3ec32fbd366ebaaf6

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/freerdp/-/commit/eed62f437ba1dded7d8073d3ec32fbd366ebaaf6
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/freerdp] Pushed new tag 2-3.5.1-1

2024-04-24 Thread David Runge (@dvzrv)


David Runge pushed new tag 2-3.5.1-1 at Arch Linux / Packaging / Packages / 
freerdp

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/freerdp/-/tree/2-3.5.1-1
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/nextcloud-client][main] Build dolphin integration with KF6, so it actually works with current dolphin

2024-04-24 Thread Caleb Maclennan (@alerque)


Caleb Maclennan pushed to branch main at Arch Linux / Packaging / Packages / 
nextcloud-client


Commits:
22c3122f by Antonio Rojas at 2024-04-24T08:39:27+00:00
Build dolphin integration with KF6, so it actually works with current dolphin

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -10,7 +10,7 @@ pkgbase = nextcloud-client
makedepends = doxygen
makedepends = extra-cmake-modules
makedepends = git
-   makedepends = kio5
+   makedepends = kio
makedepends = librsvg
makedepends = python-sphinx
makedepends = qt5-tools


=
PKGBUILD
=
@@ -23,6 +23,7 @@ _url=https://github.com/nextcloud/desktop
 license=(GPL-2.0-or-later)
 depends=(hicolor-icon-theme
  karchive5
+ kguiaddons5
  libcloudproviders
  openssl
  qt5-graphicaleffects
@@ -37,7 +38,7 @@ depends=(hicolor-icon-theme
 replaces=(nextcloud-client-cloudproviders)
 conflicts=(nextcloud-client-cloudproviders)
 provides=(nextcloud-client-cloudproviders)
-optdepends=('kio5: integration with Dolphin'
+optdepends=('kio: integration with Dolphin'
 'nemo-python: integration with Nemo'
 'python-nautilus: integration with Nautilus'
 'python-caja: integration with Caja'
@@ -47,7 +48,7 @@ makedepends=(cmocka
  doxygen
  extra-cmake-modules
  git
- kio5
+ kio
  librsvg
  python-sphinx
  qt5-tools)



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/nextcloud-client/-/commit/22c3122f3629eab108f12879da30f2c9b33715e1

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/nextcloud-client/-/commit/22c3122f3629eab108f12879da30f2c9b33715e1
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/rqbit] Pushed new tag 5.6.1-1

2024-04-24 Thread kpcyrd (@kpcyrd)


kpcyrd pushed new tag 5.6.1-1 at Arch Linux / Packaging / Packages / rqbit

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/rqbit/-/tree/5.6.1-1
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/rqbit][main] upgpkg: 5.6.1-1

2024-04-24 Thread kpcyrd (@kpcyrd)


kpcyrd pushed to branch main at Arch Linux / Packaging / Packages / rqbit


Commits:
760aff1c by kpcyrd at 2024-04-24T10:48:06+02:00
upgpkg: 5.6.1-1

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,6 +1,6 @@
 pkgbase = rqbit
pkgdesc = A bittorrent client in Rust
-   pkgver = 5.6.0
+   pkgver = 5.6.1
pkgrel = 1
url = https://github.com/ikatson/rqbit
arch = x86_64
@@ -25,9 +25,9 @@ pkgbase = rqbit
makedepends = typescript
makedepends = webkit2gtk
makedepends = libwebkit2gtk-4.0.so
-   source = 
https://github.com/ikatson/rqbit/archive/v5.6.0/rqbit-5.6.0.tar.gz
-   sha256sums = 
afb9502a0966b8327f392a72e8e56e58d9fb6e4ed018d1488d86b082fcf60424
-   b2sums = 
a0eedc43e6c40d46b64759ed651e35fcaab68cec3ec60a450f747fb7b6c45f8440c5d472830e4a4df804322b85b847cfbf957039415e0823710be61c8fe5a1ed
+   source = 
https://github.com/ikatson/rqbit/archive/v5.6.1/rqbit-5.6.1.tar.gz
+   sha256sums = 
611f65a3c0a79e2781f1f9ed770c0a9e47872cb29d5380d47cd4687af4c3f316
+   b2sums = 
b3e3b11d989c5fa60195c10ca08d78d0760b894504d1082e55d4df856cb91ce8d67789f90bd79d0d2627654496fd6913a8a96eeaf1ea60c59cbc01c3f2e3bcc2
 
 pkgname = rqbit
depends = gcc-libs


=
PKGBUILD
=
@@ -5,7 +5,7 @@ pkgname=(
   rqbit
   rqbit-desktop
 )
-pkgver=5.6.0
+pkgver=5.6.1
 pkgrel=1
 pkgdesc="A bittorrent client in Rust"
 url='https://github.com/ikatson/rqbit'
@@ -26,8 +26,8 @@ makedepends=(
   'webkit2gtk'  'libwebkit2gtk-4.0.so'
 )
 
source=(https://github.com/ikatson/${pkgbase}/archive/v${pkgver}/${pkgbase}-${pkgver}.tar.gz)
-sha256sums=('afb9502a0966b8327f392a72e8e56e58d9fb6e4ed018d1488d86b082fcf60424')
-b2sums=('a0eedc43e6c40d46b64759ed651e35fcaab68cec3ec60a450f747fb7b6c45f8440c5d472830e4a4df804322b85b847cfbf957039415e0823710be61c8fe5a1ed')
+sha256sums=('611f65a3c0a79e2781f1f9ed770c0a9e47872cb29d5380d47cd4687af4c3f316')
+b2sums=('b3e3b11d989c5fa60195c10ca08d78d0760b894504d1082e55d4df856cb91ce8d67789f90bd79d0d2627654496fd6913a8a96eeaf1ea60c59cbc01c3f2e3bcc2')
 
 prepare() {
   cd "${pkgbase}-${pkgver}"



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/rqbit/-/commit/760aff1c6fbad3eef313c7b0b6f2eb728e280ac7

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/rqbit/-/commit/760aff1c6fbad3eef313c7b0b6f2eb728e280ac7
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/python-django-allauth][main] upgpkg: 0.62.0-1

2024-04-24 Thread David Runge (@dvzrv)


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


Commits:
8fdb8795 by David Runge at 2024-04-24T10:58:21+02:00
upgpkg: 0.62.0-1

Manually remove globally installed tests dir

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = python-django-allauth
pkgdesc = Authentication, registration, account management and 3rd 
party account authentication
-   pkgver = 0.61.1
-   pkgrel = 2
+   pkgver = 0.62.0
+   pkgrel = 1
url = https://github.com/pennersr/django-allauth
arch = any
license = MIT
@@ -24,8 +24,8 @@ pkgbase = python-django-allauth
depends = python-pyjwt
optdepends = python-qrcode: for MFA support
optdepends = python-saml: for SAML support
-   source = 
django-allauth-0.61.1.tar.gz::https://github.com/pennersr/django-allauth/archive/0.61.1.tar.gz
-   sha512sums = 
ad86f79f54ae222a97884fd0e0b18f8eddb0caf08c541490a1f61f968a44ce9b3504c5456bd6e416a459f455b477e5c36f2eda58b7c68ba0f51ba8f67af1759f
-   b2sums = 
e9e1626763e1ba13f9a58dacd8ccaccfba46c316d7a2abf47824a0cb460ab1ec1b4eb9eba835f4573d546d196230d9e4fc00a6d39f5e89eae94a0ae4acc3f0ba
+   source = 
django-allauth-0.62.0.tar.gz::https://github.com/pennersr/django-allauth/archive/0.62.0.tar.gz
+   sha512sums = 
ee020f4e223a89eb5804b98e7cc4882e7325abe707be466d83ff6adbd6156e0300d911fd1020ca6af57ceb4d4b870bea126de5137b4f4cf332aac2db40347b26
+   b2sums = 
4737539ce8d996c3b1b4edc9bfb9a11c5361be3fabd48a379d49bd481a715e69a4851a6051767e1d4879604928a8c314dce67b167dd572822ad41f49ce4b0dd0
 
 pkgname = python-django-allauth


=
PKGBUILD
=
@@ -2,8 +2,8 @@
 
 _name=django-allauth
 pkgname=python-django-allauth
-pkgver=0.61.1
-pkgrel=2
+pkgver=0.62.0
+pkgrel=1
 pkgdesc="Authentication, registration, account management and 3rd party 
account authentication"
 arch=(any)
 url="https://github.com/pennersr/django-allauth";
@@ -36,8 +36,8 @@ optdepends=(
   'python-saml: for SAML support'
 )
 source=($_name-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
-sha512sums=('ad86f79f54ae222a97884fd0e0b18f8eddb0caf08c541490a1f61f968a44ce9b3504c5456bd6e416a459f455b477e5c36f2eda58b7c68ba0f51ba8f67af1759f')
-b2sums=('e9e1626763e1ba13f9a58dacd8ccaccfba46c316d7a2abf47824a0cb460ab1ec1b4eb9eba835f4573d546d196230d9e4fc00a6d39f5e89eae94a0ae4acc3f0ba')
+sha512sums=('ee020f4e223a89eb5804b98e7cc4882e7325abe707be466d83ff6adbd6156e0300d911fd1020ca6af57ceb4d4b870bea126de5137b4f4cf332aac2db40347b26')
+b2sums=('4737539ce8d996c3b1b4edc9bfb9a11c5361be3fabd48a379d49bd481a715e69a4851a6051767e1d4879604928a8c314dce67b167dd572822ad41f49ce4b0dd0')
 
 build() {
   cd $_name-$pkgver
@@ -54,4 +54,7 @@ package() {
   python -m installer --destdir="$pkgdir" dist/*.whl
   install -vDm 644 README.rst -t "$pkgdir/usr/share/doc/$pkgname"
   install -vDm 644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname"
+  # remove tests dir: https://github.com/pennersr/django-allauth/issues/3752
+  local site_packages=$(python -c "import site; 
print(site.getsitepackages()[0])")
+  rm -frv "$pkgdir/$site_packages/tests"
 }



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python-django-allauth/-/commit/8fdb879507b4b7831fde2d40b4ee2ea3f8629995

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python-django-allauth/-/commit/8fdb879507b4b7831fde2d40b4ee2ea3f8629995
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/python-django-allauth] Pushed new tag 0.62.0-1

2024-04-24 Thread David Runge (@dvzrv)


David Runge pushed new tag 0.62.0-1 at Arch Linux / Packaging / Packages / 
python-django-allauth

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python-django-allauth/-/tree/0.62.0-1
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/python-django-allauth] Pushed new tag 0.62.0-2

2024-04-24 Thread David Runge (@dvzrv)


David Runge pushed new tag 0.62.0-2 at Arch Linux / Packaging / Packages / 
python-django-allauth

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python-django-allauth/-/tree/0.62.0-2
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/python-django-allauth][main] upgpkg: 0.62.0-2: Rebuild against Python 3.12

2024-04-24 Thread David Runge (@dvzrv)


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


Commits:
7d11c91e by David Runge at 2024-04-24T10:59:23+02:00
upgpkg: 0.62.0-2: Rebuild against Python 3.12

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = python-django-allauth
pkgdesc = Authentication, registration, account management and 3rd 
party account authentication
pkgver = 0.62.0
-   pkgrel = 1
+   pkgrel = 2
url = https://github.com/pennersr/django-allauth
arch = any
license = MIT


=
PKGBUILD
=
@@ -3,7 +3,7 @@
 _name=django-allauth
 pkgname=python-django-allauth
 pkgver=0.62.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Authentication, registration, account management and 3rd party 
account authentication"
 arch=(any)
 url="https://github.com/pennersr/django-allauth";



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python-django-allauth/-/commit/7d11c91e8bb5f748d0d21e329f3ca5f2870dfa94

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python-django-allauth/-/commit/7d11c91e8bb5f748d0d21e329f3ca5f2870dfa94
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/python-pyphen][main] upgpkg: 0.15.0-1

2024-04-24 Thread David Runge (@dvzrv)


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


Commits:
6d097d46 by David Runge at 2024-04-24T11:00:08+02:00
upgpkg: 0.15.0-1

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = python-pyphen
pkgdesc = Pure Python module to hyphenate text
-   pkgver = 0.14.0
-   pkgrel = 3
+   pkgver = 0.15.0
+   pkgrel = 1
url = https://pyphen.org/
arch = any
license = GPL-2.0-or-later
@@ -13,8 +13,8 @@ pkgbase = python-pyphen
makedepends = python-installer
makedepends = python-wheel
depends = python
-   source = 
python-pyphen-0.14.0.tar.gz::https://github.com/Kozea/Pyphen/archive/refs/tags/0.14.0.tar.gz
-   sha512sums = 
62fa5282d16cde7d64164610e2e2de098351d4fa9f04c6f37923d5e43f5123dbf2094561b6de4d7b5b2f92a3506164b0e915b9d1c147eb3b70352c9358d7d457
-   b2sums = 
5b0063b5c88c21e2156c1d44ce216e34f1791bd48f3c537ae161d9f89becd20c1021b5d57665194456855152b634b86468943dc2c8d609224820873f55fd66ba
+   source = 
python-pyphen-0.15.0.tar.gz::https://github.com/Kozea/Pyphen/archive/refs/tags/0.15.0.tar.gz
+   sha512sums = 
a3c42e5831ef5b73a4583089807b5fd8de8cc2ef17e7ee4822780eb8df59eb38c1b21cab847ae85edc6687c1738f488850e08614cfca6aa6766bdb6f2934b693
+   b2sums = 
1b26da3aac163a19cf2ec7f9770d4f9bb2c0fd30b67cbe0daa32e2753b52a25d34c314db4aea2884ab20de7704b3af267234b4328860494cef607bea5933bd75
 
 pkgname = python-pyphen


=
PKGBUILD
=
@@ -2,8 +2,8 @@
 
 pkgname=python-pyphen
 _name="${pkgname#python-}"
-pkgver=0.14.0
-pkgrel=3
+pkgver=0.15.0
+pkgrel=1
 pkgdesc="Pure Python module to hyphenate text"
 arch=(any)
 url="https://pyphen.org/";
@@ -22,8 +22,8 @@ makedepends=(
 )
 checkdepends=(python-pytest)
 source=($pkgname-$pkgver.tar.gz::$_url/archive/refs/tags/$pkgver.tar.gz)
-sha512sums=('62fa5282d16cde7d64164610e2e2de098351d4fa9f04c6f37923d5e43f5123dbf2094561b6de4d7b5b2f92a3506164b0e915b9d1c147eb3b70352c9358d7d457')
-b2sums=('5b0063b5c88c21e2156c1d44ce216e34f1791bd48f3c537ae161d9f89becd20c1021b5d57665194456855152b634b86468943dc2c8d609224820873f55fd66ba')
+sha512sums=('a3c42e5831ef5b73a4583089807b5fd8de8cc2ef17e7ee4822780eb8df59eb38c1b21cab847ae85edc6687c1738f488850e08614cfca6aa6766bdb6f2934b693')
+b2sums=('1b26da3aac163a19cf2ec7f9770d4f9bb2c0fd30b67cbe0daa32e2753b52a25d34c314db4aea2884ab20de7704b3af267234b4328860494cef607bea5933bd75')
 
 build() {
   cd ${_name^}-$pkgver



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

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python-pyphen/-/commit/6d097d46c8ec6261d9b3fdc3e223e50b9c252f6e
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/python-pyphen] Pushed new tag 0.15.0-1

2024-04-24 Thread David Runge (@dvzrv)


David Runge pushed new tag 0.15.0-1 at Arch Linux / Packaging / Packages / 
python-pyphen

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python-pyphen/-/tree/0.15.0-1
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/python-pyphen] Pushed new tag 0.15.0-2

2024-04-24 Thread David Runge (@dvzrv)


David Runge pushed new tag 0.15.0-2 at Arch Linux / Packaging / Packages / 
python-pyphen

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python-pyphen/-/tree/0.15.0-2
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/python-pyphen][main] upgpkg: 0.15.0-2: Rebuild against Python 3.12

2024-04-24 Thread David Runge (@dvzrv)


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


Commits:
28b4f869 by David Runge at 2024-04-24T11:01:45+02:00
upgpkg: 0.15.0-2: Rebuild against Python 3.12

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = python-pyphen
pkgdesc = Pure Python module to hyphenate text
pkgver = 0.15.0
-   pkgrel = 1
+   pkgrel = 2
url = https://pyphen.org/
arch = any
license = GPL-2.0-or-later


=
PKGBUILD
=
@@ -3,7 +3,7 @@
 pkgname=python-pyphen
 _name="${pkgname#python-}"
 pkgver=0.15.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Pure Python module to hyphenate text"
 arch=(any)
 url="https://pyphen.org/";



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

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python-pyphen/-/commit/28b4f869eb3d68c3c428c719e67133fbc4fe73ed
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/nextcloud-client] Pushed new tag 2-3.13.0-2

2024-04-24 Thread Caleb Maclennan (@alerque)


Caleb Maclennan pushed new tag 2-3.13.0-2 at Arch Linux / Packaging / Packages 
/ nextcloud-client

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/nextcloud-client/-/tree/2-3.13.0-2
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/python-inflect][main] 2 commits: Remove disabling of tests

2024-04-24 Thread David Runge (@dvzrv)


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


Commits:
32aa8db7 by David Runge at 2024-04-24T11:01:40+02:00
Remove disabling of tests

Tests were failing because upstream introduces a circular dependency on
itself (make and check dependencies), which pulled in python-pydantic
initially.

https://github.com/jaraco/inflect/issues/208

Signed-off-by: David Runge 

- - - - -
1017d4a4 by David Runge at 2024-04-24T11:04:09+02:00
upgpkg: 7.2.1-1

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = python-inflect
pkgdesc = Correctly generate plurals, singular nouns, ordinals, 
indefinite articles
-   pkgver = 7.2.0
-   pkgrel = 3
+   pkgver = 7.2.1
+   pkgrel = 1
url = https://github.com/jaraco/inflect
arch = any
license = MIT
@@ -16,8 +16,8 @@ pkgbase = python-inflect
depends = python-more-itertools
depends = python-typeguard
depends = python-typing_extensions
-   source = 
inflect-7.2.0.tar.gz::https://github.com/jaraco/inflect/archive/refs/tags/v7.2.0.tar.gz
-   sha512sums = 
f3aafcc3b23d24e9f89d575402675164672c3155964091363325844b4eb4d32b91f66f4344ce6694beccf5e3805f2a0192c2473653d0876a4947975efaeef8c0
-   b2sums = 
81c1a54264b4c87def207bea24a8fd2f867b7445cf12156a0c3bc41582c29bddf75ad9fd21ea4fe2d44434aa170e6b224ef1b97425a65c4077568131fa2c9414
+   source = 
inflect-7.2.1.tar.gz::https://github.com/jaraco/inflect/archive/refs/tags/v7.2.1.tar.gz
+   sha512sums = 
eb52fc47e7549617b615e869a9c197ec31470ba49e9dbb9db9db30089d4f9d7d6f657c1d76ebca4e7d596e8365a8795ec1698ea0d4cebac27e1e680acee91891
+   b2sums = 
19805ba22c2e6b2deed0c15d31ed778d81e91ba306c80d6d62e81a4f7cced30175bdbea440cbbc750856eb62b19fe31b13a2696724c4adbd2a91e486f466732c
 
 pkgname = python-inflect


=
PKGBUILD
=
@@ -2,8 +2,8 @@
 
 _name=inflect
 pkgname=python-inflect
-pkgver=7.2.0
-pkgrel=3
+pkgver=7.2.1
+pkgrel=1
 pkgdesc="Correctly generate plurals, singular nouns, ordinals, indefinite 
articles"
 arch=(any)
 url="https://github.com/jaraco/inflect";
@@ -26,8 +26,8 @@ checkdepends=(
   python-pytest-enabler
 )
 source=($_name-$pkgver.tar.gz::$url/archive/refs/tags/v$pkgver.tar.gz)
-sha512sums=('f3aafcc3b23d24e9f89d575402675164672c3155964091363325844b4eb4d32b91f66f4344ce6694beccf5e3805f2a0192c2473653d0876a4947975efaeef8c0')
-b2sums=('81c1a54264b4c87def207bea24a8fd2f867b7445cf12156a0c3bc41582c29bddf75ad9fd21ea4fe2d44434aa170e6b224ef1b97425a65c4077568131fa2c9414')
+sha512sums=('eb52fc47e7549617b615e869a9c197ec31470ba49e9dbb9db9db30089d4f9d7d6f657c1d76ebca4e7d596e8365a8795ec1698ea0d4cebac27e1e680acee91891')
+b2sums=('19805ba22c2e6b2deed0c15d31ed778d81e91ba306c80d6d62e81a4f7cced30175bdbea440cbbc750856eb62b19fe31b13a2696724c4adbd2a91e486f466732c')
 
 build() {
   cd $_name-$pkgver
@@ -37,11 +37,6 @@ build() {
 check() {
   local pytest_options=(
 -vv
-# disable broken tests: https://github.com/jaraco/inflect/issues/208
---deselect tests/test_inflections.py::test_many
---deselect tests/test_pwd.py::Test::test_pl
---deselect tests/test_pwd.py::Test::test__pl_special_verb
---deselect tests/test_pwd.py::Test::test_a_alt
   )
 
   cd $_name-$pkgver



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python-inflect/-/compare/16971dd146de7287f04430e1e9628527aa3448ad...1017d4a4e58e60f143ca1f6437312b885278e838

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python-inflect/-/compare/16971dd146de7287f04430e1e9628527aa3448ad...1017d4a4e58e60f143ca1f6437312b885278e838
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/python-inflect] Pushed new tag 7.2.1-1

2024-04-24 Thread David Runge (@dvzrv)


David Runge pushed new tag 7.2.1-1 at Arch Linux / Packaging / Packages / 
python-inflect

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python-inflect/-/tree/7.2.1-1
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/nextcloud-client][main] upgpkg: 2:3.13.0-2: Rebuild with staightened-out KF6 dependencies

2024-04-24 Thread Caleb Maclennan (@alerque)


Caleb Maclennan pushed to branch main at Arch Linux / Packaging / Packages / 
nextcloud-client


Commits:
d77591a8 by Caleb Maclennan at 2024-04-24T12:04:09+03:00
upgpkg: 2:3.13.0-2: Rebuild with staightened-out KF6 dependencies

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = nextcloud-client
pkgdesc = Nextcloud desktop client
pkgver = 3.13.0
-   pkgrel = 1
+   pkgrel = 2
epoch = 2
url = https://nextcloud.com/
arch = x86_64
@@ -16,6 +16,7 @@ pkgbase = nextcloud-client
makedepends = qt5-tools
depends = hicolor-icon-theme
depends = karchive5
+   depends = kguiaddons5
depends = libcloudproviders
depends = openssl
depends = qt5-graphicaleffects
@@ -27,7 +28,7 @@ pkgbase = nextcloud-client
depends = qtkeychain-qt5
depends = sqlite
depends = xdg-utils
-   optdepends = kio5: integration with Dolphin
+   optdepends = kio: integration with Dolphin
optdepends = nemo-python: integration with Nemo
optdepends = python-nautilus: integration with Nautilus
optdepends = python-caja: integration with Caja


=
PKGBUILD
=
@@ -16,7 +16,7 @@ pkgname=nextcloud-client
 pkgdesc='Nextcloud desktop client'
 epoch=2
 pkgver=3.13.0
-pkgrel=1
+pkgrel=2
 arch=(x86_64)
 url='https://nextcloud.com/'
 _url=https://github.com/nextcloud/desktop



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/nextcloud-client/-/commit/d77591a827c97c8fe2f98bacf6efb11f24041a7f

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/nextcloud-client/-/commit/d77591a827c97c8fe2f98bacf6efb11f24041a7f
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/python-inflect][main] upgpkg: 7.2.1-2: Rebuild against Python 3.12

2024-04-24 Thread David Runge (@dvzrv)


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


Commits:
cb2838d5 by David Runge at 2024-04-24T11:04:40+02:00
upgpkg: 7.2.1-2: Rebuild against Python 3.12

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = python-inflect
pkgdesc = Correctly generate plurals, singular nouns, ordinals, 
indefinite articles
pkgver = 7.2.1
-   pkgrel = 1
+   pkgrel = 2
url = https://github.com/jaraco/inflect
arch = any
license = MIT


=
PKGBUILD
=
@@ -3,7 +3,7 @@
 _name=inflect
 pkgname=python-inflect
 pkgver=7.2.1
-pkgrel=1
+pkgrel=2
 pkgdesc="Correctly generate plurals, singular nouns, ordinals, indefinite 
articles"
 arch=(any)
 url="https://github.com/jaraco/inflect";



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

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python-inflect/-/commit/cb2838d5b7908ff673ce3ebe0463b571136ee9ea
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/python-inflect] Pushed new tag 7.2.1-2

2024-04-24 Thread David Runge (@dvzrv)


David Runge pushed new tag 7.2.1-2 at Arch Linux / Packaging / Packages / 
python-inflect

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python-inflect/-/tree/7.2.1-2
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/xmrig] Pushed new tag 6.21.3-1

2024-04-24 Thread kpcyrd (@kpcyrd)


kpcyrd pushed new tag 6.21.3-1 at Arch Linux / Packaging / Packages / xmrig

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/xmrig/-/tree/6.21.3-1
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/xmrig][main] upgpkg: 6.21.3-1

2024-04-24 Thread kpcyrd (@kpcyrd)


kpcyrd pushed to branch main at Arch Linux / Packaging / Packages / xmrig


Commits:
7c8967f7 by kpcyrd at 2024-04-24T11:07:58+02:00
upgpkg: 6.21.3-1

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,6 +1,6 @@
 pkgbase = xmrig
pkgdesc = RandomX, KawPow, CryptoNight, AstroBWT and GhostRider unified 
CPU/GPU miner and RandomX benchmark
-   pkgver = 6.21.2
+   pkgver = 6.21.3
pkgrel = 1
url = https://github.com/xmrig/xmrig
arch = x86_64
@@ -11,10 +11,10 @@ pkgbase = xmrig
depends = libssl.so
depends = libuv
backup = etc/xmrig/xmrig.conf
-   source = 
https://github.com/xmrig/xmrig/archive/v6.21.2/xmrig-6.21.2.tar.gz
+   source = 
https://github.com/xmrig/xmrig/archive/v6.21.3/xmrig-6.21.3.tar.gz
source = xmrig@.service
source = xmrig.sysusers
-   sha256sums = 
68b4be51e99687bad15d5bf4ac9eed79a080ba89141f7363457a957ce9304e4d
+   sha256sums = 
5d76fb19190956c564b405119315bc93db4ed8062b251d5e96bed70c5fa8033c
sha256sums = 
bbc54b04a7da5ea473eb7d976307eb995fbfd96f0d012f1553b8c487182d9fb3
sha256sums = 
d8f499302fb2b642fe02586c81c410a299e0a6e133aef1cc1c783bcdcb3f44f6
 


=
PKGBUILD
=
@@ -2,7 +2,7 @@
 # Contributor: Konstantin Shalygin 
 
 pkgname=xmrig
-pkgver=6.21.2
+pkgver=6.21.3
 pkgrel=1
 pkgdesc='RandomX, KawPow, CryptoNight, AstroBWT and GhostRider unified CPU/GPU 
miner and RandomX benchmark'
 url='https://github.com/xmrig/xmrig'
@@ -19,7 +19,7 @@ backup=("etc/${pkgname}/${pkgname}.conf")
 
source=(https://github.com/xmrig/${pkgname}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz
 xmrig@.service
 xmrig.sysusers)
-sha256sums=('68b4be51e99687bad15d5bf4ac9eed79a080ba89141f7363457a957ce9304e4d'
+sha256sums=('5d76fb19190956c564b405119315bc93db4ed8062b251d5e96bed70c5fa8033c'
 'bbc54b04a7da5ea473eb7d976307eb995fbfd96f0d012f1553b8c487182d9fb3'
 'd8f499302fb2b642fe02586c81c410a299e0a6e133aef1cc1c783bcdcb3f44f6')
 



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

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/xmrig/-/commit/7c8967f7457a6521cfc5c0aadce37994aaf17d27
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/python-pydantic-core] Pushed new tag 1-2.18.2-1

2024-04-24 Thread David Runge (@dvzrv)


David Runge pushed new tag 1-2.18.2-1 at Arch Linux / Packaging / Packages / 
python-pydantic-core

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python-pydantic-core/-/tree/1-2.18.2-1
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/python-pydantic-core][main] upgpkg: 1:2.18.2-1

2024-04-24 Thread David Runge (@dvzrv)


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


Commits:
3ab2e271 by David Runge at 2024-04-24T11:15:56+02:00
upgpkg: 1:2.18.2-1

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = python-pydantic-core
pkgdesc = Core validation logic for pydantic written in rust
-   pkgver = 2.18.1
-   pkgrel = 2
+   pkgver = 2.18.2
+   pkgrel = 1
epoch = 1
url = https://github.com/pydantic/pydantic-core
arch = x86_64
@@ -21,8 +21,8 @@ pkgbase = python-pydantic-core
depends = python
depends = python-typing_extensions
options = !lto
-   source = 
python-pydantic-core-2.18.1.tar.gz::https://github.com/pydantic/pydantic-core/archive/refs/tags/v2.18.1.tar.gz
-   sha512sums = 
6c8c7e68df70537d5697e5b24b88847ef7c2ea3baa6530fbb88e74048550f4f967cb05bceb1450802a3a384fb9bc4a6225ebd2fd25835d1e321be55af59453e8
-   b2sums = 
da59f2457022cfe20afcf90b49ecaa7aa5eda57f5e3d4cbd0c6ad46af90abe313205556519491a4bc02b8b4102b861c650b665adbda9df51af7caae30df20cee
+   source = 
python-pydantic-core-2.18.2.tar.gz::https://github.com/pydantic/pydantic-core/archive/refs/tags/v2.18.2.tar.gz
+   sha512sums = 
082f693b875d89dc4ccaed1b97fd2211b4a414b3a1f54072a9a1130411a111da9ec1a4187883cc7c516265239ea50a48085862939bd68f0c46c1c8ce679f43b1
+   b2sums = 
ed2ee5c1d3f616fe66dae16740fef5b5b116dba60f85272ff71b99f14e813a7e4f8cdb387427a0a4f5754b8d6f1a079432a48aaba5ca23435d59725356e53bb7
 
 pkgname = python-pydantic-core


=
PKGBUILD
=
@@ -3,8 +3,8 @@
 _name=pydantic-core
 pkgname=python-pydantic-core
 # WARNING: this package is pinned down to the patch-level version in 
python-pydantic and should only be updated in lock-step with it
-pkgver=2.18.1
-pkgrel=2
+pkgver=2.18.2
+pkgrel=1
 epoch=1
 pkgdesc="Core validation logic for pydantic written in rust "
 arch=(x86_64)
@@ -32,8 +32,8 @@ checkdepends=(
 )
 options=(!lto)
 source=($pkgname-$pkgver.tar.gz::$url/archive/refs/tags/v$pkgver.tar.gz)
-sha512sums=('6c8c7e68df70537d5697e5b24b88847ef7c2ea3baa6530fbb88e74048550f4f967cb05bceb1450802a3a384fb9bc4a6225ebd2fd25835d1e321be55af59453e8')
-b2sums=('da59f2457022cfe20afcf90b49ecaa7aa5eda57f5e3d4cbd0c6ad46af90abe313205556519491a4bc02b8b4102b861c650b665adbda9df51af7caae30df20cee')
+sha512sums=('082f693b875d89dc4ccaed1b97fd2211b4a414b3a1f54072a9a1130411a111da9ec1a4187883cc7c516265239ea50a48085862939bd68f0c46c1c8ce679f43b1')
+b2sums=('ed2ee5c1d3f616fe66dae16740fef5b5b116dba60f85272ff71b99f14e813a7e4f8cdb387427a0a4f5754b8d6f1a079432a48aaba5ca23435d59725356e53bb7')
 
 prepare() {
   # we don't support version pinning



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python-pydantic-core/-/commit/3ab2e2710c097eeef177333ed3846541033644f5

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python-pydantic-core/-/commit/3ab2e2710c097eeef177333ed3846541033644f5
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/ansible] Pushed new tag 9.5.1-1

2024-04-24 Thread Robin Candau (@antiz)


Robin Candau pushed new tag 9.5.1-1 at Arch Linux / Packaging / Packages / 
ansible

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/ansible/-/tree/9.5.1-1
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/ansible][main] upgpkg: 9.5.1-1: New upstream release

2024-04-24 Thread Robin Candau (@antiz)


Robin Candau pushed to branch main at Arch Linux / Packaging / Packages / 
ansible


Commits:
ce38f5a2 by Robin Candau at 2024-04-24T11:34:00+02:00
upgpkg: 9.5.1-1: New upstream release

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = ansible
pkgdesc = Official assortment of Ansible collections
-   pkgver = 9.4.0
-   pkgrel = 4
+   pkgver = 9.5.1
+   pkgrel = 1
url = https://pypi.org/project/ansible/
arch = any
license = GPL-3.0-or-later
@@ -26,7 +26,7 @@ pkgbase = ansible
optdepends = python-github3py: GitHub module
optdepends = acme-tiny: openssl_certificate module
provides = python-ansible_collections
-   source = 
https://pypi.python.org/packages/source/a/ansible/ansible-9.4.0.tar.gz
-   sha512sums = 
4c75235a866f3f95cda8dd3b6c9d22b916ad117d54a86a30585f71c9015cd98db764afa225af5b2f6fa884af558ee488785e26c9e8b9e8be105062f069f065b2
+   source = 
https://pypi.python.org/packages/source/a/ansible/ansible-9.5.1.tar.gz
+   sha512sums = 
8a95f0e41987a1ab423ebd6be8483681c30f31dfd24056d729c4e0cc870775d3a59f9790bcd0bf578538ba24752b9dc6401fe467f4f8b12acdd50878555bc8c1
 
 pkgname = ansible


=
PKGBUILD
=
@@ -2,8 +2,8 @@
 # Maintainer: Robin Candau 
 
 pkgname=ansible
-pkgver=9.4.0
-pkgrel=4
+pkgver=9.5.1
+pkgrel=1
 pkgdesc='Official assortment of Ansible collections'
 arch=('any')
 url='https://pypi.org/project/ansible/'
@@ -26,7 +26,7 @@ optdepends=('python-argcomplete: shell completions'
 'acme-tiny: openssl_certificate module')
 makedepends=('python-build' 'python-installer' 'python-wheel' 
'python-setuptools')
 
source=("https://pypi.python.org/packages/source/a/ansible/ansible-${pkgver}.tar.gz";)
-sha512sums=('4c75235a866f3f95cda8dd3b6c9d22b916ad117d54a86a30585f71c9015cd98db764afa225af5b2f6fa884af558ee488785e26c9e8b9e8be105062f069f065b2')
+sha512sums=('8a95f0e41987a1ab423ebd6be8483681c30f31dfd24056d729c4e0cc870775d3a59f9790bcd0bf578538ba24752b9dc6401fe467f4f8b12acdd50878555bc8c1')
 
 build() {
   cd "ansible-${pkgver}"



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/ansible/-/commit/ce38f5a27495050587a4f096502fe125b8aaa52a

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/ansible/-/commit/ce38f5a27495050587a4f096502fe125b8aaa52a
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/python-pydantic-core][main] upgpkg: 1:2.18.2-2: Rebuild against Python 3.12

2024-04-24 Thread David Runge (@dvzrv)


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


Commits:
a604fa24 by David Runge at 2024-04-24T11:36:02+02:00
upgpkg: 1:2.18.2-2: Rebuild against Python 3.12

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = python-pydantic-core
pkgdesc = Core validation logic for pydantic written in rust
pkgver = 2.18.2
-   pkgrel = 1
+   pkgrel = 2
epoch = 1
url = https://github.com/pydantic/pydantic-core
arch = x86_64


=
PKGBUILD
=
@@ -4,7 +4,7 @@ _name=pydantic-core
 pkgname=python-pydantic-core
 # WARNING: this package is pinned down to the patch-level version in 
python-pydantic and should only be updated in lock-step with it
 pkgver=2.18.2
-pkgrel=1
+pkgrel=2
 epoch=1
 pkgdesc="Core validation logic for pydantic written in rust "
 arch=(x86_64)



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

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python-pydantic-core/-/commit/a604fa240a848d432a3fe761c01db7dfabb0a2c0
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/python-pydantic-core] Pushed new tag 1-2.18.2-2

2024-04-24 Thread David Runge (@dvzrv)


David Runge pushed new tag 1-2.18.2-2 at Arch Linux / Packaging / Packages / 
python-pydantic-core

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python-pydantic-core/-/tree/1-2.18.2-2
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/python-pydantic] Pushed new tag 2.7.1-1

2024-04-24 Thread David Runge (@dvzrv)


David Runge pushed new tag 2.7.1-1 at Arch Linux / Packaging / Packages / 
python-pydantic

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python-pydantic/-/tree/2.7.1-1
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/python-pydantic][main] upgpkg: 2.7.1-1

2024-04-24 Thread David Runge (@dvzrv)


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


Commits:
97b5f610 by David Runge at 2024-04-24T11:38:36+02:00
upgpkg: 2.7.1-1

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = python-pydantic
pkgdesc = Data parsing and validation using Python type hints
-   pkgver = 2.7.0
-   pkgrel = 2
+   pkgver = 2.7.1
+   pkgrel = 1
url = https://github.com/pydantic/pydantic
arch = any
license = MIT
@@ -32,8 +32,8 @@ pkgbase = python-pydantic
optdepends = python-dotenv: for .env file support
optdepends = python-email-validator: for email validation
optdepends = python-hypothesis: for hypothesis plugin when using legacy 
v1
-   source = 
https://github.com/pydantic/pydantic/archive/v2.7.0/pydantic-v2.7.0.tar.gz
-   sha512sums = 
14fe4e55bbfaade52b5176207b3a0101980316b8c35d1fc22e05448106776deee01b31cdd61c03742afc26bd45a5dfca8feb4f67bee75bf7f3c17c028c6088c8
-   b2sums = 
8a82fe997f7e70b049e29069bc130fd825485e65ff9bcdb1e3b27c0898dbc662dc4631655940b2326a2314e84520908d3d0955c6b3299d402671de6cef1b30d5
+   source = 
https://github.com/pydantic/pydantic/archive/v2.7.1/pydantic-v2.7.1.tar.gz
+   sha512sums = 
015050bc768909dced19ee008e81cb6efd79c754618802d59d5b998ca20ce0446f2b0e63061709c6fb669d9c4256b53a84481bcaad547fb41b3a669d4d52
+   b2sums = 
219604a1afd1cbfe68f4a33c455bf60a4a322aeb41924f96a5c919fcd138607e0c629ef9c3d022918e9c1033fbbfbce2d0513e3ed731ef935ca5b9b06784a298
 
 pkgname = python-pydantic


=
PKGBUILD
=
@@ -4,8 +4,8 @@
 _name=pydantic
 pkgname=python-$_name
 # WARNING: upstream pins pydantic-core down to the patch-level and using other 
versions breaks tests! only update in lock-step with python-pydantic-core!
-pkgver=2.7.0
-pkgrel=2
+pkgver=2.7.1
+pkgrel=1
 pkgdesc='Data parsing and validation using Python type hints'
 arch=(any)
 url="https://github.com/pydantic/pydantic";
@@ -46,8 +46,8 @@ optdepends=(
   'python-hypothesis: for hypothesis plugin when using legacy v1'
 )
 source=($url/archive/v$pkgver/$_name-v$pkgver.tar.gz)
-sha512sums=('14fe4e55bbfaade52b5176207b3a0101980316b8c35d1fc22e05448106776deee01b31cdd61c03742afc26bd45a5dfca8feb4f67bee75bf7f3c17c028c6088c8')
-b2sums=('8a82fe997f7e70b049e29069bc130fd825485e65ff9bcdb1e3b27c0898dbc662dc4631655940b2326a2314e84520908d3d0955c6b3299d402671de6cef1b30d5')
+sha512sums=('015050bc768909dced19ee008e81cb6efd79c754618802d59d5b998ca20ce0446f2b0e63061709c6fb669d9c4256b53a84481bcaad547fb41b3a669d4d52')
+b2sums=('219604a1afd1cbfe68f4a33c455bf60a4a322aeb41924f96a5c919fcd138607e0c629ef9c3d022918e9c1033fbbfbce2d0513e3ed731ef935ca5b9b06784a298')
 
 build() {
   cd $_name-$pkgver



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

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python-pydantic/-/commit/97b5f610778809a96de1ee8c67c8839b9964718c
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/python-pydantic][main] upgpkg: 2.7.1-2: Rebuild against Python 3.12

2024-04-24 Thread David Runge (@dvzrv)


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


Commits:
406f1cb1 by David Runge at 2024-04-24T11:39:39+02:00
upgpkg: 2.7.1-2: Rebuild against Python 3.12

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = python-pydantic
pkgdesc = Data parsing and validation using Python type hints
pkgver = 2.7.1
-   pkgrel = 1
+   pkgrel = 2
url = https://github.com/pydantic/pydantic
arch = any
license = MIT


=
PKGBUILD
=
@@ -5,7 +5,7 @@ _name=pydantic
 pkgname=python-$_name
 # WARNING: upstream pins pydantic-core down to the patch-level and using other 
versions breaks tests! only update in lock-step with python-pydantic-core!
 pkgver=2.7.1
-pkgrel=1
+pkgrel=2
 pkgdesc='Data parsing and validation using Python type hints'
 arch=(any)
 url="https://github.com/pydantic/pydantic";



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

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python-pydantic/-/commit/406f1cb1d9a1477f5cc12d57da0409571c606758
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/python-pydantic] Pushed new tag 2.7.1-2

2024-04-24 Thread David Runge (@dvzrv)


David Runge pushed new tag 2.7.1-2 at Arch Linux / Packaging / Packages / 
python-pydantic

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python-pydantic/-/tree/2.7.1-2
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/osbuild] Pushed new tag 117-1

2024-04-24 Thread Jelle van der Waa (@jelle)


Jelle van der Waa pushed new tag 117-1 at Arch Linux / Packaging / Packages / 
osbuild

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/osbuild/-/tree/117-1
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/osbuild][main] upgpkg: 117-1

2024-04-24 Thread Jelle van der Waa (@jelle)


Jelle van der Waa pushed to branch main at Arch Linux / Packaging / Packages / 
osbuild


Commits:
cbd41b0f by Jelle van der Waa at 2024-04-24T11:45:35+02:00
upgpkg: 117-1

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = osbuild
pkgdesc = Build Pipelines for Operating System Artifacts
-   pkgver = 116
-   pkgrel = 2
+   pkgver = 117
+   pkgrel = 1
url = https://www.osbuild.org
arch = any
license = Apache-2.0
@@ -23,7 +23,7 @@ pkgbase = osbuild
depends = skopeo
optdepends = dnf: build rpm/dnf images
optdepends = pacman: build pacman images
-   source = 
osbuild-116.tar.gz::https://github.com/osbuild/osbuild/archive/refs/tags/v116.tar.gz
-   sha256sums = 
7b3495c881ec2ca451d7e911d412773e8c06e51169a0b54151642e2d15307af3
+   source = 
osbuild-117.tar.gz::https://github.com/osbuild/osbuild/archive/refs/tags/v117.tar.gz
+   sha256sums = 
881259f9561a11dd081a669a6d7117a6b9941c9b808fdf9e8282f034dfc351c4
 
 pkgname = osbuild


=
PKGBUILD
=
@@ -3,8 +3,8 @@
 
 pkgname=osbuild
 pkgdesc='Build Pipelines for Operating System Artifacts'
-pkgver=116
-pkgrel=2
+pkgver=117
+pkgrel=1
 url="https://www.osbuild.org";
 arch=(any)
 license=(Apache-2.0)
@@ -13,7 +13,7 @@ makedepends=(make python-docutils python-build 
python-installer python-setuptool
 optdepends=('dnf: build rpm/dnf images'
 'pacman: build pacman images')
 
source=($pkgname-$pkgver.tar.gz::https://github.com/osbuild/osbuild/archive/refs/tags/v${pkgver}.tar.gz)
-sha256sums=('7b3495c881ec2ca451d7e911d412773e8c06e51169a0b54151642e2d15307af3')
+sha256sums=('881259f9561a11dd081a669a6d7117a6b9941c9b808fdf9e8282f034dfc351c4')
 
 prepare() {
   cd $pkgname-$pkgver



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/osbuild/-/commit/cbd41b0fc2ab3666c3a90c7adc56f618bbbcf7d0

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/osbuild/-/commit/cbd41b0fc2ab3666c3a90c7adc56f618bbbcf7d0
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/cargo-zigbuild][main] upgpkg: 0.18.4-1: upstream release

2024-04-24 Thread @orhun


Orhun Parmaksız pushed to branch main at Arch Linux / Packaging / Packages / 
cargo-zigbuild


Commits:
c53fd2aa by Orhun Parmaksız at 2024-04-24T14:16:01+03:00
upgpkg: 0.18.4-1: upstream release

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,6 +1,6 @@
 pkgbase = cargo-zigbuild
pkgdesc = Compile Cargo project with zig as linker
-   pkgver = 0.18.3
+   pkgver = 0.18.4
pkgrel = 1
url = https://github.com/rust-cross/cargo-zigbuild
arch = x86_64
@@ -8,7 +8,7 @@ pkgbase = cargo-zigbuild
depends = cargo
depends = zig
depends = gcc-libs
-   source = 
cargo-zigbuild-0.18.3.tar.gz::https://github.com/rust-cross/cargo-zigbuild/archive/v0.18.3.tar.gz
-   sha256sums = 
8907cff340a91d55704734a14f5c04398dbf5352720c9164ee39e9250c06dfad
+   source = 
cargo-zigbuild-0.18.4.tar.gz::https://github.com/rust-cross/cargo-zigbuild/archive/v0.18.4.tar.gz
+   sha256sums = 
842422e0255b5fc5f274deaebb66f82e6a9a61b1b936869fa3453dc6f817e10c
 
 pkgname = cargo-zigbuild


=
PKGBUILD
=
@@ -2,7 +2,7 @@
 # Contributor: KokaKiwi 
 
 pkgname=cargo-zigbuild
-pkgver=0.18.3
+pkgver=0.18.4
 pkgrel=1
 pkgdesc="Compile Cargo project with zig as linker"
 arch=('x86_64')
@@ -10,7 +10,7 @@ url="https://github.com/rust-cross/cargo-zigbuild";
 license=('MIT')
 depends=('cargo' 'zig' 'gcc-libs')
 source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha256sums=('8907cff340a91d55704734a14f5c04398dbf5352720c9164ee39e9250c06dfad')
+sha256sums=('842422e0255b5fc5f274deaebb66f82e6a9a61b1b936869fa3453dc6f817e10c')
 
 prepare() {
   cd "$pkgname-$pkgver"



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/cargo-zigbuild/-/commit/c53fd2aa143f69dedc3d145600451c3ce26b49be

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/cargo-zigbuild/-/commit/c53fd2aa143f69dedc3d145600451c3ce26b49be
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/cargo-zigbuild] Pushed new tag 0.18.4-1

2024-04-24 Thread @orhun


Orhun Parmaksız pushed new tag 0.18.4-1 at Arch Linux / Packaging / Packages / 
cargo-zigbuild

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/cargo-zigbuild/-/tree/0.18.4-1
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/lnav] Pushed new tag 0.12.2-1

2024-04-24 Thread @orhun


Orhun Parmaksız pushed new tag 0.12.2-1 at Arch Linux / Packaging / Packages / 
lnav

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/lnav/-/tree/0.12.2-1
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/lnav][main] upgpkg: 0.12.2-1: upstream release

2024-04-24 Thread @orhun


Orhun Parmaksız pushed to branch main at Arch Linux / Packaging / Packages / 
lnav


Commits:
d830e77f by Orhun Parmaksız at 2024-04-24T14:17:07+03:00
upgpkg: 0.12.2-1: upstream release

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,6 +1,6 @@
 pkgbase = lnav
pkgdesc = A curses-based tool for viewing and analyzing log files
-   pkgver = 0.12.0
+   pkgver = 0.12.2
pkgrel = 1
url = http://lnav.org/
arch = x86_64
@@ -11,7 +11,7 @@ pkgbase = lnav
depends = pcre2
depends = sqlite3
depends = libarchive
-   source = 
lnav-0.12.0.tar.gz::https://github.com/tstack/lnav/archive/v0.12.0.tar.gz
-   sha256sums = 
d431840213549c8175780ecc6151ae66c3ecf27b48e5e859a6a18df83c4a02bd
+   source = 
lnav-0.12.2.tar.gz::https://github.com/tstack/lnav/archive/v0.12.2.tar.gz
+   sha256sums = 
9f12e17f9f2b2f1ddf00ef3f35f61ab3c9709ddf2beaa0eeaf441462e812ca7f
 
 pkgname = lnav


=
PKGBUILD
=
@@ -3,7 +3,7 @@
 # Contributor: speps 
 
 pkgname=lnav
-pkgver=0.12.0
+pkgver=0.12.2
 pkgrel=1
 pkgdesc="A curses-based tool for viewing and analyzing log files"
 arch=('x86_64')
@@ -12,7 +12,7 @@ license=('custom:BSD')
 depends=('ncurses' 'curl' 'pcre2' 'sqlite3' 'libarchive')
 makedepends=('openssh')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/tstack/lnav/archive/v$pkgver.tar.gz";)
-sha256sums=('d431840213549c8175780ecc6151ae66c3ecf27b48e5e859a6a18df83c4a02bd')
+sha256sums=('9f12e17f9f2b2f1ddf00ef3f35f61ab3c9709ddf2beaa0eeaf441462e812ca7f')
 
 build() {
   cd $pkgname-$pkgver



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/lnav/-/commit/d830e77fe13a79d84e9124b97944a3d2a0073da8

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/lnav/-/commit/d830e77fe13a79d84e9124b97944a3d2a0073da8
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/mattermost-desktop] Pushed new tag 5.7.0-2

2024-04-24 Thread Caleb Maclennan (@alerque)


Caleb Maclennan pushed new tag 5.7.0-2 at Arch Linux / Packaging / Packages / 
mattermost-desktop

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/mattermost-desktop/-/tree/5.7.0-2
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/mattermost-desktop][main] upgpkg: 5.7.0-2: Update to upstream recommended Electron now that we have it

2024-04-24 Thread Caleb Maclennan (@alerque)


Caleb Maclennan pushed to branch main at Arch Linux / Packaging / Packages / 
mattermost-desktop


Commits:
564eaf7a by Caleb Maclennan at 2024-04-24T14:18:11+03:00
upgpkg: 5.7.0-2: Update to upstream recommended Electron now that we have it

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = mattermost-desktop
pkgdesc = Mattermost Desktop application
pkgver = 5.7.0
-   pkgrel = 1
+   pkgrel = 2
url = https://github.com/mattermost/desktop
arch = x86_64
license = Apache-2.0
@@ -11,7 +11,7 @@ pkgbase = mattermost-desktop
makedepends = nodejs-lts-iron
makedepends = node-gyp
makedepends = npm
-   depends = electron27
+   depends = electron28
depends = libxcrypt-compat
source = 
mattermost-desktop-5.7.0.tar.gz::https://github.com/mattermost/desktop/archive/v5.7.0.tar.gz
source = mattermost-desktop.sh


=
PKGBUILD
=
@@ -8,12 +8,12 @@
 
 pkgname=mattermost-desktop
 pkgver=5.7.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Mattermost Desktop application'
 arch=(x86_64)
 url="https://github.com/${pkgname/-//}";
 license=(Apache-2.0)
-_electron=electron27
+_electron=electron28
 depends=($_electron
  libxcrypt-compat)
 makedepends=(git



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/mattermost-desktop/-/commit/564eaf7a8f53fbb78efe58a0b5317c7880aba172

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/mattermost-desktop/-/commit/564eaf7a8f53fbb78efe58a0b5317c7880aba172
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/aliyun-cli][main] upgpkg: 3.0.203-1: upstream release

2024-04-24 Thread @orhun


Orhun Parmaksız pushed to branch main at Arch Linux / Packaging / Packages / 
aliyun-cli


Commits:
eeeb77bb by Orhun Parmaksız at 2024-04-24T14:25:38+03:00
upgpkg: 3.0.203-1: upstream release

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,6 +1,6 @@
 pkgbase = aliyun-cli
pkgdesc = Alibaba Cloud CLI
-   pkgver = 3.0.202
+   pkgver = 3.0.203
pkgrel = 1
url = https://github.com/aliyun/aliyun-cli
arch = x86_64
@@ -8,11 +8,11 @@ pkgbase = aliyun-cli
makedepends = git
makedepends = go
depends = glibc
-   source = 
git+https://github.com/aliyun/aliyun-cli#commit=bf0dece6bece4f47fd38986aacefdff03643cb52
+   source = 
git+https://github.com/aliyun/aliyun-cli#commit=0e6f9b50a2e15884a443a0b4618622d1d180c594
source = git+https://github.com/aliyun/aliyun-openapi-meta
-   sha512sums = 
c134ec5c79239b5272f3ff339270f3c7b33dc473bfd83620dcedf834c5e2738d1552786104c1c68bfba7e9c97b0a8fe09bc1e114395f7a97f1a96478fb613f8a
+   sha512sums = 
40a353b4f9c308ef89e0b917a0c9ce81b45203a131721b2f94fdb71b325b1aaf20d62fcc7f845246bb52f973c9abd62488209682560a655d2b80842cf18b4483
sha512sums = SKIP
-   b2sums = 
51be97d95250454db718f6692cbc2fb5872bbf7d2397305a1ce52cd7ed4156af4c9ae9ab657f26dfd9637a47d2316126f87b42c66e68b7c554b307a583821eb1
+   b2sums = 
a82f667c719eca2805398199e8d4c207d3e56da44c0ab2a47e04f64f03f48b9859d5175fb1beeae1f3116ecc1b30ca32ded6bf259df3c20fb3fe9b6b37de
b2sums = SKIP
 
 pkgname = aliyun-cli


=
PKGBUILD
=
@@ -3,8 +3,8 @@
 # Contributor: Andreas 'Segaja' Schleifer 
 
 pkgname=aliyun-cli
-_gitcommit=bf0dece6bece4f47fd38986aacefdff03643cb52
-pkgver=3.0.202
+_gitcommit=0e6f9b50a2e15884a443a0b4618622d1d180c594
+pkgver=3.0.203
 pkgrel=1
 pkgdesc='Alibaba Cloud CLI'
 arch=('x86_64')
@@ -14,9 +14,9 @@ depends=('glibc')
 makedepends=('git' 'go')
 source=("git+${url}#commit=${_gitcommit}"
 git+https://github.com/aliyun/aliyun-openapi-meta)
-sha512sums=('c134ec5c79239b5272f3ff339270f3c7b33dc473bfd83620dcedf834c5e2738d1552786104c1c68bfba7e9c97b0a8fe09bc1e114395f7a97f1a96478fb613f8a'
+sha512sums=('40a353b4f9c308ef89e0b917a0c9ce81b45203a131721b2f94fdb71b325b1aaf20d62fcc7f845246bb52f973c9abd62488209682560a655d2b80842cf18b4483'
 'SKIP')
-b2sums=('51be97d95250454db718f6692cbc2fb5872bbf7d2397305a1ce52cd7ed4156af4c9ae9ab657f26dfd9637a47d2316126f87b42c66e68b7c554b307a583821eb1'
+b2sums=('a82f667c719eca2805398199e8d4c207d3e56da44c0ab2a47e04f64f03f48b9859d5175fb1beeae1f3116ecc1b30ca32ded6bf259df3c20fb3fe9b6b37de'
 'SKIP')
 
 pkgver() {



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/aliyun-cli/-/commit/eeeb77bba992d70da02a53c8687f76c473343b6f

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/aliyun-cli/-/commit/eeeb77bba992d70da02a53c8687f76c473343b6f
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/aliyun-cli] Pushed new tag 3.0.203-1

2024-04-24 Thread @orhun


Orhun Parmaksız pushed new tag 3.0.203-1 at Arch Linux / Packaging / Packages / 
aliyun-cli

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/aliyun-cli/-/tree/3.0.203-1
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/powerdns-recursor] Pushed new tag 5.0.4-1

2024-04-24 Thread Remi Gacogne (@rgacogne)


Remi Gacogne pushed new tag 5.0.4-1 at Arch Linux / Packaging / Packages / 
powerdns-recursor

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/powerdns-recursor/-/tree/5.0.4-1
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/powerdns-recursor][main] upgpkg: 5.0.4-1

2024-04-24 Thread Remi Gacogne (@rgacogne)


Remi Gacogne pushed to branch main at Arch Linux / Packaging / Packages / 
powerdns-recursor


Commits:
d5505630 by Remi Gacogne at 2024-04-24T13:25:21+02:00
upgpkg: 5.0.4-1

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = powerdns-recursor
pkgdesc = Resolving DNS server
-   pkgver = 5.0.3
-   pkgrel = 2
+   pkgver = 5.0.4
+   pkgrel = 1
url = https://www.powerdns.com/
arch = x86_64
license = GPL-2.0-only
@@ -25,12 +25,12 @@ pkgbase = powerdns-recursor
conflicts = pdns-recursor
options = !lto
backup = etc/powerdns/recursor.conf
-   source = 
https://downloads.powerdns.com/releases/pdns-recursor-5.0.3.tar.bz2
-   source = 
https://downloads.powerdns.com/releases/pdns-recursor-5.0.3.tar.bz2.asc
+   source = 
https://downloads.powerdns.com/releases/pdns-recursor-5.0.4.tar.bz2
+   source = 
https://downloads.powerdns.com/releases/pdns-recursor-5.0.4.tar.bz2.asc
source = sysusers.conf
validpgpkeys = FBAE0323821C7706A5CA151BDCF513FA7EED19F3
validpgpkeys = 16E12866B7738C73976A57436FFC33439B0D04DF
-   sha512sums = 
9e7ece25e05729e4e46023c5b7e524f46e9806cd6546bcdde9c01c038f6d53380184423e3f4c9239eaba94157d5fc53c3376225e75b4136d508dafdc1ad4e04b
+   sha512sums = 
a78422917df91a8f8c49bc5c2bdf599f92f6c3359f049653c6623a05da8117445c04400321cc4e2128cfaedb7b345cbec003339c35e4f2c76bb43d16d07b00d4
sha512sums = SKIP
sha512sums = 
63b3f0664d38fbbcb6b1c914cee050a27eca0a15550962973743580dd5d3ace2e68272ca2d856d53cc74001fe9246d61207ebbc74524c096736777ed08c88e72
 


=
PKGBUILD
=
@@ -5,8 +5,8 @@
 # Contributor: Jan Steffens 
 
 pkgname=powerdns-recursor
-pkgver=5.0.3
-pkgrel=2
+pkgver=5.0.4
+pkgrel=1
 pkgdesc='Resolving DNS server'
 url='https://www.powerdns.com/'
 arch=('x86_64')
@@ -20,7 +20,7 @@ conflicts=('pdns-recursor')
 backup=('etc/powerdns/recursor.conf')
 
source=(https://downloads.powerdns.com/releases/pdns-recursor-${pkgver}.tar.bz2{,.asc}
 sysusers.conf)
-sha512sums=('9e7ece25e05729e4e46023c5b7e524f46e9806cd6546bcdde9c01c038f6d53380184423e3f4c9239eaba94157d5fc53c3376225e75b4136d508dafdc1ad4e04b'
+sha512sums=('a78422917df91a8f8c49bc5c2bdf599f92f6c3359f049653c6623a05da8117445c04400321cc4e2128cfaedb7b345cbec003339c35e4f2c76bb43d16d07b00d4'
 'SKIP'
 
'63b3f0664d38fbbcb6b1c914cee050a27eca0a15550962973743580dd5d3ace2e68272ca2d856d53cc74001fe9246d61207ebbc74524c096736777ed08c88e72')
 validpgpkeys=('FBAE0323821C7706A5CA151BDCF513FA7EED19F3'  # Peter van Dijk 




View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/powerdns-recursor/-/commit/d5505630543593a6b41c1f49507cdedab3caaa48

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/powerdns-recursor/-/commit/d5505630543593a6b41c1f49507cdedab3caaa48
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/qemu] Pushed new tag 9.0.0-1

2024-04-24 Thread David Runge (@dvzrv)


David Runge pushed new tag 9.0.0-1 at Arch Linux / Packaging / Packages / qemu

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/qemu/-/tree/9.0.0-1
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/util-linux][main] add versioned depends on split packages

2024-04-24 Thread Christian Hesse (@eworm)


Christian Hesse pushed to branch main at Arch Linux / Packaging / Packages / 
util-linux


Commits:
dc3ac651 by Christian Hesse at 2024-04-24T14:10:29+02:00
add versioned depends on split packages

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -48,6 +48,7 @@ pkgbase = util-linux
sha256sums = 
a22e0a037e702170c7d88460cc9c9c2ab1d3e5c54a6985cd4a164ea7beff1b36
 
 pkgname = util-linux
+   depends = util-linux-libs=2.40
depends = coreutils
depends = file
depends = libmagic.so
@@ -63,7 +64,6 @@ pkgname = util-linux
depends = systemd-libs
depends = libsystemd.so
depends = libudev.so
-   depends = util-linux-libs
depends = zlib
optdepends = words: default dictionary for look
provides = rfkill


=
PKGBUILD
=
@@ -103,7 +103,8 @@ package_util-linux() {
   conflicts=('rfkill' 'hardlink')
   provides=('rfkill' 'hardlink')
   replaces=('rfkill' 'hardlink')
-  depends=('coreutils'
+  depends=("util-linux-libs=${pkgver}"
+   'coreutils'
'file' 'libmagic.so'
'glibc'
'libcap-ng'
@@ -113,7 +114,6 @@ package_util-linux() {
'readline'
'shadow'
'systemd-libs' 'libsystemd.so' 'libudev.so'
-   'util-linux-libs'
'zlib')
   optdepends=('words: default dictionary for look')
   backup=(etc/pam.d/chfn



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/util-linux/-/commit/dc3ac65143c9e7e97b5e1bfa0783f91524c551f0

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/util-linux/-/commit/dc3ac65143c9e7e97b5e1bfa0783f91524c551f0
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/lib32-util-linux][main] add versioned depend on util-linux-libs package

2024-04-24 Thread Christian Hesse (@eworm)


Christian Hesse pushed to branch main at Arch Linux / Packaging / Packages / 
lib32-util-linux


Commits:
fe94fba5 by Christian Hesse at 2024-04-24T14:11:35+02:00
add versioned depend on util-linux-libs package

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -9,8 +9,8 @@ pkgbase = lib32-util-linux
makedepends = meson
makedepends = lib32-libxcrypt
makedepends = lib32-ncurses
+   depends = util-linux-libs=2.40
depends = lib32-glibc
-   depends = util-linux-libs
provides = libuuid.so
provides = libblkid.so
provides = libfdisk.so


=
PKGBUILD
=
@@ -10,7 +10,7 @@ pkgdesc='Miscellaneous system utilities for Linux (32-bit)'
 url='https://github.com/util-linux/util-linux'
 arch=('x86_64')
 makedepends=('git' 'meson' 'lib32-libxcrypt' 'lib32-ncurses')
-depends=('lib32-glibc' 'util-linux-libs')
+depends=("util-linux-libs=${pkgver}" 'lib32-glibc')
 provides=('libuuid.so' 'libblkid.so' 'libfdisk.so' 'libmount.so' 
'libsmartcols.so')
 license=('GPL2')
 options=('!emptydirs')



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/lib32-util-linux/-/commit/fe94fba5510bd1085b7cec25cbb410234fbf013d

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/lib32-util-linux/-/commit/fe94fba5510bd1085b7cec25cbb410234fbf013d
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/lib32-systemd][main] add versioned depends on systemd packages

2024-04-24 Thread Christian Hesse (@eworm)


Christian Hesse pushed to branch main at Arch Linux / Packaging / Packages / 
lib32-systemd


Commits:
1d5fa0d7 by Christian Hesse at 2024-04-24T08:51:54+02:00
add versioned depends on systemd packages

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -5,7 +5,7 @@ pkgbase = lib32-systemd
url = https://www.github.com/systemd/systemd
arch = x86_64
license = LGPL-2.1-or-later
-   checkdepends = systemd
+   checkdepends = systemd=255.4
makedepends = git
makedepends = gperf
makedepends = intltool
@@ -22,13 +22,13 @@ pkgbase = lib32-systemd
makedepends = libxslt
makedepends = meson
makedepends = python-jinja
+   depends = systemd-libs=255.4
depends = lib32-gcc-libs
depends = lib32-libcap
depends = lib32-libgcrypt
depends = lib32-libxcrypt
depends = lib32-xz
depends = lib32-zstd
-   depends = systemd-libs
provides = libsystemd.so
provides = libudev.so
source = git+https://github.com/systemd/systemd-stable#tag=v255.4?signed


=
PKGBUILD
=
@@ -16,13 +16,13 @@ pkgdesc='system and service manager (32-bit)'
 arch=('x86_64')
 url='https://www.github.com/systemd/systemd'
 license=('LGPL-2.1-or-later')
-depends=('lib32-gcc-libs' 'lib32-libcap' 'lib32-libgcrypt' 'lib32-libxcrypt'
- 'lib32-xz' 'lib32-zstd' 'systemd-libs')
+depends=("systemd-libs=${pkgver}" 'lib32-gcc-libs' 'lib32-libcap' 
'lib32-libgcrypt'
+ 'lib32-libxcrypt' 'lib32-xz' 'lib32-zstd')
 makedepends=('git' 'gperf' 'intltool' 'lib32-acl' 'lib32-bzip2'
  'lib32-curl' 'lib32-dbus' 'lib32-gcc-libs' 'lib32-glib2'
  'lib32-gnutls' 'lib32-libelf' 'lib32-libidn2' 'lib32-pcre2'
  'libxslt' 'meson' 'python-jinja')
-checkdepends=('systemd')
+checkdepends=("systemd=${pkgver}")
 provides=('libsystemd.so' 'libudev.so')
 validpgpkeys=('63CDA1E5D3FC22B998D20DD6327F26951A015CC4'  # Lennart Poettering 

   'A9EA9081724FFAE0484C35A1A81CEA22BC8C7E2E'  # Luca Boccassi 




View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/lib32-systemd/-/commit/1d5fa0d7c26512ea07ac87fe14921196dbd8e56a

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/lib32-systemd/-/commit/1d5fa0d7c26512ea07ac87fe14921196dbd8e56a
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/matrix-synapse][main] upgpkg: 1.105.1-1: upstream release

2024-04-24 Thread Alexander Epaneshnikov (@alex19ep)


Alexander Epaneshnikov pushed to branch main at Arch Linux / Packaging / 
Packages / matrix-synapse


Commits:
d6dcff69 by Alexander Epaneshnikov at 2024-04-24T16:15:38+03:00
upgpkg: 1.105.1-1: upstream release

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = matrix-synapse
pkgdesc = Matrix reference homeserver
-   pkgver = 1.105.0
-   pkgrel = 2
+   pkgver = 1.105.1
+   pkgrel = 1
url = https://github.com/element-hq/synapse
install = synapse.install
arch = x86_64
@@ -66,7 +66,7 @@ pkgbase = matrix-synapse
optdepends = python-pyicu: Improve user search for international 
display names
optdepends = python-authlib: OpenID SSO support
backup = etc/synapse/log_config.yaml
-   source = 
matrix-synapse::git+https://github.com/element-hq/synapse.git#tag=v1.105.0
+   source = 
matrix-synapse::git+https://github.com/element-hq/synapse.git#tag=v1.105.1
source = generic_worker.yaml.example
source = synapse.service
source = synapse.target
@@ -83,7 +83,7 @@ pkgbase = matrix-synapse
validpgpkeys = D79D3CA0B61429A8A760525A903ECE108A39DEDD
validpgpkeys = F124520CEEE062448FE1C8442D2EFA2F32FBE047
validpgpkeys = 177B595E4DFCB510C556750833FC58F6A7113048
-   sha256sums = 
74623a60db6e9299b85543ae76d354d87be4b17ab53c2dfc2b20bab9254600af
+   sha256sums = 
ea01f123ad74263dd3ddf1266e2705d9958bd82bbe377420d4e8c7769f47ed10
sha256sums = 
f67334856609997eac26939d77cfc520e78e98d3755543ab730d83a0f362a35e
sha256sums = 
74af0bc2f57e5ced1a44f2438922d420cbb7defedae784cac02ef125f276a2ed
sha256sums = 
408527271e1250beb20531f140b91201ed464e42f7eb3f47f02967a2ac23a661


=
PKGBUILD
=
@@ -3,8 +3,8 @@
 # Contributor: Ivan Shapovalov 
 
 pkgname=matrix-synapse
-pkgver=1.105.0
-pkgrel=2
+pkgver=1.105.1
+pkgrel=1
 pkgdesc="Matrix reference homeserver"
 url="https://github.com/element-hq/synapse";
 arch=('x86_64')
@@ -40,7 +40,7 @@ 
source=("$pkgname::git+https://github.com/element-hq/synapse.git#tag=v$pkgver";
 'sysusers-synapse.conf'
 'tmpfiles-synapse.conf'
 'override-hardened.conf')
-sha256sums=('74623a60db6e9299b85543ae76d354d87be4b17ab53c2dfc2b20bab9254600af'
+sha256sums=('ea01f123ad74263dd3ddf1266e2705d9958bd82bbe377420d4e8c7769f47ed10'
 'f67334856609997eac26939d77cfc520e78e98d3755543ab730d83a0f362a35e'
 '74af0bc2f57e5ced1a44f2438922d420cbb7defedae784cac02ef125f276a2ed'
 '408527271e1250beb20531f140b91201ed464e42f7eb3f47f02967a2ac23a661'



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/matrix-synapse/-/commit/d6dcff694e633f8518ee7f0daa8b211fdc0c6715

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/matrix-synapse/-/commit/d6dcff694e633f8518ee7f0daa8b211fdc0c6715
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/matrix-synapse] Pushed new tag 1.105.1-1

2024-04-24 Thread Alexander Epaneshnikov (@alex19ep)


Alexander Epaneshnikov pushed new tag 1.105.1-1 at Arch Linux / Packaging / 
Packages / matrix-synapse

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/matrix-synapse/-/tree/1.105.1-1
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/trivy] Pushed new tag 0.50.4-1

2024-04-24 Thread Andrew Crerar (@andrewsc)


Andrew Crerar pushed new tag 0.50.4-1 at Arch Linux / Packaging / Packages / 
trivy

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/trivy/-/tree/0.50.4-1
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/trivy][main] upgpkg: 0.50.4-1

2024-04-24 Thread Andrew Crerar (@andrewsc)


Andrew Crerar pushed to branch main at Arch Linux / Packaging / Packages / trivy


Commits:
77f72ef4 by Andrew Crerar at 2024-04-24T09:22:09-04:00
upgpkg: 0.50.4-1

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,6 +1,6 @@
 pkgbase = trivy
pkgdesc = A Simple and Comprehensive Vulnerability Scanner for 
Containers, Suitable for CI
-   pkgver = 0.50.2
+   pkgver = 0.50.4
pkgrel = 1
url = https://github.com/aquasecurity/trivy
arch = x86_64
@@ -11,7 +11,7 @@ pkgbase = trivy
optdepends = rpm: RHEL/CentOS based image support
provides = trivy
conflicts = trivy
-   source = 
trivy-0.50.2.tar.gz::https://github.com/aquasecurity/trivy/archive/v0.50.2.tar.gz
-   b2sums = 
947fa094b4543c7d85ed4b406dc6c3071f1ce9cfb08b194c7134063a3dfc09bc51b92ed4ad264c750ce9788deef545d270574538abd43164296fa9b16f84324a
+   source = 
trivy-0.50.4.tar.gz::https://github.com/aquasecurity/trivy/archive/v0.50.4.tar.gz
+   b2sums = 
da48e3b904e99da9dd32d22ef1cbcc543c828b79df8cf1c79ff10643652f1d3ca086160cdb94b636a44a03f155913264fbf118ea4190b7e542a61e14b44ea08f
 
 pkgname = trivy


=
PKGBUILD
=
@@ -3,7 +3,7 @@
 # Contributor: Hao Long 
 
 pkgname=trivy
-pkgver=0.50.2
+pkgver=0.50.4
 pkgrel=1
 pkgdesc='A Simple and Comprehensive Vulnerability Scanner for Containers, 
Suitable for CI'
 arch=('x86_64')
@@ -15,7 +15,7 @@ makedepends=('go' 'btrfs-progs')
 provides=('trivy')
 conflicts=('trivy')
 source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/v${pkgver}.tar.gz")
-b2sums=('947fa094b4543c7d85ed4b406dc6c3071f1ce9cfb08b194c7134063a3dfc09bc51b92ed4ad264c750ce9788deef545d270574538abd43164296fa9b16f84324a')
+b2sums=('da48e3b904e99da9dd32d22ef1cbcc543c828b79df8cf1c79ff10643652f1d3ca086160cdb94b636a44a03f155913264fbf118ea4190b7e542a61e14b44ea08f')
 
 prepare() {
   cd ${pkgname}-${pkgver}



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/trivy/-/commit/77f72ef4ae447743984fe3aa0f5056d52fe0e56e

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/trivy/-/commit/77f72ef4ae447743984fe3aa0f5056d52fe0e56e
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/cargo-wizard] Pushed new tag 0.2.2-2

2024-04-24 Thread @orhun


Orhun Parmaksız pushed new tag 0.2.2-2 at Arch Linux / Packaging / Packages / 
cargo-wizard

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/cargo-wizard/-/tree/0.2.2-2
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/cargo-wizard] Pushed new branch main

2024-04-24 Thread @orhun


Orhun Parmaksız pushed new branch main at Arch Linux / Packaging / Packages / 
cargo-wizard

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/cargo-wizard/-/tree/main
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/r][main] upgpkg: 4.4.0-1: Update to 4.4.0

2024-04-24 Thread Antonio Rojas (@arojas)


Antonio Rojas pushed to branch main at Arch Linux / Packaging / Packages / r


Commits:
13bedf39 by Antonio Rojas at 2024-04-24T16:12:50+02:00
upgpkg: 4.4.0-1: Update to 4.4.0

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = r
pkgdesc = Language and environment for statistical computing and 
graphics
-   pkgver = 4.3.3
-   pkgrel = 2
+   pkgver = 4.4.0
+   pkgrel = 1
url = https://www.r-project.org/
arch = x86_64
license = GPL
@@ -45,11 +45,11 @@ pkgbase = r
backup = etc/R/ldpaths
backup = etc/R/repositories
backup = etc/R/javaconf
-   source = https://cran.r-project.org/src/base/R-4/R-4.3.3.tar.gz
+   source = https://cran.r-project.org/src/base/R-4/R-4.4.0.tar.gz
source = r.desktop
source = r.png
source = R.conf
-   sha256sums = 
80851231393b85bf3877ee9e39b282e750ed864c5ec60cbd68e6e139f0520330
+   sha256sums = 
ace4125f9b976d2c53bcc5fca30c75e30d4edc401584859cbadb080e72b5f030
sha256sums = 
25b01ea93fa704884b65ba002d44d4e99725bd826997e8c73b6467df9f23c798
sha256sums = 
1580d06a737951f4f3c903cbd514247d9071fc6868eb9c2de94bb999cc195cb1
sha256sums = 
b7833166041b06f716b6a79095d27d4abd83549816dc53193213827139eae6ef


=
PKGBUILD
=
@@ -4,8 +4,8 @@
 # Contributor: K. Piche 
 
 pkgname=r
-pkgver=4.3.3
-pkgrel=2
+pkgver=4.4.0
+pkgrel=1
 pkgdesc='Language and environment for statistical computing and graphics'
 arch=(x86_64)
 license=(GPL)
@@ -54,7 +54,7 @@ 
source=(https://cran.r-project.org/src/base/R-${pkgver%%.*}/R-$pkgver.tar.gz
r.desktop
r.png
R.conf)
-sha256sums=('80851231393b85bf3877ee9e39b282e750ed864c5ec60cbd68e6e139f0520330'
+sha256sums=('ace4125f9b976d2c53bcc5fca30c75e30d4edc401584859cbadb080e72b5f030'
 '25b01ea93fa704884b65ba002d44d4e99725bd826997e8c73b6467df9f23c798'
 '1580d06a737951f4f3c903cbd514247d9071fc6868eb9c2de94bb999cc195cb1'
 'b7833166041b06f716b6a79095d27d4abd83549816dc53193213827139eae6ef')



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/r/-/commit/13bedf396c340a2524e9cc351c88691006c1c80a

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/r/-/commit/13bedf396c340a2524e9cc351c88691006c1c80a
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/r] Pushed new tag 4.4.0-1

2024-04-24 Thread Antonio Rojas (@arojas)


Antonio Rojas pushed new tag 4.4.0-1 at Arch Linux / Packaging / Packages / r

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/r/-/tree/4.4.0-1
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/wrangler][main] upgpkg: 3.52.0-1

2024-04-24 Thread kpcyrd (@kpcyrd)


kpcyrd pushed to branch main at Arch Linux / Packaging / Packages / wrangler


Commits:
f3bbb3d3 by kpcyrd at 2024-04-24T16:27:13+02:00
upgpkg: 3.52.0-1

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,6 +1,6 @@
 pkgbase = wrangler
pkgdesc = The CLI for Cloudflare Workers
-   pkgver = 3.51.2
+   pkgver = 3.52.0
pkgrel = 1
url = https://github.com/cloudflare/workers-sdk
arch = x86_64
@@ -17,11 +17,11 @@ pkgbase = wrangler
depends = worker-build
depends = workerd
options = !lto
-   source = 
https://github.com/cloudflare/workers-sdk/archive/refs/tags/wrang...@3.51.2.tar.gz
+   source = 
https://github.com/cloudflare/workers-sdk/archive/refs/tags/wrang...@3.52.0.tar.gz
source = 
esbuild-0.17.19.tar.gz::https://github.com/evanw/esbuild/archive/v0.17.19.tar.gz
-   sha256sums = 
c3890e8211ceffd7b8030528a98e2176c999cbf18d22f1669418e620e74b9ea7
+   sha256sums = 
756cda4b035d2306b4e5e20169957ad3db7e3010da40f352d5c177109169293c
sha256sums = 
481201f00848594f5850ac32ddf9d4d21047e5a4c306485fb7461dd4d14d6fa2
-   b2sums = 
8eb8585c82bed1dc4ecb6274abb412672c81f63e0803119695432ea384d31fc4672f7d04e307c65a9183ae90e88dbc5e8ab4ee92c8b3e5cc7fef380250341c0a
+   b2sums = 
c7a97a8ebaadfd7e5d8b89a2f7010b0e1e07ff123def2d000d964a271b95ccfb6cab9715f079ba8a3a6c362d72fa991eb6e6055501aa15d88b9dcad6f7380d6d
b2sums = 
4c26fdd7dd52706f98c6e9d60e6b3993168b2ffefd35b326e03be806d5083adcb50d9cb931f925f551e90aef5392647c99807b73af4075d6d5e2336c565c33ea
 
 pkgname = wrangler


=
PKGBUILD
=
@@ -1,7 +1,7 @@
 # Maintainer: kpcyrd 
 
 pkgname=wrangler
-pkgver=3.51.2
+pkgver=3.52.0
 pkgrel=1
 _esbuild_ver='0.17.19'
 pkgdesc="The CLI for Cloudflare Workers"
@@ -26,9 +26,9 @@ makedepends=(
 options=(!lto)
 
source=(https://github.com/cloudflare/workers-sdk/archive/refs/tags/wrangler@${pkgver}.tar.gz
 
"esbuild-${_esbuild_ver}.tar.gz::https://github.com/evanw/esbuild/archive/v${_esbuild_ver}.tar.gz";)
-sha256sums=('c3890e8211ceffd7b8030528a98e2176c999cbf18d22f1669418e620e74b9ea7'
+sha256sums=('756cda4b035d2306b4e5e20169957ad3db7e3010da40f352d5c177109169293c'
 '481201f00848594f5850ac32ddf9d4d21047e5a4c306485fb7461dd4d14d6fa2')
-b2sums=('8eb8585c82bed1dc4ecb6274abb412672c81f63e0803119695432ea384d31fc4672f7d04e307c65a9183ae90e88dbc5e8ab4ee92c8b3e5cc7fef380250341c0a'
+b2sums=('c7a97a8ebaadfd7e5d8b89a2f7010b0e1e07ff123def2d000d964a271b95ccfb6cab9715f079ba8a3a6c362d72fa991eb6e6055501aa15d88b9dcad6f7380d6d'
 
'4c26fdd7dd52706f98c6e9d60e6b3993168b2ffefd35b326e03be806d5083adcb50d9cb931f925f551e90aef5392647c99807b73af4075d6d5e2336c565c33ea')
 
 prepare() {



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/wrangler/-/commit/f3bbb3d3256d9d1a703ed10cc4e2da8dfc04de29

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/wrangler/-/commit/f3bbb3d3256d9d1a703ed10cc4e2da8dfc04de29
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/wrangler] Pushed new tag 3.52.0-1

2024-04-24 Thread kpcyrd (@kpcyrd)


kpcyrd pushed new tag 3.52.0-1 at Arch Linux / Packaging / Packages / wrangler

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/wrangler/-/tree/3.52.0-1
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/composer] Pushed new tag 2.7.4-1

2024-04-24 Thread Pierre Schmitz (@pierre)


Pierre Schmitz pushed new tag 2.7.4-1 at Arch Linux / Packaging / Packages / 
composer

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/composer/-/tree/2.7.4-1
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/composer][main] upgpkg: 2.7.4-1

2024-04-24 Thread Pierre Schmitz (@pierre)


Pierre Schmitz pushed to branch main at Arch Linux / Packaging / Packages / 
composer


Commits:
d8e4688e by Pierre Schmitz at 2024-04-24T17:09:42+02:00
upgpkg: 2.7.4-1

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,6 +1,6 @@
 pkgbase = composer
pkgdesc = Dependency Manager for PHP
-   pkgver = 2.7.3
+   pkgver = 2.7.4
pkgrel = 1
url = https://getcomposer.org/
arch = any
@@ -8,9 +8,9 @@ pkgbase = composer
makedepends = git
depends = php
depends = unzip
-   source = 
composer::git+https://github.com/composer/composer.git#tag=2.7.3
-   source = 
composer-2.7.3.phar::https://getcomposer.org/download/2.7.3/composer.phar
-   sha256sums = 
b79056dda691490751bf9b3678c5bb18d435fdb245664b40d43c74eaa681559b
-   sha256sums = 
fcc02ff044b5a04fbecff0158cb6041c25e8f78ac494098736fecd2bb4f381e4
+   source = 
composer::git+https://github.com/composer/composer.git#tag=2.7.4
+   source = 
composer-2.7.4.phar::https://getcomposer.org/download/2.7.4/composer.phar
+   sha256sums = 
36cb5327e6d54832ac9610cf86b1cb1d1678ac3d86a8654bf435bab224bedfcc
+   sha256sums = 
ee01080d632d2bbfa9c618009cca13718f36e751dda679a6009cee751c13b2d9
 
 pkgname = composer


=
PKGBUILD
=
@@ -1,7 +1,7 @@
 # Maintainer: Pierre Schmitz 
 
 pkgname=composer
-pkgver=2.7.3
+pkgver=2.7.4
 pkgrel=1
 pkgdesc="Dependency Manager for PHP"
 arch=('any')
@@ -11,8 +11,8 @@ depends=('php' 'unzip')
 makedepends=('git')
 
source=("${pkgname}::git+https://github.com/composer/composer.git#tag=${pkgver}";
 
"${pkgname}-${pkgver}.phar::https://getcomposer.org/download/${pkgver}/composer.phar";)
-sha256sums=('b79056dda691490751bf9b3678c5bb18d435fdb245664b40d43c74eaa681559b'
-'fcc02ff044b5a04fbecff0158cb6041c25e8f78ac494098736fecd2bb4f381e4')
+sha256sums=('36cb5327e6d54832ac9610cf86b1cb1d1678ac3d86a8654bf435bab224bedfcc'
+'ee01080d632d2bbfa9c618009cca13718f36e751dda679a6009cee751c13b2d9')
 
 prepare() {
cd "${srcdir}/${pkgname}"



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/composer/-/commit/d8e4688e328139effea962fbce5a20b706c211a2

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/composer/-/commit/d8e4688e328139effea962fbce5a20b706c211a2
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/systemd][main] upgpkg: 255.5-1: new upstream release

2024-04-24 Thread Christian Hesse (@eworm)


Christian Hesse pushed to branch main at Arch Linux / Packaging / Packages / 
systemd


Commits:
b340109f by Christian Hesse at 2024-04-24T17:11:38+02:00
upgpkg: 255.5-1: new upstream release

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,6 +1,6 @@
 pkgbase = systemd
-   pkgver = 255.4
-   pkgrel = 2
+   pkgver = 255.5
+   pkgrel = 1
url = https://www.github.com/systemd/systemd
arch = x86_64
license = LGPL-2.1-or-later
@@ -52,7 +52,7 @@ pkgbase = systemd
makedepends = lib32-gcc-libs
makedepends = python-pefile
conflicts = mkinitcpio<38-1
-   source = git+https://github.com/systemd/systemd-stable#tag=v255.4?signed
+   source = git+https://github.com/systemd/systemd-stable#tag=v255.5?signed
source = git+https://github.com/systemd/systemd#tag=v255?signed
source = 0001-Use-Arch-Linux-device-access-groups.patch
source = arch.conf
@@ -74,7 +74,7 @@ pkgbase = systemd
validpgpkeys = A9EA9081724FFAE0484C35A1A81CEA22BC8C7E2E
validpgpkeys = 9A774DB5DB996C154EBBFBFDA0099A18E29326E1
validpgpkeys = 5C251B5FC54EB2F80F407AAAC54CA336CFEB557E
-   sha512sums = 
0c41c21931c5f08b5c91fe718d90f8cb11fb83429b3028bde9922605a35ea81d8452b00af99775b519b19195b8ba0084147d13dec1c5dfe9c905d769018b0676
+   sha512sums = 
ab0d47a29d60cb88f0934a9204c71cd78e2f5f568b9da532fdd4f8da55a352fce51cbcbaf17dc1a6f5b3c43ed7579876c724abcc2af5d8c4d3979f2ede60982f
sha512sums = 
d430427987309483c99062adb02741d25239ba5fbb97053ef817c0c5a0a935328af9c8b651de2b119b0e851dcf6623f01343859735ff81d7013ab0133e67c7ea
sha512sums = 
3ccf783c28f7a1c857120abac4002ca91ae1f92205dcd5a84aff515d57e706a3f9240d75a0a67cff5085716885e06e62597baa86897f298662ec36a940cf410e
sha512sums = 
61032d29241b74a0f28446f8cf1be0e8ec46d0847a61dadb2a4f096e8686d5f57fe5c72bcf386003f6520bc4b5856c32d63bf3efe7eb0bc0deefc9f68159e648
@@ -100,7 +100,7 @@ pkgname = systemd
license = CC0-1.0
license = GPL-2.0-or-later
license = MIT-0
-   depends = systemd-libs=255.4
+   depends = systemd-libs=255.5
depends = acl
depends = libacl.so
depends = bash
@@ -148,8 +148,8 @@ pkgname = systemd
optdepends = libp11-kit: support PKCS#11
optdepends = tpm2-tss: unlocking LUKS2 volumes with TPM2
provides = nss-myhostname
-   provides = systemd-tools=255.4
-   provides = udev=255.4
+   provides = systemd-tools=255.5
+   provides = udev=255.5
conflicts = nss-myhostname
conflicts = systemd-tools
conflicts = udev
@@ -194,19 +194,19 @@ pkgname = systemd-libs
 
 pkgname = systemd-resolvconf
pkgdesc = systemd resolvconf replacement (for use with systemd-resolved)
-   depends = systemd=255.4
+   depends = systemd=255.5
provides = openresolv
provides = resolvconf
conflicts = resolvconf
 
 pkgname = systemd-sysvcompat
pkgdesc = sysvinit compat for systemd
-   depends = systemd=255.4
+   depends = systemd=255.5
conflicts = sysvinit
 
 pkgname = systemd-ukify
pkgdesc = Combine kernel and initrd into a signed Unified Kernel Image
-   depends = systemd=255.4
+   depends = systemd=255.5
depends = binutils
depends = python-cryptography
depends = python-pefile


=
PKGBUILD
=
@@ -6,7 +6,7 @@ pkgname=('systemd'
  'systemd-resolvconf'
  'systemd-sysvcompat'
  'systemd-ukify')
-_tag='255.4'
+_tag='255.5'
 # Upstream versioning is incompatible with pacman's version comparisons so we
 # replace tildes with the empty string to make sure pacman's version comparing
 # does the right thing for rc versions:
@@ -15,7 +15,7 @@ _tag='255.4'
 # ➜ vercmp 255rc1 255
 # -1
 pkgver="${_tag/~/}"
-pkgrel=2
+pkgrel=1
 arch=('x86_64')
 license=('LGPL-2.1-or-later')
 url='https://www.github.com/systemd/systemd'
@@ -53,7 +53,7 @@ 
source=("git+https://github.com/systemd/systemd-stable#tag=v${_tag}?signed";
 '30-systemd-tmpfiles.hook'
 '30-systemd-udev-reload.hook'
 '30-systemd-update.hook')
-sha512sums=('0c41c21931c5f08b5c91fe718d90f8cb11fb83429b3028bde9922605a35ea81d8452b00af99775b519b19195b8ba0084147d13dec1c5dfe9c905d769018b0676'
+sha512sums=('ab0d47a29d60cb88f0934a9204c71cd78e2f5f568b9da532fdd4f8da55a352fce51cbcbaf17dc1a6f5b3c43ed7579876c724abcc2af5d8c4d3979f2ede60982f'
 
'd430427987309483c99062adb02741d25239ba5fbb97053ef817c0c5a0a935328af9c8b651de2b119b0e851dcf6623f01343859735ff81d7013ab0133e67c7ea'
 
'3ccf783c28f7a1c857120abac4002ca91ae1f92205dcd5a84aff515d57e706a3f9240d75a0a67cff5085716885e06e62597baa86897f298662ec36a940cf410e'
 
'61032d29241b74a0f28446f8cf1be0e8ec46d0847a61dadb2a4f096e8686d5f57fe5c72bcf386003f6520bc4b5856c32d63b

[Git][archlinux/packaging/packages/systemd] Pushed new tag 255.5-1

2024-04-24 Thread Christian Hesse (@eworm)


Christian Hesse pushed new tag 255.5-1 at Arch Linux / Packaging / Packages / 
systemd

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/systemd/-/tree/255.5-1
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/lib32-systemd][main] upgpkg: 255.5-1: new upstream release

2024-04-24 Thread Christian Hesse (@eworm)


Christian Hesse pushed to branch main at Arch Linux / Packaging / Packages / 
lib32-systemd


Commits:
fedec7a0 by Christian Hesse at 2024-04-24T17:15:49+02:00
upgpkg: 255.5-1: new upstream release

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,11 +1,11 @@
 pkgbase = lib32-systemd
pkgdesc = system and service manager (32-bit)
-   pkgver = 255.4
+   pkgver = 255.5
pkgrel = 1
url = https://www.github.com/systemd/systemd
arch = x86_64
license = LGPL-2.1-or-later
-   checkdepends = systemd=255.4
+   checkdepends = systemd=255.5
makedepends = git
makedepends = gperf
makedepends = intltool
@@ -22,7 +22,7 @@ pkgbase = lib32-systemd
makedepends = libxslt
makedepends = meson
makedepends = python-jinja
-   depends = systemd-libs=255.4
+   depends = systemd-libs=255.5
depends = lib32-gcc-libs
depends = lib32-libcap
depends = lib32-libgcrypt
@@ -31,13 +31,13 @@ pkgbase = lib32-systemd
depends = lib32-zstd
provides = libsystemd.so
provides = libudev.so
-   source = git+https://github.com/systemd/systemd-stable#tag=v255.4?signed
+   source = git+https://github.com/systemd/systemd-stable#tag=v255.5?signed
source = git+https://github.com/systemd/systemd#tag=v255?signed
validpgpkeys = 63CDA1E5D3FC22B998D20DD6327F26951A015CC4
validpgpkeys = A9EA9081724FFAE0484C35A1A81CEA22BC8C7E2E
validpgpkeys = 9A774DB5DB996C154EBBFBFDA0099A18E29326E1
validpgpkeys = 5C251B5FC54EB2F80F407AAAC54CA336CFEB557E
-   sha512sums = 
0c41c21931c5f08b5c91fe718d90f8cb11fb83429b3028bde9922605a35ea81d8452b00af99775b519b19195b8ba0084147d13dec1c5dfe9c905d769018b0676
+   sha512sums = 
ab0d47a29d60cb88f0934a9204c71cd78e2f5f568b9da532fdd4f8da55a352fce51cbcbaf17dc1a6f5b3c43ed7579876c724abcc2af5d8c4d3979f2ede60982f
sha512sums = 
d430427987309483c99062adb02741d25239ba5fbb97053ef817c0c5a0a935328af9c8b651de2b119b0e851dcf6623f01343859735ff81d7013ab0133e67c7ea
 
 pkgname = lib32-systemd


=
PKGBUILD
=
@@ -2,7 +2,7 @@
 
 pkgname=lib32-systemd
 _pkgbasename=systemd
-_tag='255.4'
+_tag='255.5'
 # Upstream versioning is incompatible with pacman's version comparisons so we
 # replace tildes with the empty string to make sure pacman's version comparing
 # does the right thing for rc versions:
@@ -30,7 +30,7 @@ validpgpkeys=('63CDA1E5D3FC22B998D20DD6327F26951A015CC4'  # 
Lennart Poettering <
   '5C251B5FC54EB2F80F407AAAC54CA336CFEB557E') # Zbigniew 
Jędrzejewski-Szmek 
 source=("git+https://github.com/systemd/systemd-stable#tag=v${_tag}?signed";
 "git+https://github.com/systemd/systemd#tag=v${_tag%.*}?signed";)
-sha512sums=('0c41c21931c5f08b5c91fe718d90f8cb11fb83429b3028bde9922605a35ea81d8452b00af99775b519b19195b8ba0084147d13dec1c5dfe9c905d769018b0676'
+sha512sums=('ab0d47a29d60cb88f0934a9204c71cd78e2f5f568b9da532fdd4f8da55a352fce51cbcbaf17dc1a6f5b3c43ed7579876c724abcc2af5d8c4d3979f2ede60982f'
 
'd430427987309483c99062adb02741d25239ba5fbb97053ef817c0c5a0a935328af9c8b651de2b119b0e851dcf6623f01343859735ff81d7013ab0133e67c7ea')
 
 _backports=(



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/lib32-systemd/-/commit/fedec7a0421cbdd7069b11280a155aed810f0fcf

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/lib32-systemd/-/commit/fedec7a0421cbdd7069b11280a155aed810f0fcf
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/lib32-systemd] Pushed new tag 255.5-1

2024-04-24 Thread Christian Hesse (@eworm)


Christian Hesse pushed new tag 255.5-1 at Arch Linux / Packaging / Packages / 
lib32-systemd

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/lib32-systemd/-/tree/255.5-1
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/cargo-show-asm] Pushed new tag 0.2.33-1

2024-04-24 Thread @orhun


Orhun Parmaksız pushed new tag 0.2.33-1 at Arch Linux / Packaging / Packages / 
cargo-show-asm

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/cargo-show-asm/-/tree/0.2.33-1
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/cargo-show-asm][main] upgpkg: 0.2.33-1: upstream release

2024-04-24 Thread @orhun


Orhun Parmaksız pushed to branch main at Arch Linux / Packaging / Packages / 
cargo-show-asm


Commits:
e42bcb45 by Orhun Parmaksız at 2024-04-24T18:37:08+03:00
upgpkg: 0.2.33-1: upstream release

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,6 +1,6 @@
 pkgbase = cargo-show-asm
pkgdesc = Cargo subcommand to display ASM, LLVM-IR and MIR for Rust 
source code
-   pkgver = 0.2.32
+   pkgver = 0.2.33
pkgrel = 1
url = https://github.com/pacak/cargo-show-asm
arch = x86_64
@@ -10,7 +10,7 @@ pkgbase = cargo-show-asm
depends = rust-src
depends = gcc-libs
conflicts = cargo-asm
-   source = 
cargo-show-asm-0.2.32.tar.gz::https://github.com/pacak/cargo-show-asm/archive/0.2.32.tar.gz
-   sha256sums = 
f992bb1ff535c007f6143b5a31b6738d94fc1d1b6fa19379312a6c6209eae037
+   source = 
cargo-show-asm-0.2.33.tar.gz::https://github.com/pacak/cargo-show-asm/archive/0.2.33.tar.gz
+   sha256sums = 
0751af08a6a16eea538eb68e80c31726ed9c31c68a38f4ac0944332d670d2f40
 
 pkgname = cargo-show-asm


=
PKGBUILD
=
@@ -3,7 +3,7 @@
 
 pkgname=cargo-show-asm
 _binname=cargo-asm
-pkgver=0.2.32
+pkgver=0.2.33
 pkgrel=1
 pkgdesc='Cargo subcommand to display ASM, LLVM-IR and MIR for Rust source code'
 arch=('x86_64')
@@ -12,7 +12,7 @@ license=('Apache-2.0' 'MIT')
 depends=('cargo' 'rust-src' 'gcc-libs')
 conflicts=('cargo-asm')
 source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
-sha256sums=('f992bb1ff535c007f6143b5a31b6738d94fc1d1b6fa19379312a6c6209eae037')
+sha256sums=('0751af08a6a16eea538eb68e80c31726ed9c31c68a38f4ac0944332d670d2f40')
 
 prepare() {
   cd "$pkgname-$pkgver"



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/cargo-show-asm/-/commit/e42bcb4501e6d5f640caf88ef2a9e1c42ebdf88a

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/cargo-show-asm/-/commit/e42bcb4501e6d5f640caf88ef2a9e1c42ebdf88a
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/python-ubjson][main] Use a better patch for testing on Python 3.12

2024-04-24 Thread Chih-Hsuan Yen (@yan12125)


Chih-Hsuan Yen pushed to branch main at Arch Linux / Packaging / Packages / 
python-ubjson


Commits:
6b084e94 by Chih-Hsuan Yen at 2024-04-24T23:46:38+08:00
Use a better patch for testing on Python 3.12

The new patch is a squashed version of the updated pull request
https://github.com/Iotic-Labs/py-ubjson/pull/19

- - - - -


4 changed files:

- .SRCINFO
- PKGBUILD
- + py312.diff
- − py312.patch


Changes:

=
.SRCINFO
=
@@ -14,10 +14,10 @@ pkgbase = python-ubjson
depends = python
source = 
https://files.pythonhosted.org/packages/source/p/py-ubjson/py-ubjson-0.16.1.tar.gz
source = py-ubjson-0.16.1.tar.gz.asc
-   source = py312.patch
+   source = py312.diff
validpgpkeys = A262040D27F5F4700D097A02CF651F44EF65072E
sha256sums = 
b9bfb8695a1c7e3632e800fb83c943bf67ed45ddd87cd0344851610c69a5a482
sha256sums = SKIP
-   sha256sums = 
c146862cdb9fcafd6c38d783e7b022e7da03ee4cc7edb018a5242a9d92d3
+   sha256sums = 
9309c5337ebdcb206deedf2dc46d98f4b32df3fda414c4bd98f15c85c8bcd3f1
 
 pkgname = python-ubjson


=
PKGBUILD
=
@@ -20,10 +20,10 @@ makedepends=(python-build python-installer 
python-setuptools python-wheel)
 depends=(python)
 
source=("https://files.pythonhosted.org/packages/source/p/py-ubjson/py-ubjson-$pkgver.tar.gz";
 "py-ubjson-$pkgver.tar.gz.asc"
-"py312.patch")
+"py312.diff")
 sha256sums=('b9bfb8695a1c7e3632e800fb83c943bf67ed45ddd87cd0344851610c69a5a482'
 'SKIP'
-'c146862cdb9fcafd6c38d783e7b022e7da03ee4cc7edb018a5242a9d92d3')
+'9309c5337ebdcb206deedf2dc46d98f4b32df3fda414c4bd98f15c85c8bcd3f1')
 validpgpkeys=(
   'A262040D27F5F4700D097A02CF651F44EF65072E'  # Iotic Labs Ltd (Software 
release signing key) 
 )
@@ -31,7 +31,7 @@ validpgpkeys=(
 prepare() {
   cd py-ubjson-$pkgver
   # Part of https://github.com/Iotic-Labs/py-ubjson/pull/19 (unmerged)
-  patch -Np1 -i ../py312.patch
+  patch -Np1 -i ../py312.diff
 }
 
 build() {


=
py312.diff
=
@@ -0,0 +1,40 @@
+diff --git a/test/test.py b/test/test.py
+index c3920c4..67a9fbc 100644
+--- a/test/test.py
 b/test/test.py
+@@ -464,23 +464,18 @@ def assert_raises_regex(self, *args, **kwargs):
+ return (self.assertRaisesRegexp if PY2 else 
self.assertRaisesRegex)(*args, **kwargs)
+ 
+ def test_recursion(self):
+-old_limit = getrecursionlimit()
+-setrecursionlimit(200)
+-try:
+-obj = current = []
+-for _ in range(getrecursionlimit() * 2):
+-new_list = []
+-current.append(new_list)
+-current = new_list
+-
+-with self.assert_raises_regex(RuntimeError, 'recursion'):
+-self.ubjdumpb(obj)
+-
+-raw = ARRAY_START * (getrecursionlimit() * 2)
+-with self.assert_raises_regex(RuntimeError, 'recursion'):
+-self.ubjloadb(raw)
+-finally:
+-setrecursionlimit(old_limit)
++obj = current = []
++for _ in range(getrecursionlimit() * 30):
++new_list = []
++current.append(new_list)
++current = new_list
++
++with self.assert_raises_regex(RuntimeError, 'recursion'):
++self.ubjdumpb(obj)
++
++raw = ARRAY_START * (getrecursionlimit() * 30)
++with self.assert_raises_regex(RuntimeError, 'recursion'):
++self.ubjloadb(raw)
+ 
+ def test_encode_default(self):
+ def default(obj):


=
py312.patch deleted
=
@@ -1,37 +0,0 @@
-From 1e69041e86947e360f30b8ee5ee0993ddd68469c Mon Sep 17 00:00:00 2001
-From: Vilnis Termanis 
-Date: Fri, 20 Oct 2023 17:10:10 +0200
-Subject: [PATCH] Fix recursion test case for Python 3.12
-

- CHANGELOG| 4 
- setup.py | 4 
- test/test.py | 6 +++---
- 3 files changed, 11 insertions(+), 3 deletions(-)
-
-diff --git a/test/test.py b/test/test.py
-index c3920c4..d685194 100644
 a/test/test.py
-+++ b/test/test.py
-@@ -465,10 +465,10 @@ def assert_raises_regex(self, *args, **kwargs):
- 
- def test_recursion(self):
- old_limit = getrecursionlimit()
--setrecursionlimit(200)
-+setrecursionlimit(100)
- try:
- obj = current = []
--for _ in range(getrecursionlimit() * 2):
-+for _ in range(getrecursionlimit() * 30):
- new_list = []
- current.append(new_list)
- current = new_list
-@@ -476,7 +476,7 @@ def test_recursion(self):
- with self.assert_raises_regex(RuntimeError, 'recursion'):
- self.ubjdumpb(obj)
- 
--raw = ARRAY_START * (getrecursionlimit() * 2)
-+raw = ARRAY_START * 

[Git][archlinux/packaging/packages/obconf-qt][main] Fix building

2024-04-24 Thread Chih-Hsuan Yen (@yan12125)


Chih-Hsuan Yen pushed to branch main at Arch Linux / Packaging / Packages / 
obconf-qt


Commits:
eabc326e by Chih-Hsuan Yen at 2024-04-24T23:49:12+08:00
Fix building

There is a call to port obconf-qt to Qt 6 [1], but it may not be merged,
as upstream contributors "do not develop it actively anymore" [2]

[1] https://github.com/lxqt/obconf-qt/
[2] https://github.com/lxqt/lxqt/discussions/2115

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -6,7 +6,7 @@ pkgbase = obconf-qt
arch = x86_64
groups = lxqt
license = GPL-2.0-or-later
-   makedepends = lxqt-build-tools
+   makedepends = lxqt-build-tools-qt5
depends = hicolor-icon-theme
depends = openbox
depends = qt5-x11extras


=
PKGBUILD
=
@@ -11,7 +11,7 @@ url="https://github.com/lxqt/$pkgname";
 # See discussions about the license at 
https://github.com/lxqt/obconf-qt/issues/210
 license=("GPL-2.0-or-later")
 depends=("hicolor-icon-theme" "openbox" "qt5-x11extras")
-makedepends=("lxqt-build-tools")
+makedepends=("lxqt-build-tools-qt5")
 source=(

"https://github.com/lxqt/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz";

"https://github.com/lxqt/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz.asc";



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/obconf-qt/-/commit/eabc326ecabd8295b7ee52bb85fcb5accba58220

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/obconf-qt/-/commit/eabc326ecabd8295b7ee52bb85fcb5accba58220
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/lib32-pcsclite] Pushed new tag 2.1.0-1

2024-04-24 Thread Chih-Hsuan Yen (@yan12125)


Chih-Hsuan Yen pushed new tag 2.1.0-1 at Arch Linux / Packaging / Packages / 
lib32-pcsclite

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/lib32-pcsclite/-/tree/2.1.0-1
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/lib32-pcsclite][main] upgpkg: 2.1.0-1; add soname provide for new library following extra/pcsclite

2024-04-24 Thread Chih-Hsuan Yen (@yan12125)


Chih-Hsuan Yen pushed to branch main at Arch Linux / Packaging / Packages / 
lib32-pcsclite


Commits:
91ddb0d2 by Chih-Hsuan Yen at 2024-04-24T23:59:01+08:00
upgpkg: 2.1.0-1; add soname provide for new library following extra/pcsclite

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,6 +1,6 @@
 pkgbase = lib32-pcsclite
pkgdesc = PC/SC Architecture smartcard middleware library (32-bit)
-   pkgver = 2.0.3
+   pkgver = 2.1.0
pkgrel = 1
url = https://pcsclite.apdu.fr/
arch = x86_64
@@ -16,13 +16,14 @@ pkgbase = lib32-pcsclite
depends = libpolkit-gobject-1.so
depends = pcsclite
provides = libpcsclite.so
+   provides = libpcsclite_real.so
provides = libpcscspy.so
-   source = https://pcsclite.apdu.fr/files/pcsc-lite-2.0.3.tar.bz2
-   source = https://pcsclite.apdu.fr/files/pcsc-lite-2.0.3.tar.bz2.asc
+   source = https://pcsclite.apdu.fr/files/pcsc-lite-2.1.0.tar.bz2
+   source = https://pcsclite.apdu.fr/files/pcsc-lite-2.1.0.tar.bz2.asc
source = program-suffix.patch
source = systemd-unit-conflicts.diff
validpgpkeys = F5E11B9FFE911146F41D953D78A1B4DFE8F9C57E
-   sha256sums = 
f42ee9efa489e9ff5d328baefa26f9c515be65021856e78d99ad1f0ead9ec85d
+   sha256sums = 
85cab61cc744c81e2bc432656863293b8428d0136f079e3b12a84b335b5b35aa
sha256sums = SKIP
sha256sums = 
c63d6525a8514a30816f550b79fa1d269f1504951efc198ce4e503ab5f48a9c6
sha256sums = 
e77aa9d0b6431d0de6a80d96bfd57e31b3c99e9ddcadf72990fe625b5cb128af


=
PKGBUILD
=
@@ -8,7 +8,7 @@ _pkgname=pcsclite
 pkgname=lib32-$_pkgname
 # 
https://gitlab.archlinux.org/archlinux/packaging/packages/pcsclite/-/commits/main
 # https://salsa.debian.org/rousseau/PCSC/blob/master/ChangeLog
-pkgver=2.0.3
+pkgver=2.1.0
 pkgrel=1
 pkgdesc="PC/SC Architecture smartcard middleware library (32-bit)"
 arch=('x86_64')
@@ -22,12 +22,12 @@ license=(
 )
 depends=('libsystemd.so' 'libudev.so' 'libpolkit-gobject-1.so' $_pkgname)
 makedepends=('lib32-systemd' 'lib32-polkit' 'autoconf-archive')
-provides=('libpcsclite.so' 'libpcscspy.so')
+provides=('libpcsclite.so' 'libpcsclite_real.so' 'libpcscspy.so')
 validpgpkeys=('F5E11B9FFE911146F41D953D78A1B4DFE8F9C57E') # Ludovic Rousseau 

 source=("https://pcsclite.apdu.fr/files/pcsc-lite-${pkgver}.tar.bz2"{,.asc}
 "program-suffix.patch"
 "systemd-unit-conflicts.diff")
-sha256sums=('f42ee9efa489e9ff5d328baefa26f9c515be65021856e78d99ad1f0ead9ec85d'
+sha256sums=('85cab61cc744c81e2bc432656863293b8428d0136f079e3b12a84b335b5b35aa'
 'SKIP'
 'c63d6525a8514a30816f550b79fa1d269f1504951efc198ce4e503ab5f48a9c6'
 'e77aa9d0b6431d0de6a80d96bfd57e31b3c99e9ddcadf72990fe625b5cb128af')



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/lib32-pcsclite/-/commit/91ddb0d2e0f3b8260366d8ffd1835a82f5e81cdc

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/lib32-pcsclite/-/commit/91ddb0d2e0f3b8260366d8ffd1835a82f5e81cdc
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/fail2ban][main] upgpkg: 1.0.2-7: fix https://gitlab.archlinux.org/archlinux/packaging/packages/fail2ban/-/issues/1

2024-04-24 Thread Felix Yan (@felixonmars)


Felix Yan pushed to branch main at Arch Linux / Packaging / Packages / fail2ban


Commits:
1bb23a96 by Felix Yan at 2024-04-24T19:21:07+03:00
upgpkg: 1.0.2-7: fix 
https://gitlab.archlinux.org/archlinux/packaging/packages/fail2ban/-/issues/1

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = fail2ban
pkgdesc = Bans IPs after too many failed authentication attempts
pkgver = 1.0.2
-   pkgrel = 6
+   pkgrel = 7
url = https://www.fail2ban.org/
arch = any
license = GPL


=
PKGBUILD
=
@@ -7,7 +7,7 @@
 
 pkgname=fail2ban
 pkgver=1.0.2
-pkgrel=6
+pkgrel=7
 pkgdesc='Bans IPs after too many failed authentication attempts'
 arch=('any')
 url='https://www.fail2ban.org/'
@@ -37,6 +37,9 @@ validpgpkeys=('E6C3F631FBDA716B070C6ED94141C485A81A88CB') # 
Sergey G. Brester (s
 
 prepare() {
   cd $pkgname
+  # Fix missing fail2ban.compat module 
https://gitlab.archlinux.org/archlinux/packaging/packages/fail2ban/-/issues/1
+  git cherry-pick --no-commit 77b052fdea51fe20cc6d56f3a11d59ce32e753ed
+
   sed -i 's|self.install_dir|"/usr/bin"|' setup.py
   sed -i 's/^before = paths-debian.conf/before = paths-arch.conf/' 
config/jail.conf
 



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

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/fail2ban/-/commit/1bb23a96afa4d8a668d0e09c89a24c6e6ae6e791
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/fail2ban] Pushed new tag 1.0.2-7

2024-04-24 Thread Felix Yan (@felixonmars)


Felix Yan pushed new tag 1.0.2-7 at Arch Linux / Packaging / Packages / fail2ban

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/fail2ban/-/tree/1.0.2-7
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/python-aws-xray-sdk] Pushed new tag 2.13.0-2

2024-04-24 Thread Chih-Hsuan Yen (@yan12125)


Chih-Hsuan Yen pushed new tag 2.13.0-2 at Arch Linux / Packaging / Packages / 
python-aws-xray-sdk

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python-aws-xray-sdk/-/tree/2.13.0-2
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/audacity] Pushed new tag 1-3.5.1-1

2024-04-24 Thread Christian Heusel (@gromit)


Christian Heusel pushed new tag 1-3.5.1-1 at Arch Linux / Packaging / Packages 
/ audacity

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/audacity/-/tree/1-3.5.1-1
You're receiving this email because of your account on gitlab.archlinux.org.




  1   2   >