Re: [Rpm-maint] [rpm-software-management/rpm] Missing build id, Generating build-id links failed (#367)

2023-03-27 Thread Philip Prindeville
Running into this issue [on my fork of containerd-packaging](https://github.com/pprindeville/containerd-packaging/tree/centos-build-w-debuginfo) -- Reply to this email directly or view it on GitHub: https://github.com/rpm-software-management/rpm/issues/367#issuecomment-1486000878 You are

Re: [Rpm-maint] [rpm-software-management/rpm] Consider available memory and address space for parallel execution (PR #2418)

2023-03-27 Thread Michal Domonkos
OK, I can confirm the new push fixes the `proc` calculation, thanks! -- Reply to this email directly or view it on GitHub: https://github.com/rpm-software-management/rpm/pull/2418#issuecomment-1485189177 You are receiving this because you are subscribed to this thread. Message ID:

Re: [Rpm-maint] [rpm-software-management/rpm] Consider available memory and address space for parallel execution (PR #2418)

2023-03-27 Thread Michal Domonkos
@dmnks commented on this pull request. > +long int pagesize = sysconf(_SC_PAGESIZE); +long int pages = sysconf(_SC_PHYS_PAGES); + +if (pagesize < 0) + pagesize = 4096; +if (pages > 0) + mem = pages * pagesize; + +return mem; +} + +static unsigned long

Re: [Rpm-maint] [rpm-software-management/rpm] Don't let macro '%-x' add extra space between flag and argument (PR #2455)

2023-03-27 Thread Panu Matilainen
FWIW, you can build without rpm-sequoia by supplying `-DWITH_INTERNAL_OPENPGP=ON` to cmake. -- Reply to this email directly or view it on GitHub: https://github.com/rpm-software-management/rpm/pull/2455#issuecomment-1484932853 You are receiving this because you are subscribed to this thread.

Re: [Rpm-maint] [rpm-software-management/rpm] Resolve --what arguments to package provides (PR #2451)

2023-03-27 Thread Michael Schroeder
(Oh, and changing the default of `--whatrequires` would maybe improve things for Fedora, because rpm behaves more like repoquery. But I'll get bug reports from SUSE users, as rpm no longer matches what zypper does. Just saying... ;-) ) -- Reply to this email directly or view it on GitHub:

Re: [Rpm-maint] [rpm-software-management/rpm] Resolve --what arguments to package provides (PR #2451)

2023-03-27 Thread Michael Schroeder
(Sorry about that history comment. I should read your bug references first...) There's also the question if the query should use the current state of installed packages or do "potential" matches. Say installed package A contains a requires `(B or C)`. Should `--whatrequires B` return A if C is