[Rpm-maint] [PATCH v3 2/2] find-debuginfo.sh: Process files in parallel

2016-09-10 Thread Michal Marek
Add a -j option, which, when used, will spawn processes to do the debuginfo extraction in parallel. A named pipe is used to dispatch the files among the processes. Signed-off-by: Michal Marek --- v3: - Rebased onto current master - Build debugsources.list (and now also

[Rpm-maint] [PATCH v3 1/2] find-debuginfo.sh: Split directory traversal and debuginfo extraction

2016-09-10 Thread Michal Marek
This siplifies the handling of hardlinks a bit and allows a later patch to parallelize the debuginfo extraction. Signed-off-by: Michal Marek --- v3: Rebased onto current master v2: Fix for packages with no ELF files. scripts/find-debuginfo.sh | 53

Re: [Rpm-maint] [rpm-software-management/rpm] Remove extra dependencies (#86)

2016-09-10 Thread ニール・ゴンパ
Looks great to me! :+1: @ffesti @ignatenkobrain: What do you think? Can it be merged now? -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub:

Re: [Rpm-maint] [rpm-software-management/rpm] Remove extra dependencies (#86)

2016-09-10 Thread Alexey Gladkov
@Conan-Kudo @ignatenkobrain commit message fixed. -- 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/86#issuecomment-246130496___

Re: [Rpm-maint] [rpm-software-management/rpm] Remove extra dependencies (#86)

2016-09-10 Thread Igor Gnatenko
@legionus basically same what you wrote to github PR. Also update summary on the commit: `Remove extra dependencies` -> `tools/rpm2cpio.sh: remove extra dependencies` or something like this -- You are receiving this because you are subscribed to this thread. Reply to this email directly or

[Rpm-maint] [rpm-software-management/rpm] Makefile.maint: use git-rev-list (#89)

2016-09-10 Thread Igor Gnatenko
No need to query all commits and count lines of output, we can just ask git to provide information directly. You can view, comment on, or merge this pull request online at: https://github.com/rpm-software-management/rpm/pull/89 -- Commit Summary -- * Makefile.maint: use git-rev-list --

Re: [Rpm-maint] [rpm-software-management/rpm] Add support for sorting '+' higher than base version (#88)

2016-09-10 Thread Igor Gnatenko
@ignatenkobrain pushed 1 commit. 5af2531 Add rpmlib(PlusInVersions) extension -- You are receiving this because you are subscribed to this thread. View it on GitHub:

Re: [Rpm-maint] [rpm-software-management/rpm] Add support for sorting '+' higher than base version (#88)

2016-09-10 Thread Igor Gnatenko
> @@ -45,6 +45,20 @@ int rpmvercmp(const char * a, const char * b) > continue; > } > > + /* > + * Handle plus separator. Concept is same as tilde, but it one of > + * strings ends, it's considered as lower version. no. -- You are receiving this because you are

[Rpm-maint] [rpm-software-management/rpm] Add support for sorting '+' higher than base verion (#88)

2016-09-10 Thread Igor Gnatenko
Currently plus separator is equal to others (1.0 == 1+0). We want to introduce "meaning" for this separator. 1.1+20160101 means 1.1 version (base) and patches which were applied at that date on top of it. * 1.1+201601 > 1.1 * 1.1+201601 < 1.1.1 Second case might be fulfilled with tilde