diff options
| author | Mark Wielaard <[email protected]> | 2020-06-09 18:21:36 +0200 |
|---|---|---|
| committer | Mark Wielaard <[email protected]> | 2020-06-09 18:21:36 +0200 |
| commit | c0d643e7d91fc002c9fecd83277c62a0e56ef76f (patch) | |
| tree | 89b5cf6673baa2cb206fdf245f4e30fe884945ad /config | |
| parent | 14030673602a4f331f348decd51e5f0160719f0e (diff) | |
| parent | 5643e037cb7a38ed5d52f50421be706ea8014e3d (diff) | |
Merge tag 'elfutils-0.177' into mjw/RH-DTSdts-0.177
elfutils 0.177 release
Conflicts:
libebl/eblopenbackend.c Removed try_dlopen and csky.
tests/run-strip-reloc.sh Removed csky tests.
Diffstat (limited to 'config')
| -rw-r--r-- | config/ChangeLog | 9 | ||||
| -rw-r--r-- | config/Makefile.am | 6 | ||||
| -rw-r--r-- | config/elfutils.spec.in | 11 | ||||
| -rwxr-xr-x | config/upload-release.sh | 1 |
4 files changed, 24 insertions, 3 deletions
diff --git a/config/ChangeLog b/config/ChangeLog index f956780c..65658118 100644 --- a/config/ChangeLog +++ b/config/ChangeLog @@ -1,3 +1,12 @@ +2019-08-13 Mark Wielaard <[email protected]> + + * Makefile.am (elfutils.spec.in): Use git --get user.name and + user.email. + +2019-04-15 Mark Wielaard <[email protected]> + + * upload-release.sh: Add git tag --verify. + 2019-02-14 Mark Wielaard <[email protected]> * elfutils.spec.in: Update for 0.176. diff --git a/config/Makefile.am b/config/Makefile.am index 66012d02..9d292cee 100644 --- a/config/Makefile.am +++ b/config/Makefile.am @@ -38,9 +38,9 @@ if MAINTAINER_MODE $(srcdir)/elfutils.spec.in: $(top_srcdir)/NEWS @tmpname=$$(mktemp $${TMPDIR:-/tmp}/elfutils.XXXXXX); \ date +'* %a %b %e %Y' | tr '[\n]' '[ ]' > $$tmpname; \ - getent passwd "$$(whoami)" | \ - awk 'BEGIN {FS=":"} { printf $$5; exit 0}' >> $$tmpname; \ - echo -n " <$$(whoami)@gmail.com> " >> $$tmpname; \ + username=$$(git config --get user.name); \ + useremail=$$(git config --get user.email); \ + echo -n "$$username <$$useremail> " >> $$tmpname; \ awk '\ $$1 == "Version" && started { exit } \ $$1 == "Version" { started=1; line=""; sub(/:/,"",$$2); \ diff --git a/config/elfutils.spec.in b/config/elfutils.spec.in index 794cbaf8..19b4229e 100644 --- a/config/elfutils.spec.in +++ b/config/elfutils.spec.in @@ -227,6 +227,17 @@ rm -rf ${RPM_BUILD_ROOT} %{_sysctldir}/10-default-yama-scope.conf %changelog +* Tue Aug 13 2019 Mark Wielaard <[email protected]> 0.177-1 +- elfclassify: New tool to analyze ELF objects. +- readelf: Print DW_AT_data_member_location as decimal offset. + Decode DW_AT_discr_list block attributes. +- libdw: Add DW_AT_GNU_numerator, DW_AT_GNU_denominator and DW_AT_GNU_bias. +- libdwelf: Add dwelf_elf_e_machine_string. + dwelf_elf_begin now only returns NULL when there is an error + reading or decompressing a file. If the file is not an ELF file + an ELF handle of type ELF_K_NONE is returned. +- backends: Add support for C-SKY. + * Thu Feb 14 2019 Mark Wielaard <[email protected]> 0.176-1 - build: Add new --enable-install-elfh option. Do NOT use this for system installs (it overrides glibc elf.h). diff --git a/config/upload-release.sh b/config/upload-release.sh index 470644d3..df5e3a07 100755 --- a/config/upload-release.sh +++ b/config/upload-release.sh @@ -29,6 +29,7 @@ pushd "${tempdir}" # Checkout git clone git://sourceware.org/git/elfutils.git cd elfutils +git tag --verify "elfutils-${VERSION}" git checkout -b "$VERSION" "elfutils-${VERSION}" # Create dist |
