[Git][archlinux/packaging/packages/libssh][main] remove the unused patch

2024-08-30 Thread Christian Hesse (@eworm)


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


Commits:
d776de87 by Christian Hesse at 2024-08-30T17:45:36+02:00
remove the unused patch

- - - - -


1 changed file:

- − 0001-config-Do-not-parse-unsupported-ControlPath-ControlMaster.patch


Changes:

=
0001-config-Do-not-parse-unsupported-ControlPath-ControlMaster.patch deleted
=
@@ -1,73 +0,0 @@
-From 82b363f294dc318c9a20ffcbfe16dfa3e082cfed Mon Sep 17 00:00:00 2001
-From: Jakub Jelen 
-Date: Wed, 14 Aug 2024 10:27:24 +0200
-Subject: [PATCH] config: Do not parse unsupported ControlPath/ControlMaster
-
-Signed-off-by: Jakub Jelen 
-Reviewed-by: Andreas Schneider 

- src/config.c  | 4 ++--
- tests/unittests/torture_config.c  | 6 +++---
- tests/unittests/torture_options.c | 2 +-
- 3 files changed, 6 insertions(+), 6 deletions(-)
-
-diff --git a/src/config.c b/src/config.c
-index 774b35663..a2ef639d6 100644
 a/src/config.c
-+++ b/src/config.c
-@@ -132,9 +132,9 @@ static struct ssh_config_keyword_table_s 
ssh_config_keyword_table[] = {
-   { "verifyhostkeydns", SOC_UNSUPPORTED},
-   { "visualhostkey", SOC_UNSUPPORTED},
-   { "clearallforwardings", SOC_NA},
--  { "controlmaster", SOC_CONTROLMASTER},
-+  { "controlmaster", SOC_NA},
-   { "controlpersist", SOC_NA},
--  { "controlpath", SOC_CONTROLPATH},
-+  { "controlpath", SOC_NA},
-   { "dynamicforward", SOC_NA},
-   { "escapechar", SOC_NA},
-   { "exitonforwardfailure", SOC_NA},
-diff --git a/tests/unittests/torture_config.c 
b/tests/unittests/torture_config.c
-index 4d8d8e448..2631869a9 100644
 a/tests/unittests/torture_config.c
-+++ b/tests/unittests/torture_config.c
-@@ -1404,7 +1404,7 @@ static void torture_config_control_path(void **state,
- torture_reset_config(session);
- ssh_options_set(session, SSH_OPTIONS_HOST, "simple");
- _parse_config(session, file, string, SSH_OK);
--assert_string_equal(session->opts.control_path, "/tmp/ssh-%r@%h:%p");
-+assert_null(session->opts.control_path);
- 
- torture_reset_config(session);
- ssh_options_set(session, SSH_OPTIONS_HOST, "none");
-@@ -1439,12 +1439,12 @@ static void torture_config_control_master(void **state,
- torture_reset_config(session);
- ssh_options_set(session, SSH_OPTIONS_HOST, "simple");
- _parse_config(session, file, string, SSH_OK);
--assert_int_equal(session->opts.control_master, SSH_CONTROL_MASTER_AUTO);
-+assert_int_equal(session->opts.control_master, SSH_CONTROL_MASTER_NO);
- 
- torture_reset_config(session);
- ssh_options_set(session, SSH_OPTIONS_HOST, "none");
- _parse_config(session, file, string, SSH_OK);
--assert_int_equal(session->opts.control_master, SSH_CONTROL_MASTER_YES);
-+assert_int_equal(session->opts.control_master, SSH_CONTROL_MASTER_NO);
- }
- 
- /**
-diff --git a/tests/unittests/torture_options.c 
b/tests/unittests/torture_options.c
-index 22e84863e..2acc59713 100644
 a/tests/unittests/torture_options.c
-+++ b/tests/unittests/torture_options.c
-@@ -1350,7 +1350,7 @@ static void torture_options_copy(void **state)
- assert_string_equal(session->opts.pubkey_accepted_types,
- new->opts.pubkey_accepted_types);
- assert_string_equal(session->opts.ProxyCommand, new->opts.ProxyCommand);
--assert_string_equal(session->opts.control_path, new->opts.control_path);
-+assert_null(new->opts.control_path);
- /* TODO custombanner */
- assert_int_equal(session->opts.timeout, new->opts.timeout);
- assert_int_equal(session->opts.timeout_usec, new->opts.timeout_usec);
--- 
-GitLab
-



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/libssh/-/commit/d776de8708bf6038144642512706d879049c7eab

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




[Git][archlinux/packaging/packages/libssh] Pushed new tag 0.11.1-1

2024-08-30 Thread Christian Hesse (@eworm)


Christian Hesse pushed new tag 0.11.1-1 at Arch Linux / Packaging / Packages / 
libssh

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




[Git][archlinux/packaging/packages/libssh][main] upgpkg: 0.11.1-1: new upstream release

2024-08-30 Thread Christian Hesse (@eworm)


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


Commits:
07af8430 by Christian Hesse at 2024-08-30T12:48:05+02:00
upgpkg: 0.11.1-1: new upstream release

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = libssh
pkgdesc = Library for accessing ssh client services through C libraries
-   pkgver = 0.11.0
-   pkgrel = 2
+   pkgver = 0.11.1
+   pkgrel = 1
url = https://www.libssh.org/
arch = x86_64
license = LGPL-2.1-or-late
@@ -14,14 +14,12 @@ pkgbase = libssh
depends = openssl
depends = zlib
provides = libssh.so
-   source = https://www.libssh.org/files/0.11/libssh-0.11.0.tar.xz
-   source = https://www.libssh.org/files/0.11/libssh-0.11.0.tar.xz.asc
-   source = 
0001-config-Do-not-parse-unsupported-ControlPath-ControlMaster.patch
+   source = https://www.libssh.org/files/0.11/libssh-0.11.1.tar.xz
+   source = https://www.libssh.org/files/0.11/libssh-0.11.1.tar.xz.asc
validpgpkeys = 8DFF53E18F2ABC8D8F3C92237EE0FC4DCC014E3D
validpgpkeys = 88A228D89B07C2C77D0C780903D5DF8CFDD3E8E7
-   sha256sums = 
860e814579e7606f3fc3db98c5807bef2ab60f793ec871d81bcd23acdcdd3e91
+   sha256sums = 
14b7dcc72e91e08151c58b981a7b570ab2663f630e7d2837645d5a9c612c1b79
sha256sums = SKIP
-   sha256sums = 
67d0727d1c84ff5c89b3421fc7a85db9383f11008ef8bdb34e778e909baf9eb0
 
 pkgname = libssh
 


=
PKGBUILD
=
@@ -7,8 +7,8 @@
 pkgbase=libssh
 pkgname=(libssh
  libssh-docs)
-pkgver=0.11.0
-pkgrel=2
+pkgver=0.11.1
+pkgrel=1
 pkgdesc='Library for accessing ssh client services through C libraries'
 url='https://www.libssh.org/'
 license=('LGPL-2.1-or-late')
@@ -22,20 +22,12 @@ makedepends=(cmake
  openssh
  python)
 provides=(libssh.so)
-source=("https://www.libssh.org/files/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz"{,.asc}
-'0001-config-Do-not-parse-unsupported-ControlPath-ControlMaster.patch')
-sha256sums=('860e814579e7606f3fc3db98c5807bef2ab60f793ec871d81bcd23acdcdd3e91'
-'SKIP'
-'67d0727d1c84ff5c89b3421fc7a85db9383f11008ef8bdb34e778e909baf9eb0')
+source=("https://www.libssh.org/files/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz"{,.asc})
+sha256sums=('14b7dcc72e91e08151c58b981a7b570ab2663f630e7d2837645d5a9c612c1b79'
+'SKIP')
 validpgpkeys=('8DFF53E18F2ABC8D8F3C92237EE0FC4DCC014E3D'  # Andreas Schneider 

   '88A228D89B07C2C77D0C780903D5DF8CFDD3E8E7') # libssh release key 
(release key) 
 
-prepare() {
-  cd $pkgname-$pkgver
-
-  patch -Np1 < 
../0001-config-Do-not-parse-unsupported-ControlPath-ControlMaster.patch
-}
-
 build() {
   cmake \
 -B build \



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/libssh/-/commit/07af843082ccc075f9289daf0802d7029bf08069

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




[Git][archlinux/packaging/packages/inkscape] Pushed new tag 1.3.2-10

2024-08-30 Thread Christian Hesse (@eworm)


Christian Hesse pushed new tag 1.3.2-10 at Arch Linux / Packaging / Packages / 
inkscape

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




[Git][archlinux/packaging/packages/inkscape][main] upgpkg: 1.3.2-10: boost 1.86.0 rebuild

2024-08-30 Thread Christian Hesse (@eworm)


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


Commits:
d7319fa6 by Christian Hesse at 2024-08-30T10:04:44+02:00
upgpkg: 1.3.2-10: boost 1.86.0 rebuild

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = inkscape
pkgdesc = Professional vector graphics editor
pkgver = 1.3.2
-   pkgrel = 9
+   pkgrel = 10
url = https://inkscape.org/
arch = x86_64
license = GPL


=
PKGBUILD
=
@@ -4,7 +4,7 @@
 
 pkgname=inkscape
 pkgver=1.3.2
-pkgrel=9
+pkgrel=10
 pkgdesc='Professional vector graphics editor'
 url='https://inkscape.org/'
 license=('GPL' 'LGPL')



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/inkscape/-/commit/d7319fa6ce76d742a684ee0afe38c774cbc8ed5f

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




[Git][archlinux/packaging/packages/git] Pushed new tag 2.46.0-2

2024-08-28 Thread Christian Hesse (@eworm)


Christian Hesse pushed new tag 2.46.0-2 at Arch Linux / Packaging / Packages / 
git

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




[Git][archlinux/packaging/packages/multipath-tools] Pushed new tag 0.10.0-1

2024-08-27 Thread Christian Hesse (@eworm)


Christian Hesse pushed new tag 0.10.0-1 at Arch Linux / Packaging / Packages / 
multipath-tools

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




[Git][archlinux/packaging/packages/multipath-tools][main] upgpkg: 0.10.0-1: new upstream release. updated dependencies

2024-08-27 Thread Christian Hesse (@eworm)


Christian Hesse pushed to branch main at Arch Linux / Packaging / Packages / 
multipath-tools


Commits:
6dfeb997 by Christian Hesse at 2024-08-28T08:38:47+02:00
upgpkg: 0.10.0-1: new upstream release. updated dependencies

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,18 +1,24 @@
 pkgbase = multipath-tools
pkgdesc = Multipath tools for Linux (including kpartx)
-   pkgver = 0.9.9
+   pkgver = 0.10.0
pkgrel = 1
url = https://github.com/opensvc/multipath-tools
arch = x86_64
-   license = GPL2
+   license = GPL-2.0-or-later
+   license = GPL-3.0-or-later
+   license = LGPL-2.0-or-later
+   license = LGPL-2.1-or-later
makedepends = git
makedepends = systemd
+   depends = glibc
+   depends = gcc-libs
depends = libaio
depends = device-mapper
depends = json-c
depends = liburcu
depends = systemd-libs
-   source = 
multipath-tools::git+https://github.com/opensvc/multipath-tools#tag=0.9.9
-   sha256sums = 
92e96963707c389f545089d31006918dbd3ab021f0f5368a14e4b10aba175b8e
+   depends = util-linux-libs
+   source = 
multipath-tools::git+https://github.com/opensvc/multipath-tools#tag=0.10.0
+   sha256sums = 
52e5ac6c5fd51b4605faf3fe18f90fdf76124e00b622897d9ba0d24263b52353
 
 pkgname = multipath-tools


=
PKGBUILD
=
@@ -8,16 +8,16 @@
 # Contributor: Matt Heagney 
 
 pkgname=multipath-tools
-pkgver=0.9.9
+pkgver=0.10.0
 pkgrel=1
 pkgdesc='Multipath tools for Linux (including kpartx)'
 arch=('x86_64')
 url='https://github.com/opensvc/multipath-tools'
-license=('GPL2')
-depends=('libaio' 'device-mapper' 'json-c' 'liburcu' 'systemd-libs')
+license=('GPL-2.0-or-later' 'GPL-3.0-or-later' 'LGPL-2.0-or-later' 
'LGPL-2.1-or-later')
+depends=('glibc' 'gcc-libs' 'libaio' 'device-mapper' 'json-c' 'liburcu' 
'systemd-libs' 'util-linux-libs')
 makedepends=('git' 'systemd')
 
source=("multipath-tools::git+https://github.com/opensvc/multipath-tools#tag=${pkgver}";)
-sha256sums=('92e96963707c389f545089d31006918dbd3ab021f0f5368a14e4b10aba175b8e')
+sha256sums=('52e5ac6c5fd51b4605faf3fe18f90fdf76124e00b622897d9ba0d24263b52353')
 
 _make_opts=(
   prefix='/usr/'



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/multipath-tools/-/commit/6dfeb997e4dd84c95696e2463766c24be710a256

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




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

2024-08-27 Thread Christian Hesse (@eworm)


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


Commits:
8292f0c7 by Christian Hesse at 2024-08-27T12:40:59+02:00
upgpkg: 1.63.0-1: new upstream release

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,6 +1,6 @@
 pkgbase = lib32-libnghttp2
pkgdesc = Framing layer of HTTP/2 is implemented as a reusable C 
library (32-bit)
-   pkgver = 1.62.1
+   pkgver = 1.63.0
pkgrel = 1
url = https://nghttp2.org/
arch = x86_64
@@ -9,12 +9,12 @@ pkgbase = lib32-libnghttp2
depends = lib32-glibc
depends = libnghttp2
provides = libnghttp2.so
-   source = git+https://github.com/nghttp2/nghttp2.git#tag=v1.62.1?signed
+   source = git+https://github.com/nghttp2/nghttp2.git#tag=v1.63.0?signed
source = git+https://github.com/ngtcp2/munit.git
source = git+https://github.com/mruby/mruby.git
source = git+https://github.com/tatsuhiro-t/neverbleed.git
validpgpkeys = F4F3B91474D1EB29889BD0EF7E8403D5D673C366
-   sha512sums = 
6ea6059af0aec4133aa83439dfa57bc3a7a3a33aae7028d2009dadd9912df4ede6a8337f053f17caec0276a2fcfca26d9397f5852f6edb9228553b76831fa658
+   sha512sums = 
b95341a958ea32c6131c9598cf75a3232b963a798d314a94df05b363a7b0a144014c48ac2a436fb867f742ce6761a8ca5a6a87cdbdee94d9fdcab5d3412415c5
sha512sums = SKIP
sha512sums = SKIP
sha512sums = SKIP


=
PKGBUILD
=
@@ -2,7 +2,7 @@
 # Contributor: Zhuoyun Wei 
 
 pkgname=lib32-libnghttp2
-pkgver=1.62.1
+pkgver=1.63.0
 pkgrel=1
 pkgdesc='Framing layer of HTTP/2 is implemented as a reusable C library 
(32-bit)'
 arch=('x86_64')
@@ -16,7 +16,7 @@ 
source=("git+https://github.com/nghttp2/nghttp2.git#tag=v${pkgver}?signed";
 'git+https://github.com/ngtcp2/munit.git'
 'git+https://github.com/mruby/mruby.git'
 'git+https://github.com/tatsuhiro-t/neverbleed.git')
-sha512sums=('6ea6059af0aec4133aa83439dfa57bc3a7a3a33aae7028d2009dadd9912df4ede6a8337f053f17caec0276a2fcfca26d9397f5852f6edb9228553b76831fa658'
+sha512sums=('b95341a958ea32c6131c9598cf75a3232b963a798d314a94df05b363a7b0a144014c48ac2a436fb867f742ce6761a8ca5a6a87cdbdee94d9fdcab5d3412415c5'
 'SKIP'
 'SKIP'
 'SKIP')



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/lib32-libnghttp2/-/commit/8292f0c728e5e2345b0dc6db71414628efdab7a5

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




[Git][archlinux/packaging/packages/lib32-libnghttp2] Pushed new tag 1.63.0-1

2024-08-27 Thread Christian Hesse (@eworm)


Christian Hesse pushed new tag 1.63.0-1 at Arch Linux / Packaging / Packages / 
lib32-libnghttp2

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




[Git][archlinux/packaging/packages/libnghttp2][main] upgpkg: 1.63.0-1: new upstream release

2024-08-27 Thread Christian Hesse (@eworm)


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


Commits:
74d1d9dc by Christian Hesse at 2024-08-27T12:40:51+02:00
upgpkg: 1.63.0-1: new upstream release

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,6 +1,6 @@
 pkgbase = libnghttp2
pkgdesc = Framing layer of HTTP/2 is implemented as a reusable C library
-   pkgver = 1.62.1
+   pkgver = 1.63.0
pkgrel = 1
url = https://nghttp2.org/
arch = x86_64
@@ -9,12 +9,12 @@ pkgbase = libnghttp2
depends = glibc
provides = libnghttp2.so
conflicts = nghttp2<1.20.0-2
-   source = git+https://github.com/nghttp2/nghttp2.git#tag=v1.62.1?signed
+   source = git+https://github.com/nghttp2/nghttp2.git#tag=v1.63.0?signed
source = git+https://github.com/ngtcp2/munit.git
source = git+https://github.com/mruby/mruby.git
source = git+https://github.com/tatsuhiro-t/neverbleed.git
validpgpkeys = F4F3B91474D1EB29889BD0EF7E8403D5D673C366
-   sha512sums = 
6ea6059af0aec4133aa83439dfa57bc3a7a3a33aae7028d2009dadd9912df4ede6a8337f053f17caec0276a2fcfca26d9397f5852f6edb9228553b76831fa658
+   sha512sums = 
b95341a958ea32c6131c9598cf75a3232b963a798d314a94df05b363a7b0a144014c48ac2a436fb867f742ce6761a8ca5a6a87cdbdee94d9fdcab5d3412415c5
sha512sums = SKIP
sha512sums = SKIP
sha512sums = SKIP


=
PKGBUILD
=
@@ -2,7 +2,7 @@
 # Contributor: Zhuoyun Wei 
 
 pkgname=libnghttp2
-pkgver=1.62.1
+pkgver=1.63.0
 pkgrel=1
 pkgdesc='Framing layer of HTTP/2 is implemented as a reusable C library'
 arch=('x86_64')
@@ -17,7 +17,7 @@ 
source=("git+https://github.com/nghttp2/nghttp2.git#tag=v${pkgver}?signed";
 'git+https://github.com/ngtcp2/munit.git'
 'git+https://github.com/mruby/mruby.git'
 'git+https://github.com/tatsuhiro-t/neverbleed.git')
-sha512sums=('6ea6059af0aec4133aa83439dfa57bc3a7a3a33aae7028d2009dadd9912df4ede6a8337f053f17caec0276a2fcfca26d9397f5852f6edb9228553b76831fa658'
+sha512sums=('b95341a958ea32c6131c9598cf75a3232b963a798d314a94df05b363a7b0a144014c48ac2a436fb867f742ce6761a8ca5a6a87cdbdee94d9fdcab5d3412415c5'
 'SKIP'
 'SKIP'
 'SKIP')



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/libnghttp2/-/commit/74d1d9dcd2ed0adbcf4cb71aefa989a0f4d8f672

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




[Git][archlinux/packaging/packages/libnghttp2] Pushed new tag 1.63.0-1

2024-08-27 Thread Christian Hesse (@eworm)


Christian Hesse pushed new tag 1.63.0-1 at Arch Linux / Packaging / Packages / 
libnghttp2

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




[Git][archlinux/packaging/packages/emacs][main] upgpkg: 29.4-2: rebuild for libtree-sitter.so=0.23-64

2024-08-26 Thread Christian Hesse (@eworm)


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


Commits:
a7ad4252 by Christian Hesse at 2024-08-26T21:43:17+02:00
upgpkg: 29.4-2: rebuild for libtree-sitter.so=0.23-64

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,6 +1,6 @@
 pkgbase = emacs
pkgver = 29.4
-   pkgrel = 1
+   pkgrel = 2
url = https://www.gnu.org/software/emacs/emacs.html
arch = x86_64
license = GPL3


=
PKGBUILD
=
@@ -6,7 +6,7 @@
 pkgbase=emacs
 pkgname=(emacs emacs-nativecomp emacs-nox emacs-wayland)
 pkgver=29.4
-pkgrel=1
+pkgrel=2
 arch=('x86_64')
 url='https://www.gnu.org/software/emacs/emacs.html'
 license=('GPL3')



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/emacs/-/commit/a7ad42523c3d31451d3a0d1a251d04d8d681a215

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




[Git][archlinux/packaging/packages/emacs] Pushed new tag 29.4-2

2024-08-26 Thread Christian Hesse (@eworm)


Christian Hesse pushed new tag 29.4-2 at Arch Linux / Packaging / Packages / 
emacs

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




[Git][archlinux/packaging/packages/kmod][main] upgpkg: 33-3: rebuild with recent changes

2024-08-26 Thread Christian Hesse (@eworm)


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


Commits:
6b62f1c8 by Christian Hesse at 2024-08-26T20:33:04+02:00
upgpkg: 33-3: rebuild with recent changes

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = kmod
pkgdesc = Linux kernel module management tools and library
pkgver = 33
-   pkgrel = 2
+   pkgrel = 3
url = https://git.kernel.org/pub/scm/utils/kernel/kmod/kmod.git
arch = x86_64
license = LGPL-2.1-or-later


=
PKGBUILD
=
@@ -2,7 +2,7 @@
 
 pkgname=kmod
 pkgver=33
-pkgrel=2
+pkgrel=3
 pkgdesc="Linux kernel module management tools and library"
 arch=('x86_64')
 url='https://git.kernel.org/pub/scm/utils/kernel/kmod/kmod.git'



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

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




[Git][archlinux/packaging/packages/kmod] Pushed new tag 33-3

2024-08-26 Thread Christian Hesse (@eworm)


Christian Hesse pushed new tag 33-3 at Arch Linux / Packaging / Packages / kmod

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




[Git][archlinux/packaging/packages/kmod][main] depmod.script: remove also modules.weakdep

2024-08-26 Thread Christian Hesse (@eworm)


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


Commits:
c7e818ad by Wang Bing-hua at 2024-08-25T13:07:34+08:00
depmod.script: remove also modules.weakdep

If a kernel package is removed, depmod.script will be run to remove
files generated by depmod.
Since depmod from kmod 33 now generates depmod.weakdep, we also have to
remove that file.

Reference: 
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=d01c14074be79e5f5270498f90530a12583fbf7a

- - - - -


3 changed files:

- .SRCINFO
- PKGBUILD
- depmod.script


Changes:

=
.SRCINFO
=
@@ -25,6 +25,6 @@ pkgbase = kmod
sha256sums = 
f5795fe50a747609d70f764244e645cd946074e70a7e51de0f82bd2e4d0612c8
sha256sums = 
1a92bfeae870f61ce814577e69d2a147a9c0caf6aed1131243e4179241fcc4a8
sha256sums = 
c11c2a0f66ea405493e8617689ca10818dc81dd1dddc19bdb220c8b2917119c1
-   sha256sums = 
d2cd04a09feba30e1376144a8110ec7521892acb0940c3c4ba459aeecf0452ed
+   sha256sums = 
18661aa40c25580f04d2ac3f32e54c2997c0994d1c829905537b413a9d291ac6
 
 pkgname = kmod


=
PKGBUILD
=
@@ -20,7 +20,7 @@ 
source=("git+https://git.kernel.org/pub/scm/utils/kernel/kmod/kmod.git#tag=v${pk
 sha256sums=('f5795fe50a747609d70f764244e645cd946074e70a7e51de0f82bd2e4d0612c8'
 '1a92bfeae870f61ce814577e69d2a147a9c0caf6aed1131243e4179241fcc4a8'
 'c11c2a0f66ea405493e8617689ca10818dc81dd1dddc19bdb220c8b2917119c1'
-'d2cd04a09feba30e1376144a8110ec7521892acb0940c3c4ba459aeecf0452ed')
+'18661aa40c25580f04d2ac3f32e54c2997c0994d1c829905537b413a9d291ac6')
 
 prepare() {
   cd "${pkgname}"


=
depmod.script
=
@@ -5,7 +5,8 @@ while read -r f; do
 depmod $(basename "$f")
   elif [[ -d $f ]]; then
 rm -f "${f}"modules.{alias,alias.bin,builtin.alias.bin,builtin.bin} \
-  "${f}"modules.{dep,dep.bin,devname,softdep,symbols,symbols.bin}
+  "${f}"modules.{dep,dep.bin,devname,softdep,symbols,symbols.bin} \
+  "${f}"modules.weakdep
 rmdir --ignore-fail-on-non-empty "$f"
   fi
 done



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/kmod/-/commit/c7e818ad5969ac7fb184938b6eaf6f5b06383280

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




[Git][archlinux/packaging/packages/packagekit][main] upgpkg: 1.2.8-9: pacman 7.0.0 rebuild

2024-08-25 Thread Christian Hesse (@eworm)


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


Commits:
20e7a2e2 by Christian Hesse at 2024-08-25T21:58:49+02:00
upgpkg: 1.2.8-9: pacman 7.0.0 rebuild

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,18 +1,19 @@
 pkgbase = packagekit
pkgdesc = A system designed to make installation and updates of 
packages easier
pkgver = 1.2.8
-   pkgrel = 8
+   pkgrel = 9
url = https://www.freedesktop.org/software/PackageKit/
arch = x86_64
license = GPL-2.0-or-later
-   makedepends = polkit
-   makedepends = sqlite
+   makedepends = bash-completion
+   makedepends = glib2-devel
makedepends = gobject-introspection
makedepends = intltool
-   makedepends = bash-completion
-   makedepends = vala
makedepends = meson
+   makedepends = polkit
makedepends = python-setuptools
+   makedepends = sqlite
+   makedepends = vala
options = !emptydirs
source = 
https://www.freedesktop.org/software/PackageKit/releases/PackageKit-1.2.8.tar.xz
source = 0001-alpm-add-compatibility-with-libalpm-14.patch


=
PKGBUILD
=
@@ -4,13 +4,20 @@
 pkgbase='packagekit'
 pkgname=('packagekit' 'libpackagekit-glib')
 pkgver=1.2.8
-pkgrel=8
+pkgrel=9
 pkgdesc='A system designed to make installation and updates of packages easier'
 arch=('x86_64')
 url='https://www.freedesktop.org/software/PackageKit/'
 license=('GPL-2.0-or-later')
-makedepends=('polkit' 'sqlite' 'gobject-introspection' 'intltool'
- 'bash-completion' 'vala' 'meson' 'python-setuptools')
+makedepends=('bash-completion'
+ 'glib2-devel'
+ 'gobject-introspection'
+ 'intltool'
+ 'meson'
+ 'polkit'
+ 'python-setuptools'
+ 'sqlite'
+ 'vala')
 options=('!emptydirs')
 validpgpkeys=('163EB50119225DB3DF8F49EA17ACBA8DFA970E17'# Richard 
Hughes 
   'EC60AABDF42AAE8FB062640480858FA38F62AF74')   # Kalev Lember 




View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/packagekit/-/commit/20e7a2e2924f4372e3488dcb689e0beb29376d8d

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




[Git][archlinux/packaging/packages/packagekit] Pushed new tag 1.2.8-9

2024-08-25 Thread Christian Hesse (@eworm)


Christian Hesse pushed new tag 1.2.8-9 at Arch Linux / Packaging / Packages / 
packagekit

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




[Git][archlinux/packaging/packages/freeradius] Pushed new tag 3.2.6-1

2024-08-25 Thread Christian Hesse (@eworm)


Christian Hesse pushed new tag 3.2.6-1 at Arch Linux / Packaging / Packages / 
freeradius

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




[Git][archlinux/packaging/packages/freeradius][main] upgpkg: 3.2.6-1: new upstream release

2024-08-25 Thread Christian Hesse (@eworm)


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


Commits:
a83c3386 by Christian Hesse at 2024-08-25T21:38:49+02:00
upgpkg: 3.2.6-1: new upstream release

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,6 +1,6 @@
 pkgbase = freeradius
pkgdesc = The premier open source RADIUS server
-   pkgver = 3.2.5
+   pkgver = 3.2.6
pkgrel = 1
url = https://freeradius.org/
arch = x86_64
@@ -36,13 +36,13 @@ pkgbase = freeradius
optdepends = unixodbc: for ODBC
optdepends = yubico-c-client: for yubicloud
options = !makeflags
-   source = 
https://github.com/FreeRADIUS/freeradius-server/releases/download/release_3_2_5/freeradius-server-3.2.5.tar.bz2
-   source = 
https://github.com/FreeRADIUS/freeradius-server/releases/download/release_3_2_5/freeradius-server-3.2.5.tar.bz2.sig
+   source = 
https://github.com/FreeRADIUS/freeradius-server/releases/download/release_3_2_6/freeradius-server-3.2.6.tar.bz2
+   source = 
https://github.com/FreeRADIUS/freeradius-server/releases/download/release_3_2_6/freeradius-server-3.2.6.tar.bz2.sig
source = freeradius-sysusers.conf
source = freeradius-tmpfiles.conf
source = freeradius.service
validpgpkeys = BF2384EC6938B9744B03E2A620E37C25995B4F85
-   sha256sums = 
0fe4f57b28b942c5e5955f48a88769817ca287a830b939d7120ffcff3fcdba88
+   sha256sums = 
18bbb2318448f13918897ae7a38b36afd3db7dd5c66f78ad24d2e0051269d9b2
sha256sums = SKIP
sha256sums = 
8ecaca94c7d0f4806b326685312dd4e543ce9c6c183d3d7ad01c1a0197bdfb94
sha256sums = 
f536a9aa972e3e42a6b1a6d8ee17166eb721c7cba2e80f60473811497c7bd8bc


=
PKGBUILD
=
@@ -3,7 +3,7 @@
 # Contributor: Daniel Micay 
 
 pkgname=freeradius
-pkgver=3.2.5
+pkgver=3.2.6
 pkgrel=1
 pkgdesc='The premier open source RADIUS server'
 arch=('x86_64')
@@ -29,7 +29,7 @@ 
source=("https://github.com/FreeRADIUS/freeradius-server/releases/download/relea
 'freeradius-sysusers.conf'
 'freeradius-tmpfiles.conf'
 'freeradius.service')
-sha256sums=('0fe4f57b28b942c5e5955f48a88769817ca287a830b939d7120ffcff3fcdba88'
+sha256sums=('18bbb2318448f13918897ae7a38b36afd3db7dd5c66f78ad24d2e0051269d9b2'
 'SKIP'
 '8ecaca94c7d0f4806b326685312dd4e543ce9c6c183d3d7ad01c1a0197bdfb94'
 'f536a9aa972e3e42a6b1a6d8ee17166eb721c7cba2e80f60473811497c7bd8bc'



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/freeradius/-/commit/a83c3386f5789b0b0076b9595811a3d5ffaa3be1

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




[Git][archlinux/packaging/packages/rawtherapee] Pushed new tag 1-5.11-1

2024-08-25 Thread Christian Hesse (@eworm)


Christian Hesse pushed new tag 1-5.11-1 at Arch Linux / Packaging / Packages / 
rawtherapee

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




[Git][archlinux/packaging/packages/lib32-libnghttp3] Pushed new tag 1.5.0-1

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


Christian Hesse pushed new tag 1.5.0-1 at Arch Linux / Packaging / Packages / 
lib32-libnghttp3

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




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

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


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


Commits:
e67171e2 by Christian Hesse at 2024-08-24T21:22:26+02:00
upgpkg: 1.5.0-1: new upstream release

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,6 +1,6 @@
 pkgbase = lib32-libnghttp3
pkgdesc = HTTP/3 library written in C (32-bit)
-   pkgver = 1.4.0
+   pkgver = 1.5.0
pkgrel = 1
url = https://github.com/ngtcp2/nghttp3
arch = x86_64
@@ -8,10 +8,10 @@ pkgbase = lib32-libnghttp3
depends = lib32-glibc
depends = libnghttp3
provides = libnghttp3.so
-   source = 
https://github.com/ngtcp2/nghttp3/releases/download/v1.4.0/nghttp3-1.4.0.tar.xz
-   source = 
https://github.com/ngtcp2/nghttp3/releases/download/v1.4.0/nghttp3-1.4.0.tar.xz.asc
+   source = 
https://github.com/ngtcp2/nghttp3/releases/download/v1.5.0/nghttp3-1.5.0.tar.xz
+   source = 
https://github.com/ngtcp2/nghttp3/releases/download/v1.5.0/nghttp3-1.5.0.tar.xz.asc
validpgpkeys = F4F3B91474D1EB29889BD0EF7E8403D5D673C366
-   sha256sums = 
c87b27ef33982a3b831dd349f4a75c55bd4c22a8ec0890095b84b54009df9d6a
+   sha256sums = 
8c00e3910ea2ad1218dafebcf8dd2ffdf030c992d9ceb65834d29e5e5278dd0d
sha256sums = SKIP
 
 pkgname = lib32-libnghttp3


=
PKGBUILD
=
@@ -1,7 +1,7 @@
 # Maintainer: Christian Hesse 
 
 pkgname=lib32-libnghttp3
-pkgver=1.4.0
+pkgver=1.5.0
 pkgrel=1
 pkgdesc="HTTP/3 library written in C (32-bit)"
 url='https://github.com/ngtcp2/nghttp3'
@@ -11,7 +11,7 @@ depends=('lib32-glibc' 'libnghttp3')
 provides=('libnghttp3.so')
 validpgpkeys=('F4F3B91474D1EB29889BD0EF7E8403D5D673C366') # Tatsuhiro 
Tsujikawa 
 
source=("https://github.com/ngtcp2/nghttp3/releases/download/v${pkgver}/nghttp3-${pkgver}.tar.xz"{,.asc})
-sha256sums=('c87b27ef33982a3b831dd349f4a75c55bd4c22a8ec0890095b84b54009df9d6a'
+sha256sums=('8c00e3910ea2ad1218dafebcf8dd2ffdf030c992d9ceb65834d29e5e5278dd0d'
 'SKIP')
 
 prepare() {



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

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




[Git][archlinux/packaging/packages/libnghttp3][main] upgpkg: 1.5.0-1: new upstream release

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


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


Commits:
c0fc7743 by Christian Hesse at 2024-08-24T21:22:24+02:00
upgpkg: 1.5.0-1: new upstream release

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,16 +1,16 @@
 pkgbase = libnghttp3
pkgdesc = HTTP/3 library written in C
-   pkgver = 1.4.0
+   pkgver = 1.5.0
pkgrel = 1
url = https://github.com/ngtcp2/nghttp3
arch = x86_64
license = MIT
depends = glibc
provides = libnghttp3.so
-   source = 
https://github.com/ngtcp2/nghttp3/releases/download/v1.4.0/nghttp3-1.4.0.tar.xz
-   source = 
https://github.com/ngtcp2/nghttp3/releases/download/v1.4.0/nghttp3-1.4.0.tar.xz.asc
+   source = 
https://github.com/ngtcp2/nghttp3/releases/download/v1.5.0/nghttp3-1.5.0.tar.xz
+   source = 
https://github.com/ngtcp2/nghttp3/releases/download/v1.5.0/nghttp3-1.5.0.tar.xz.asc
validpgpkeys = F4F3B91474D1EB29889BD0EF7E8403D5D673C366
-   sha256sums = 
c87b27ef33982a3b831dd349f4a75c55bd4c22a8ec0890095b84b54009df9d6a
+   sha256sums = 
8c00e3910ea2ad1218dafebcf8dd2ffdf030c992d9ceb65834d29e5e5278dd0d
sha256sums = SKIP
 
 pkgname = libnghttp3


=
PKGBUILD
=
@@ -2,7 +2,7 @@
 # Maintainer: Christian Hesse 
 
 pkgname=libnghttp3
-pkgver=1.4.0
+pkgver=1.5.0
 pkgrel=1
 pkgdesc="HTTP/3 library written in C"
 url='https://github.com/ngtcp2/nghttp3'
@@ -12,7 +12,7 @@ depends=('glibc')
 provides=('libnghttp3.so')
 validpgpkeys=('F4F3B91474D1EB29889BD0EF7E8403D5D673C366') # Tatsuhiro 
Tsujikawa 
 
source=("https://github.com/ngtcp2/nghttp3/releases/download/v${pkgver}/nghttp3-${pkgver}.tar.xz"{,.asc})
-sha256sums=('c87b27ef33982a3b831dd349f4a75c55bd4c22a8ec0890095b84b54009df9d6a'
+sha256sums=('8c00e3910ea2ad1218dafebcf8dd2ffdf030c992d9ceb65834d29e5e5278dd0d'
 'SKIP')
 
 prepare() {



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/libnghttp3/-/commit/c0fc7743a7c3cf6d61cd79979184b2934247b8b8

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




[Git][archlinux/packaging/packages/libnghttp3] Pushed new tag 1.5.0-1

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


Christian Hesse pushed new tag 1.5.0-1 at Arch Linux / Packaging / Packages / 
libnghttp3

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




[Git][archlinux/packaging/packages/lvm2][main] upgpkg: 2.03.26-1: new upstream release

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


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


Commits:
ebf68875 by Christian Hesse at 2024-08-24T21:22:19+02:00
upgpkg: 2.03.26-1: new upstream release

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,6 +1,6 @@
 pkgbase = lvm2
-   pkgver = 2.03.25
-   pkgrel = 2
+   pkgver = 2.03.26
+   pkgrel = 1
url = https://sourceware.org/lvm2/
arch = x86_64
license = GPL2
@@ -9,19 +9,19 @@ pkgbase = lvm2
makedepends = systemd
makedepends = libaio
makedepends = thin-provisioning-tools
-   source = git+https://sourceware.org/git/lvm2.git#tag=v2_03_25?signed
+   source = git+https://sourceware.org/git/lvm2.git#tag=v2_03_26?signed
source = 0001-udev-initcpio.patch
source = 11-dm-initramfs.rules
validpgpkeys = 88437EF5C077BD113D3B7224228191C1567E2C17
validpgpkeys = D501A478440AE2FD130A1BE8B9112431E509039F
-   sha256sums = 
0870ee6d5929274c18be6bfde1e6c24a499ed6a9659114a15c6062dfec924ae8
+   sha256sums = 
42e1422566e1b028f0e57955bc4050a3c47f3c6b59fb1e13d27b06acd09815bf
sha256sums = 
2b3a16ec05e2bc6678e9ebd5ffa8319ebfde29aa260ce004f79f9b8df57d73c9
sha256sums = 
e10f24b57582d6e2da71f7c80732a62e0ee2e3b867fe84591ccdb53e80fa92e0
 
 pkgname = lvm2
pkgdesc = Logical Volume Manager 2 utilities
depends = bash
-   depends = device-mapper>=2.03.25
+   depends = device-mapper>=2.03.26
depends = systemd-libs
depends = libudev.so
depends = util-linux-libs


=
PKGBUILD
=
@@ -3,8 +3,8 @@
 
 pkgbase=lvm2
 pkgname=('lvm2' 'device-mapper')
-pkgver=2.03.25
-pkgrel=2
+pkgver=2.03.26
+pkgrel=1
 arch=('x86_64')
 url='https://sourceware.org/lvm2/'
 license=('GPL2' 'LGPL2.1')
@@ -14,7 +14,7 @@ validpgpkeys=('88437EF5C077BD113D3B7224228191C1567E2C17'  # 
Alasdair G Kergon https://sourceware.org/git/lvm2.git#tag=v${pkgver//./_}?signed";
 '0001-udev-initcpio.patch'
 '11-dm-initramfs.rules')
-sha256sums=('0870ee6d5929274c18be6bfde1e6c24a499ed6a9659114a15c6062dfec924ae8'
+sha256sums=('42e1422566e1b028f0e57955bc4050a3c47f3c6b59fb1e13d27b06acd09815bf'
 '2b3a16ec05e2bc6678e9ebd5ffa8319ebfde29aa260ce004f79f9b8df57d73c9'
 'e10f24b57582d6e2da71f7c80732a62e0ee2e3b867fe84591ccdb53e80fa92e0')
 



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/lvm2/-/commit/ebf68875a21c722657c117e3b2736ca43de2f01c

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




[Git][archlinux/packaging/packages/lvm2] Pushed new tag 2.03.26-1

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


Christian Hesse pushed new tag 2.03.26-1 at Arch Linux / Packaging / Packages / 
lvm2

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




[Git][archlinux/packaging/packages/kmod][main] remove the old reference to module-init-tools

2024-08-22 Thread Christian Hesse (@eworm)


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


Commits:
790a6dc6 by Christian Hesse at 2024-08-22T15:23:31+02:00
remove the old reference to module-init-tools

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -15,10 +15,7 @@ pkgbase = kmod
depends = openssl
depends = xz
depends = zstd
-   provides = module-init-tools=3.16
provides = libkmod.so
-   conflicts = module-init-tools
-   replaces = module-init-tools
options = strip
source = 
git+https://git.kernel.org/pub/scm/utils/kernel/kmod/kmod.git#tag=v33?signed
source = depmod-search.conf


=
PKGBUILD
=
@@ -11,9 +11,7 @@ depends=('glibc' 'zlib' 'openssl' 'xz' 'zstd')
 makedepends=('git' 'scdoc')
 checkdepends=('linux-headers' 'libelf')
 options=('strip')
-provides=('module-init-tools=3.16' 'libkmod.so')
-conflicts=('module-init-tools')
-replaces=('module-init-tools')
+provides=('libkmod.so')
 validpgpkeys=('EAB33C9690013C733916AC839BA2A5A630CBEA53')  # Lucas DeMarchi
 
source=("git+https://git.kernel.org/pub/scm/utils/kernel/kmod/kmod.git#tag=v${pkgver}?signed";
 'depmod-search.conf'



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/kmod/-/commit/790a6dc6b2d69f5817de9ac88d67911f1bede099

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




[Git][archlinux/packaging/packages/kmod] Pushed new tag 33-2

2024-08-22 Thread Christian Hesse (@eworm)


Christian Hesse pushed new tag 33-2 at Arch Linux / Packaging / Packages / kmod

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




[Git][archlinux/packaging/packages/kmod][main] upgpkg: 33-2: revert the change for module-directory

2024-08-22 Thread Christian Hesse (@eworm)


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


Commits:
5c47a728 by Christian Hesse at 2024-08-22T15:18:02+02:00
upgpkg: 33-2: revert the change for module-directory

Closes: 
https://gitlab.archlinux.org/archlinux/packaging/packages/kmod/-/issues/3
Fixes: 
https://gitlab.archlinux.org/archlinux/packaging/packages/kmod/-/commit/0efd732cb78bc0b7851a8367f4dc8e6933f5b99d
Fixes: 
https://gitlab.archlinux.org/archlinux/packaging/packages/kmod/-/merge_requests/1

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = kmod
pkgdesc = Linux kernel module management tools and library
pkgver = 33
-   pkgrel = 1
+   pkgrel = 2
url = https://git.kernel.org/pub/scm/utils/kernel/kmod/kmod.git
arch = x86_64
license = LGPL-2.1-or-later


=
PKGBUILD
=
@@ -2,7 +2,7 @@
 
 pkgname=kmod
 pkgver=33
-pkgrel=1
+pkgrel=2
 pkgdesc="Linux kernel module management tools and library"
 arch=('x86_64')
 url='https://git.kernel.org/pub/scm/utils/kernel/kmod/kmod.git'
@@ -27,9 +27,6 @@ 
sha256sums=('f5795fe50a747609d70f764244e645cd946074e70a7e51de0f82bd2e4d0612c8'
 prepare() {
   cd "${pkgname}"
 
-  git cherry-pick -n \
-590074281e8463128ac92ed2640405cd05b10cb1
-
   touch libkmod/docs/gtk-doc.make
   autoreconf --force --install --symlink
 }
@@ -39,7 +36,6 @@ build() {
 
   ./configure \
 --sysconfdir='/etc' \
---with-module-directory='/usr/lib/modules' \
 --with-xz \
 --with-zlib \
 --with-zstd \



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

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




[Git][archlinux/packaging/packages/mysql-workbench] Pushed new tag 8.0.38-5

2024-08-21 Thread Christian Hesse (@eworm)


Christian Hesse pushed new tag 8.0.38-5 at Arch Linux / Packaging / Packages / 
mysql-workbench

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




[Git][archlinux/packaging/packages/python-antlr4] Pushed new tag 4.13.2-1

2024-08-21 Thread Christian Hesse (@eworm)


Christian Hesse pushed new tag 4.13.2-1 at Arch Linux / Packaging / Packages / 
python-antlr4

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




[Git][archlinux/packaging/packages/python-antlr4][main] upgpkg: 4.13.2-1: new upstream release

2024-08-21 Thread Christian Hesse (@eworm)


Christian Hesse pushed to branch main at Arch Linux / Packaging / Packages / 
python-antlr4


Commits:
7b334ff0 by Christian Hesse at 2024-08-22T00:00:55+02:00
upgpkg: 4.13.2-1: new upstream release

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = python-antlr4
pkgdesc = ANTLR4 runtime for Python
-   pkgver = 4.13.1
-   pkgrel = 3
+   pkgver = 4.13.2
+   pkgrel = 1
url = https://www.antlr.org/
arch = any
license = BSD
@@ -12,7 +12,7 @@ pkgbase = python-antlr4
makedepends = python-wheel
makedepends = python-setuptools-scm
depends = python
-   source = 
python-antlr4-4.13.1.tar.gz::https://github.com/antlr/antlr4/archive/4.13.1.tar.gz
-   b2sums = 
a51b91ef93bd4b540a382f8d4eb2bcd1a2e47a29ab20a601a2fdc6ea3d17f9acb62a4bda1a9383ba1d40853a2346f68fe846d700c3f8ae6c9a0f940ad8c660be
+   source = 
python-antlr4-4.13.2.tar.gz::https://github.com/antlr/antlr4/archive/4.13.2.tar.gz
+   b2sums = 
709f3c18329e08a811d7a4e5258fc0183ba6fa6ab62fe83ab694360cf1ce2bb3aa3f30cc62a0339a6ff8b64dd0a766057fd6f751cfc34a4e05051e4d54a57fad
 
 pkgname = python-antlr4


=
PKGBUILD
=
@@ -3,8 +3,8 @@
 
 _pkgname=antlr4
 pkgname="python-${_pkgname}"
-pkgver=4.13.1
-pkgrel=3
+pkgver=4.13.2
+pkgrel=1
 pkgdesc="ANTLR4 runtime for Python"
 arch=('any')
 url="https://www.antlr.org/";
@@ -13,7 +13,7 @@ depends=('python')
 makedepends=('python-build' 'python-installer' 'python-wheel' 
'python-setuptools-scm')
 checkdepends=('gdb' 'tk')
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/antlr/${_pkgname}/archive/${pkgver}.tar.gz";)
-b2sums=('a51b91ef93bd4b540a382f8d4eb2bcd1a2e47a29ab20a601a2fdc6ea3d17f9acb62a4bda1a9383ba1d40853a2346f68fe846d700c3f8ae6c9a0f940ad8c660be')
+b2sums=('709f3c18329e08a811d7a4e5258fc0183ba6fa6ab62fe83ab694360cf1ce2bb3aa3f30cc62a0339a6ff8b64dd0a766057fd6f751cfc34a4e05051e4d54a57fad')
 
 build() {
   cd "${srcdir}/${_pkgname}-${pkgver}/runtime/Python3"



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

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




[Git][archlinux/packaging/packages/antlr4-runtime][main] upgpkg: 4.13.2-1: new upstream release

2024-08-21 Thread Christian Hesse (@eworm)


Christian Hesse pushed to branch main at Arch Linux / Packaging / Packages / 
antlr4-runtime


Commits:
abe3a284 by Christian Hesse at 2024-08-22T00:00:10+02:00
upgpkg: 4.13.2-1: new upstream release

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = antlr4-runtime
pkgdesc = Antlr C++ runtime
-   pkgver = 4.13.1
-   pkgrel = 2
+   pkgver = 4.13.2
+   pkgrel = 1
url = https://www.antlr.org/
arch = x86_64
license = BSD
@@ -11,7 +11,7 @@ pkgbase = antlr4-runtime
depends = gcc-libs
provides = libantlr4-runtime.so
options = staticlibs
-   source = 
https://www.antlr.org/download/antlr4-cpp-runtime-4.13.1-source.zip
-   sha256sums = 
d350e09917a633b738c68e1d6dc7d7710e91f4d6543e154a78bb964cfd8eb4de
+   source = 
https://www.antlr.org/download/antlr4-cpp-runtime-4.13.2-source.zip
+   sha256sums = 
0ed13668906e86dbc0dcddf30fdee68c10203dea4e83852b4edb810821bee3c4
 
 pkgname = antlr4-runtime


=
PKGBUILD
=
@@ -1,8 +1,8 @@
 # Maintainer: Christian Hesse 
 
 pkgname=antlr4-runtime
-pkgver=4.13.1
-pkgrel=2
+pkgver=4.13.2
+pkgrel=1
 pkgdesc='Antlr C++ runtime'
 url='https://www.antlr.org/'
 arch=('x86_64')
@@ -11,7 +11,7 @@ makedepends=('git' 'cmake' 'python')
 provides=('libantlr4-runtime.so')
 license=('BSD')
 
source=("https://www.antlr.org/download/antlr4-cpp-runtime-${pkgver}-source.zip";)
-sha256sums=('d350e09917a633b738c68e1d6dc7d7710e91f4d6543e154a78bb964cfd8eb4de')
+sha256sums=('0ed13668906e86dbc0dcddf30fdee68c10203dea4e83852b4edb810821bee3c4')
 # FS#72726
 options=(staticlibs)
 



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/antlr4-runtime/-/commit/abe3a28489a0797fb123f92f6b50d8f2cef27363

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




[Git][archlinux/packaging/packages/antlr4-runtime] Pushed new tag 4.13.2-1

2024-08-21 Thread Christian Hesse (@eworm)


Christian Hesse pushed new tag 4.13.2-1 at Arch Linux / Packaging / Packages / 
antlr4-runtime

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




[Git][archlinux/packaging/packages/antlr4] Pushed new tag 4.13.2-1

2024-08-21 Thread Christian Hesse (@eworm)


Christian Hesse pushed new tag 4.13.2-1 at Arch Linux / Packaging / Packages / 
antlr4

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




[Git][archlinux/packaging/packages/antlr4][main] upgpkg: 4.13.2-1: new upstream release

2024-08-21 Thread Christian Hesse (@eworm)


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


Commits:
cafb3796 by Christian Hesse at 2024-08-21T23:58:50+02:00
upgpkg: 4.13.2-1: new upstream release

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,19 +1,19 @@
 pkgbase = antlr4
pkgdesc = Parser generator for reading, processing, executing, or 
translating structured text or binary files
-   pkgver = 4.13.1
+   pkgver = 4.13.2
pkgrel = 1
url = https://www.antlr.org/index.html
arch = any
license = BSD
depends = bash
depends = java-environment>=6
-   provides = antlr=4.13.1
-   noextract = antlr-4.13.1-complete.jar
-   source = https://www.antlr.org/download/antlr-4.13.1-complete.jar
+   provides = antlr=4.13.2
+   noextract = antlr-4.13.2-complete.jar
+   source = https://www.antlr.org/download/antlr-4.13.2-complete.jar
source = 
antlr4-LICENSE.txt::https://raw.githubusercontent.com/antlr/antlr4/master/LICENSE.txt
source = bin_antlr4
source = bin_grun
-   sha256sums = 
bc13a9c57a8dd7d5196888211e5ede657cb64a3ce968608697e4f668251a8487
+   sha256sums = 
eae2dfa119a64327444672aff63e9ec35a20180dc5b8090b7a6ab85125df4d76
sha256sums = 
3db1fb3ee79a4b4f9918fc4d0f6133bf18a3cf787f126cd22f8aa9b862281c0c
sha256sums = 
345697e77b7191e2afe70b223f205a8a7fd18a655e6865f503a764583d9a3dcc
sha256sums = 
81e1536e011762287a095e969784a9f2fbbcc62374ab5fb83e19e01ade20b454


=
PKGBUILD
=
@@ -2,7 +2,7 @@
 
 pkgname=antlr4
 _shortname=${pkgname:0:-1}
-pkgver=4.13.1
+pkgver=4.13.2
 pkgrel=1
 pkgdesc='Parser generator for reading, processing, executing, or translating 
structured text or binary files'
 arch=('any')
@@ -15,7 +15,7 @@ 
source=(https://www.antlr.org/download/${_shortname}-${pkgver}-complete.jar
 bin_antlr4
 bin_grun)
 noextract=("${_shortname}-${pkgver}-complete.jar")
-sha256sums=('bc13a9c57a8dd7d5196888211e5ede657cb64a3ce968608697e4f668251a8487'
+sha256sums=('eae2dfa119a64327444672aff63e9ec35a20180dc5b8090b7a6ab85125df4d76'
 '3db1fb3ee79a4b4f9918fc4d0f6133bf18a3cf787f126cd22f8aa9b862281c0c'
 '345697e77b7191e2afe70b223f205a8a7fd18a655e6865f503a764583d9a3dcc'
 '81e1536e011762287a095e969784a9f2fbbcc62374ab5fb83e19e01ade20b454')



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/antlr4/-/commit/cafb3796375689494a05b3ff3a5429c25a89a697

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




[Git][archlinux/packaging/packages/gtkmm3][main] provide libgdkmm-3.0.so

2024-08-21 Thread Christian Hesse (@eworm)


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


Commits:
c5e2d9d0 by Christian Hesse at 2024-08-21T23:51:15+02:00
provide libgdkmm-3.0.so

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -28,6 +28,7 @@ pkgname = gtkmm3
depends = libglibmm-2.4.so
depends = libpangomm-1.4.so
depends = libsigc-2.0.so
+   provides = libgdkmm-3.0.so
provides = libgtkmm-3.0.so
options = !emptydirs
 


=
PKGBUILD
=
@@ -61,7 +61,10 @@ package_gtkmm3() {
 libpangomm-1.4.so
 libsigc-2.0.so
   )
-  provides=(libgtkmm-3.0.so)
+  provides=(
+libgdkmm-3.0.so
+libgtkmm-3.0.so
+  )
   options=(!emptydirs)
 
   meson install -C build --destdir "$pkgdir"



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/gtkmm3/-/commit/c5e2d9d05ffb890d441fed8a65e32880d377b801

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




[Git][archlinux/packaging/packages/antlr4-runtime][main] add soname provide

2024-08-21 Thread Christian Hesse (@eworm)


Christian Hesse pushed to branch main at Arch Linux / Packaging / Packages / 
antlr4-runtime


Commits:
66b41f14 by Christian Hesse at 2024-08-21T22:59:31+02:00
add soname provide

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -9,6 +9,7 @@ pkgbase = antlr4-runtime
makedepends = cmake
makedepends = python
depends = gcc-libs
+   provides = libantlr4-runtime.so
options = staticlibs
source = 
https://www.antlr.org/download/antlr4-cpp-runtime-4.13.1-source.zip
sha256sums = 
d350e09917a633b738c68e1d6dc7d7710e91f4d6543e154a78bb964cfd8eb4de


=
PKGBUILD
=
@@ -8,6 +8,7 @@ url='https://www.antlr.org/'
 arch=('x86_64')
 depends=('gcc-libs')
 makedepends=('git' 'cmake' 'python')
+provides=('libantlr4-runtime.so')
 license=('BSD')
 
source=("https://www.antlr.org/download/antlr4-cpp-runtime-${pkgver}-source.zip";)
 sha256sums=('d350e09917a633b738c68e1d6dc7d7710e91f4d6543e154a78bb964cfd8eb4de')



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/antlr4-runtime/-/commit/66b41f14ffe3eb102cf16f46aa3a5083d6ac2c1d

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




[Git][archlinux/packaging/packages/libssh][main] use upstream commit

2024-08-19 Thread Christian Hesse (@eworm)


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


Commits:
08d3359c by Christian Hesse at 2024-08-19T13:34:57+02:00
use upstream commit

- - - - -


3 changed files:

- .SRCINFO
- 0001-config-Do-not-parse-unsupported-ControlPath-ControlMaster.patch
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -21,7 +21,7 @@ pkgbase = libssh
validpgpkeys = 88A228D89B07C2C77D0C780903D5DF8CFDD3E8E7
sha256sums = 
860e814579e7606f3fc3db98c5807bef2ab60f793ec871d81bcd23acdcdd3e91
sha256sums = SKIP
-   sha256sums = 
1d889c61e199b783be4995140c19b39816dd9eb05026d471d8471ea6b970ccf8
+   sha256sums = 
67d0727d1c84ff5c89b3421fc7a85db9383f11008ef8bdb34e778e909baf9eb0
 
 pkgname = libssh
 


=
0001-config-Do-not-parse-unsupported-ControlPath-ControlMaster.patch
=
@@ -1,9 +1,10 @@
-From ffc5a07da36445442e46390d3968c9499ff51c9d Mon Sep 17 00:00:00 2001
+From 82b363f294dc318c9a20ffcbfe16dfa3e082cfed Mon Sep 17 00:00:00 2001
 From: Jakub Jelen 
 Date: Wed, 14 Aug 2024 10:27:24 +0200
 Subject: [PATCH] config: Do not parse unsupported ControlPath/ControlMaster
 
 Signed-off-by: Jakub Jelen 
+Reviewed-by: Andreas Schneider 
 ---
  src/config.c  | 4 ++--
  tests/unittests/torture_config.c  | 6 +++---


=
PKGBUILD
=
@@ -26,7 +26,7 @@ 
source=("https://www.libssh.org/files/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz"{
 '0001-config-Do-not-parse-unsupported-ControlPath-ControlMaster.patch')
 sha256sums=('860e814579e7606f3fc3db98c5807bef2ab60f793ec871d81bcd23acdcdd3e91'
 'SKIP'
-'1d889c61e199b783be4995140c19b39816dd9eb05026d471d8471ea6b970ccf8')
+'67d0727d1c84ff5c89b3421fc7a85db9383f11008ef8bdb34e778e909baf9eb0')
 validpgpkeys=('8DFF53E18F2ABC8D8F3C92237EE0FC4DCC014E3D'  # Andreas Schneider 

   '88A228D89B07C2C77D0C780903D5DF8CFDD3E8E7') # libssh release key 
(release key) 
 



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/libssh/-/commit/08d3359c3530640eb93d2cc70935e02a7547eb28

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




[Git][archlinux/packaging/packages/libssh] Pushed new tag 0.11.0-2

2024-08-16 Thread Christian Hesse (@eworm)


Christian Hesse pushed new tag 0.11.0-2 at Arch Linux / Packaging / Packages / 
libssh

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




[Git][archlinux/packaging/packages/mysql-workbench][main] update bundled gdal

2024-08-16 Thread Christian Hesse (@eworm)


Christian Hesse pushed to branch main at Arch Linux / Packaging / Packages / 
mysql-workbench


Commits:
dcab6b15 by Christian Hesse at 2024-08-16T23:41:50+02:00
update bundled gdal

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -40,7 +40,7 @@ pkgbase = mysql-workbench
source = 
https://cdn.mysql.com/Downloads/MySQL-8.4/mysql-8.4.2.tar.gz.asc
source = 
https://cdn.mysql.com/Downloads/Connector-C++/mysql-connector-c++-8.4.0-src.tar.gz
source = 
https://cdn.mysql.com/Downloads/Connector-C++/mysql-connector-c++-8.4.0-src.tar.gz.asc
-   source = https://download.osgeo.org/gdal/3.9.1/gdal-3.9.1.tar.xz
+   source = https://download.osgeo.org/gdal/3.9.2/gdal-3.9.2.tar.xz
source = 
https://downloads.sourceforge.net/project/boost/boost/1.77.0/boost_1_77_0.tar.bz2
source = 0001-mysql-workbench-no-check-for-updates.patch
source = 0002-disable-unsupported-operating-system-warning.patch
@@ -52,7 +52,7 @@ pkgbase = mysql-workbench
sha256sums = SKIP
sha256sums = 
540b3d3b4d20ecf9f900bf55bba870718e50672f54fa2cdb124adf385796ce8b
sha256sums = SKIP
-   sha256sums = 
aff3086fee75f5773e33a5598df98d8a4d10be411f777d3ce23584b21d8171ca
+   sha256sums = 
bfbcc9f087f012c36151c20c79f8eac9529e1e5298fbded79cd5a1365f0b113a
sha256sums = 
fc9f85fc030e233142908241af7a846e60630aa7388de9a5fafb1f3a26840854
sha256sums = 
cdf687f23bc6e8d52dbee9fa02b23d755e80f88476f0fc2e7c4c71cdfed3792f
sha256sums = 
2d0f6dcf38f22e49ef7ab9de0230484f1ffac41b7ac40feaf5ef4538ae2f7a18


=
PKGBUILD
=
@@ -9,7 +9,7 @@ pkgver=8.0.38
 pkgrel=4
 _mysql_version=8.4.2
 _connector_version=8.4.0
-_gdal_version=3.9.1
+_gdal_version=3.9.2
 _boost_version=1.77.0
 # bump the antlr4 version as required, this is to match the jar file name
 _antlr4_version=4.13.1
@@ -38,7 +38,7 @@ 
sha256sums=('5b646c03684845468d44ad10e6937560e0db122c3a1c4ddc7de8ac3dd51c60f6'
 'SKIP'
 '540b3d3b4d20ecf9f900bf55bba870718e50672f54fa2cdb124adf385796ce8b'
 'SKIP'
-'aff3086fee75f5773e33a5598df98d8a4d10be411f777d3ce23584b21d8171ca'
+'bfbcc9f087f012c36151c20c79f8eac9529e1e5298fbded79cd5a1365f0b113a'
 'fc9f85fc030e233142908241af7a846e60630aa7388de9a5fafb1f3a26840854'
 'cdf687f23bc6e8d52dbee9fa02b23d755e80f88476f0fc2e7c4c71cdfed3792f'
 '2d0f6dcf38f22e49ef7ab9de0230484f1ffac41b7ac40feaf5ef4538ae2f7a18'



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/mysql-workbench/-/commit/dcab6b1589eddb1351e16cac4f974d315ed7301e

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




[Git][archlinux/packaging/packages/systemd][main] handle uncommon license

2024-08-16 Thread Christian Hesse (@eworm)


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


Commits:
ea5f0862 by Toolybird at 2024-08-16T21:05:29+00:00
handle uncommon license

This gets rid of a namcap complaint.

Fixes 
https://gitlab.archlinux.org/archlinux/packaging/packages/systemd/-/issues/25

- - - - -


1 changed file:

- PKGBUILD


Changes:

=
PKGBUILD
=
@@ -288,6 +288,10 @@ package_systemd() {
 
   # create a directory for cryptsetup keys
   install -d -m0700 "$pkgdir"/etc/cryptsetup-keys.d
+
+  # handle uncommon license
+  install -d -m0755 "$pkgdir/usr/share/licenses/$pkgbase"
+  ln -s -t "$_" /usr/share/doc/systemd/LICENSES/MIT-0.txt
 }
 
 package_systemd-libs() {



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

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




[Git][archlinux/packaging/packages/putty][main] upgpkg: 0.81-2: disable support for X11...

2024-08-16 Thread Christian Hesse (@eworm)


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


Commits:
3e638c7d by Christian Hesse at 2024-08-16T23:01:01+02:00
upgpkg: 0.81-2: disable support for X11...

... as just GTK+ is fine.

Fixes: 
https://gitlab.archlinux.org/archlinux/packaging/packages/putty/-/issues/2

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = putty
pkgdesc = A terminal integrated SSH/Telnet client
pkgver = 0.81
-   pkgrel = 1
+   pkgrel = 2
url = https://www.chiark.greenend.org.uk/~sgtatham/putty/
arch = x86_64
license = MIT


=
PKGBUILD
=
@@ -3,7 +3,7 @@
 
 pkgname=putty
 pkgver=0.81
-pkgrel=1
+pkgrel=2
 pkgdesc='A terminal integrated SSH/Telnet client'
 arch=('x86_64')
 url='https://www.chiark.greenend.org.uk/~sgtatham/putty/'
@@ -23,7 +23,13 @@ 
sha256sums=('cb8b00a94f453494e345a3df281d7a3ed26bb0dd7e36264f145206f8857639fe'
 'd65139883171ed0119d9778ff4a89e6a8151a5ae97fcf8dc7cafb59df424377f')
 
 build() {
-  cmake -B build -S ${pkgname}-${pkgver} \
+  # By default this builds with support for both, GTK+ and X11.
+  # Just the first is fine, so disable X11 (and fix wayland).
+  export CFLAGS+=' -DNOT_X_WINDOWS'
+
+  cmake \
+-B build \
+-S ${pkgname}-${pkgver} \
 -DCMAKE_BUILD_TYPE=None \
 -DCMAKE_INSTALL_PREFIX=/usr \
 -Wno-dev
@@ -31,7 +37,7 @@ build() {
 }
 
 package() {
-  DESTDIR="$pkgdir" cmake --install build
+  DESTDIR="${pkgdir}" cmake --install build
   
   install -D -m0644 "${srcdir}"/${pkgname}-${pkgver}/LICENCE 
"${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
   install -D -m0644 "${srcdir}"/putty.desktop 
"${pkgdir}"/usr/share/applications/putty.desktop



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

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




[Git][archlinux/packaging/packages/putty] Pushed new tag 0.81-2

2024-08-16 Thread Christian Hesse (@eworm)


Christian Hesse pushed new tag 0.81-2 at Arch Linux / Packaging / Packages / 
putty

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




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

2024-08-16 Thread Christian Hesse (@eworm)


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

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




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

2024-08-16 Thread Christian Hesse (@eworm)


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

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




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

2024-08-16 Thread Christian Hesse (@eworm)


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


Commits:
4379f0ab by Christian Hesse at 2024-08-16T09:50:20+02:00
upgpkg: 256.5-1: new upstream release

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,6 +1,6 @@
 pkgbase = lib32-systemd
pkgdesc = system and service manager (32-bit)
-   pkgver = 256.4
+   pkgver = 256.5
pkgrel = 1
url = https://www.github.com/systemd/systemd
arch = x86_64
@@ -31,11 +31,11 @@ pkgbase = lib32-systemd
depends = lib32-zstd
provides = libsystemd.so
provides = libudev.so
-   source = git+https://github.com/systemd/systemd#tag=v256.4?signed
+   source = git+https://github.com/systemd/systemd#tag=v256.5?signed
validpgpkeys = 63CDA1E5D3FC22B998D20DD6327F26951A015CC4
validpgpkeys = A9EA9081724FFAE0484C35A1A81CEA22BC8C7E2E
validpgpkeys = 9A774DB5DB996C154EBBFBFDA0099A18E29326E1
validpgpkeys = 5C251B5FC54EB2F80F407AAAC54CA336CFEB557E
-   sha512sums = 
8ac4d672e4be9f43a6f177cfa0ad91c1d5434e85c6aef633740b6a0e27f6ca15c859b29269a775fe32f14626944db5be87e1a8ebaa7620de7452dd14d902e09e
+   sha512sums = 
493daf7c4d80b5c3c2f90822f0aa18cd2f9c8c5de950f71947a8b1ef2bada1b0b163ec5d850bab48ae46426694838041bbe1ee00920e384080b2a2625bf68ef5
 
 pkgname = lib32-systemd


=
PKGBUILD
=
@@ -2,7 +2,7 @@
 
 pkgname=lib32-systemd
 _pkgbasename=systemd
-_tag='256.4'
+_tag='256.5'
 # Upstream versioning is incompatible with pacman's version comparisons, one
 # way or another. So we replace dashes and tildes with the empty string to
 # make sure pacman's version comparing does the right thing for rc versions:
@@ -25,7 +25,7 @@ validpgpkeys=('63CDA1E5D3FC22B998D20DD6327F26951A015CC4'  # 
Lennart Poettering <
   '9A774DB5DB996C154EBBFBFDA0099A18E29326E1'  # Yu Watanabe 

   '5C251B5FC54EB2F80F407AAAC54CA336CFEB557E') # Zbigniew 
Jędrzejewski-Szmek 
 source=("git+https://github.com/systemd/systemd#tag=v${_tag}?signed";)
-sha512sums=('8ac4d672e4be9f43a6f177cfa0ad91c1d5434e85c6aef633740b6a0e27f6ca15c859b29269a775fe32f14626944db5be87e1a8ebaa7620de7452dd14d902e09e')
+sha512sums=('493daf7c4d80b5c3c2f90822f0aa18cd2f9c8c5de950f71947a8b1ef2bada1b0b163ec5d850bab48ae46426694838041bbe1ee00920e384080b2a2625bf68ef5')
 
 _backports=(
 )



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

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




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

2024-08-16 Thread Christian Hesse (@eworm)


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


Commits:
43e43faa by Christian Hesse at 2024-08-16T09:50:17+02:00
upgpkg: 256.5-1: new upstream release

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

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


=
PKGBUILD
=
@@ -6,7 +6,7 @@ pkgname=('systemd'
  'systemd-resolvconf'
  'systemd-sysvcompat'
  'systemd-ukify')
-_tag='256.4'
+_tag='256.5'
 # Upstream versioning is incompatible with pacman's version comparisons, one
 # way or another. So we replace dashes and tildes with the empty string to
 # make sure pacman's version comparing does the right thing for rc versions:
@@ -48,7 +48,7 @@ 
source=("git+https://github.com/systemd/systemd#tag=v${_tag}?signed";
 '30-systemd-tmpfiles.hook'
 '30-systemd-udev-reload.hook'
 '30-systemd-update.hook')
-sha512sums=('8ac4d672e4be9f43a6f177cfa0ad91c1d5434e85c6aef633740b6a0e27f6ca15c859b29269a775fe32f14626944db5be87e1a8ebaa7620de7452dd14d902e09e'
+sha512sums=('493daf7c4d80b5c3c2f90822f0aa18cd2f9c8c5de950f71947a8b1ef2bada1b0b163ec5d850bab48ae46426694838041bbe1ee00920e384080b2a2625bf68ef5'
 
'3ccf783c28f7a1c857120abac4002ca91ae1f92205dcd5a84aff515d57e706a3f9240d75a0a67cff5085716885e06e62597baa86897f298662ec36a940cf410e'
 
'61032d29241b74a0f28446f8cf1be0e8ec46d0847a61dadb2a4f096e8686d5f57fe5c72bcf386003f6520bc4b5856c32d63bf3efe7eb0bc0deefc9f68159e648'
 
'c416e2121df83067376bcaacb58c05b01990f4614ad9de657d74b6da3efa441af251d13bf21e3f0f71ddcb4c9ea658b81da3d915667dc5c309c87ec32a1cb5a5'



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/pac

[Git][archlinux/packaging/packages/kmod][main] use upstream commit

2024-08-16 Thread Christian Hesse (@eworm)


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


Commits:
34355a1e by Christian Hesse at 2024-08-16T09:42:27+02:00
use upstream commit

- - - - -


3 changed files:

- .SRCINFO
- 0001-test-user-path.patch → 0001-testsuite-fix-path-for-test-user.patch
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -21,20 +21,20 @@ pkgbase = kmod
options = strip
source = 
https://www.kernel.org/pub/linux/utils/kernel/kmod/kmod-33.tar.xz
source = 
https://www.kernel.org/pub/linux/utils/kernel/kmod/kmod-33.tar.sign
-   source = 0001-test-user-path.patch
+   source = 0001-testsuite-fix-path-for-test-user.patch
source = depmod-search.conf
source = depmod.hook
source = depmod.script
validpgpkeys = EAB33C9690013C733916AC839BA2A5A630CBEA53
md5sums = c451c4aa61521adbe8af147f498046f8
md5sums = SKIP
-   md5sums = 0360aff69475ebf35b1e85eac2602708
+   md5sums = 200da55b0bfbec298c4b11f1eaa888ee
md5sums = dd62cbf62bd8f212f51ef8c43bec9a77
md5sums = e179ace75721e92b04b2e145b69dab29
md5sums = b00253ca0d4ebfb2414e4596597bdebd
sha256sums = 
dc768b3155172091f56dc69430b5481f2d76ecd9ccb54ead8c2540dbcf5ea9bc
sha256sums = SKIP
-   sha256sums = 
1297d45ba9cabb88edecebdbf4431b7b384bbab976d117d5ef1f44988a04895d
+   sha256sums = 
a95f2c5b99a01da44a3f3e64b76a756752f8f796859b8f150180268db514b5fd
sha256sums = 
1a92bfeae870f61ce814577e69d2a147a9c0caf6aed1131243e4179241fcc4a8
sha256sums = 
c11c2a0f66ea405493e8617689ca10818dc81dd1dddc19bdb220c8b2917119c1
sha256sums = 
d2cd04a09feba30e1376144a8110ec7521892acb0940c3c4ba459aeecf0452ed


=
0001-test-user-path.patch → 0001-testsuite-fix-path-for-test-user.patch
=
@@ -1,5 +1,18 @@
+commit 590074281e8463128ac92ed2640405cd05b10cb1
+Author: Christian Hesse 
+Date:   Wed Aug 14 09:58:16 2024 +0200
+
+testsuite: fix path for test-user
+
+... as this just does not find its paths.
+
+Closes: https://github.com/kmod-project/kmod/issues/69
+Fixes: 9d1fb31 ("libkmod, depmod, modprobe: Make directory for kernel 
modules configurable")
+Signed-off-by: Christian Hesse 
+Signed-off-by: Lucas De Marchi 
+
 diff --git a/testsuite/test-user.c b/testsuite/test-user.c
-index 97a4747..a7ba90e 100644
+index 97a4747..0db48c3 100644
 --- a/testsuite/test-user.c
 +++ b/testsuite/test-user.c
 @@ -16,7 +16,7 @@
@@ -7,7 +20,7 @@ index 97a4747..a7ba90e 100644
  
  #define TEST_USER_ROOTFS TESTSUITE_ROOTFS "test-user/"
 -#define TEST_USER_KERNEL_DIR TEST_USER_ROOTFS "lib/modules/4.4.4/"
-+#define TEST_USER_KERNEL_DIR TEST_USER_ROOTFS "usr/lib/modules/4.4.4/"
++#define TEST_USER_KERNEL_DIR TEST_USER_ROOTFS MODULE_DIRECTORY "/4.4.4/"
  
  static const char *const test_user_config_paths[] = {
TEST_USER_ROOTFS "etc/modprobe.d",


=
PKGBUILD
=
@@ -16,19 +16,19 @@ conflicts=('module-init-tools')
 replaces=('module-init-tools')
 validpgpkeys=('EAB33C9690013C733916AC839BA2A5A630CBEA53')  # Lucas DeMarchi
 
source=("https://www.kernel.org/pub/linux/utils/kernel/${pkgname}/${pkgname}-${pkgver}.tar."{xz,sign}
-'0001-test-user-path.patch'
+'0001-testsuite-fix-path-for-test-user.patch'
 'depmod-search.conf'
 'depmod.hook'
 'depmod.script')
 md5sums=('c451c4aa61521adbe8af147f498046f8'
  'SKIP'
- '0360aff69475ebf35b1e85eac2602708'
+ '200da55b0bfbec298c4b11f1eaa888ee'
  'dd62cbf62bd8f212f51ef8c43bec9a77'
  'e179ace75721e92b04b2e145b69dab29'
  'b00253ca0d4ebfb2414e4596597bdebd')
 sha256sums=('dc768b3155172091f56dc69430b5481f2d76ecd9ccb54ead8c2540dbcf5ea9bc'
 'SKIP'
-'1297d45ba9cabb88edecebdbf4431b7b384bbab976d117d5ef1f44988a04895d'
+'a95f2c5b99a01da44a3f3e64b76a756752f8f796859b8f150180268db514b5fd'
 '1a92bfeae870f61ce814577e69d2a147a9c0caf6aed1131243e4179241fcc4a8'
 'c11c2a0f66ea405493e8617689ca10818dc81dd1dddc19bdb220c8b2917119c1'
 'd2cd04a09feba30e1376144a8110ec7521892acb0940c3c4ba459aeecf0452ed')
@@ -36,7 +36,7 @@ 
sha256sums=('dc768b3155172091f56dc69430b5481f2d76ecd9ccb54ead8c2540dbcf5ea9bc'
 prepare() {
   cd "${pkgname}-${pkgver}"
 
-  patch -Np1 < ../0001-test-user-path.patch
+  patch -Np1 < ../0001-testsuite-fix-path-for-test-user.patch
 }
 
 build() {



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/kmod/-/commit/34355a1ec03f0fb2b78c4b06df5c5bebb6c33e5a

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




[Git][archlinux/packaging/packages/lib32-fakeroot][main] properly specify license

2024-08-15 Thread Christian Hesse (@eworm)


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


Commits:
41cfeb00 by Christian Hesse at 2024-08-15T19:25:02+02:00
properly specify license

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -5,7 +5,7 @@ pkgbase = lib32-fakeroot
url = https://tracker.debian.org/pkg/fakeroot
install = fakeroot.install
arch = x86_64
-   license = GPL
+   license = GPL-3.0-or-later
makedepends = git
makedepends = po4a
depends = lib32-glibc


=
PKGBUILD
=
@@ -9,7 +9,7 @@ pkgver=1.36
 pkgrel=1
 pkgdesc='Tool for simulating superuser privileges (32-bit)'
 arch=('x86_64')
-license=('GPL')
+license=('GPL-3.0-or-later')
 url="https://tracker.debian.org/pkg/fakeroot";
 install=fakeroot.install
 depends=('lib32-glibc' "$_pkgbasename")



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/lib32-fakeroot/-/commit/41cfeb0002a87420affce7cc77dea6f7f96cc183

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




[Git][archlinux/packaging/packages/fakeroot][main] properly specify license

2024-08-15 Thread Christian Hesse (@eworm)


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


Commits:
6d642c7e by Christian Hesse at 2024-08-15T19:25:32+02:00
properly specify license

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -5,7 +5,7 @@ pkgbase = fakeroot
url = https://tracker.debian.org/pkg/fakeroot
install = fakeroot.install
arch = x86_64
-   license = GPL
+   license = GPL-3.0-or-later
checkdepends = sharutils
makedepends = git
makedepends = systemd


=
PKGBUILD
=
@@ -7,7 +7,7 @@ pkgver=1.36
 pkgrel=1
 pkgdesc='Tool for simulating superuser privileges'
 arch=('x86_64')
-license=('GPL')
+license=('GPL-3.0-or-later')
 url='https://tracker.debian.org/pkg/fakeroot'
 install=fakeroot.install
 depends=('glibc' 'filesystem' 'sed' 'util-linux' 'sh')
@@ -25,11 +25,11 @@ prepare() {
 build() {
   cd "${pkgname}"
 
-  ./configure --prefix=/usr \
+  ./configure \
+--prefix=/usr \
 --libdir=/usr/lib/libfakeroot \
 --disable-static \
 --with-ipc=sysv
-
   make
 
   cd doc



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

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




[Git][archlinux/packaging/packages/lib32-fakeroot][main] upgpkg: 1.36-1: build from git, new upstream release

2024-08-15 Thread Christian Hesse (@eworm)


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


Commits:
a4f3573d by Christian Hesse at 2024-08-15T19:23:32+02:00
upgpkg: 1.36-1: build from git, new upstream release

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,17 +1,16 @@
 pkgbase = lib32-fakeroot
pkgdesc = Tool for simulating superuser privileges (32-bit)
-   pkgver = 1.35.1
+   pkgver = 1.36
pkgrel = 1
url = https://tracker.debian.org/pkg/fakeroot
install = fakeroot.install
arch = x86_64
license = GPL
+   makedepends = git
makedepends = po4a
depends = lib32-glibc
depends = fakeroot
-   source = 
https://deb.debian.org/debian/pool/main/f/fakeroot/fakeroot_1.35.1.orig.tar.gz
-   source = 0001-Cast-uint8_t-pointers.patch
-   sha512sums = 
fae7d619d65e0a554c40b2e98ae0f81c92c75f6cc2ac9b5060c312e2080ed4be7691ebe8328e2980efb3516e2d5ecf44f17dd56d7e7c61b543f3e888405307bf
-   sha512sums = 
9ecaefce3cd49f261665054e477478a0a9773b41389293031fd9ec977f12c46a44bb3781f278b196b18fa6a4d4f3259bafb8c995b687d54590c68bb697517a0c
+   source = 
git+https://salsa.debian.org/clint/fakeroot.git#tag=upstream/1.36
+   sha512sums = 
532553727c842a7c65ace8ae0be356b6aaa91228ce1c7c415f9e4a09ae7b05e4b2a857c84f2c9ce71c974a63aae8ceb48f118f1ab2b18a6e1fb0cc40392333b1
 
 pkgname = lib32-fakeroot


=
PKGBUILD
=
@@ -5,7 +5,7 @@
 
 _pkgbasename=fakeroot
 pkgname=lib32-${_pkgbasename}
-pkgver=1.35.1
+pkgver=1.36
 pkgrel=1
 pkgdesc='Tool for simulating superuser privileges (32-bit)'
 arch=('x86_64')
@@ -13,16 +13,13 @@ license=('GPL')
 url="https://tracker.debian.org/pkg/fakeroot";
 install=fakeroot.install
 depends=('lib32-glibc' "$_pkgbasename")
-makedepends=('po4a')
-source=("https://deb.debian.org/debian/pool/main/f/${_pkgbasename}/${_pkgbasename}_${pkgver}.orig.tar.gz";
-'0001-Cast-uint8_t-pointers.patch')
-sha512sums=('fae7d619d65e0a554c40b2e98ae0f81c92c75f6cc2ac9b5060c312e2080ed4be7691ebe8328e2980efb3516e2d5ecf44f17dd56d7e7c61b543f3e888405307bf'
-
'9ecaefce3cd49f261665054e477478a0a9773b41389293031fd9ec977f12c46a44bb3781f278b196b18fa6a4d4f3259bafb8c995b687d54590c68bb697517a0c')
-
+makedepends=('git' 'po4a')
+source=("git+https://salsa.debian.org/clint/fakeroot.git#tag=upstream/${pkgver}";)
+sha512sums=('532553727c842a7c65ace8ae0be356b6aaa91228ce1c7c415f9e4a09ae7b05e4b2a857c84f2c9ce71c974a63aae8ceb48f118f1ab2b18a6e1fb0cc40392333b1')
 prepare() {
-  cd "${_pkgbasename}-${pkgver}"
+  cd "${_pkgbasename}"
 
-  patch -Np1 < ../0001-Cast-uint8_t-pointers.patch
+  autoreconf -fi
 }
 
 build() {
@@ -30,10 +27,13 @@ build() {
   export CXX="g++ -m32"
   export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
 
-  cd "${_pkgbasename}-${pkgver}"
-  ./bootstrap
-  ./configure --prefix=/usr --libdir=/usr/lib32/libfakeroot \
-  --disable-static --with-ipc=sysv
+  cd "${_pkgbasename}"
+
+  ./configure \
+--prefix=/usr \
+--libdir=/usr/lib32/libfakeroot \
+--disable-static \
+--with-ipc=sysv
   make
 
   cd doc
@@ -41,7 +41,8 @@ build() {
 }
 
 package() {
-  cd "${_pkgbasename}-${pkgver}"
+  cd "${_pkgbasename}"
+
   make DESTDIR="${pkgdir}" install
   rm -rf "${pkgdir}"/usr/{bin,share}
 



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

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




[Git][archlinux/packaging/packages/lib32-fakeroot] Pushed new tag 1.36-1

2024-08-15 Thread Christian Hesse (@eworm)


Christian Hesse pushed new tag 1.36-1 at Arch Linux / Packaging / Packages / 
lib32-fakeroot

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




[Git][archlinux/packaging/packages/fakeroot][main] upgpkg: 1.36-1: build from git, new upstream release

2024-08-15 Thread Christian Hesse (@eworm)


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


Commits:
cd4897e2 by Christian Hesse at 2024-08-15T19:18:32+02:00
upgpkg: 1.36-1: build from git, new upstream release

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,12 +1,13 @@
 pkgbase = fakeroot
pkgdesc = Tool for simulating superuser privileges
-   pkgver = 1.35.1
+   pkgver = 1.36
pkgrel = 1
url = https://tracker.debian.org/pkg/fakeroot
install = fakeroot.install
arch = x86_64
license = GPL
checkdepends = sharutils
+   makedepends = git
makedepends = systemd
makedepends = po4a
depends = glibc
@@ -14,9 +15,7 @@ pkgbase = fakeroot
depends = sed
depends = util-linux
depends = sh
-   source = 
https://deb.debian.org/debian/pool/main/f/fakeroot/fakeroot_1.35.1.orig.tar.gz
-   source = 0001-Cast-uint8_t-pointers.patch
-   sha256sums = 
6a0de53b2de05277d4e6d4a884eb0de7a8ad467b82c07a6f8f2f6a629e655fdc
-   sha256sums = 
a4afc930e4ee49925a31373f1d4f4d986e7554353e9429b64f9423575f4fbbc8
+   source = 
git+https://salsa.debian.org/clint/fakeroot.git#tag=upstream/1.36
+   sha256sums = 
6cf5ddf3fdb4d2ece465e4dc51b4d0b1a265c241bdaf2858f0a1519a9b4e8c63
 
 pkgname = fakeroot


=
PKGBUILD
=
@@ -3,7 +3,7 @@
 # Contributor: Jochem Kossen 
 
 pkgname=fakeroot
-pkgver=1.35.1
+pkgver=1.36
 pkgrel=1
 pkgdesc='Tool for simulating superuser privileges'
 arch=('x86_64')
@@ -11,21 +11,19 @@ license=('GPL')
 url='https://tracker.debian.org/pkg/fakeroot'
 install=fakeroot.install
 depends=('glibc' 'filesystem' 'sed' 'util-linux' 'sh')
-makedepends=('systemd' 'po4a')
+makedepends=('git' 'systemd' 'po4a')
 checkdepends=('sharutils')
-source=("https://deb.debian.org/debian/pool/main/f/${pkgname}/${pkgname}_${pkgver}.orig.tar.gz";
-'0001-Cast-uint8_t-pointers.patch')
-sha256sums=('6a0de53b2de05277d4e6d4a884eb0de7a8ad467b82c07a6f8f2f6a629e655fdc'
-'a4afc930e4ee49925a31373f1d4f4d986e7554353e9429b64f9423575f4fbbc8')
+source=("git+https://salsa.debian.org/clint/fakeroot.git#tag=upstream/${pkgver}";)
+sha256sums=('6cf5ddf3fdb4d2ece465e4dc51b4d0b1a265c241bdaf2858f0a1519a9b4e8c63')
 
 prepare() {
-  cd "${pkgname}-${pkgver}"
+  cd "${pkgname}"
 
-  patch -Np1 < ../0001-Cast-uint8_t-pointers.patch
+  autoreconf -fi
 }
 
 build() {
-  cd "${pkgname}-${pkgver}"
+  cd "${pkgname}"
 
   ./configure --prefix=/usr \
 --libdir=/usr/lib/libfakeroot \
@@ -39,13 +37,13 @@ build() {
 }
 
 check() {
-  cd "${pkgname}-${pkgver}"
+  cd "${pkgname}"
 
   make check
 }
 
 package() {
-  cd "${pkgname}-${pkgver}"
+  cd "${pkgname}"
 
   make DESTDIR="${pkgdir}" install
 



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/fakeroot/-/commit/cd4897e248110ad3de3466a1590ad2dae55a4594

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




[Git][archlinux/packaging/packages/fakeroot] Pushed new tag 1.36-1

2024-08-15 Thread Christian Hesse (@eworm)


Christian Hesse pushed new tag 1.36-1 at Arch Linux / Packaging / Packages / 
fakeroot

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




[Git][archlinux/packaging/packages/intel-ucode] Pushed new tag 20240813-2

2024-08-15 Thread Christian Hesse (@eworm)


Christian Hesse pushed new tag 20240813-2 at Arch Linux / Packaging / Packages 
/ intel-ucode

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




[Git][archlinux/packaging/packages/intel-ucode][main] upgpkg: 20240813-2: release has been re-tagged... 🤨

2024-08-15 Thread Christian Hesse (@eworm)


Christian Hesse pushed to branch main at Arch Linux / Packaging / Packages / 
intel-ucode


Commits:
e2e2dc0c by Christian Hesse at 2024-08-15T15:07:14+02:00
upgpkg: 20240813-2: release has been re-tagged... 🤨

Details here:
https://github.com/intel/Intel-Linux-Processor-Microcode-Data-Files/issues/79

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,13 +1,13 @@
 pkgbase = intel-ucode
pkgdesc = Microcode update files for Intel CPUs
pkgver = 20240813
-   pkgrel = 1
+   pkgrel = 2
url = 
https://github.com/intel/Intel-Linux-Processor-Microcode-Data-Files
arch = any
license = custom
makedepends = iucode-tool
replaces = microcode_ctl
source = 
intel-ucode-20240813.tar.gz::https://github.com/intel/Intel-Linux-Processor-Microcode-Data-Files/archive/microcode-20240813.tar.gz
-   sha256sums = 
81e11e8bac0f01b35c89cc772f068e3b22305a810eb0521a08e7ed2453bcdba6
+   sha256sums = 
f46cfe1d8be8d3c2c5a0fb63fc4d48c7dd1444f34346f0e42ad92c706cb90e79
 
 pkgname = intel-ucode


=
PKGBUILD
=
@@ -4,7 +4,7 @@
 
 pkgname=intel-ucode
 pkgver=20240813
-pkgrel=1
+pkgrel=2
 pkgdesc='Microcode update files for Intel CPUs'
 arch=('any')
 url='https://github.com/intel/Intel-Linux-Processor-Microcode-Data-Files'
@@ -12,7 +12,7 @@ replaces=('microcode_ctl')
 makedepends=('iucode-tool')
 license=('custom')
 
source=("${pkgname}-${pkgver/./}.tar.gz::https://github.com/intel/Intel-Linux-Processor-Microcode-Data-Files/archive/microcode-${pkgver/./}.tar.gz";)
-sha256sums=('81e11e8bac0f01b35c89cc772f068e3b22305a810eb0521a08e7ed2453bcdba6')
+sha256sums=('f46cfe1d8be8d3c2c5a0fb63fc4d48c7dd1444f34346f0e42ad92c706cb90e79')
 
 build() {
   cd Intel-Linux-Processor-Microcode-Data-Files-microcode-${pkgver/./}



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/intel-ucode/-/commit/e2e2dc0cbc21d21e55f81ad655a765ecb960502e

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




[Git][archlinux/packaging/packages/galera] Pushed new tag 26.4.20-1

2024-08-15 Thread Christian Hesse (@eworm)


Christian Hesse pushed new tag 26.4.20-1 at Arch Linux / Packaging / Packages / 
galera

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




[Git][archlinux/packaging/packages/galera][main] upgpkg: 26.4.20-1: new upstream release

2024-08-15 Thread Christian Hesse (@eworm)


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


Commits:
21ed2814 by Christian Hesse at 2024-08-15T11:09:59+02:00
upgpkg: 26.4.20-1: new upstream release

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,10 +1,10 @@
 pkgbase = galera
pkgdesc = write set replication (WSREP) provider for MariaDB cluster
-   pkgver = 26.4.19
+   pkgver = 26.4.20
pkgrel = 1
url = https://galeracluster.com/
arch = x86_64
-   license = GPL2
+   license = GPL-2.0-or-later
license = custom:OpenSSL Linking Exception
makedepends = git
makedepends = boost
@@ -16,10 +16,10 @@ pkgbase = galera
optdepends = rsync: State Snapshot Transfers with rsync
optdepends = socat: State Snapshot Transfers with mariabackup
options = !libtool
-   source = git+https://github.com/codership/galera.git#tag=release_26.4.19
+   source = git+https://github.com/codership/galera.git#tag=release_26.4.20
source = git+https://github.com/codership/wsrep-API.git
validpgpkeys = 177F4010FE56CA3336300305F1656F24C74CD1D8
-   sha256sums = 
356c6b4baaa8c51290e8fce95bf5a050bc37cd21fcc180ff1e4b048c0eddaec9
+   sha256sums = 
f2959995651c50d218c27bd442ca4742234223608d03c53d2de15ee85096ed34
sha256sums = SKIP
 
 pkgname = galera


=
PKGBUILD
=
@@ -3,11 +3,11 @@
 # Contributor: Nico Suarez 
 
 pkgname=galera
-pkgver=26.4.19
+pkgver=26.4.20
 pkgrel=1
 pkgdesc='write set replication (WSREP) provider for MariaDB cluster'
 arch=('x86_64')
-license=('GPL2' 'custom:OpenSSL Linking Exception')
+license=('GPL-2.0-or-later' 'custom:OpenSSL Linking Exception')
 depends=('boost-libs' 'mariadb-server' 'openssl')
 makedepends=('git' 'boost' 'check' 'cmake')
 optdepends=('rsync: State Snapshot Transfers with rsync'
@@ -17,7 +17,7 @@ options=('!libtool')
 validpgpkeys=('177F4010FE56CA3336300305F1656F24C74CD1D8') # MariaDB Signing 
Key 
 source=("git+https://github.com/codership/galera.git#tag=release_${pkgver}";
 'git+https://github.com/codership/wsrep-API.git')
-sha256sums=('356c6b4baaa8c51290e8fce95bf5a050bc37cd21fcc180ff1e4b048c0eddaec9'
+sha256sums=('f2959995651c50d218c27bd442ca4742234223608d03c53d2de15ee85096ed34'
 'SKIP')
 
 prepare() {



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/galera/-/commit/21ed2814cd53eb2453837f66109c639fc689cef5

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




[Git][archlinux/packaging/packages/mariadb] Pushed new tag 11.5.2-1

2024-08-15 Thread Christian Hesse (@eworm)


Christian Hesse pushed new tag 11.5.2-1 at Arch Linux / Packaging / Packages / 
mariadb

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




[Git][archlinux/packaging/packages/mariadb-lts] Pushed new tag 11.4.3-1

2024-08-15 Thread Christian Hesse (@eworm)


Christian Hesse pushed new tag 11.4.3-1 at Arch Linux / Packaging / Packages / 
mariadb-lts

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




[Git][archlinux/packaging/packages/systemd][main] Provide /etc/cryptsetup-keys.d/

2024-08-14 Thread Christian Hesse (@eworm)


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


Commits:
7f444306 by nl6720 at 2024-08-14T15:27:16+03:00
Provide /etc/cryptsetup-keys.d/

When no key file is specified, systemd-cryptsetup uses
/etc/cryptsetup-keys.d/dmname.key.

Provide this directory so that users do not need to create it manually.

- - - - -


1 changed file:

- PKGBUILD


Changes:

=
PKGBUILD
=
@@ -285,6 +285,9 @@ package_systemd() {
 
   # overwrite the systemd-user PAM configuration with our own
   install -D -m0644 systemd-user.pam "$pkgdir"/etc/pam.d/systemd-user
+
+  # create a directory for cryptsetup keys
+  install -d -m0700 "$pkgdir"/etc/cryptsetup-keys.d
 }
 
 package_systemd-libs() {



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

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




[Git][archlinux/packaging/packages/kmod][main] some more cleanups

2024-08-14 Thread Christian Hesse (@eworm)


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


Commits:
54215ee4 by Christian Hesse at 2024-08-14T10:10:12+02:00
some more cleanups

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -4,7 +4,8 @@ pkgbase = kmod
pkgrel = 1
url = https://git.kernel.org/pub/scm/utils/kernel/kmod/kmod.git
arch = x86_64
-   license = GPL2
+   license = LGPL-2.1-or-later
+   license = GPL-2.0-or-later
checkdepends = linux-headers
checkdepends = libelf
makedepends = scdoc


=
PKGBUILD
=
@@ -6,7 +6,7 @@ pkgrel=1
 pkgdesc="Linux kernel module management tools and library"
 arch=('x86_64')
 url='https://git.kernel.org/pub/scm/utils/kernel/kmod/kmod.git'
-license=('GPL2')
+license=('LGPL-2.1-or-later' 'GPL-2.0-or-later')
 depends=('glibc' 'zlib' 'openssl' 'xz' 'zstd')
 makedepends=('scdoc')
 checkdepends=('linux-headers' 'libelf')
@@ -15,7 +15,7 @@ provides=('module-init-tools=3.16' 'libkmod.so')
 conflicts=('module-init-tools')
 replaces=('module-init-tools')
 validpgpkeys=('EAB33C9690013C733916AC839BA2A5A630CBEA53')  # Lucas DeMarchi
-source=("https://www.kernel.org/pub/linux/utils/kernel/$pkgname/$pkgname-$pkgver.tar."{xz,sign}
+source=("https://www.kernel.org/pub/linux/utils/kernel/${pkgname}/${pkgname}-${pkgver}.tar."{xz,sign}
 '0001-test-user-path.patch'
 'depmod-search.conf'
 'depmod.hook'
@@ -43,8 +43,8 @@ build() {
   cd "${pkgname}-${pkgver}"
 
   ./configure \
---sysconfdir=/etc \
---with-module-directory=/usr/lib/modules \
+--sysconfdir='/etc' \
+--with-module-directory='/usr/lib/modules' \
 --with-xz \
 --with-zlib \
 --with-zstd \
@@ -61,29 +61,29 @@ check() {
   # modules will never be loaded by tests.
 
   local kdirs=(/usr/lib/modules/*/build/Makefile)
-  if [[ ! -f ${kdirs[0]} ]]; then
+  if [[ ! -f "${kdirs[0]}" ]]; then
 printf '==> Unable to find kernel headers to build modules for tests\n' >&2
 return 1
   fi
 
-  local kver kdir=${kdirs[0]%/Makefile}
-  IFS=/ read _ _ _ kver _ <<<"$kdir"
+  local kver kdir="${kdirs[0]%/Makefile}"
+  IFS=/ read _ _ _ kver _ <<<"${kdir}"
 
-  make -C "$pkgname-$pkgver" check KDIR="$kdir" KVER="$kver"
+  make -C "${pkgname}-${pkgver}" check KDIR="${kdir}" KVER="${kver}"
 }
 
 package() {
-  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
+  make -C "${pkgname}-${pkgver}" DESTDIR="${pkgdir}" install
 
   # extra directories
-  install -dm755 "$pkgdir"/{etc,usr/lib}/{depmod,modprobe}.d
+  install -dm0755 "${pkgdir}"/{etc,usr/lib}/{depmod,modprobe}.d
 
   # install depmod.d file for search/ dir
-  install -Dm644 "$srcdir/depmod-search.conf" 
"$pkgdir/usr/lib/depmod.d/search.conf"
+  install -Dm0644 "${srcdir}/depmod-search.conf" 
"${pkgdir}/usr/lib/depmod.d/search.conf"
 
   # hook
-  install -Dm644 "$srcdir/depmod.hook" 
"$pkgdir/usr/share/libalpm/hooks/60-depmod.hook"
-  install -Dm755 "$srcdir/depmod.script" 
"$pkgdir/usr/share/libalpm/scripts/depmod"
+  install -Dm0644 "${srcdir}/depmod.hook" 
"${pkgdir}/usr/share/libalpm/hooks/60-depmod.hook"
+  install -Dm0755 "${srcdir}/depmod.script" 
"${pkgdir}/usr/share/libalpm/scripts/depmod"
 }
 
 # vim: ft=sh syn=sh et



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/kmod/-/commit/54215ee4b1e3bbd18cb054d3c98bd5f175d330f6

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




[Git][archlinux/packaging/packages/kmod][main] upgpkg: 33-1: new upstream release

2024-08-14 Thread Christian Hesse (@eworm)


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


Commits:
e35150a3 by Christian Hesse at 2024-08-14T10:01:16+02:00
upgpkg: 33-1: new upstream release

- - - - -


3 changed files:

- .SRCINFO
- + 0001-test-user-path.patch
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,12 +1,13 @@
 pkgbase = kmod
pkgdesc = Linux kernel module management tools and library
-   pkgver = 32
+   pkgver = 33
pkgrel = 1
url = https://git.kernel.org/pub/scm/utils/kernel/kmod/kmod.git
arch = x86_64
license = GPL2
checkdepends = linux-headers
checkdepends = libelf
+   makedepends = scdoc
depends = glibc
depends = zlib
depends = openssl
@@ -17,19 +18,22 @@ pkgbase = kmod
conflicts = module-init-tools
replaces = module-init-tools
options = strip
-   source = 
https://www.kernel.org/pub/linux/utils/kernel/kmod/kmod-32.tar.xz
-   source = 
https://www.kernel.org/pub/linux/utils/kernel/kmod/kmod-32.tar.sign
+   source = 
https://www.kernel.org/pub/linux/utils/kernel/kmod/kmod-33.tar.xz
+   source = 
https://www.kernel.org/pub/linux/utils/kernel/kmod/kmod-33.tar.sign
+   source = 0001-test-user-path.patch
source = depmod-search.conf
source = depmod.hook
source = depmod.script
validpgpkeys = EAB33C9690013C733916AC839BA2A5A630CBEA53
-   md5sums = 1046fda48766fae905f83150d12eec78
+   md5sums = c451c4aa61521adbe8af147f498046f8
md5sums = SKIP
+   md5sums = 0360aff69475ebf35b1e85eac2602708
md5sums = dd62cbf62bd8f212f51ef8c43bec9a77
md5sums = e179ace75721e92b04b2e145b69dab29
md5sums = b00253ca0d4ebfb2414e4596597bdebd
-   sha256sums = 
630ed0d92275a88cb9a7bf68f5700e911fdadaf02e051cf2e4680ff8480bd492
+   sha256sums = 
dc768b3155172091f56dc69430b5481f2d76ecd9ccb54ead8c2540dbcf5ea9bc
sha256sums = SKIP
+   sha256sums = 
1297d45ba9cabb88edecebdbf4431b7b384bbab976d117d5ef1f44988a04895d
sha256sums = 
1a92bfeae870f61ce814577e69d2a147a9c0caf6aed1131243e4179241fcc4a8
sha256sums = 
c11c2a0f66ea405493e8617689ca10818dc81dd1dddc19bdb220c8b2917119c1
sha256sums = 
d2cd04a09feba30e1376144a8110ec7521892acb0940c3c4ba459aeecf0452ed


=
0001-test-user-path.patch
=
@@ -0,0 +1,13 @@
+diff --git a/testsuite/test-user.c b/testsuite/test-user.c
+index 97a4747..a7ba90e 100644
+--- a/testsuite/test-user.c
 b/testsuite/test-user.c
+@@ -16,7 +16,7 @@
+ #include "testsuite.h"
+ 
+ #define TEST_USER_ROOTFS TESTSUITE_ROOTFS "test-user/"
+-#define TEST_USER_KERNEL_DIR TEST_USER_ROOTFS "lib/modules/4.4.4/"
++#define TEST_USER_KERNEL_DIR TEST_USER_ROOTFS "usr/lib/modules/4.4.4/"
+ 
+ static const char *const test_user_config_paths[] = {
+   TEST_USER_ROOTFS "etc/modprobe.d",


=
PKGBUILD
=
@@ -1,13 +1,14 @@
 # Maintainer: Dave Reisner 
 
 pkgname=kmod
-pkgver=32
+pkgver=33
 pkgrel=1
 pkgdesc="Linux kernel module management tools and library"
 arch=('x86_64')
 url='https://git.kernel.org/pub/scm/utils/kernel/kmod/kmod.git'
 license=('GPL2')
 depends=('glibc' 'zlib' 'openssl' 'xz' 'zstd')
+makedepends=('scdoc')
 checkdepends=('linux-headers' 'libelf')
 options=('strip')
 provides=('module-init-tools=3.16' 'libkmod.so')
@@ -15,22 +16,31 @@ conflicts=('module-init-tools')
 replaces=('module-init-tools')
 validpgpkeys=('EAB33C9690013C733916AC839BA2A5A630CBEA53')  # Lucas DeMarchi
 
source=("https://www.kernel.org/pub/linux/utils/kernel/$pkgname/$pkgname-$pkgver.tar."{xz,sign}
+'0001-test-user-path.patch'
 'depmod-search.conf'
 'depmod.hook'
 'depmod.script')
-md5sums=('1046fda48766fae905f83150d12eec78'
+md5sums=('c451c4aa61521adbe8af147f498046f8'
  'SKIP'
+ '0360aff69475ebf35b1e85eac2602708'
  'dd62cbf62bd8f212f51ef8c43bec9a77'
  'e179ace75721e92b04b2e145b69dab29'
  'b00253ca0d4ebfb2414e4596597bdebd')
-sha256sums=('630ed0d92275a88cb9a7bf68f5700e911fdadaf02e051cf2e4680ff8480bd492'
+sha256sums=('dc768b3155172091f56dc69430b5481f2d76ecd9ccb54ead8c2540dbcf5ea9bc'
 'SKIP'
+'1297d45ba9cabb88edecebdbf4431b7b384bbab976d117d5ef1f44988a04895d'
 '1a92bfeae870f61ce814577e69d2a147a9c0caf6aed1131243e4179241fcc4a8'
 'c11c2a0f66ea405493e8617689ca10818dc81dd1d

[Git][archlinux/packaging/packages/kmod] Pushed new tag 33-1

2024-08-14 Thread Christian Hesse (@eworm)


Christian Hesse pushed new tag 33-1 at Arch Linux / Packaging / Packages / kmod

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




[Git][archlinux/packaging/packages/fakeroot] Pushed new tag 1.35.1-1

2024-08-14 Thread Christian Hesse (@eworm)


Christian Hesse pushed new tag 1.35.1-1 at Arch Linux / Packaging / Packages / 
fakeroot

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




[Git][archlinux/packaging/packages/lib32-fakeroot] Pushed new tag 1.35.1-1

2024-08-14 Thread Christian Hesse (@eworm)


Christian Hesse pushed new tag 1.35.1-1 at Arch Linux / Packaging / Packages / 
lib32-fakeroot

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




[Git][archlinux/packaging/packages/mariadb-lts][main] depend on coreutils

2024-08-08 Thread Christian Hesse (@eworm)


Christian Hesse pushed to branch main at Arch Linux / Packaging / Packages / 
mariadb-lts


Commits:
04323a1e by Christian Hesse at 2024-08-09T01:01:22+02:00
depend on coreutils

... as the install script depends on it.

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -77,10 +77,10 @@ pkgname = mariadb-lts
install = mariadb.install
depends = mariadb-lts-clients=11.2.5
depends = bzip2
+   depends = coreutils
depends = libxml2
depends = lz4
depends = systemd-libs
-   depends = libxml2
depends = zstd
optdepends = cracklib: for cracklib plugin
optdepends = curl: for ha_s3 plugin


=
PKGBUILD
=
@@ -194,7 +194,8 @@ package_mariadb-lts() {
   'etc/my.cnf.d/spider.cnf'
   'etc/security/user_map.conf')
   install=mariadb.install
-  depends=("mariadb-lts-clients=${pkgver}" 'bzip2' 'libxml2' 'lz4' 
'systemd-libs' 'libxml2' 'zstd')
+  depends=("mariadb-lts-clients=${pkgver}" 'bzip2' 'coreutils' 'libxml2' 'lz4'
+   'systemd-libs' 'zstd')
   optdepends=('cracklib: for cracklib plugin'
   'curl: for ha_s3 plugin'
   'galera: for MariaDB cluster with Galera WSREP'



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/mariadb-lts/-/commit/04323a1e976c8585fa228511e312bda838734eb8

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




[Git][archlinux/packaging/packages/mariadb][main] depend on coreutils

2024-08-08 Thread Christian Hesse (@eworm)


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


Commits:
5c372bed by Christian Hesse at 2024-08-09T01:00:54+02:00
depend on coreutils

... as the install script depends on it.

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -74,10 +74,10 @@ pkgname = mariadb
install = mariadb.install
depends = mariadb-clients=11.4.3
depends = bzip2
+   depends = coreutils
depends = libxml2
depends = lz4
depends = systemd-libs
-   depends = libxml2
depends = zstd
optdepends = cracklib: for cracklib plugin
optdepends = curl: for ha_s3 plugin


=
PKGBUILD
=
@@ -190,7 +190,8 @@ package_mariadb() {
   'etc/my.cnf.d/spider.cnf'
   'etc/security/user_map.conf')
   install=mariadb.install
-  depends=("mariadb-clients=${pkgver}" 'bzip2' 'libxml2' 'lz4' 'systemd-libs' 
'libxml2' 'zstd')
+  depends=("mariadb-clients=${pkgver}" 'bzip2' 'coreutils' 'libxml2' 'lz4'
+   'systemd-libs' 'zstd')
   optdepends=('cracklib: for cracklib plugin'
   'curl: for ha_s3 plugin'
   'galera: for MariaDB cluster with Galera WSREP'



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

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




[Git][archlinux/packaging/packages/mariadb][main] 2 commits: use indented here doc for messages in install script

2024-08-08 Thread Christian Hesse (@eworm)


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


Commits:
10f0dbfa by Christian Hesse at 2024-06-11T11:15:38+02:00
use indented here doc for messages in install script

- - - - -
55d7aff7 by Christian Hesse at 2024-08-09T00:42:44+02:00
upgpkg: 11.4.3-1: new upstream release

- - - - -


3 changed files:

- .SRCINFO
- PKGBUILD
- mariadb.install


Changes:

=
.SRCINFO
=
@@ -1,6 +1,6 @@
 pkgbase = mariadb
pkgdesc = Fast SQL database server, derived from MySQL
-   pkgver = 11.4.2
+   pkgver = 11.4.3
pkgrel = 1
url = https://mariadb.org/
arch = x86_64
@@ -24,7 +24,7 @@ pkgbase = mariadb
makedepends = zlib
makedepends = zstd
makedepends = xz
-   source = 
mariadb::git+https://github.com/MariaDB/server.git#tag=mariadb-11.4.2?signed
+   source = 
mariadb::git+https://github.com/MariaDB/server.git#tag=mariadb-11.4.3?signed
source = git+https://github.com/MariaDB/mariadb-connector-c.git
source = git+https://github.com/facebook/rocksdb.git
source = git+https://github.com/codership/wsrep-lib.git
@@ -33,7 +33,7 @@ pkgbase = mariadb
source = 
git+https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
source = 0001-arch-specific.patch
validpgpkeys = 177F4010FE56CA3336300305F1656F24C74CD1D8
-   sha256sums = 
da69b2dee70ebf567cb5ff241a07bac2d45076ddf7465da85d1c17589f4b886d
+   sha256sums = 
3f182bc2011b7419df613308cb969374389b9ca8aa81539c515e3ba9c8695d07
sha256sums = SKIP
sha256sums = SKIP
sha256sums = SKIP
@@ -63,16 +63,16 @@ pkgname = mariadb-libs
 
 pkgname = mariadb-clients
pkgdesc = MariaDB client tools
-   depends = mariadb-libs=11.4.2
+   depends = mariadb-libs=11.4.3
depends = jemalloc
depends = ncurses
-   provides = mysql-clients=11.4.2
+   provides = mysql-clients=11.4.3
conflicts = mysql-clients
 
 pkgname = mariadb
pkgdesc = Fast SQL database server, derived from MySQL
install = mariadb.install
-   depends = mariadb-clients=11.4.2
+   depends = mariadb-clients=11.4.3
depends = bzip2
depends = libxml2
depends = lz4
@@ -86,8 +86,8 @@ pkgname = mariadb
optdepends = perl-dbd-mariadb: for mariadb-hotcopy, 
mariadb-convert-table-format and mariadb-setpermission
optdepends = python-mysqlclient: for myrocks_hotbackup
optdepends = xz: lzma provider
-   provides = mariadb-server=11.4.2
-   provides = mysql=11.4.2
+   provides = mariadb-server=11.4.3
+   provides = mysql=11.4.3
conflicts = mysql
options = emptydirs
backup = etc/my.cnf


=
PKGBUILD
=
@@ -10,7 +10,7 @@
 pkgbase=mariadb
 pkgname=('mariadb-libs' 'mariadb-clients' 'mariadb' 'mytop')
 pkgdesc='Fast SQL database server, derived from MySQL'
-pkgver=11.4.2
+pkgver=11.4.3
 pkgrel=1
 arch=('x86_64')
 license=('GPL')
@@ -26,7 +26,7 @@ 
source=("mariadb::git+https://github.com/MariaDB/server.git#tag=mariadb-${pkgver
 'git+https://github.com/mariadb-corporation/libmarias3.git'
 
'git+https://github.com/mariadb-corporation/mariadb-columnstore-engine.git'
 '0001-arch-specific.patch')
-sha256sums=('da69b2dee70ebf567cb5ff241a07bac2d45076ddf7465da85d1c17589f4b886d'
+sha256sums=('3f182bc2011b7419df613308cb969374389b9ca8aa81539c515e3ba9c8695d07'
 'SKIP'
 'SKIP'
 'SKIP'


=
mariadb.install
=
@@ -1,15 +1,19 @@
 #!/bin/sh
 
 post_install() {
-  echo ":: You need to initialize the MariaDB data directory prior to starting"
-  echo "   the service. This can be done with mariadb-install-db command, 
e.g.:"
-  echo " # mariadb-install-db --user=mysql --basedir=/usr 
--datadir=/var/lib/mysql"
+   cat <<-EOM
+   :: You need to initialize the MariaDB data directory prior to starting
+  the service. This can be done with mariadb-install-db command, e.g.:
+# mariadb-install-db --user=mysql --basedir=/usr 
--datadir=/var/lib/mysql
+   EOM
 }
 
 post_upgrade() {
   # show for feature release: 10.1 -> 10.2 -> 10.3 -> ...
   if [ $(vercmp "${1%.*-*}" "${2%.*-*}") -ne 0 ]; then 
-echo ":: MariaDB was updated to a new feature release. To update the data 
run:"
-echo " # systemctl restart mariadb.service && mariadb-upgrade -u root 
-p"
+   cat <<-EOM
+   :: MariaDB was updated to a new feature release. To update the data run:
+# systemctl res

[Git][archlinux/packaging/packages/mariadb] Pushed new tag 11.4.3-1

2024-08-08 Thread Christian Hesse (@eworm)


Christian Hesse pushed new tag 11.4.3-1 at Arch Linux / Packaging / Packages / 
mariadb

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




[Git][archlinux/packaging/packages/mariadb-lts] Pushed new tag 11.2.5-1

2024-08-08 Thread Christian Hesse (@eworm)


Christian Hesse pushed new tag 11.2.5-1 at Arch Linux / Packaging / Packages / 
mariadb-lts

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




[Git][archlinux/packaging/packages/libssh] Pushed new tag 0.11.0-1

2024-08-08 Thread Christian Hesse (@eworm)


Christian Hesse pushed new tag 0.11.0-1 at Arch Linux / Packaging / Packages / 
libssh

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




[Git][archlinux/packaging/packages/libheif] Pushed new tag 1.18.2-1

2024-08-07 Thread Christian Hesse (@eworm)


Christian Hesse pushed new tag 1.18.2-1 at Arch Linux / Packaging / Packages / 
libheif

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




[Git][archlinux/packaging/packages/libheif][main] upgpkg: 1.18.2-1: new upstream release

2024-08-07 Thread Christian Hesse (@eworm)


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


Commits:
94ff5372 by Christian Hesse at 2024-08-07T22:59:36+02:00
upgpkg: 1.18.2-1: new upstream release

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,6 +1,6 @@
 pkgbase = libheif
pkgdesc = An HEIF and AVIF file format decoder and encoder
-   pkgver = 1.18.1
+   pkgver = 1.18.2
pkgrel = 1
url = https://github.com/strukturag/libheif
arch = x86_64
@@ -26,7 +26,7 @@ pkgbase = libheif
optdepends = rav1e: rav1e encoder
optdepends = svt-av1: svt-av1 encoder
provides = libheif.so
-   source = 
https://github.com/strukturag/libheif/releases/download/v1.18.1/libheif-1.18.1.tar.gz
-   sha256sums = 
8702564b0f288707ea72b260b3bf4ba9bf7abfa7dac01353def3a86acd6bbb76
+   source = 
https://github.com/strukturag/libheif/releases/download/v1.18.2/libheif-1.18.2.tar.gz
+   sha256sums = 
c4002a622bec9f519f29d84bfdc6024e33fd67953a5fb4dc2c2f11f67d5e45bf
 
 pkgname = libheif


=
PKGBUILD
=
@@ -2,7 +2,7 @@
 # Contributor: Adam Fontenot 
 
 pkgname=libheif
-pkgver=1.18.1
+pkgver=1.18.2
 pkgrel=1
 pkgdesc='An HEIF and AVIF file format decoder and encoder'
 arch=(x86_64)
@@ -32,7 +32,7 @@ optdepends=('libjpeg: for heif-convert and heif-enc'
 source=(
   
https://github.com/strukturag/libheif/releases/download/v$pkgver/libheif-$pkgver.tar.gz
 )
-sha256sums=('8702564b0f288707ea72b260b3bf4ba9bf7abfa7dac01353def3a86acd6bbb76')
+sha256sums=('c4002a622bec9f519f29d84bfdc6024e33fd67953a5fb4dc2c2f11f67d5e45bf')
 
 build() {
   cmake -B build -S $pkgname-$pkgver \



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/libheif/-/commit/94ff5372cb611032e7155cb4b2a278aba853cd21

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




[Git][archlinux/packaging/packages/thin-provisioning-tools][main] upgpkg: 1.1.0-1: build from git, new upstream release

2024-08-07 Thread Christian Hesse (@eworm)


Christian Hesse pushed to branch main at Arch Linux / Packaging / Packages / 
thin-provisioning-tools


Commits:
8e45a538 by Christian Hesse at 2024-08-07T13:20:48+02:00
upgpkg: 1.1.0-1: build from git, new upstream release

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,13 +1,17 @@
 pkgbase = thin-provisioning-tools
pkgdesc = Suite of tools for manipulating the metadata of the dm-thin 
device-mapper target
-   pkgver = 1.0.13
+   pkgver = 1.1.0
pkgrel = 1
url = https://github.com/jthornber/thin-provisioning-tools
arch = x86_64
license = GPL3
+   makedepends = git
makedepends = cargo
+   makedepends = clang
+   makedepends = device-mapper
depends = gcc-libs
-   source = 
thin-provisioning-tools-1.0.13.tar.gz::https://github.com/jthornber/thin-provisioning-tools/archive/v1.0.13.tar.gz
-   sha256sums = 
48444caefd00c23f5240dd01f8b2a51cfded952f078b2a5318929137e00fbd3f
+   depends = systemd-libs
+   source = 
git+https://github.com/jthornber/thin-provisioning-tools#tag=v1.1.0
+   sha256sums = 
652db5ebaa80e9b44ba62ba327aba7e237b12de37e130fee7c3f4fd817e1f103
 
 pkgname = thin-provisioning-tools


=
PKGBUILD
=
@@ -2,25 +2,25 @@
 # Contributor: Jason Hall 
 
 pkgname=thin-provisioning-tools
-pkgver=1.0.13
+pkgver=1.1.0
 pkgrel=1
 pkgdesc='Suite of tools for manipulating the metadata of the dm-thin 
device-mapper target'
 arch=('x86_64')
 url='https://github.com/jthornber/thin-provisioning-tools'
 license=('GPL3')
-depends=('gcc-libs')
-makedepends=('cargo')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/jthornber/${pkgname}/archive/v${pkgver}.tar.gz";)
-sha256sums=('48444caefd00c23f5240dd01f8b2a51cfded952f078b2a5318929137e00fbd3f')
+depends=('gcc-libs' 'systemd-libs')
+makedepends=('git' 'cargo' 'clang' 'device-mapper')
+source=("git+https://github.com/jthornber/thin-provisioning-tools#tag=v${pkgver}";)
+sha256sums=('652db5ebaa80e9b44ba62ba327aba7e237b12de37e130fee7c3f4fd817e1f103')
 
 build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
+  cd "${srcdir}/${pkgname}"
 
   cargo build --release
 }
 
 package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
+  cd "${srcdir}/${pkgname}"
 
   make \
 DESTDIR="${pkgdir}"/usr \



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/thin-provisioning-tools/-/commit/8e45a5388d7ae7a2301dc2874be4a8be78e0f179

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/thin-provisioning-tools/-/commit/8e45a5388d7ae7a2301dc2874be4a8be78e0f179
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/thin-provisioning-tools] Pushed new tag 1.1.0-1

2024-08-07 Thread Christian Hesse (@eworm)


Christian Hesse pushed new tag 1.1.0-1 at Arch Linux / Packaging / Packages / 
thin-provisioning-tools

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




[Git][archlinux/packaging/packages/python-pyscard] Pushed new tag 2.0.10-1

2024-08-05 Thread Christian Hesse (@eworm)


Christian Hesse pushed new tag 2.0.10-1 at Arch Linux / Packaging / Packages / 
python-pyscard

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




[Git][archlinux/packaging/packages/python-pyscard][main] upgpkg: 2.0.10-1: new upstream release

2024-08-05 Thread Christian Hesse (@eworm)


Christian Hesse pushed to branch main at Arch Linux / Packaging / Packages / 
python-pyscard


Commits:
53bfb60d by Christian Hesse at 2024-08-05T21:52:36+02:00
upgpkg: 2.0.10-1: new upstream release

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = python-pyscard
pkgdesc = Framework for building smart card aware applications in Python
-   pkgver = 2.0.8
-   pkgrel = 2
+   pkgver = 2.0.10
+   pkgrel = 1
url = https://pyscard.sourceforge.io/
arch = x86_64
license = LGPL
@@ -9,11 +9,11 @@ pkgbase = python-pyscard
makedepends = python-setuptools
depends = python
depends = pcsclite
-   source = 
https://downloads.sourceforge.net/project/pyscard/pyscard/pyscard%202.0.8/pyscard-2.0.8.tar.gz
-   source = 
https://downloads.sourceforge.net/project/pyscard/pyscard/pyscard%202.0.8/pyscard-2.0.8.tar.gz.asc
+   source = 
https://downloads.sourceforge.net/project/pyscard/pyscard/pyscard%202.0.10/pyscard-2.0.10.tar.gz
+   source = 
https://downloads.sourceforge.net/project/pyscard/pyscard/pyscard%202.0.10/pyscard-2.0.10.tar.gz.asc
validpgpkeys = 535E3696356979F4932CB7443F4A8A8FE07F1CF9
validpgpkeys = F5E11B9FFE911146F41D953D78A1B4DFE8F9C57E
-   sha256sums = 
2eb16ee0e89ab27759fcb36f032c40a5774ed5926c0e03309837bdeb563a6032
+   sha256sums = 
4b9b865df03b29522e80ebae17790a8b3a096a9d885cda19363b44b1a6bf5c1c
sha256sums = SKIP
 
 pkgname = python-pyscard


=
PKGBUILD
=
@@ -3,8 +3,8 @@
 
 pkgname=python-pyscard
 _pyname=pyscard
-pkgver=2.0.8
-pkgrel=2
+pkgver=2.0.10
+pkgrel=1
 pkgdesc='Framework for building smart card aware applications in Python'
 arch=('x86_64')
 url='https://pyscard.sourceforge.io/'
@@ -14,7 +14,7 @@ makedepends=('swig' 'python-setuptools')
 validpgpkeys=('535E3696356979F4932CB7443F4A8A8FE07F1CF9'  # Ludovic Rousseau 

   'F5E11B9FFE911146F41D953D78A1B4DFE8F9C57E') # Ludovic Rousseau 

 
source=("https://downloads.sourceforge.net/project/pyscard/pyscard/pyscard%20${pkgver}/pyscard-${pkgver}.tar.gz"{,.asc})
-sha256sums=('2eb16ee0e89ab27759fcb36f032c40a5774ed5926c0e03309837bdeb563a6032'
+sha256sums=('4b9b865df03b29522e80ebae17790a8b3a096a9d885cda19363b44b1a6bf5c1c'
 'SKIP')
 
 package() {



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

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




[Git][archlinux/packaging/packages/cgit] Pushed new tag 1.2.3.r70.g09d24d7-1

2024-08-05 Thread Christian Hesse (@eworm)


Christian Hesse pushed new tag 1.2.3.r70.g09d24d7-1 at Arch Linux / Packaging / 
Packages / cgit

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




[Git][archlinux/packaging/packages/cgit-aurweb] Pushed new tag 1.2.3.r70.g09d24d7-1

2024-08-05 Thread Christian Hesse (@eworm)


Christian Hesse pushed new tag 1.2.3.r70.g09d24d7-1 at Arch Linux / Packaging / 
Packages / cgit-aurweb

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/cgit-aurweb/-/tree/1.2.3.r70.g09d24d7-1
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/cryptsetup][main] upgpkg: 2.7.4-1: new upstream release

2024-07-30 Thread Christian Hesse (@eworm)


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


Commits:
5666bcbd by Christian Hesse at 2024-07-30T21:03:33+02:00
upgpkg: 2.7.4-1: new upstream release

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,6 +1,6 @@
 pkgbase = cryptsetup
pkgdesc = Userspace setup tool for transparent encryption of block 
devices using dm-crypt
-   pkgver = 2.7.3
+   pkgver = 2.7.4
pkgrel = 1
url = https://gitlab.com/cryptsetup/cryptsetup/
arch = x86_64
@@ -20,10 +20,10 @@ pkgbase = cryptsetup
provides = libcryptsetup.so
conflicts = mkinitcpio<38-1
options = !emptydirs
-   source = 
https://www.kernel.org/pub/linux/utils/cryptsetup/v2.7/cryptsetup-2.7.3.tar.xz
-   source = 
https://www.kernel.org/pub/linux/utils/cryptsetup/v2.7/cryptsetup-2.7.3.tar.sign
+   source = 
https://www.kernel.org/pub/linux/utils/cryptsetup/v2.7/cryptsetup-2.7.4.tar.xz
+   source = 
https://www.kernel.org/pub/linux/utils/cryptsetup/v2.7/cryptsetup-2.7.4.tar.sign
validpgpkeys = 2A2918243FDE46648D0686F9D9B0577BD93E98FC
-   sha256sums = 
b772ae4f6df0cee7200b28cea960e4daaff2a203d2fd502beab3c1317b07a456
+   sha256sums = 
dce29903a58f7b774fe61191e7e6de955de0f40d9e27b0028ffcf3438c0e9480
sha256sums = SKIP
 
 pkgname = cryptsetup


=
PKGBUILD
=
@@ -2,7 +2,7 @@
 # Contributor: Thomas Bächler 
 
 pkgname=cryptsetup
-pkgver=2.7.3
+pkgver=2.7.4
 pkgrel=1
 pkgdesc='Userspace setup tool for transparent encryption of block devices 
using dm-crypt'
 arch=(x86_64)
@@ -16,7 +16,7 @@ provides=('libcryptsetup.so')
 options=('!emptydirs')
 validpgpkeys=('2A2918243FDE46648D0686F9D9B0577BD93E98FC') # Milan Broz 

 
source=("https://www.kernel.org/pub/linux/utils/cryptsetup/v${pkgver%.*}/${pkgname}-${pkgver}.tar."{xz,sign})
-sha256sums=('b772ae4f6df0cee7200b28cea960e4daaff2a203d2fd502beab3c1317b07a456'
+sha256sums=('dce29903a58f7b774fe61191e7e6de955de0f40d9e27b0028ffcf3438c0e9480'
 'SKIP')
 
 build() {



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/cryptsetup/-/commit/5666bcbd027e1940de408597ed9ea191331d05bd

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




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

2024-07-30 Thread Christian Hesse (@eworm)


Christian Hesse pushed new tag 2.7.4-1 at Arch Linux / Packaging / Packages / 
cryptsetup

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




[Git][archlinux/packaging/packages/cgit-aurweb] Pushed new tag 1.2.3.r54.g00ecfaa-15

2024-07-29 Thread Christian Hesse (@eworm)


Christian Hesse pushed new tag 1.2.3.r54.g00ecfaa-15 at Arch Linux / Packaging 
/ Packages / cgit-aurweb

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/cgit-aurweb/-/tree/1.2.3.r54.g00ecfaa-15
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/cgit] Pushed new tag 1.2.3.r54.g00ecfaa-15

2024-07-29 Thread Christian Hesse (@eworm)


Christian Hesse pushed new tag 1.2.3.r54.g00ecfaa-15 at Arch Linux / Packaging 
/ Packages / cgit

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/cgit/-/tree/1.2.3.r54.g00ecfaa-15
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/links][main] upgpkg: 2.30-1: new upstream release

2024-07-29 Thread Christian Hesse (@eworm)


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


Commits:
6544595d by Christian Hesse at 2024-07-29T22:42:21+02:00
upgpkg: 2.30-1: new upstream release

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = links
pkgdesc = A text WWW browser, similar to Lynx
-   pkgver = 2.29
-   pkgrel = 2
+   pkgver = 2.30
+   pkgrel = 1
url = http://links.twibright.com/
arch = x86_64
license = GPL
@@ -24,9 +24,9 @@ pkgbase = links
optdepends = libtiff: for using xlinks
optdepends = libpng: for using xlinks
optdepends = librsvg: for using xlinks
-   source = http://links.twibright.com/download/links-2.29.tar.bz2
+   source = http://links.twibright.com/download/links-2.30.tar.bz2
source = links.desktop
-   sha256sums = 
22aa96c0b38e1a6f8f7ed9d7a4167a47fc37246097759ef6059ecf8f9ead7998
+   sha256sums = 
c4631c6b5a11527cdc3cb7872fc23b7f2b25c2b021d596be410dadb40315f166
sha256sums = 
f96bf2638e9c309bfdb857bd62a732b980231b3a683cd585ec872b249c2c1b19
 
 pkgname = links


=
PKGBUILD
=
@@ -2,8 +2,8 @@
 # Contributor: Eric Bélanger 
 
 pkgname=links
-pkgver=2.29
-pkgrel=2
+pkgver=2.30
+pkgrel=1
 pkgdesc='A text WWW browser, similar to Lynx'
 arch=('x86_64')
 url='http://links.twibright.com/'
@@ -17,7 +17,7 @@ optdepends=('libx11: for using xlinks'
'librsvg: for using xlinks')
 source=("http://links.twibright.com/download/${pkgname}-${pkgver}.tar.bz2";
 'links.desktop')
-sha256sums=('22aa96c0b38e1a6f8f7ed9d7a4167a47fc37246097759ef6059ecf8f9ead7998'
+sha256sums=('c4631c6b5a11527cdc3cb7872fc23b7f2b25c2b021d596be410dadb40315f166'
 'f96bf2638e9c309bfdb857bd62a732b980231b3a683cd585ec872b249c2c1b19')
 
 _configure_options=(



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/links/-/commit/6544595d8fe511f59e7393cc89db074b9c97cde8

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




[Git][archlinux/packaging/packages/links] Pushed new tag 2.30-1

2024-07-29 Thread Christian Hesse (@eworm)


Christian Hesse pushed new tag 2.30-1 at Arch Linux / Packaging / Packages / 
links

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




[Git][archlinux/packaging/packages/git][main] upgpkg: 2.46.0-1: new upstream release

2024-07-29 Thread Christian Hesse (@eworm)


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


Commits:
998ec09d by Christian Hesse at 2024-07-29T22:42:13+02:00
upgpkg: 2.46.0-1: new upstream release

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,6 +1,6 @@
 pkgbase = git
pkgdesc = the fast distributed version control system
-   pkgver = 2.45.2
+   pkgver = 2.46.0
pkgrel = 1
url = https://git-scm.com/
install = git.install
@@ -34,13 +34,13 @@ pkgbase = git
optdepends = subversion: git svn
optdepends = org.freedesktop.secrets: keyring credential helper
optdepends = libsecret: libsecret credential helper
-   source = https://www.kernel.org/pub/software/scm/git/git-2.45.2.tar.xz
-   source = https://www.kernel.org/pub/software/scm/git/git-2.45.2.tar.sign
+   source = https://www.kernel.org/pub/software/scm/git/git-2.46.0.tar.xz
+   source = https://www.kernel.org/pub/software/scm/git/git-2.46.0.tar.sign
source = git-daemon@.service
source = git-daemon.socket
source = git-sysusers.conf
validpgpkeys = 96E07AF25771955980DAD10020D04E5A713660A7
-   sha256sums = 
51bfe87eb1c02fed1484051875365eeab229831d30d0cec5d89a14f9e40e9adb
+   sha256sums = 
7f123462a28b7ca3ebe2607485f7168554c2b10dfc155c7ec46300666ac27f95
sha256sums = SKIP
sha256sums = 
14c0b67cfe116b430645c19d8c4759419657e6809dfa28f438c33a005245ad91
sha256sums = 
ac4c90d62c44926e6d30d18d97767efc901076d4e0283ed812a349aece72f203


=
PKGBUILD
=
@@ -2,7 +2,7 @@
 # Maintainer: Dan McGee 
 
 pkgname=git
-pkgver=2.45.2
+pkgver=2.46.0
 pkgrel=1
 pkgdesc='the fast distributed version control system'
 arch=('x86_64')
@@ -32,7 +32,7 @@ 
source=("https://www.kernel.org/pub/software/scm/git/git-$pkgver.tar."{xz,sign}
 'git-daemon@.service'
 'git-daemon.socket'
 'git-sysusers.conf')
-sha256sums=('51bfe87eb1c02fed1484051875365eeab229831d30d0cec5d89a14f9e40e9adb'
+sha256sums=('7f123462a28b7ca3ebe2607485f7168554c2b10dfc155c7ec46300666ac27f95'
 'SKIP'
 '14c0b67cfe116b430645c19d8c4759419657e6809dfa28f438c33a005245ad91'
 'ac4c90d62c44926e6d30d18d97767efc901076d4e0283ed812a349aece72f203'



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/git/-/commit/998ec09d3b55c5ca88ad3d97c80993131c76c4f4

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




[Git][archlinux/packaging/packages/git] Pushed new tag 2.46.0-1

2024-07-29 Thread Christian Hesse (@eworm)


Christian Hesse pushed new tag 2.46.0-1 at Arch Linux / Packaging / Packages / 
git

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




[Git][archlinux/packaging/packages/cgit-aurweb] Pushed new tag 1.2.3.r54.g00ecfaa-14

2024-07-25 Thread Christian Hesse (@eworm)


Christian Hesse pushed new tag 1.2.3.r54.g00ecfaa-14 at Arch Linux / Packaging 
/ Packages / cgit-aurweb

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/cgit-aurweb/-/tree/1.2.3.r54.g00ecfaa-14
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/cgit] Pushed new tag 1.2.3.r54.g00ecfaa-14

2024-07-25 Thread Christian Hesse (@eworm)


Christian Hesse pushed new tag 1.2.3.r54.g00ecfaa-14 at Arch Linux / Packaging 
/ Packages / cgit

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/cgit/-/tree/1.2.3.r54.g00ecfaa-14
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/tp_smapi-lts][main] 2 commits: compress with zstd

2024-07-25 Thread Christian Hesse (@eworm)


Christian Hesse pushed to branch main at Arch Linux / Packaging / Packages / 
tp_smapi-lts


Commits:
67fbf901 by Christian Hesse at 2024-07-25T10:27:01+02:00
compress with zstd

- - - - -
7d7abc14 by Christian Hesse at 2024-07-25T10:29:50+02:00
upgpkg: 0.44-44: rebuild for linux-lts 6.6.42-1

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = tp_smapi-lts
pkgdesc = Modules for ThinkPad's SMAPI functionality
pkgver = 0.44
-   pkgrel = 43
+   pkgrel = 44
url = https://github.com/evgeni/tp_smapi
arch = x86_64
license = GPL-2.0-only


=
PKGBUILD
=
@@ -9,7 +9,7 @@
 
 pkgname=tp_smapi-lts
 pkgver=0.44
-pkgrel=43
+pkgrel=44
 pkgdesc="Modules for ThinkPad's SMAPI functionality"
 arch=('x86_64')
 url='https://github.com/evgeni/tp_smapi'
@@ -43,7 +43,7 @@ package() {
   find . -name "*.ko" -exec install -Dt "$pkgdir$extradir" {} +
 
   # compress kernel modules
-  find "$pkgdir" -name "*.ko" -exec xz {} +
+  find "$pkgdir" -name "*.ko" -exec zstd --rm -19 {} +
 
   # load module on startup
   echo tp_smapi | install -Dm644 /dev/stdin 
"$pkgdir/usr/lib/modules-load.d/$pkgname.conf"



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/tp_smapi-lts/-/compare/0a04d8e94c432c492949cb7af51a40ee32086ddd...7d7abc14eeb0d25b2f5b3e7b235b69e6ff1baa0c

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/tp_smapi-lts/-/compare/0a04d8e94c432c492949cb7af51a40ee32086ddd...7d7abc14eeb0d25b2f5b3e7b235b69e6ff1baa0c
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/tp_smapi-lts] Pushed new tag 0.44-44

2024-07-25 Thread Christian Hesse (@eworm)


Christian Hesse pushed new tag 0.44-44 at Arch Linux / Packaging / Packages / 
tp_smapi-lts

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/tp_smapi-lts/-/tree/0.44-44
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/r8168-lts][main] 2 commits: compress with zstd

2024-07-25 Thread Christian Hesse (@eworm)


Christian Hesse pushed to branch main at Arch Linux / Packaging / Packages / 
r8168-lts


Commits:
f1a8c182 by Christian Hesse at 2024-07-25T10:27:35+02:00
compress with zstd

- - - - -
dac98cae by Christian Hesse at 2024-07-25T10:29:49+02:00
upgpkg: 8.053.00-20: rebuild for linux-lts 6.6.42-1

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = r8168-lts
pkgdesc = A kernel module for Realtek 8168 network cards for linux-lts
pkgver = 8.053.00
-   pkgrel = 19
+   pkgrel = 20
url = http://www.realtek.com.tw
arch = x86_64
license = GPL-2.0-only


=
PKGBUILD
=
@@ -2,7 +2,7 @@
 
 pkgname=r8168-lts
 pkgver=8.053.00
-pkgrel=19
+pkgrel=20
 pkgdesc="A kernel module for Realtek 8168 network cards for linux-lts"
 url="http://www.realtek.com.tw";
 license=("GPL-2.0-only")
@@ -35,7 +35,7 @@ package() {
cd "r8168-$pkgver"
install -Dt "$pkgdir$extradir" -m644 src/*.ko
find "$pkgdir" -name '*.ko' -exec strip --strip-debug {} +
-   find "$pkgdir" -name '*.ko' -exec xz {} +
+   find "$pkgdir" -name '*.ko' -exec zstd --rm -19 {} +
 
echo "blacklist r8169" | \
install -Dm644 /dev/stdin 
"$pkgdir/usr/lib/modprobe.d/$pkgname.conf"



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/r8168-lts/-/compare/a46a18b45ebfb400de3e22307fe52c0245a60a8a...dac98caea269aa45f837bb0a27512ca37b6d0358

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/r8168-lts/-/compare/a46a18b45ebfb400de3e22307fe52c0245a60a8a...dac98caea269aa45f837bb0a27512ca37b6d0358
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/r8168-lts] Pushed new tag 8.053.00-20

2024-07-25 Thread Christian Hesse (@eworm)


Christian Hesse pushed new tag 8.053.00-20 at Arch Linux / Packaging / Packages 
/ r8168-lts

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/r8168-lts/-/tree/8.053.00-20
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/nvidia-lts] Pushed new tag 1-555.58.02-10

2024-07-25 Thread Christian Hesse (@eworm)


Christian Hesse pushed new tag 1-555.58.02-10 at Arch Linux / Packaging / 
Packages / nvidia-lts

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




[Git][archlinux/packaging/packages/nvidia-lts][main] upgpkg: 1:555.58.02-10: rebuild for linux-lts 6.6.42-1

2024-07-25 Thread Christian Hesse (@eworm)


Christian Hesse pushed to branch main at Arch Linux / Packaging / Packages / 
nvidia-lts


Commits:
c2b22b81 by Christian Hesse at 2024-07-25T10:29:47+02:00
upgpkg: 1:555.58.02-10: rebuild for linux-lts 6.6.42-1

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = nvidia-lts
pkgdesc = NVIDIA drivers for linux-lts
pkgver = 555.58.02
-   pkgrel = 9
+   pkgrel = 10
epoch = 1
url = https://www.nvidia.com/
arch = x86_64


=
PKGBUILD
=
@@ -2,7 +2,7 @@
 # Contributor: Eric Bélanger 
 pkgname=nvidia-lts
 pkgver=555.58.02
-pkgrel=9
+pkgrel=10
 epoch=1
 pkgdesc="NVIDIA drivers for linux-lts"
 arch=('x86_64')



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/nvidia-lts/-/commit/c2b22b816fb376feb4a729e0f1b779f481e1a7f7

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




[Git][archlinux/packaging/packages/acpi_call-lts][main] 2 commits: compress with zstd

2024-07-25 Thread Christian Hesse (@eworm)


Christian Hesse pushed to branch main at Arch Linux / Packaging / Packages / 
acpi_call-lts


Commits:
ff60d952 by Christian Hesse at 2024-07-25T10:27:40+02:00
compress with zstd

- - - - -
b47a6359 by Christian Hesse at 2024-07-25T10:29:44+02:00
upgpkg: 1.2.2-203: rebuild for linux-lts 6.6.42-1

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = acpi_call-lts
pkgdesc = A linux kernel module that enables calls to ACPI methods 
through /proc/acpi/call
pkgver = 1.2.2
-   pkgrel = 202
+   pkgrel = 203
url = https://github.com/mkottman/acpi_call
arch = x86_64
license = GPL


=
PKGBUILD
=
@@ -4,7 +4,7 @@
 
 pkgname=acpi_call-lts
 pkgver=1.2.2
-pkgrel=202
+pkgrel=203
 pkgdesc='A linux kernel module that enables calls to ACPI methods through 
/proc/acpi/call'
 url='https://github.com/mkottman/acpi_call'
 arch=('x86_64')
@@ -28,7 +28,7 @@ package() {
 acpi_call/${pkgver}/$_kernver/$CARCH/module/*
 
   # compress each module individually
-  find "$pkgdir" -name '*.ko' -exec xz -T1 {} +
+  find "$pkgdir" -name '*.ko' -exec zstd --rm -19 {} +
 
   echo acpi_call | install -Dm644 /dev/stdin 
"$pkgdir/usr/lib/modules-load.d/$pkgname.conf"
 



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/acpi_call-lts/-/compare/f66c2142b2194052961ef41f32f14318fddc75c8...b47a6359d93fa04687394a884f95f9b7fb3b223d

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/acpi_call-lts/-/compare/f66c2142b2194052961ef41f32f14318fddc75c8...b47a6359d93fa04687394a884f95f9b7fb3b223d
You're receiving this email because of your account on gitlab.archlinux.org.




  1   2   3   4   5   6   7   8   9   10   >