Automated weekly systemtap rawhide release: 5.1~pre17060399gb6abf4bd

This commit is contained in:
Frank Ch. Eigler 2024-01-23 15:00:09 -05:00
parent 086a7444b9
commit f078b4cd79
3 changed files with 17 additions and 3 deletions

1
.gitignore vendored
View File

@ -94,3 +94,4 @@
/systemtap-5.1~pre17056120g2ccc0c4c.tar.gz
/systemtap-5.1~pre17056139g6c0b92b3.tar.gz
/systemtap-5.1~pre17059382g67086c54.tar.gz
/systemtap-5.1~pre17060399gb6abf4bd.tar.gz

View File

@ -1 +1 @@
SHA512 (systemtap-5.1~pre17059382g67086c54.tar.gz) = f3eb107638dd58edcd95aaebe670a22234c9651f7b66bf9df184e20d8da09efb7e77ef3866bb3ab7fdcdea6b0c1c6a3bfe02cbcab59d91ba6c6b09cf3576fd06
SHA512 (systemtap-5.1~pre17060399gb6abf4bd.tar.gz) = 3497f18350329a21384b0f9a4f4ead343a9f1c46878311e486d460566adb4269cb5ca5cd998ef7bab9a33ff8410d51435912895d05f36156af7d527ae196e773

View File

@ -1,3 +1,5 @@
# work around flakey gcc warnings
%{!?with_Werror: %global with_Werror 0}
%{!?with_sqlite: %global with_sqlite 0%{?fedora} >= 17 || 0%{?rhel} >= 7}
# prefer prebuilt docs
%{!?with_docs: %global with_docs 0}
@ -115,7 +117,7 @@ m stapdev stapdev
Name: systemtap
# PRERELEASE
Version: 5.1~pre17059382g67086c54
Version: 5.1~pre17060399gb6abf4bd
Release: 1%{?release_override}%{?dist}
# for version, see also configure.ac
@ -588,6 +590,13 @@ or within a container.
%global dyninst_config --without-dyninst
%endif
# Enable/disable the dyninst pure-userspace backend
%if %{with_Werror}
%global Werror_config --enable-Werror
%else
%global Werror_config --disable-Werror
%endif
# Enable/disable the sqlite coverage testing support
%if %{with_sqlite}
%global sqlite_config --enable-sqlite
@ -675,7 +684,7 @@ or within a container.
# We don't ship compileworthy python code, just oddball samples
%global py_auto_byte_compile 0
%configure %{dyninst_config} %{sqlite_config} %{crash_config} %{docs_config} %{rpm_config} %{java_config} %{virt_config} %{dracut_config} %{python3_config} %{python2_probes_config} %{python3_probes_config} %{httpd_config} %{bpf_config} %{debuginfod_config} --disable-silent-rules --with-extra-version="rpm %{version}-%{release}"
%configure %{Werror_config} %{dyninst_config} %{sqlite_config} %{crash_config} %{docs_config} %{rpm_config} %{java_config} %{virt_config} %{dracut_config} %{python3_config} %{python2_probes_config} %{python3_probes_config} %{httpd_config} %{bpf_config} %{debuginfod_config} --disable-silent-rules --with-extra-version="rpm %{version}-%{release}"
make %{?_smp_mflags} V=1
@ -1295,6 +1304,10 @@ exit 0
# PRERELEASE
%changelog
* Tue Jan 23 2024 Frank Ch. Eigler <fche@redhat.com> - 5.1-17060399gb6abf4bd
- Automated weekly rawhide release
- Applied spec changes from upstream git
* Mon Jan 22 2024 Frank Ch. Eigler <fche@redhat.com> - 5.1-17059382g67086c54
- Automated weekly rawhide release
- Applied spec changes from upstream git