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 26FB61581E7 for ; Mon, 22 Apr 2024 20:52:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 733B1E29F8; Mon, 22 Apr 2024 20:52:07 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3F966E29F8 for ; Mon, 22 Apr 2024 20:52:07 +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 4C8B734334D for ; Mon, 22 Apr 2024 20:52:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AA7E5171E for ; Mon, 22 Apr 2024 20:52:04 +0000 (UTC) From: "David Roman" 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 Roman" Message-ID: <1713800326.36d867a7b5d37e73765d048cf1047b16f49636c4.davidroman@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: gui-libs/gtk-session-lock/ X-VCS-Repository: repo/proj/guru X-VCS-Files: gui-libs/gtk-session-lock/Manifest gui-libs/gtk-session-lock/gtk-session-lock-0.2.0.ebuild gui-libs/gtk-session-lock/metadata.xml X-VCS-Directories: gui-libs/gtk-session-lock/ X-VCS-Committer: davidroman X-VCS-Committer-Name: David Roman X-VCS-Revision: 36d867a7b5d37e73765d048cf1047b16f49636c4 X-VCS-Branch: master Date: Mon, 22 Apr 2024 20:52:04 +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: 7ab98b86-403f-4e49-a4d6-8d83938037ed X-Archives-Hash: 883a2edcf0db218b2003ff2f21d6d14f commit: 36d867a7b5d37e73765d048cf1047b16f49636c4 Author: Gonçalo Negrier Duarte gmail com> AuthorDate: Mon Apr 22 15:34:13 2024 +0000 Commit: David Roman gmail com> CommitDate: Mon Apr 22 15:38:46 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=36d867a7 gui-libs/gtk-session-lock: new package, add 0.2.0 Signed-off-by: Gonçalo Negrier Duarte gmail.com> gui-libs/gtk-session-lock/Manifest | 1 + .../gtk-session-lock/gtk-session-lock-0.2.0.ebuild | 43 ++++++++++++++++++++++ gui-libs/gtk-session-lock/metadata.xml | 16 ++++++++ 3 files changed, 60 insertions(+) diff --git a/gui-libs/gtk-session-lock/Manifest b/gui-libs/gtk-session-lock/Manifest new file mode 100644 index 0000000000..7046b4208c --- /dev/null +++ b/gui-libs/gtk-session-lock/Manifest @@ -0,0 +1 @@ +DIST gtk-session-lock-0.2.0.tar.gz 96770 BLAKE2B dd3d6e906987df0579d796a4b565b469d4e9b6fe26546f1dc3436cdd09c2c27c3c2696bbbf1ce464d3dd55f8705bb280eb124307c0ce70a577d54efec18838e5 SHA512 ac1d33f215cdf0e3730840f5f7b9eac3027ad2f2e066a0ba532c9df9f74cffdedced841da0948d645cab3ed27a4c896353048ad45ed498668e3a905a98c14677 diff --git a/gui-libs/gtk-session-lock/gtk-session-lock-0.2.0.ebuild b/gui-libs/gtk-session-lock/gtk-session-lock-0.2.0.ebuild new file mode 100644 index 0000000000..8ca71ea67b --- /dev/null +++ b/gui-libs/gtk-session-lock/gtk-session-lock-0.2.0.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit meson + +DESCRIPTION="GTK-based lockscreen for Wayland" +HOMEPAGE="https://github.com/Cu3PO42/${PN}" +SRC_URI="https://github.com/Cu3PO42/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64" + +IUSE="exemples docs test" +RESTRICT="!test? ( test )" +RDEPEND=" + sys-libs/pam + x11-libs/gtk+:3[wayland] + gui-libs/gtk-session-lock +" +DEPEND=" + ${DEPEND} + >=dev-libs/wayland-protocols-1.34 +" +BDEPEND=" + dev-util/wayland-scanner + virtual/pkgconfig + dev-build/meson + man? ( app-text/scdoc ) +" + +src_configure() { + local emesonargs=( + $(meson_use examples examples) + $(meson_use test tests) + $(meson_use docs docs) + -Dintrospection=true + -Dintrospection=vapi + ) + meson_src_configure +} diff --git a/gui-libs/gtk-session-lock/metadata.xml b/gui-libs/gtk-session-lock/metadata.xml new file mode 100644 index 0000000000..05c8b27811 --- /dev/null +++ b/gui-libs/gtk-session-lock/metadata.xml @@ -0,0 +1,16 @@ + + + + + gonegrier.duarte@gmail.com + Gonçalo Negrier Duarte + + + Cu3PO42/gtk-session-lock + + + Build example applications + Build devhelp API documentation + Build tests + +