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 91B8F138334 for ; Thu, 13 Sep 2018 17:37:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5AEDFE09A4; Thu, 13 Sep 2018 17:37:51 +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 26C0BE09A4 for ; Thu, 13 Sep 2018 17:37:50 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 529AF335CF2 for ; Thu, 13 Sep 2018 17:37:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7AA2B3A4 for ; Thu, 13 Sep 2018 17:37:47 +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: <1536860261.3734b0e038e549ebd1942b73c95c7c84f1750a0d.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/metadata.xml dev-libs/processor-trace/processor-trace-1.6.1.ebuild X-VCS-Directories: dev-libs/processor-trace/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 3734b0e038e549ebd1942b73c95c7c84f1750a0d X-VCS-Branch: master Date: Thu, 13 Sep 2018 17:37:47 +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: 85e35070-7cf6-4509-97db-618db4bfe585 X-Archives-Hash: 7ad51a65613f88068f4917c1689faf6f commit: 3734b0e038e549ebd1942b73c95c7c84f1750a0d Author: Mikhail Klementev riseup net> AuthorDate: Fri Aug 10 07:58:21 2018 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Sep 13 17:37:41 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3734b0e0 dev-libs/processor-trace: Intel(R) Processor Trace decoder library Closes: https://github.com/gentoo/gentoo/pull/9523 dev-libs/processor-trace/Manifest | 1 + dev-libs/processor-trace/metadata.xml | 12 ++++++++++ .../processor-trace/processor-trace-1.6.1.ebuild | 26 ++++++++++++++++++++++ 3 files changed, 39 insertions(+) diff --git a/dev-libs/processor-trace/Manifest b/dev-libs/processor-trace/Manifest new file mode 100644 index 00000000000..161a20ca744 --- /dev/null +++ b/dev-libs/processor-trace/Manifest @@ -0,0 +1 @@ +DIST processor-trace-1.6.1.tar.gz 250843 BLAKE2B 0fa3f97f14e6fb931ea787261e84c65cbce0667db7adc709bdf386f5a87a9eb9af71b3b5b45c1c0f17d6b8e6800b92e9417955dc5496f3f6d3022620153fc2ad SHA512 c7c9c8ba78021fff3fde12a216f5729c6031114e5a727f49b7ff1a31c53b5ddba24d1b3aee252d8278ecd1fafe78a44ed059c12b9eb29eca33093e0720673468 diff --git a/dev-libs/processor-trace/metadata.xml b/dev-libs/processor-trace/metadata.xml new file mode 100644 index 00000000000..e55ddede119 --- /dev/null +++ b/dev-libs/processor-trace/metadata.xml @@ -0,0 +1,12 @@ + + + + + jollheef@riseup.net + Mikhail Klementev + + + proxy-maint@gentoo.org + Proxy Maintainers + + diff --git a/dev-libs/processor-trace/processor-trace-1.6.1.ebuild b/dev-libs/processor-trace/processor-trace-1.6.1.ebuild new file mode 100644 index 00000000000..5e70a10ca37 --- /dev/null +++ b/dev-libs/processor-trace/processor-trace-1.6.1.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2018 Gentoo Foundation +# 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 +}