From 7341d5052a2ed9a3d2ef1a3f33dc6f0fb5f49e2f Mon Sep 17 00:00:00 2001 From: Sergio Durigan Junior Date: Aug 08 2018 18:40:56 +0000 Subject: Release v2.0. --- diff --git a/.gitignore b/.gitignore index c2e3f9a..8a42413 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1 @@ -/v1.6.1.tar.gz +/v2.0.tar.gz diff --git a/libipt.spec b/libipt.spec index 0d8a88b..3a64bcd 100644 --- a/libipt.spec +++ b/libipt.spec @@ -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 - 2.0-1 +- Release v2.0. + * Fri Jul 13 2018 Fedora Release Engineering - 1.6.1-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild diff --git a/sources b/sources index 5919dec..c93d317 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (v1.6.1.tar.gz) = c7c9c8ba78021fff3fde12a216f5729c6031114e5a727f49b7ff1a31c53b5ddba24d1b3aee252d8278ecd1fafe78a44ed059c12b9eb29eca33093e0720673468 +SHA512 (v2.0.tar.gz) = ec63151e842c81cc73ea11ba560b63e005cefbe19d98de24ae5c8caa4de7c9c1d71d1ec5b6214a347592eac675b75a3d2b26d4691ca86f91020ebfea8e912939 diff --git a/v1.6.1-implicit-fallthrough.patch b/v1.6.1-implicit-fallthrough.patch deleted file mode 100644 index 5f19356..0000000 --- a/v1.6.1-implicit-fallthrough.patch +++ /dev/null @@ -1,20 +0,0 @@ -commit 3a307bd5add3df34665d1e5cb1b646af55ba9653 -Author: Jan Kratochvil -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;