summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorMark Wielaard <mark@klomp.org>2019-08-13 23:53:56 +0200
committerMark Wielaard <mark@klomp.org>2019-08-13 23:57:23 +0200
commit5643e037cb7a38ed5d52f50421be706ea8014e3d (patch)
tree04ffc8f67e19d2a9667e7de315e72c6b99fd2da8 /config
parent3f489b5c7c78df6d52f8982f79c36e9a220e8951 (diff)
downloadelfutils-5643e037cb7a38ed5d52f50421be706ea8014e3d.tar.gz
Prepare for 0.177elfutils-0.177
Set version to 0.177. Update NEWS and elfutils.spec.in. Use git --get user.name and user.email for spec changelog. Regenerate po/*.po files. Signed-off-by: Mark Wielaard <mark@klomp.org>
Diffstat (limited to 'config')
-rw-r--r--config/ChangeLog5
-rw-r--r--config/Makefile.am6
-rw-r--r--config/elfutils.spec.in11
3 files changed, 19 insertions, 3 deletions
diff --git a/config/ChangeLog b/config/ChangeLog
index 9b1cce4e..65658118 100644
--- a/config/ChangeLog
+++ b/config/ChangeLog
@@ -1,3 +1,8 @@
+2019-08-13 Mark Wielaard <mark@klomp.org>
+
+ * Makefile.am (elfutils.spec.in): Use git --get user.name and
+ user.email.
+
2019-04-15 Mark Wielaard <mark@klomp.org>
* upload-release.sh: Add git tag --verify.
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 <mark@klomp.org> 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 <mark@klomp.org> 0.176-1
- build: Add new --enable-install-elfh option.
Do NOT use this for system installs (it overrides glibc elf.h).