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 B0AEC1581D3 for ; Thu, 23 May 2024 19:27:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D343DE2A15; Thu, 23 May 2024 19:27:45 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B3A8CE2A15 for ; Thu, 23 May 2024 19:27:45 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DA0B0335D1C for ; Thu, 23 May 2024 19:27:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1F3971A2E for ; Thu, 23 May 2024 19:27:43 +0000 (UTC) From: "Arthur Zamarin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arthur Zamarin" Message-ID: <1716492437.ea9420785e5f14c4a7a49eaaacbcb4399e0ea7ed.arthurzam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-cpp/gtkmm/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-cpp/gtkmm/gtkmm-2.24.5-r1.ebuild dev-cpp/gtkmm/gtkmm-2.24.5-r2.ebuild X-VCS-Directories: dev-cpp/gtkmm/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: ea9420785e5f14c4a7a49eaaacbcb4399e0ea7ed X-VCS-Branch: master Date: Thu, 23 May 2024 19:27:43 +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: 5a144abb-d93b-4950-a53a-49c957fa1e61 X-Archives-Hash: 030336911477b713aeb9094697a86817 commit: ea9420785e5f14c4a7a49eaaacbcb4399e0ea7ed Author: Arthur Zamarin gentoo org> AuthorDate: Thu May 23 19:26:24 2024 +0000 Commit: Arthur Zamarin gentoo org> CommitDate: Thu May 23 19:27:17 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea942078 dev-cpp/gtkmm: EAPI 6 -> 8 Checked by comparing hashes of built stuff Signed-off-by: Arthur Zamarin gentoo.org> .../{gtkmm-2.24.5-r1.ebuild => gtkmm-2.24.5-r2.ebuild} | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/dev-cpp/gtkmm/gtkmm-2.24.5-r1.ebuild b/dev-cpp/gtkmm/gtkmm-2.24.5-r2.ebuild similarity index 90% rename from dev-cpp/gtkmm/gtkmm-2.24.5-r1.ebuild rename to dev-cpp/gtkmm/gtkmm-2.24.5-r2.ebuild index d70b1362ca74..362b10e1252c 100644 --- a/dev-cpp/gtkmm/gtkmm-2.24.5-r1.ebuild +++ b/dev-cpp/gtkmm/gtkmm-2.24.5-r2.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=8 inherit gnome2 multilib-minimal @@ -23,12 +23,14 @@ RDEPEND=" >=dev-cpp/pangomm-2.34.0:1.4[${MULTILIB_USEDEP}] >=dev-libs/libsigc++-2.3.2:2[${MULTILIB_USEDEP}] " -DEPEND="${RDEPEND} +DEPEND="${RDEPEND}" +BDEPEND=" virtual/pkgconfig doc? ( - media-gfx/graphviz + app-text/doxygen dev-libs/libxslt - app-text/doxygen ) + media-gfx/graphviz + ) " src_prepare() { @@ -39,7 +41,7 @@ src_prepare() { fi if ! use examples; then - # don't waste time building tests + # don't waste time building examples sed 's/^\(SUBDIRS =.*\)demos\(.*\)$/\1\2/' -i Makefile.am Makefile.in \ || die "sed 2 failed" fi @@ -59,6 +61,6 @@ multilib_src_install() { } multilib_src_install_all() { - DOCS="AUTHORS ChangeLog PORTING NEWS README" + local DOCS=( AUTHORS ChangeLog PORTING NEWS README ) einstalldocs }