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 5C6B41581E7 for ; Tue, 23 Apr 2024 07:58:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 92641E29E4; Tue, 23 Apr 2024 07:57:59 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 70A2BE29E4 for ; Tue, 23 Apr 2024 07:57:59 +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 7F589343289 for ; Tue, 23 Apr 2024 07:57:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B7AEB1705 for ; Tue, 23 Apr 2024 07:57:56 +0000 (UTC) From: "Gonçalo Negrier Duarte" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Gonçalo Negrier Duarte" Message-ID: <1713857409.8a76a809d5cdb1280492ceb823bd35ed7f7c1749.gonegrier.duarte@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: gui-libs/gtk-session-lock/ X-VCS-Repository: repo/proj/guru X-VCS-Files: gui-libs/gtk-session-lock/gtk-session-lock-0.2.0-r4.ebuild gui-libs/gtk-session-lock/gtk-session-lock-9999.ebuild X-VCS-Directories: gui-libs/gtk-session-lock/ X-VCS-Committer: gonegrier.duarte X-VCS-Committer-Name: Gonçalo Negrier Duarte X-VCS-Revision: 8a76a809d5cdb1280492ceb823bd35ed7f7c1749 X-VCS-Branch: dev Date: Tue, 23 Apr 2024 07:57:56 +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: 2252f869-809e-45c4-aa03-589f6496f4f7 X-Archives-Hash: d02562559d5187e66bd0202d2c6fb0a3 commit: 8a76a809d5cdb1280492ceb823bd35ed7f7c1749 Author: Gonçalo Negrier Duarte gmail com> AuthorDate: Tue Apr 23 07:25:37 2024 +0000 Commit: Gonçalo Negrier Duarte gmail com> CommitDate: Tue Apr 23 07:30:09 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=8a76a809 gui-libs/gtk-session-lock: add 9999 * fix typos DEPEND, RDEPEND and BDEPEND Signed-off-by: Gonçalo Negrier Duarte gmail.com> .../gtk-session-lock/gtk-session-lock-0.2.0-r4.ebuild | 19 ++++++++++++------- ...k-0.2.0-r4.ebuild => gtk-session-lock-9999.ebuild} | 19 ++++++++++++------- 2 files changed, 24 insertions(+), 14 deletions(-) diff --git a/gui-libs/gtk-session-lock/gtk-session-lock-0.2.0-r4.ebuild b/gui-libs/gtk-session-lock/gtk-session-lock-0.2.0-r4.ebuild index 24f6a72b40..00e8401030 100644 --- a/gui-libs/gtk-session-lock/gtk-session-lock-0.2.0-r4.ebuild +++ b/gui-libs/gtk-session-lock/gtk-session-lock-0.2.0-r4.ebuild @@ -7,36 +7,41 @@ PYTHON_COMPAT=( python3_{10..12} ) VALA_USE_DEPEND="vapigen" inherit vala meson python-any-r1 -SRC_URI="https://github.com/Cu3PO42/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" +if [[ ${PV} == 9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/Cu3PO42/${PN}.git" +else + SRC_URI="https://github.com/Cu3PO42/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64" +fi DESCRIPTION="GTK-based lockscreen for Wayland" HOMEPAGE="https://github.com/Cu3PO42/${PN}" LICENSE="GPL-3" SLOT="0" -KEYWORDS="~amd64" IUSE="examples gtk-doc introspection test vala" RESTRICT="!test? ( test )" REQUIRED_USE="vala? ( introspection )" -RDEPEND=" - sys-libs/pam -" DEPEND=" - ${DEPEND} x11-libs/gtk+:3[introspection?,wayland] >=dev-libs/wayland-1.22.0 >=dev-libs/wayland-protocols-1.34 test? ( gui-libs/gtk-layer-shell[introspection?] ) " +RDEPEND=" + ${DEPEND} + sys-libs/pam +" BDEPEND=" dev-util/wayland-scanner virtual/pkgconfig dev-build/meson gtk-doc? ( dev-util/gtk-doc ) test? ( ${PYTHON_DEPS} ) - vala? ( $(vala_depend) + vala? ( $(vala_depend) ) " src_prepare() { diff --git a/gui-libs/gtk-session-lock/gtk-session-lock-0.2.0-r4.ebuild b/gui-libs/gtk-session-lock/gtk-session-lock-9999.ebuild similarity index 81% copy from gui-libs/gtk-session-lock/gtk-session-lock-0.2.0-r4.ebuild copy to gui-libs/gtk-session-lock/gtk-session-lock-9999.ebuild index 24f6a72b40..00e8401030 100644 --- a/gui-libs/gtk-session-lock/gtk-session-lock-0.2.0-r4.ebuild +++ b/gui-libs/gtk-session-lock/gtk-session-lock-9999.ebuild @@ -7,36 +7,41 @@ PYTHON_COMPAT=( python3_{10..12} ) VALA_USE_DEPEND="vapigen" inherit vala meson python-any-r1 -SRC_URI="https://github.com/Cu3PO42/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" +if [[ ${PV} == 9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/Cu3PO42/${PN}.git" +else + SRC_URI="https://github.com/Cu3PO42/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64" +fi DESCRIPTION="GTK-based lockscreen for Wayland" HOMEPAGE="https://github.com/Cu3PO42/${PN}" LICENSE="GPL-3" SLOT="0" -KEYWORDS="~amd64" IUSE="examples gtk-doc introspection test vala" RESTRICT="!test? ( test )" REQUIRED_USE="vala? ( introspection )" -RDEPEND=" - sys-libs/pam -" DEPEND=" - ${DEPEND} x11-libs/gtk+:3[introspection?,wayland] >=dev-libs/wayland-1.22.0 >=dev-libs/wayland-protocols-1.34 test? ( gui-libs/gtk-layer-shell[introspection?] ) " +RDEPEND=" + ${DEPEND} + sys-libs/pam +" BDEPEND=" dev-util/wayland-scanner virtual/pkgconfig dev-build/meson gtk-doc? ( dev-util/gtk-doc ) test? ( ${PYTHON_DEPS} ) - vala? ( $(vala_depend) + vala? ( $(vala_depend) ) " src_prepare() {