Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package elfutils for openSUSE:Factory checked in at 2021-03-24 16:09:20 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/elfutils (Old) and /work/SRC/openSUSE:Factory/.elfutils.new.2401 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "elfutils" Wed Mar 24 16:09:20 2021 rev:86 rq:879926 version:0.183 Changes: -------- --- /work/SRC/openSUSE:Factory/elfutils/elfutils-debuginfod.changes 2021-02-16 22:36:27.101654774 +0100 +++ /work/SRC/openSUSE:Factory/.elfutils.new.2401/elfutils-debuginfod.changes 2021-03-24 16:09:26.779718253 +0100 @@ -1,0 +2,8 @@ +Tue Mar 16 15:40:31 UTC 2021 - Martin Li??ka <mli...@suse.cz> + +- Enable https://debuginfod.opensuse.org/ debuginfod server + by default now. +- Add disable-run-readelf-self-test.patch in order to disable + a failing test-case with GCC 11 (PR27367). + +------------------------------------------------------------------- --- /work/SRC/openSUSE:Factory/elfutils/elfutils.changes 2021-02-16 22:36:27.525655339 +0100 +++ /work/SRC/openSUSE:Factory/.elfutils.new.2401/elfutils.changes 2021-03-24 16:09:26.823718299 +0100 @@ -1,0 +2,6 @@ +Wed Mar 17 07:43:33 UTC 2021 - Martin Li??ka <mli...@suse.cz> + +- Add disable-run-readelf-self-test.patch in order to disable + a failing test-case with GCC 11 (PR27367). + +------------------------------------------------------------------- New: ---- disable-run-readelf-self-test.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ elfutils-debuginfod.spec ++++++ --- /var/tmp/diff_new_pack.6nvyJj/_old 2021-03-24 16:09:27.407718913 +0100 +++ /var/tmp/diff_new_pack.6nvyJj/_new 2021-03-24 16:09:27.411718917 +0100 @@ -28,6 +28,7 @@ Source1: https://fedorahosted.org/releases/e/l/elfutils/%{version}/elfutils-%{version}.tar.bz2.sig Source2: elfutils.changes Source3: elfutils.keyring +Patch0: disable-run-readelf-self-test.patch BuildRequires: autoconf BuildRequires: automake BuildRequires: bison @@ -113,7 +114,8 @@ autoreconf -fi # some patches create new test scripts, which are created 644 by default chmod a+x tests/run*.sh -%configure --program-prefix=eu- +%configure --enable-debuginfod-urls=https://debuginfod.opensuse.org/ \ + --program-prefix=eu- %make_build %install ++++++ elfutils.spec ++++++ --- /var/tmp/diff_new_pack.6nvyJj/_old 2021-03-24 16:09:27.427718934 +0100 +++ /var/tmp/diff_new_pack.6nvyJj/_new 2021-03-24 16:09:27.431718937 +0100 @@ -31,6 +31,7 @@ Source4: https://fedorahosted.org/releases/e/l/%{name}/%{version}/%{name}-%{version}.tar.bz2.sig Source5: %{name}.keyring Source6: elfutils-rpmlintrc +Patch0: disable-run-readelf-self-test.patch BuildRequires: autoconf BuildRequires: automake BuildRequires: bison ++++++ disable-run-readelf-self-test.patch ++++++ diff --git a/tests/Makefile.am b/tests/Makefile.am index c145720..7a1e05a 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -115,7 +115,7 @@ TESTS = run-arextract.sh run-arsymtest.sh run-ar.sh newfile test-nlist \ run-addrscopes.sh run-strings-test.sh run-funcscopes.sh \ run-find-prologues.sh run-allregs.sh run-addrcfi.sh \ run-dwarfcfi.sh run-nm-syms.sh \ - run-nm-self.sh run-readelf-self.sh run-readelf-info-plus.sh \ + run-nm-self.sh run-readelf-info-plus.sh \ run-readelf-compressed.sh \ run-readelf-const-values.sh \ run-varlocs-self.sh run-exprlocs-self.sh \ @@ -250,7 +250,7 @@ EXTRA_DIST = run-arextract.sh run-arsymtest.sh run-ar.sh \ run-ranlib-test3.sh run-ranlib-test4.sh \ run-addrscopes.sh run-strings-test.sh run-funcscopes.sh \ run-nm-syms.sh testfilesyms32.bz2 testfilesyms64.bz2 \ - run-nm-self.sh run-readelf-self.sh run-readelf-info-plus.sh \ + run-nm-self.sh run-readelf-info-plus.sh \ run-readelf-compressed.sh \ run-readelf-compressed-zstd.sh \ run-readelf-const-values.sh testfile-const-values.debug.bz2 \ diff --git a/tests/Makefile.in b/tests/Makefile.in index 7fc04cc..2ade94f 100644 --- a/tests/Makefile.in +++ b/tests/Makefile.in @@ -154,7 +154,7 @@ TESTS = run-arextract.sh run-arsymtest.sh run-ar.sh newfile$(EXEEXT) \ run-addrscopes.sh run-strings-test.sh run-funcscopes.sh \ run-find-prologues.sh run-allregs.sh run-addrcfi.sh \ run-dwarfcfi.sh run-nm-syms.sh run-nm-self.sh \ - run-readelf-self.sh run-readelf-info-plus.sh \ + run-readelf-info-plus.sh \ run-readelf-compressed.sh run-readelf-const-values.sh \ run-varlocs-self.sh run-exprlocs-self.sh run-readelf-test1.sh \ run-readelf-test2.sh run-readelf-test3.sh run-readelf-test4.sh \ @@ -1295,7 +1295,7 @@ EXTRA_DIST = run-arextract.sh run-arsymtest.sh run-ar.sh \ run-ranlib-test3.sh run-ranlib-test4.sh \ run-addrscopes.sh run-strings-test.sh run-funcscopes.sh \ run-nm-syms.sh testfilesyms32.bz2 testfilesyms64.bz2 \ - run-nm-self.sh run-readelf-self.sh run-readelf-info-plus.sh \ + run-nm-self.sh run-readelf-info-plus.sh \ run-readelf-compressed.sh \ run-readelf-compressed-zstd.sh \ run-readelf-const-values.sh testfile-const-values.debug.bz2 \ @@ -3061,13 +3061,6 @@ run-nm-self.sh.log: run-nm-self.sh --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) -run-readelf-self.sh.log: run-readelf-self.sh - @p='run-readelf-self.sh'; \ - b='run-readelf-self.sh'; \ - $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ - --log-file $$b.log --trs-file $$b.trs \ - $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ - "$$tst" $(AM_TESTS_FD_REDIRECT) run-readelf-info-plus.sh.log: run-readelf-info-plus.sh @p='run-readelf-info-plus.sh'; \ b='run-readelf-info-plus.sh'; \