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 F32FE158089 for ; Fri, 29 Sep 2023 07:17:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EC1F32BC023; Fri, 29 Sep 2023 07:17:39 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 D1C812BC023 for ; Fri, 29 Sep 2023 07:17:39 +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 140A5335D1B for ; Fri, 29 Sep 2023 07:17:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1D9DF1188 for ; Fri, 29 Sep 2023 07:17:37 +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: <1695971851.c17cca78a19a365eec70488891bf2c1eb2a7a023.arthurzam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/girara/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/girara/girara-0.4.0-r1.ebuild dev-libs/girara/girara-9999.ebuild X-VCS-Directories: dev-libs/girara/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: c17cca78a19a365eec70488891bf2c1eb2a7a023 X-VCS-Branch: master Date: Fri, 29 Sep 2023 07:17:37 +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: ddd286e1-7350-4b7d-91ca-304e8a7da76e X-Archives-Hash: 30d87d8006530e2d6769e6086d00b7ed commit: c17cca78a19a365eec70488891bf2c1eb2a7a023 Author: Leonardo Hernández Hernández proton me> AuthorDate: Fri Sep 29 01:49:16 2023 +0000 Commit: Arthur Zamarin gentoo org> CommitDate: Fri Sep 29 07:17:31 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c17cca78 dev-libs/girara: update EAPI 7 -> 8 Signed-off-by: Leonardo Hernández Hernández proton.me> Signed-off-by: Arthur Zamarin gentoo.org> .../{girara-9999.ebuild => girara-0.4.0-r1.ebuild} | 32 ++++++++++++++-------- dev-libs/girara/girara-9999.ebuild | 31 +++++++++++++-------- 2 files changed, 40 insertions(+), 23 deletions(-) diff --git a/dev-libs/girara/girara-9999.ebuild b/dev-libs/girara/girara-0.4.0-r1.ebuild similarity index 62% copy from dev-libs/girara/girara-9999.ebuild copy to dev-libs/girara/girara-0.4.0-r1.ebuild index 88dc773e88de..34e5e35a0455 100644 --- a/dev-libs/girara/girara-9999.ebuild +++ b/dev-libs/girara/girara-0.4.0-r1.ebuild @@ -1,14 +1,14 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 inherit meson virtualx DESCRIPTION="UI library that focuses on simplicity and minimalism" HOMEPAGE="https://pwmt.org/projects/girara/" -if [[ ${PV} == *999 ]]; then +if [[ ${PV} == *9999 ]]; then inherit git-r3 EGIT_REPO_URI="https://git.pwmt.org/pwmt/${PN}.git" EGIT_BRANCH="develop" @@ -20,27 +20,35 @@ fi LICENSE="ZLIB" SLOT="0" IUSE="doc libnotify test" - RESTRICT="!test? ( test )" -DEPEND="dev-libs/glib:2 +DEPEND=" + dev-libs/glib:2 dev-libs/json-glib:= >=x11-libs/gtk+-3.20:3 - libnotify? ( x11-libs/libnotify )" + libnotify? ( x11-libs/libnotify ) +" RDEPEND="${DEPEND}" -BDEPEND="doc? ( app-doc/doxygen ) - test? ( dev-libs/check ) - virtual/pkgconfig" +# Tests are run under virtx +BDEPEND=" + virtual/pkgconfig + doc? ( app-doc/doxygen ) + test? ( + dev-libs/check + x11-libs/gtk+:3[X] + ) +" src_configure() { - local emesonargs=( + local -a emesonargs=( -Djson=enabled - -Ddocs=$(usex doc enabled disabled) - -Dnotify=$(usex libnotify enabled disabled) + $(meson_feature doc docs) + $(meson_feature libnotify notify) ) meson_src_configure } src_test() { + # TODO: run test on wayland virtx meson_src_test } diff --git a/dev-libs/girara/girara-9999.ebuild b/dev-libs/girara/girara-9999.ebuild index 88dc773e88de..47b80dd68548 100644 --- a/dev-libs/girara/girara-9999.ebuild +++ b/dev-libs/girara/girara-9999.ebuild @@ -1,14 +1,14 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 inherit meson virtualx DESCRIPTION="UI library that focuses on simplicity and minimalism" HOMEPAGE="https://pwmt.org/projects/girara/" -if [[ ${PV} == *999 ]]; then +if [[ ${PV} == *9999 ]]; then inherit git-r3 EGIT_REPO_URI="https://git.pwmt.org/pwmt/${PN}.git" EGIT_BRANCH="develop" @@ -23,24 +23,33 @@ IUSE="doc libnotify test" RESTRICT="!test? ( test )" -DEPEND="dev-libs/glib:2 +DEPEND=" + dev-libs/glib:2 dev-libs/json-glib:= >=x11-libs/gtk+-3.20:3 - libnotify? ( x11-libs/libnotify )" + libnotify? ( x11-libs/libnotify ) +" RDEPEND="${DEPEND}" -BDEPEND="doc? ( app-doc/doxygen ) - test? ( dev-libs/check ) - virtual/pkgconfig" +# Tests are run under virtx +BDEPEND=" + virtual/pkgconfig + doc? ( app-doc/doxygen ) + test? ( + dev-libs/check + x11-libs/gtk+:3[X] + ) +" src_configure() { - local emesonargs=( + local -a emesonargs=( -Djson=enabled - -Ddocs=$(usex doc enabled disabled) - -Dnotify=$(usex libnotify enabled disabled) + $(meson_feature doc docs) + $(meson_feature libnotify notify) ) meson_src_configure } src_test() { + # TODO: run test on wayland virtx meson_src_test }