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

2021-06-10 Thread tbaederr
@tbaederr pushed 1 commit. e22ca5ccd5772a6e8b4c59f0d454231e63ef102d Add brp-remove-la-files script -- You are receiving this because you are subscribed to this thread. View it on GitHub: https://github.com/rpm-software-management/rpm/pull/1674/files/59bbe4763bcc8561e77deede5d906a916081dcb0

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

2021-05-31 Thread tbaederr
Sorry, missed the broken CI before. -- 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-851431565___ Rpm-maint

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

2021-05-31 Thread tbaederr
@tbaederr pushed 1 commit. 59bbe4763bcc8561e77deede5d906a916081dcb0 Add brp-remove-la-files script -- You are receiving this because you are subscribed to this thread. View it on GitHub: https://github.com/rpm-software-management/rpm/pull/1674/files/45c620127f489c68c7206aa8ae1833b92e00e32c

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: https://github.com/rpm-software-management/rpm/pull/1674/files/134649a8e7947b7f01d557603709b622098e8f4b

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

2021-05-05 Thread tbaederr
Lots of packages remove .la files via find $RPM_BUILD_ROOT -name *.la -delete or similar. Add %remove_installed_la_files to standardize this. I could not find tests for the macros in the rpm repository, but I testes this separately in a spec file. I went with `-delete` here and not `exec rm

Re: [Rpm-maint] [rpm-software-management/rpm] Add %toolchain macro to differentiate C/C++ toolchains (#1231)

2020-05-28 Thread tbaederr
Closed #1231. -- 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/issues/1231#event-3382419186___ Rpm-maint mailing list

Re: [Rpm-maint] [rpm-software-management/rpm] Add %toolchain macro to differentiate C/C++ toolchains (#1231)

2020-05-28 Thread tbaederr
We will solve this differently, in redhat-rpm-config. Thanks. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub:

[Rpm-maint] [rpm-software-management/rpm] Add %toolchain macro to differentiate C/C++ toolchains (#1231)

2020-05-19 Thread tbaederr
This is often needed when supporting builds with multiple compilers. Simply looking at `%__cc` is not enough since the actual executable might be called differently, but might still be gcc. Or clang. Doing a substring search is also problematic since "g++" is a substring of "clang++". So it