Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | build.macros: replace configure2_5x with configure macro | Jani Välimaa | 2020-01-16 | 2 | -6/+4 |
| | |||||
* | build.macros: drop legacy libtoolize calls from configure macros | Jani Välimaa | 2020-01-16 | 2 | -9/+2 |
| | |||||
* | build.macros: drop deprecated and unused __cputoolize macor | Jani Välimaa | 2020-01-16 | 2 | -1/+2 |
| | |||||
* | build.macros: drop legacy --x-includes= and --x-libraries= from configure macros | Jani Välimaa | 2020-01-16 | 2 | -3/+3 |
| | |||||
* | Add .gitignore | Jani Välimaa | 2020-01-03 | 1 | -0/+21 |
| | |||||
* | 2.482.48 | Jani Välimaa | 2020-01-02 | 2 | -1/+2 |
| | |||||
* | Clean build.macros.in a bit | Jani Välimaa | 2019-12-28 | 1 | -6/+4 |
| | |||||
* | Update NEWS | Jani Välimaa | 2019-12-28 | 1 | -1/+1 |
| | |||||
* | build.macros: add build_* flags and set_build_flags macro from upstream rpm | Jani Välimaa | 2019-12-28 | 2 | -6/+35 |
| | | | | | | | %build_cflags %build_cxxflags %build_fflags %build_ldflags | ||||
* | build.macros: add __global_* flags for compatibility with Fedora | Jani Välimaa | 2019-12-28 | 2 | -1/+8 |
| | | | | | | | | %__global_cflags %{build_cflags} %__global_cxxflags %{build_cxxflags} %__global_fflags %{build_fflags} %__global_fcflags %{build_fflags} %__global_ldflags %{build_ldflags} | ||||
* | build.macros: drop unused make_session and make_dm_session | Jani Välimaa | 2019-12-28 | 2 | -6/+2 |
| | |||||
* | build.macros: drop more unused macros | Jani Välimaa | 2019-12-27 | 2 | -3/+3 |
| | |||||
* | build.macros: drop unused _update_menus_bin macro | Jani Välimaa | 2019-12-27 | 2 | -3/+2 |
| | |||||
* | build.macros: drop unused __chkconfig and __service macros | Jani Välimaa | 2019-12-27 | 2 | -3/+2 |
| | |||||
* | build.macros: drop deprecated and unused post_install_gconf_schemas | Jani Välimaa | 2019-12-27 | 2 | -3/+2 |
| | |||||
* | build.macros: drop deprecated and unused macros | Jani Välimaa | 2019-12-27 | 2 | -10/+9 |
| | |||||
* | build.macros: use %{warn:...} macro for deprecation warnings | Jani Välimaa | 2019-12-27 | 2 | -3/+4 |
| | |||||
* | Remove unused git-repository--after-tarball and git-repository--apply-patch | Jani Välimaa | 2019-12-26 | 4 | -230/+1 |
| | |||||
* | build.macros: remove %_after_setup leftovers | Jani Välimaa | 2019-12-26 | 2 | -8/+2 |
| | | | | Support for it was dropped when introduce-_after_setup-which-is-called-after-setup.patch was removed from rpm | ||||
* | Simplify Makefile.am a bit | Jani Välimaa | 2019-12-26 | 1 | -7/+4 |
| | |||||
* | Restore RPMSYSCONFDIR variable | Jani Välimaa | 2019-12-26 | 1 | -0/+3 |
| | | | | $$(RPMSYSCONFDIR) is still used at the moment when building. | ||||
* | rpmrc: drop deprecated macrofiles line | Jani Välimaa | 2019-12-26 | 2 | -2/+2 |
| | |||||
* | 2.472.47 | Jani Välimaa | 2019-12-26 | 2 | -1/+2 |
| | |||||
* | Replace setup_compile_flags rpm macro with upstream set_build_flags macro | Jani Välimaa | 2019-12-26 | 2 | -5/+6 |
| | | | | Deprecation warning is output is %setup_compile_flags is used. | ||||
* | 2.462.46 | Jani Välimaa | 2019-12-24 | 2 | -1/+3 |
| | |||||
* | brp-mangle-shebangs: do not exit if read has a non-zero status | Jani Välimaa | 2019-12-24 | 2 | -1/+4 |
| | | | | | | | | | At least building texlive-texmf fails without this because brp-mangle-shebangs has -e in its shebang. -e Exit immediately if a command exits with a non-zero status. $ read shebang_line < BUILD/texlive-20190410-texmf/texmf-dist/doc/generic/pst-mirror/createEPS/test.sh $ echo $? 1 | ||||
* | 2.452.45 | Thierry Vignaud | 2019-12-23 | 2 | -1/+3 |
| | |||||
* | Switch binary payload compression to Zstandard level 19 | Thierry Vignaud | 2019-12-23 | 2 | -2/+5 |
| | | | | | for faster installations, as discussed with tmb See https://fedoraproject.org/wiki/Changes/Switch_RPMs_to_zstd_compression | ||||
* | brp-mangle-shebangs: do not stat / touch files needlessly | Denys Vlasenko | 2019-12-23 | 2 | -3/+11 |
| | | | | | | | Run "stat" to get mtime, and "touch -d $saved_mtime" only if we indeed modify file's shebang. Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com> | ||||
* | brp-mangle-shebangs: fix unsafe/incorrect command expansion | Denys Vlasenko | 2019-12-23 | 1 | -14/+19 |
| | | | | | | | | | | | | | | | | | | | | | | | | trim() { printf '%s' "$*" } ... read shebang_line < "$f" || : orig_shebang=$(trim $(echo "$shebang_line" | grep -Po "#!\K.*" || echo)) The "trimming", i.e. replacement of multiple spaces and removal of leading and trailing spaces, is achieved because "trim $(cmd)" construct has an unquoted $(), which is subject to word splitting. This works, yes. BUT. It is also subject to glob expansion - any ?s and *s will be attempted to be expanded as well - definitely NOT what we want! This change replaces this trick with code which avoids the expansion issue, and which does not spawn any subprocesses for string manipulations - this is ~3 times faster (fork+execs are expensive). Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com> | ||||
* | brp-mangle-shebangs: speed up finding of "text executables" (scripts) | Denys Vlasenko | 2019-12-23 | 1 | -3/+12 |
| | | | | Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com> | ||||
* | Make ambiguous python shebangs error | Thierry Vignaud | 2019-12-23 | 1 | -0/+1 |
| | |||||
* | Try harder to have armv7hl chroots working2.44 | Pascal Terjan | 2019-10-15 | 3 | -4/+9 |
| | |||||
* | Make armv7hl chroots on aarch64 work on all armv8 flavours2.43 | Pascal Terjan | 2019-10-15 | 3 | -1/+8 |
| | |||||
* | Actually make armv7hl chroots on armv8 work2.42 | Pascal Terjan | 2019-10-15 | 3 | -1/+6 |
| | |||||
* | 2.412.41 | Thierry Vignaud | 2019-09-19 | 2 | -1/+3 |
| | |||||
* | fix %__libtoolize disapearing in rpm-4.15 (mga#25440) | Thierry Vignaud | 2019-09-19 | 2 | -0/+3 |
| | |||||
* | 2.402.40 | Thierry Vignaud | 2019-08-29 | 2 | -1/+3 |
| | |||||
* | move macros files into /usr/lib/rpm/macros.d | Thierry Vignaud | 2019-08-29 | 3 | -14/+13 |
| | | | | | | move them from /etc/rpm/macros.d into /usr/lib/rpm/macros.d thus fixing most failures with rpm's testsuite (related to not being able to disable debuginfo) | ||||
* | Release 2.392.39 | Pascal Terjan | 2019-05-04 | 2 | -1/+3 |
| | |||||
* | Make armv7hl chroots on aarch64 work as expected | Pascal Terjan | 2019-05-04 | 3 | -0/+9 |
| | | | | | set arch_compat so that urpmi accepts to install armv7hl packages and set canonical architecture to be armv7hl | ||||
* | 2.382.38 | Thierry Vignaud | 2019-03-11 | 2 | -1/+3 |
| | |||||
* | log previous changes | Thierry Vignaud | 2019-03-11 | 1 | -0/+4 |
| | |||||
* | use File::Find insted of external find command | Guillaume Rousse | 2019-03-03 | 1 | -1/+11 |
| | |||||
* | no need to cache php files list | Guillaume Rousse | 2019-03-03 | 1 | -8/+1 |
| | | | | | Producing the list isn't expensive enough to justify caching the result, especially if handled incorrectly | ||||
* | Add %_metainfodir macro for appdata metainfo dir | Jani Välimaa | 2019-01-19 | 2 | -0/+5 |
| | |||||
* | add spec-helper merging to TODO | Thierry Vignaud | 2018-10-30 | 1 | -0/+1 |
| | |||||
* | kill code that's dead for 11 years | Thierry Vignaud | 2018-10-30 | 2 | -11/+0 |
| | |||||
* | one item off | Thierry Vignaud | 2018-10-30 | 1 | -2/+0 |
| | |||||
* | Remove empty AUTHORS and ChangeLog | Jani Välimaa | 2018-10-21 | 3 | -1/+1 |
| |