Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rpm 4.16.1 bugfix update #1449

Merged
merged 34 commits into from Dec 10, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
21605c1
Stop untranslatable format strings from being translated
pmatilai Aug 27, 2020
0243a8c
Simplify logic to work around gcc (10.2.1) false positive warning
pmatilai Sep 1, 2020
28707e4
Don't call exit() from middle of librpmbuild for no good reason
pmatilai Sep 1, 2020
bf7686c
Check for OpenMP version at configure time
dmnks Aug 4, 2020
35d52d9
Bump Lua to 5.2 in configure script
dmnks Aug 4, 2020
e7f2bda
Add missing terminator to copyTagsFromMainDebug array
pmatilai Sep 1, 2020
f7bc816
Fix possible read beyond buffer in rstrnlenhash()
pmatilai Sep 1, 2020
b0d7cbd
Upgrade FA_TOUCH to FA_CREATE if the file went away (RhBug:1872141)
pmatilai Aug 27, 2020
1da03e6
lib/rpmdb.c: include fcntl.h for O_*
maxice8 Sep 30, 2020
2dfab95
Fix ambiguous diagnostics output on file triggers (RhBug:1883338)
pmatilai Sep 29, 2020
d6ec717
Update Doxygen config to get on with times
pmatilai Oct 7, 2020
7bdf68c
Support stringification of versions in the expression parser
mlschroe Oct 8, 2020
ad29db1
Add error handling for versions in expressions
mlschroe Oct 8, 2020
795b0a1
Make fdSeek return 0 on success, -1 on error
malmond77 Sep 28, 2020
d28c26c
Fix RPMTAG_SUGGESTVERSION and -FLAGS info, they're not extensions
pmatilai Oct 8, 2020
b7876cf
Treat unparsable macros like undefined macros
mlschroe Oct 14, 2020
4565e80
Don't muck with parametric macro arguments of cli defines
pmatilai Oct 9, 2020
31780fb
Fix logic error in grabArgs()
mlschroe Oct 23, 2020
c037df8
lib/rpmrc.c: include fcntl.h for O_*
ffontaine Oct 25, 2020
899ec4f
Stop using deprecated security_context_t
pmatilai Oct 28, 2020
05b9cc4
Do not fail if there is no "$temp"/res.* file
ggardet Oct 9, 2020
30e147f
Only do early name services initialization if we actually chroot
pmatilai Nov 9, 2020
8827b3e
Fix a minor memory leak on failed sqlite database open (RhBug:1896301)
pmatilai Nov 10, 2020
4f3c9ce
configure.ac: fix cross-compilation
ffontaine Nov 10, 2020
abc0b1d
Eliminate use of obsolete gethostbyname() function
pmatilai Nov 9, 2020
93c9e87
debugedit: Do not 'edit_dwarf2' when just extracting build-id
vt-alt Nov 14, 2020
9e5f971
Improve error handling in Python pubkey constructor
pmatilai Nov 23, 2020
e638960
Stop on first failure when trying to open a database (RhBug:1898301)
pmatilai Nov 18, 2020
3719295
Only attempt loading the keyring once the rpmdb is open
pmatilai Nov 23, 2020
a8d2497
Pull CI image from registry.fedoraproject.org
pmatilai Nov 30, 2020
e13ffe5
Really disable OpenMP if too old
dmnks Dec 3, 2020
ea9f8e6
Fix 4.16.0 regression causing invalid spec file name on rpmbuild -ts
pmatilai Dec 2, 2020
7ff24c4
Allow database probing if _db_backend is not set
mlschroe Dec 1, 2020
e1b9a49
Preparing for rpm 4.16.1
pmatilai Dec 9, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion configure.ac
@@ -1,5 +1,5 @@
AC_PREREQ(2.61)
AC_INIT(rpm, 4.16.0, rpm-maint@lists.rpm.org)
AC_INIT(rpm, 4.16.1, rpm-maint@lists.rpm.org)

AC_CONFIG_SRCDIR([rpm.c])
AC_CONFIG_HEADERS([config.h])
Expand Down