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 7C1AF13933E for ; Fri, 16 Jul 2021 23:24:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B5086E09AD; Fri, 16 Jul 2021 23:24:30 +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 973B1E09AD for ; Fri, 16 Jul 2021 23:24:30 +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 74BF333BEC7 for ; Fri, 16 Jul 2021 23:24:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1127363F for ; Fri, 16 Jul 2021 23:24:28 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1626477856.946b6aec2468bd6a96b4d1d8028496f828b6830b.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/colorhug-client/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-gfx/colorhug-client/colorhug-client-0.2.8.ebuild X-VCS-Directories: media-gfx/colorhug-client/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 946b6aec2468bd6a96b4d1d8028496f828b6830b X-VCS-Branch: master Date: Fri, 16 Jul 2021 23:24:28 +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: d5e054d6-36eb-4d72-93b9-bfdedf2aa873 X-Archives-Hash: 1feec866d80eb2d177bad1ad6cf822dc commit: 946b6aec2468bd6a96b4d1d8028496f828b6830b Author: David Seifert gentoo org> AuthorDate: Fri Jul 16 23:24:16 2021 +0000 Commit: David Seifert gentoo org> CommitDate: Fri Jul 16 23:24:16 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=946b6aec media-gfx/colorhug-client: Port to EAPI 7 Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: David Seifert gentoo.org> .../colorhug-client/colorhug-client-0.2.8.ebuild | 24 +++++++++------------- 1 file changed, 10 insertions(+), 14 deletions(-) diff --git a/media-gfx/colorhug-client/colorhug-client-0.2.8.ebuild b/media-gfx/colorhug-client/colorhug-client-0.2.8.ebuild index 4e4b403c650..8113155736c 100644 --- a/media-gfx/colorhug-client/colorhug-client-0.2.8.ebuild +++ b/media-gfx/colorhug-client/colorhug-client-0.2.8.ebuild @@ -1,10 +1,9 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 -GCONF_DEBUG="no" +EAPI=7 -inherit bash-completion-r1 eutils gnome2 +inherit bash-completion-r1 xdg DESCRIPTION="Client tools for the ColorHug display colorimeter" HOMEPAGE="http://www.hughski.com/" @@ -13,8 +12,6 @@ SRC_URI="https://people.freedesktop.org/~hughsient/releases/${P}.tar.xz" LICENSE="GPL-2" SLOT="0" KEYWORDS="amd64 x86" -IUSE="" - # Tests need valgrind, that needs glibc with debugging symbols RESTRICT="test" @@ -27,25 +24,24 @@ RDEPEND=" net-libs/libsoup:2.4 >=x11-libs/gtk+-3.11.2:3 >=x11-misc/colord-1.2.9:0= - >=x11-libs/colord-gtk-0.1.24 -" -DEPEND="${RDEPEND} + >=x11-libs/colord-gtk-0.1.24" +DEPEND="${RDEPEND}" +# docbook stuff needed for man pages +BDEPEND=" app-text/docbook-sgml-dtd:4.1 app-text/docbook-sgml-utils app-text/yelp-tools >=dev-util/intltool-0.50 >=sys-devel/gettext-0.17 - virtual/pkgconfig -" -# docbook stuff needed for man pages + virtual/pkgconfig" src_configure() { # introspection checked but not needed by anything # Install completions manually to prevent dependency on bash-completion, bug #546166 - gnome2_src_configure --disable-introspection --disable-bash-completion + econf --disable-introspection --disable-bash-completion } src_install() { - gnome2_src_install + default dobashcomp data/bash/colorhug-cmd }