Release v2.0.

This commit is contained in:
Sergio Durigan Junior 2018-08-08 14:37:02 -04:00
parent 507d13d2e2
commit 7341d5052a
4 changed files with 7 additions and 26 deletions

2
.gitignore vendored
View File

@ -1 +1 @@
/v1.6.1.tar.gz
/v2.0.tar.gz

View File

@ -1,11 +1,10 @@
Name: libipt
Version: 1.6.1
Release: 9%{?dist}
Version: 2.0
Release: 1%{?dist}
Summary: Intel Processor Trace Decoder Library
License: BSD
URL: https://github.com/01org/processor-trace
Source0: https://github.com/01org/processor-trace/archive/v%{version}.tar.gz
Patch1: v1.6.1-implicit-fallthrough.patch
# c++ is required only for -DPTUNIT test "ptunit-cpp".
# pandoc is for -DMAN.
BuildRequires: gcc-c++ cmake pandoc
@ -29,7 +28,6 @@ develop programs that use the Intel Processor Trace (Intel PT) Decoder Library.
%prep
%setup -q -n processor-trace-%{version}
%patch1 -p1
%build
%cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo \
@ -59,6 +57,9 @@ ctest -V %{?_smp_mflags}
%{_mandir}/*/*.gz
%changelog
* Wed Aug 8 2018 Sergio Durigan Junior <sergiodj@redhat.com> - 2.0-1
- Release v2.0.
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.6.1-9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild

View File

@ -1 +1 @@
SHA512 (v1.6.1.tar.gz) = c7c9c8ba78021fff3fde12a216f5729c6031114e5a727f49b7ff1a31c53b5ddba24d1b3aee252d8278ecd1fafe78a44ed059c12b9eb29eca33093e0720673468
SHA512 (v2.0.tar.gz) = ec63151e842c81cc73ea11ba560b63e005cefbe19d98de24ae5c8caa4de7c9c1d71d1ec5b6214a347592eac675b75a3d2b26d4691ca86f91020ebfea8e912939

View File

@ -1,20 +0,0 @@
commit 3a307bd5add3df34665d1e5cb1b646af55ba9653
Author: Jan Kratochvil <jan.kratochvil@redhat.com>
Date: Fri Jun 9 07:27:50 2017 +0200
libipt: Fix [-Werror=implicit-fallthrough=] with gcc-7.1.1.
diff --git a/libipt/src/pt_block_decoder.c b/libipt/src/pt_block_decoder.c
index 21783a6..91d5bb3 100644
--- a/libipt/src/pt_block_decoder.c
+++ b/libipt/src/pt_block_decoder.c
@@ -2095,6 +2095,9 @@ static int pt_blk_proceed_no_event_cached(struct pt_block_decoder *decoder,
}
/* Fall through to ptbq_decode. */
+#if __GNUC__ >= 7
+ __attribute__ ((fallthrough));
+#endif
case ptbq_decode: {
struct pt_insn_ext iext;