Re: [Rpm-maint] [rpm-software-management/rpm] Doc Rework (#1679)

2021-05-07 Thread Florian Festi
@ffesti pushed 0 commits. -- You are receiving this because you are subscribed to this thread. View it on GitHub: https://github.com/rpm-software-management/rpm/pull/1679/files/3305427f8445258b35d4e683c9e9d00f1bb0948a..7df22b318dc9723932a8d2704989cd5d869a21ed

Re: [Rpm-maint] [rpm-software-management/rpm] Doc Rework (#1679)

2021-05-07 Thread Florian Festi
@ffesti pushed 1 commit. 3305427f8445258b35d4e683c9e9d00f1bb0948a Dont run pandoc in parallel -- You are receiving this because you are subscribed to this thread. View it on GitHub:

Re: [Rpm-maint] [rpm-software-management/rpm] Doc Rework (#1679)

2021-05-07 Thread Florian Festi
@ffesti pushed 1 commit. eae879c7fe62162b04b7b91455635590869d0e45 Dont run pandoc in parallel -- You are receiving this because you are subscribed to this thread. View it on GitHub:

Re: [Rpm-maint] [rpm-software-management/rpm] Doc Rework (#1679)

2021-05-07 Thread Florian Festi
@ffesti pushed 1 commit. dc46dfd9955e55f192e87f755b8b6447dca0427a Bump Fedora version used in the CI -- You are receiving this because you are subscribed to this thread. View it on GitHub:

Re: [Rpm-maint] [rpm-software-management/rpm] Doc Rework (#1679)

2021-05-07 Thread Florian Festi
@ffesti pushed 2 commits. 0bcfba0eee9cbe35c8432f5bda8acf8a021eb931 Add pandoc as dependency 7df22b318dc9723932a8d2704989cd5d869a21ed Add generated man pages to gitignore -- You are receiving this because you are subscribed to this thread. View it on GitHub:

Re: [Rpm-maint] [rpm-software-management/rpm] Doc Rework (#1679)

2021-05-07 Thread Florian Festi
OK, here a preview on how markdown man pages could look like: http://ffesti.github.io/rpm/man/ Still needs some work: * Add `pandoc` as dependency and though make the test suite pass again. * Check if both the Markdown and the resulting man pages are OK. This is just piping everything blindly

Re: [Rpm-maint] [rpm-software-management/rpm] Doc Rework (#1679)

2021-05-07 Thread Florian Festi
@ffesti pushed 2 commits. fcb2ed6448e6013ab19dcfa596c72770bf8be8ed Convert man pages to markdown 918aa9faf57b72233ed36ed2994175154bb2910d Add index for man pages -- You are receiving this because you are subscribed to this thread. View it on GitHub:

Re: [Rpm-maint] [rpm-software-management/rpm] Doc Rework (#1679)

2021-05-07 Thread Florian Festi
@ffesti pushed 4 commits. c41b4e8776b031a010b806fd7f94ed5d5798a5c1 Rename doc/ to docs/ to work with GitHub Pages dc7e0cfc9c506c04bd844fa3632feeb775195821 Move man pages into their own sub directory 65c6bf8f36a4074d548fe1249c1cece94f6d9687 Add layout for adding manual/ to Github pages

[Rpm-maint] [rpm-software-management/rpm] Doc Rework (#1679)

2021-05-07 Thread Florian Festi
This is an attempt to solve #1666. We have some documentation on https://rpm.org that lives in the `rpm-web` repo and the docs in `doc/manual` that should stay in the sources repo. Currently these are duplicated and cant be kept in sync easily. These cahnges re-arange the files so

Re: [Rpm-maint] [rpm-software-management/rpm] Security fixes for the OpenPGP parser (#1677)

2021-05-07 Thread Demi Marie Obenour
@DemiMarie pushed 2 commits. 8b74a3809218fe7fb807fc208a4247dc08126870 verifySignature(): package signatures must be PGPSIGTYPE_BINARY 1c9c201250cf116b37fbcaec06d420ec01d7eafb pgpGrab: assert if nbytes is too large -- You are receiving this because you are subscribed to this thread. View it

Re: [Rpm-maint] [rpm-software-management/rpm] Fix regression wrt Lua reinitialization (RhBug:1958095) (#1678)

2021-05-07 Thread Panu Matilainen
Merged #1678 into master. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/rpm-software-management/rpm/pull/1678#event-4701589936___ Rpm-maint mailing list

[Rpm-maint] [rpm-software-management/rpm] Fix regression wrt Lua reinitialization (RhBug:1958095) (#1678)

2021-05-07 Thread Panu Matilainen
Commit 2579d3e5ad5d713f2c161b9fb4835366ea4ea291 started storing the Lua context in the spec, but this leads to problems as what is actually a global context is now stored in two places, and can get out of sync. So if you parse a spec, and then reset the global context, you get a fancy segfault

Re: [Rpm-maint] [rpm-software-management/rpm] macros: Add %remove_installed_la_files (#1674)

2021-05-07 Thread tbaederr
Sounds good, I tried doing that. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/rpm-software-management/rpm/pull/1674#issuecomment-834242196___ Rpm-maint

Re: [Rpm-maint] [rpm-software-management/rpm] macros: Add %remove_installed_la_files (#1674)

2021-05-07 Thread tbaederr
@tbaederr pushed 1 commit. 45c620127f489c68c7206aa8ae1833b92e00e32c Add brp-remove-la-files script -- You are receiving this because you are subscribed to this thread. View it on GitHub:

[Rpm-maint] [rpm-software-management/rpm] Security fixes for the OpenPGP parser (#1677)

2021-05-07 Thread Demi Marie Obenour
See individual commit messages for details. You can view, comment on, or merge this pull request online at: https://github.com/rpm-software-management/rpm/pull/1677 -- Commit Summary -- * pgpLen(): validate that the buffer is large enough * Remove incorrect bounds check in pgpPrtSubType()