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 1BA021382C5 for ; Thu, 11 Mar 2021 04:37:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2441CE08BB; Thu, 11 Mar 2021 04:37:17 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 0DF79E08AD for ; Thu, 11 Mar 2021 04:37:17 +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 B1EA2340D56 for ; Thu, 11 Mar 2021 04:37:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 14EC458F for ; Thu, 11 Mar 2021 04:37:11 +0000 (UTC) From: "Aisha Tammy" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aisha Tammy" Message-ID: <1615437425.8aad2ca5fae7c763bcbdfd1611d2bba157f3c2bd.epsilon-0@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: gui-libs/libcsys/ X-VCS-Repository: repo/proj/guru X-VCS-Files: gui-libs/libcsys/libcsys-9999.ebuild X-VCS-Directories: gui-libs/libcsys/ X-VCS-Committer: epsilon-0 X-VCS-Committer-Name: Aisha Tammy X-VCS-Revision: 8aad2ca5fae7c763bcbdfd1611d2bba157f3c2bd X-VCS-Branch: dev Date: Thu, 11 Mar 2021 04:37:11 +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: c8715f1c-fbfd-44b6-a074-ca14aad7bd21 X-Archives-Hash: bd3c2c684fdf113ff8dc299113bcbfb6 commit: 8aad2ca5fae7c763bcbdfd1611d2bba157f3c2bd Author: Aisha Tammy aisha cc> AuthorDate: Thu Mar 11 04:22:02 2021 +0000 Commit: Aisha Tammy aisha cc> CommitDate: Thu Mar 11 04:37:05 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=8aad2ca5 gui-libs/libcsys: move live ebuild to cmake Package-Manager: Portage-3.0.16, Repoman-3.0.2 Signed-off-by: Aisha Tammy aisha.cc> gui-libs/libcsys/libcsys-9999.ebuild | 23 ++--------------------- 1 file changed, 2 insertions(+), 21 deletions(-) diff --git a/gui-libs/libcsys/libcsys-9999.ebuild b/gui-libs/libcsys/libcsys-9999.ebuild index 8a618583..ae8b9371 100644 --- a/gui-libs/libcsys/libcsys-9999.ebuild +++ b/gui-libs/libcsys/libcsys-9999.ebuild @@ -5,7 +5,7 @@ EAPI=7 QTMIN="5.15.1" -inherit multilib qmake-utils +inherit cmake DESCRIPTION="Library for managing the device" HOMEPAGE="https://gitlab.com/cubocore/libcsys" @@ -19,10 +19,8 @@ else S="${WORKDIR}/${PN}-v${PV}" fi -RESTRICT="test" LICENSE="GPL-3" SLOT="0" -IUSE="udisks" DEPEND=" >=dev-qt/qtcore-${QTMIN}:5 @@ -31,22 +29,5 @@ DEPEND=" " RDEPEND=" ${DEPEND} - udisks? ( - sys-fs/udisks:2 - ) + sys-fs/udisks:2 " - -PATCHES=( - "${FILESDIR}/${PN}-lib.patch" -) - -src_configure() { - local lib="$(get_libdir)" - # '^^' because we need to upcase the definition - eqmake5 DEFINES+="${lib^^}" -} - -src_install() { - einstalldocs - emake INSTALL_ROOT="${D}" install -}