Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package dwarves for openSUSE:Factory checked in at 2021-07-21 19:05:25 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/dwarves (Old) and /work/SRC/openSUSE:Factory/.dwarves.new.2632 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "dwarves" Wed Jul 21 19:05:25 2021 rev:32 rq:906664 version:1.21+git175.1ef87b2 Changes: -------- --- /work/SRC/openSUSE:Factory/dwarves/dwarves.changes 2021-06-12 20:05:39.788679285 +0200 +++ /work/SRC/openSUSE:Factory/.dwarves.new.2632/dwarves.changes 2021-07-21 19:05:26.627193873 +0200 @@ -1,0 +2,20 @@ +Thu Jul 15 20:04:36 UTC 2021 - msucha...@suse.com + +- Update to version 1.21+git175.1ef87b2 (jsc#SLE-17288): + * libbpf: bump dependency to >= 0.4.0 + * CMakeLists.txt: Enable SHARED and STATIC lib creation + * libbpf: Allow to use packaged version + * btfdiff: Support diffing DWARF vs detached BTF + * pahole: Allow encoding BTF into a detached file + * pahole: Add --kabi_prefix flag + * btf_encoder: fix and complete filtering out zero-sized per-CPU variables + * btf: Remove ftrace filter + * pahole: Introduce --with_flexible_array option to show just types ending in a flexible array + * Many updates to btf_encoder and bug fixes +- Remove upstreamed patches + - btf_encoder-fix-and-complete-filtering-out-zero-sized-per-CPU-variables.patch + - remove-ftrace-filter.patch +- Pretend version 1.22 to make kernel happy + + dwarves-Prep-1.22.patch + +------------------------------------------------------------------- Old: ---- btf_encoder-fix-and-complete-filtering-out-zero-sized-per-CPU-variables.patch dwarves-1.21.tar.sign dwarves-1.21.tar.xz remove-ftrace-filter.patch New: ---- _service dwarves-1.21+git175.1ef87b2.tar.xz dwarves-Prep-1.22.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ dwarves.spec ++++++ --- /var/tmp/diff_new_pack.7Fl3do/_old 2021-07-21 19:05:27.047194603 +0200 +++ /var/tmp/diff_new_pack.7Fl3do/_new 2021-07-21 19:05:27.051194609 +0200 @@ -17,7 +17,7 @@ Name: dwarves -Version: 1.21 +Version: 1.21+git175.1ef87b2 Release: 0 Summary: DWARF utilities License: GPL-2.0-only @@ -25,15 +25,16 @@ URL: https://acmel.wordpress.com/ #Git-Clone: git://git.kernel.org/pub/scm/devel/pahole/pahole #Git-Web: http://git.kernel.org/cgit/devel/pahole/pahole.git -Source: https://fedorapeople.org/~acme/dwarves/dwarves-%version.tar.xz -Source2: https://fedorapeople.org/~acme/dwarves/dwarves-%version.tar.sign +Source: %{name}-%{version}.tar.xz +#Source: https://fedorapeople.org/~acme/dwarves/dwarves-%version.tar.xz +#Source2: https://fedorapeople.org/~acme/dwarves/dwarves-%version.tar.sign Source9: baselibs.conf -Patch0: remove-ftrace-filter.patch -Patch1: btf_encoder-fix-and-complete-filtering-out-zero-sized-per-CPU-variables.patch +Patch0: dwarves-Prep-1.22.patch BuildRequires: cmake BuildRequires: libdw-devel >= 0.171 BuildRequires: libelf-devel BuildRequires: pkgconfig +BuildRequires: pkgconfig(libbpf) BuildRequires: pkgconfig(zlib) # Also known by its most prominent tool Provides: pahole = %version-%release @@ -90,7 +91,8 @@ %build sv="$PWD/lib.v" -echo "DWARVES_%version { global: *; };" >"$sv" +ver=$(echo %version | cut -d+ -f1) +echo "DWARVES_$ver{ global: *; };" >"$sv" %cmake -DCMAKE_SHARED_LINKER_FLAGS:STRING="-Wl,--version-script=$sv" %cmake_build ++++++ _service ++++++ <services> <service name="tar_scm" mode="disabled"> <param name="scm">git</param> <param name="url">git://git.kernel.org/pub/scm/devel/pahole/pahole</param> <param name="revision">master</param> <param name="versionrewrite-pattern">v(.*)</param> <param name="versionformat">@PARENT_TAG@+git@TAG_OFFSET@.%h</param> <param name="filename">dwarves</param> </service> <service name="recompress" mode="disabled"> <param name="file">*.tar</param> <param name="compression">xz</param> </service> <service name="set_version" mode="disabled" /> </services> ++++++ dwarves-Prep-1.22.patch ++++++ --- dwarves-1.21+git175.1ef87b2/CMakeLists.txt 2021-06-17 02:07:22.000000000 +0200 +++ dwarves-1.21+git175.1ef87b2/CMakeLists.txt 2021-07-15 22:09:41.020434732 +0200 @@ -53,9 +53,9 @@ endif (NOT DEFINED BUILD_SHARED_LIBS) # Just for grepping, DWARVES_VERSION isn't used anywhere anymore -# add_definitions(-D_GNU_SOURCE -DDWARVES_VERSION="v1.21") +# add_definitions(-D_GNU_SOURCE -DDWARVES_VERSION="v1.22") add_definitions(-D_GNU_SOURCE -DDWARVES_MAJOR_VERSION=1) -add_definitions(-D_GNU_SOURCE -DDWARVES_MINOR_VERSION=21) +add_definitions(-D_GNU_SOURCE -DDWARVES_MINOR_VERSION=22) find_package(DWARF REQUIRED) find_package(ZLIB REQUIRED)