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 533BC138334 for ; Sun, 6 Oct 2019 11:24:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8A4B8E0866; Sun, 6 Oct 2019 11:24:04 +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 6FBD6E0866 for ; Sun, 6 Oct 2019 11:24:04 +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 4865934B9C8 for ; Sun, 6 Oct 2019 11:24:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 409E882A for ; Sun, 6 Oct 2019 11:23:59 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1570361021.38e87ca70fd35a55867b669e9d14021fde99996b.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/thunderbolt-software-user-space/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/thunderbolt-software-user-space/thunderbolt-software-user-space-0.9.3-r1.ebuild X-VCS-Directories: sys-apps/thunderbolt-software-user-space/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 38e87ca70fd35a55867b669e9d14021fde99996b X-VCS-Branch: master Date: Sun, 6 Oct 2019 11:23:59 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 85f15f5a-0751-4d5e-b9d0-971ec09dc484 X-Archives-Hash: 4324c59fba7d403dadd851c4335c3776 commit: 38e87ca70fd35a55867b669e9d14021fde99996b Author: Andreas Sturmlechner gentoo org> AuthorDate: Mon Sep 30 21:17:51 2019 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Oct 6 11:23:41 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=38e87ca7 sys-apps/thunderbolt-software-user-space: EAPI-7 bump, fix DEPENDs Add missing dev-libs/boost slot operator. app-text/txt2tags is not needed at runtime. Fix typo. Bug: https://bugs.gentoo.org/648312 Package-Manager: Portage-2.3.76, Repoman-2.3.17 Signed-off-by: Andreas Sturmlechner gentoo.org> ...thunderbolt-software-user-space-0.9.3-r1.ebuild | 27 ++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/sys-apps/thunderbolt-software-user-space/thunderbolt-software-user-space-0.9.3-r1.ebuild b/sys-apps/thunderbolt-software-user-space/thunderbolt-software-user-space-0.9.3-r1.ebuild new file mode 100644 index 00000000000..5d97235c7c4 --- /dev/null +++ b/sys-apps/thunderbolt-software-user-space/thunderbolt-software-user-space-0.9.3-r1.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit cmake-utils linux-info + +DESCRIPTION="Thunderbolt(TM) user-space components" +HOMEPAGE="https://github.com/intel/thunderbolt-software-user-space" +SRC_URI="https://github.com/intel/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +BDEPEND="app-text/txt2tags" +DEPEND="dev-libs/boost:=" +RDEPEND="${DEPEND}" + +pkg_pretend() { + CONFIG_CHECK="THUNDERBOLT" + ERROR_THUNDERBOLT="This program talks to the thunderbolt kernel driver, so please enable it." + CONFIG_CHECK="HOTPLUG_PCI" + ERROR_HOTPLUG_PCI="Thunderbolt needs pci hotplug support, so please enable it." + check_extra_config +}