From d3b3f0f2044488b6c2e5233bf2deff9cb3f25bf8f5a89fe05948c35511d8cfd1 Mon Sep 17 00:00:00 2001 From: Michael Matz Date: Mon, 30 Mar 2020 13:40:21 +0000 Subject: [PATCH] Accepting request 789782 from home:marxin:branches:Base:System3 - Update to version 0.179: debuginfod-client: When DEBUGINFOD_PROGRESS is set and the program doesn't install its own debuginfod_progressfn_t show download progress on stderr. DEBUGINFOD_TIMEOUT is now defined as seconds to get at least 100K, defaults to 90 seconds. Default to $XDG_CACHE_HOME/debuginfod_client. New functions debuginfod_set_user_data, debuginfod_get_user_data, debuginfod_get_url and debuginfod_add_http_header. Support for file:// URLs. debuginfod: Uses libarchive directly for reading rpm archives. Support for indexing .deb/.ddeb archives through dpkg-deb or bsdtar. Generic archive support through -Z EXT[=CMD]. Which can be used for example for arch-linux pacman files by using -Z '.tar.zst=zstdcat'. Better logging using User-Agent and X-Forwarded-For headers. More prometheus metrics. Support for eliding dots or extraneous slashes in path names. debuginfod-find: Accept /path/names in place of buildid hex. libelf: Handle PN_XNUM in elf_getphdrnum before shdr 0 is cached Ensure zlib resource cleanup on failure. libdwfl: dwfl_linux_kernel_find_elf and dwfl_linux_kernel_report_offline now find and handle a compressed vmlinuz image. readelf, elflint: Handle PT_GNU_PROPERTY. translations: Updated Ukrainian translation. OBS-URL: https://build.opensuse.org/request/show/789782 OBS-URL: https://build.opensuse.org/package/show/Base:System/elfutils?expand=0&rev=152 --- elfutils-0.178.tar.bz2 | 3 --- elfutils-0.178.tar.bz2.sig | Bin 310 -> 0 bytes elfutils-0.179.tar.bz2 | 3 +++ elfutils-0.179.tar.bz2.sig | Bin 0 -> 310 bytes elfutils-debuginfod.changes | 37 ++++++++++++++++++++++++++++++++++++ elfutils-debuginfod.spec | 2 +- elfutils.changes | 37 ++++++++++++++++++++++++++++++++++++ elfutils.spec | 3 +-- 8 files changed, 79 insertions(+), 6 deletions(-) delete mode 100644 elfutils-0.178.tar.bz2 delete mode 100644 elfutils-0.178.tar.bz2.sig create mode 100644 elfutils-0.179.tar.bz2 create mode 100644 elfutils-0.179.tar.bz2.sig diff --git a/elfutils-0.178.tar.bz2 b/elfutils-0.178.tar.bz2 deleted file mode 100644 index 87d5b4c..0000000 --- a/elfutils-0.178.tar.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:31e7a00e96d4e9c4bda452e1f2cdac4daf8abd24f5e154dee232131899f3a0f2 -size 9007557 diff --git a/elfutils-0.178.tar.bz2.sig b/elfutils-0.178.tar.bz2.sig deleted file mode 100644 index 25642e496b6e309398c83e79975903209f0c3dc0e8a54146f2bd6813c58624df..0000000000000000000000000000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 310 zcmV-60m=S}0W$;u0SEvc79j)@c8ZpHS&$HV4KLsPSL4jA*_wC-0$ts#1po>O5d2r; z%&gg(cs{5H{y%(2hAYY99X_kqFz@9hqDkql2SgkkD_6F7L7_JKdRSo{PLx%6JHvpc z=Amkxkg|T1h2K|?;~>n%y&qEPYP`cQw{L5{nZwttQfrUf;06gMHzlRJ@lkrAawjOX zw+8_Rq%!(NODiH3chdh+gIN%>M8E$=aIw|GxWPtd=jrLmT>u>${5My=giw4P>h)!S z4o$RL>I7k;59Hnqgii){0_xxhXdXCeZx89&u#&E&M3nIBn7gu#ytHjfmouANqC}T) zJf5d{rxF34O~~~I$YABmSe}Me>Hp15`LzuR!@FQBk8S>%3}}Pccr886h9H?xLQFfhwElu)ByGI(52Sms`%9#tkeq zk(A6F;eqE)BvyKzmr<9=G6PP4mj|UZoPOwCbUVK0O*Dz+jyR6m{W`Tc2m0nk?qE{V z-mcqT6zu6{x#_S4M(>um0{zpWk**3Vq7T)8?9rIcFS>q^CCOwte*9d5_=5i=uS_uw z{(Q-N3#*MWljuaRF^h#?=D@^!8#tNj$XooKTApGbR?~q_9|T=4AjG5)<9L(CtCNN` Iu)Si7qIX!7CIA2c literal 0 HcmV?d00001 diff --git a/elfutils-debuginfod.changes b/elfutils-debuginfod.changes index 85cd652..d0723eb 100644 --- a/elfutils-debuginfod.changes +++ b/elfutils-debuginfod.changes @@ -1,3 +1,40 @@ +------------------------------------------------------------------- +Mon Mar 30 12:07:18 UTC 2020 - Martin Liška + +- Update to version 0.179: + debuginfod-client: When DEBUGINFOD_PROGRESS is set and the program doesn't + install its own debuginfod_progressfn_t show download + progress on stderr. + DEBUGINFOD_TIMEOUT is now defined as seconds to get at + least 100K, defaults to 90 seconds. + Default to $XDG_CACHE_HOME/debuginfod_client. + New functions debuginfod_set_user_data, + debuginfod_get_user_data, debuginfod_get_url and + debuginfod_add_http_header. + Support for file:// URLs. + + debuginfod: Uses libarchive directly for reading rpm archives. + Support for indexing .deb/.ddeb archives through dpkg-deb + or bsdtar. + Generic archive support through -Z EXT[=CMD]. Which can be + used for example for arch-linux pacman files by using + -Z '.tar.zst=zstdcat'. + Better logging using User-Agent and X-Forwarded-For headers. + More prometheus metrics. + Support for eliding dots or extraneous slashes in path names. + + debuginfod-find: Accept /path/names in place of buildid hex. + + libelf: Handle PN_XNUM in elf_getphdrnum before shdr 0 is cached + Ensure zlib resource cleanup on failure. + + libdwfl: dwfl_linux_kernel_find_elf and dwfl_linux_kernel_report_offline + now find and handle a compressed vmlinuz image. + + readelf, elflint: Handle PT_GNU_PROPERTY. + + translations: Updated Ukrainian translation. + ------------------------------------------------------------------- Tue Feb 4 09:06:00 UTC 2020 - Martin Liška diff --git a/elfutils-debuginfod.spec b/elfutils-debuginfod.spec index 54997e8..9c549f6 100644 --- a/elfutils-debuginfod.spec +++ b/elfutils-debuginfod.spec @@ -17,7 +17,7 @@ Name: elfutils-debuginfod -Version: 0.178 +Version: 0.179 Release: 0 Summary: debuginfod part of elfutils License: GPL-3.0-or-later diff --git a/elfutils.changes b/elfutils.changes index 440c216..8036a6a 100644 --- a/elfutils.changes +++ b/elfutils.changes @@ -1,3 +1,40 @@ +------------------------------------------------------------------- +Mon Mar 30 12:07:18 UTC 2020 - Martin Liška + +- Update to version 0.179: + debuginfod-client: When DEBUGINFOD_PROGRESS is set and the program doesn't + install its own debuginfod_progressfn_t show download + progress on stderr. + DEBUGINFOD_TIMEOUT is now defined as seconds to get at + least 100K, defaults to 90 seconds. + Default to $XDG_CACHE_HOME/debuginfod_client. + New functions debuginfod_set_user_data, + debuginfod_get_user_data, debuginfod_get_url and + debuginfod_add_http_header. + Support for file:// URLs. + + debuginfod: Uses libarchive directly for reading rpm archives. + Support for indexing .deb/.ddeb archives through dpkg-deb + or bsdtar. + Generic archive support through -Z EXT[=CMD]. Which can be + used for example for arch-linux pacman files by using + -Z '.tar.zst=zstdcat'. + Better logging using User-Agent and X-Forwarded-For headers. + More prometheus metrics. + Support for eliding dots or extraneous slashes in path names. + + debuginfod-find: Accept /path/names in place of buildid hex. + + libelf: Handle PN_XNUM in elf_getphdrnum before shdr 0 is cached + Ensure zlib resource cleanup on failure. + + libdwfl: dwfl_linux_kernel_find_elf and dwfl_linux_kernel_report_offline + now find and handle a compressed vmlinuz image. + + readelf, elflint: Handle PT_GNU_PROPERTY. + + translations: Updated Ukrainian translation. + ------------------------------------------------------------------- Mon Feb 10 08:39:45 UTC 2020 - Dominique Leuenberger diff --git a/elfutils.spec b/elfutils.spec index 2adfc2f..e4ba914 100644 --- a/elfutils.spec +++ b/elfutils.spec @@ -17,7 +17,7 @@ Name: elfutils -Version: 0.178 +Version: 0.179 Release: 0 Summary: Higher-level library to access ELF files License: GPL-3.0-or-later @@ -139,7 +139,6 @@ chmod a+x tests/run*.sh # remove unneeded files rm -f %{buildroot}/%{_libdir}/*.la ls -lR %{buildroot}/%{_libdir}/libelf* -rm %{buildroot}/%{_libdir}/pkgconfig/libdebuginfod.pc %find_lang %{name} %post -n libasm1 -p /sbin/ldconfig