- update to rpm-4.19.1.1

OBS-URL: https://build.opensuse.org/package/show/Base:System/rpm?expand=0&rev=664
This commit is contained in:
Michael Schröder 2024-02-09 10:39:24 +00:00 committed by Git OBS Bridge
parent e65bb59bdb
commit 9ef1a14cd0
7 changed files with 33 additions and 17 deletions

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Fri Feb 9 11:34:31 CET 2024 - mls@suse.de
- update to rpm-4.19.1.1
-------------------------------------------------------------------
Thu Feb 1 15:07:34 CET 2024 - mls@suse.de

View File

@ -20,7 +20,7 @@
# Enable Python build sourced from rpm spec
%global with_python 1
Name: python-rpm
Version: 4.19.1
Version: 4.19.1.1
Release: 0
Summary: Python Bindings for Manipulating RPM Packages
License: GPL-2.0-or-later

3
rpm-4.19.1.1.tar.bz2 Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:874091b80efe66f9de8e3242ae2337162e2d7131e3aa4ac99ac22155e9c521e5
size 5849649

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:4de4dcd82f2a46cf48a83810fe94ebda3d4719b45d547ed908b43752a7581df1
size 5940447

View File

@ -1,3 +1,14 @@
-------------------------------------------------------------------
Fri Feb 9 11:34:31 CET 2024 - mls@suse.de
- update to rpm-4.19.1.1
* don't warn about missing user/group on skipped files
* make user/group lookup caching thread-safe
* fix regression in Lua scriptlet runaway child detection
* restore readline support as an explicit option
- refreshed patches:
* rpmqpack.diff
-------------------------------------------------------------------
Wed Feb 7 10:34:35 CET 2024 - mls@suse.de

View File

@ -57,7 +57,7 @@ Requires: rpm-config-SUSE
Summary: The RPM Package Manager
License: GPL-2.0-or-later
Group: System/Packages
Version: 4.19.1
Version: 4.19.1.1
Release: 0
URL: https://rpm.org/
#Git-Clone: https://github.com/rpm-software-management/rpm

View File

@ -1,5 +1,5 @@
--- docs/man/CMakeLists.txt.orig 2023-12-12 10:57:31.000000000 +0000
+++ docs/man/CMakeLists.txt 2023-12-13 13:23:17.166128333 +0000
--- docs/man/CMakeLists.txt.orig 2024-02-07 13:36:51.000000000 +0000
+++ docs/man/CMakeLists.txt 2024-02-09 10:36:43.300952115 +0000
@@ -2,6 +2,7 @@ set(core
gendiff.1 rpm2cpio.8
rpm.8 rpmbuild.8 rpmdb.8 rpmkeys.8 rpmsign.8 rpmspec.8
@ -8,8 +8,8 @@
)
set(extra
rpm2archive.8 rpm-plugins.8 rpm-plugin-prioreset.8 rpm-plugin-syslog.8
--- docs/man/rpmqpack.8.orig 2023-12-13 13:23:17.166128333 +0000
+++ docs/man/rpmqpack.8 2023-12-13 13:23:17.166128333 +0000
--- docs/man/rpmqpack.8.orig 2024-02-09 10:36:43.300952115 +0000
+++ docs/man/rpmqpack.8 2024-02-09 10:36:43.300952115 +0000
@@ -0,0 +1,25 @@
+.TH RPMQPACK 8 "Mar 2002"
+.SH NAME
@ -36,8 +36,8 @@
+
+.SH AUTHOR
+Michael Schroeder <mls@suse.de>
--- tools/CMakeLists.txt.orig 2023-12-13 13:24:27.374021318 +0000
+++ tools/CMakeLists.txt 2023-12-13 13:25:03.557966164 +0000
--- tools/CMakeLists.txt.orig 2024-02-07 13:36:51.000000000 +0000
+++ tools/CMakeLists.txt 2024-02-09 10:37:32.932875459 +0000
@@ -7,6 +7,7 @@ add_executable(rpm2cpio rpm2cpio.c cliut
add_executable(rpmsign rpmsign.c cliutils)
add_executable(rpmbuild rpmbuild.c cliutils)
@ -46,17 +46,17 @@
add_executable(rpmdeps rpmdeps.c)
add_executable(rpmgraph rpmgraph.c)
@@ -50,7 +51,7 @@ foreach(cmd rpmverify rpmquery)
@@ -60,7 +61,7 @@ foreach(cmd rpmverify rpmquery)
endforeach()
install(TARGETS
rpm rpmdb rpmkeys rpm2cpio rpmsign rpmbuild rpmspec
- rpmlua rpmgraph rpmsort
+ rpmlua rpmgraph rpmsort rpmqpack
- rpmlua rpmgraph
+ rpmlua rpmgraph rpmqpack
)
install(TARGETS elfdeps rpmdeps rpmuncompress DESTINATION ${RPM_CONFIGDIR})
install(TARGETS rpmdeps rpmuncompress DESTINATION ${RPM_CONFIGDIR})
--- tools/rpmqpack.c.orig 2023-12-13 13:23:17.166128333 +0000
+++ tools/rpmqpack.c 2023-12-13 13:23:17.166128333 +0000
--- tools/rpmqpack.c.orig 2024-02-09 10:36:43.300952115 +0000
+++ tools/rpmqpack.c 2024-02-09 10:36:43.300952115 +0000
@@ -0,0 +1,60 @@
+#include <sys/types.h>
+#include <limits.h>