Re: [Rpm-maint] [rpm-software-management/rpm] RFE: set builsubdir to the *first* extracted archive not the last one (#551)

2018-09-29 Thread Jeff Johnson
You have chosen rpm spec files and macros for your implementation. Neither was designed for multiple builds in a single package, nor was rpm for that matter. Instead of complaining about rpm deficiencies and quirks, you might wish to rethink your approach, look at the inputs of archive/patch

Re: [Rpm-maint] [rpm-software-management/rpm] Add %setup option -pN. (#558)

2018-09-29 Thread Andreas Scherer
@ascherer pushed 1 commit. c288ac1 Add %autosetup option -tN. -- You are receiving this because you are subscribed to this thread. View it on GitHub:

Re: [Rpm-maint] [rpm-software-management/rpm] RFE: set builsubdir to the *first* extracted archive not the last one (#551)

2018-09-29 Thread nim-nim
> For example, the common case of a single well formed compresset tarball with > a patch in a spec file is even simpler than your design: > > %prep > %setup > %patch And that can be trivialy declined in ```specfile %prep %setup -z 0 %patch0 %setup -z 1 %patch1 %setup -z 2 %patch2 ``` (of