From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 3522F138334 for ; Mon, 1 Oct 2018 20:22:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1B509E0A52; Mon, 1 Oct 2018 20:22:25 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E6917E0A52 for ; Mon, 1 Oct 2018 20:22:24 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0F05B335D85 for ; Mon, 1 Oct 2018 20:22:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2770A2C6 for ; Mon, 1 Oct 2018 20:22:21 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1538425337.47eeea1556d366165882143b368e18115896d647.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/processor-trace/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/processor-trace/Manifest dev-libs/processor-trace/processor-trace-1.6.2.ebuild X-VCS-Directories: dev-libs/processor-trace/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 47eeea1556d366165882143b368e18115896d647 X-VCS-Branch: master Date: Mon, 1 Oct 2018 20:22:21 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 31fbe525-8997-4dd3-b14a-36ff8954f874 X-Archives-Hash: 93025cae024d517bdfe639ce1cd936d8 commit: 47eeea1556d366165882143b368e18115896d647 Author: Mikhail Klementev riseup net> AuthorDate: Mon Oct 1 19:33:46 2018 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Oct 1 20:22:17 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=47eeea15 dev-libs/processor-trace: Version bump to 1.6.2 Signed-off-by: Mikhail Klementev riseup.net> Signed-off-by: Michał Górny gentoo.org> dev-libs/processor-trace/Manifest | 1 + .../processor-trace/processor-trace-1.6.2.ebuild | 26 ++++++++++++++++++++++ 2 files changed, 27 insertions(+) diff --git a/dev-libs/processor-trace/Manifest b/dev-libs/processor-trace/Manifest index 161a20ca744..0d9b754f61c 100644 --- a/dev-libs/processor-trace/Manifest +++ b/dev-libs/processor-trace/Manifest @@ -1 +1,2 @@ DIST processor-trace-1.6.1.tar.gz 250843 BLAKE2B 0fa3f97f14e6fb931ea787261e84c65cbce0667db7adc709bdf386f5a87a9eb9af71b3b5b45c1c0f17d6b8e6800b92e9417955dc5496f3f6d3022620153fc2ad SHA512 c7c9c8ba78021fff3fde12a216f5729c6031114e5a727f49b7ff1a31c53b5ddba24d1b3aee252d8278ecd1fafe78a44ed059c12b9eb29eca33093e0720673468 +DIST processor-trace-1.6.2.tar.gz 259982 BLAKE2B ab394dd37eab924e841d77911f90e0b3ecceac69ae1b8fcd911c0bc26c2ac4aedf8bde3e0d8197b3341159d6b35458177f0c795eb9c1b146e38fd278135042fe SHA512 10f4ef6bcca9a4b39b0cfbfc82d79a6adb206aaa1a78961b0dea0926f7e2e462ea3cd5430dc82e71ce9dede18550f3c84d38fee26e1b2065668767fb5f796995 diff --git a/dev-libs/processor-trace/processor-trace-1.6.2.ebuild b/dev-libs/processor-trace/processor-trace-1.6.2.ebuild new file mode 100644 index 00000000000..58e645476ad --- /dev/null +++ b/dev-libs/processor-trace/processor-trace-1.6.2.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2018 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit cmake-utils + +DESCRIPTION="Intel(R) Processor Trace decoder library" +HOMEPAGE="https://github.com/01org/processor-trace" +SRC_URI="https://github.com/01org/processor-trace/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD" +SLOT=0 +KEYWORDS="-* ~amd64" +IUSE="doc test" + +DEPEND="doc? ( app-text/pandoc )" + +src_configure() { + local mycmakeargs=( + -DMAN=$(usex doc) + -DPTUNIT=$(usex test) + ) + + cmake-utils_src_configure +}