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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id CFEA2158015 for ; Mon, 11 Dec 2023 06:50:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 71FDA2BC055; Mon, 11 Dec 2023 06:50:51 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3A0DC2BC054 for ; Mon, 11 Dec 2023 06:50:51 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 824CA34300A for ; Mon, 11 Dec 2023 06:50:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9EB0514CE for ; Mon, 11 Dec 2023 06:50:46 +0000 (UTC) From: "Viorel Munteanu" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Viorel Munteanu" Message-ID: <1702196416.f87aa98779a3c99bad97136e8f2d6ce00914bde3.ceamac@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: x11-drivers/OpenTabletDriver/ X-VCS-Repository: repo/proj/guru X-VCS-Files: x11-drivers/OpenTabletDriver/OpenTabletDriver-0.6.3.0.ebuild X-VCS-Directories: x11-drivers/OpenTabletDriver/ X-VCS-Committer: ceamac X-VCS-Committer-Name: Viorel Munteanu X-VCS-Revision: f87aa98779a3c99bad97136e8f2d6ce00914bde3 X-VCS-Branch: master Date: Mon, 11 Dec 2023 06:50:46 +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: be82d3fe-3a1f-4e98-8167-8a137aefca35 X-Archives-Hash: f9a78a782c7e19ab017215a33cdfe55e commit: f87aa98779a3c99bad97136e8f2d6ce00914bde3 Author: Takuya Wakazono gmail com> AuthorDate: Sun Dec 10 08:20:16 2023 +0000 Commit: Viorel Munteanu gentoo org> CommitDate: Sun Dec 10 08:20:16 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f87aa987 x11-drivers/OpenTabletDriver: conflict with -bin Also add Kconfig check. Signed-off-by: Takuya Wakazono gmail.com> x11-drivers/OpenTabletDriver/OpenTabletDriver-0.6.3.0.ebuild | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/x11-drivers/OpenTabletDriver/OpenTabletDriver-0.6.3.0.ebuild b/x11-drivers/OpenTabletDriver/OpenTabletDriver-0.6.3.0.ebuild index 54dbb67218..2e99ccfe42 100644 --- a/x11-drivers/OpenTabletDriver/OpenTabletDriver-0.6.3.0.ebuild +++ b/x11-drivers/OpenTabletDriver/OpenTabletDriver-0.6.3.0.ebuild @@ -232,7 +232,7 @@ xunit.extensibility.execution@2.4.1 xunit.runner.visualstudio@2.4.3 " -inherit desktop dotnet-pkg udev xdg +inherit desktop dotnet-pkg linux-info udev xdg DESCRIPTION="A cross-platform open-source tablet driver" HOMEPAGE="https://opentabletdriver.net/" @@ -251,14 +251,21 @@ RDEPEND=" x11-libs/libX11 x11-libs/libXrandr x11-libs/gtk+:3 + !x11-drivers/OpenTabletDriver-bin " +CONFIG_CHECK="~INPUT_UINPUT" DOTNET_PKG_PROJECTS=( "${S}/OpenTabletDriver.Console/OpenTabletDriver.Console.csproj" "${S}/OpenTabletDriver.Daemon/OpenTabletDriver.Daemon.csproj" "${S}/OpenTabletDriver.UX.Gtk/OpenTabletDriver.UX.Gtk.csproj" ) +pkg_setup() { + linux-info_pkg_setup + dotnet-pkg_pkg_setup +} + src_prepare() { # Build doesn't need the solution file but eclass tries to use it. rm -f OpenTabletDriver.sln || die