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 B92F4138359 for ; Fri, 17 Jul 2020 07:26:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0D469E09E0; Fri, 17 Jul 2020 07:26:56 +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 E504FE09E0 for ; Fri, 17 Jul 2020 07:26:55 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 8FA3134F238 for ; Fri, 17 Jul 2020 07:26:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 416F62A4 for ; Fri, 17 Jul 2020 07:26:53 +0000 (UTC) From: "Matthias Coppens" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matthias Coppens" Message-ID: <1594970800.85166566c23aed1a47aa75481a88f97dc4dcec2c.coppens.matthias@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: gui-wm/cage/ X-VCS-Repository: repo/proj/guru X-VCS-Files: gui-wm/cage/Manifest gui-wm/cage/cage-0.1.2.1.ebuild gui-wm/cage/cage-9999.ebuild gui-wm/cage/metadata.xml X-VCS-Directories: gui-wm/cage/ X-VCS-Committer: coppens.matthias X-VCS-Committer-Name: Matthias Coppens X-VCS-Revision: 85166566c23aed1a47aa75481a88f97dc4dcec2c X-VCS-Branch: dev Date: Fri, 17 Jul 2020 07:26:53 +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: b9779e3c-d9a8-44e5-bbee-50acc71791f1 X-Archives-Hash: 0c47493202df51a293f87272f2783c6c commit: 85166566c23aed1a47aa75481a88f97dc4dcec2c Author: Matthias Coppens gmail com> AuthorDate: Fri Jul 17 07:26:22 2020 +0000 Commit: Matthias Coppens gmail com> CommitDate: Fri Jul 17 07:26:40 2020 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=85166566 gui-wm/cage: New package Package-Manager: Portage-2.3.99, Repoman-2.3.23 Signed-off-by: Matthias Coppens gmail.com> gui-wm/cage/Manifest | 1 + gui-wm/cage/cage-0.1.2.1.ebuild | 37 +++++++++++++++++++++++++++++++++++++ gui-wm/cage/cage-9999.ebuild | 35 +++++++++++++++++++++++++++++++++++ gui-wm/cage/metadata.xml | 15 +++++++++++++++ 4 files changed, 88 insertions(+) diff --git a/gui-wm/cage/Manifest b/gui-wm/cage/Manifest new file mode 100644 index 0000000..3b64760 --- /dev/null +++ b/gui-wm/cage/Manifest @@ -0,0 +1 @@ +DIST cage-0.1.2.1.tar.gz 24600 BLAKE2B 593093afd072664d1067c1df662880dcb11e00bcbcb55b46a16021e0125aff033e578d500d9aa2f9ac7e5766560c131d0a56a9245518d66caaedde572dbbaf0f SHA512 ae332d747da7b59fd8b53b50ed3033959601db0eade435aff953a2789505eb0cbf4839cb41fe537457158327685c60e4367bfb664d2d524a270a22b1f8707d5e diff --git a/gui-wm/cage/cage-0.1.2.1.ebuild b/gui-wm/cage/cage-0.1.2.1.ebuild new file mode 100644 index 0000000..6277f05 --- /dev/null +++ b/gui-wm/cage/cage-0.1.2.1.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +EGIT_REPO_URI="https://github.com/Hjdskes/${PN}" +case "${PV}" in + 9999) + inherit git-r3 + ;; + *) + SRC_URI="${EGIT_REPO_URI}/archive/v${PV}.tar.gz -> ${P}.tar.gz" +esac +inherit meson + +DESCRIPTION="A Wayland kiosk" +HOMEPAGE="https://www.hjdskes.nl/projects/${PN}" +LICENSE="MIT" +SLOT="0" + +IUSE="-X" + +RDEPEND=" + >=gui-libs/wlroots-0.11 + x11-libs/libxkbcommon + X? ( + gui-libs/wlroots[X] + x11-libs/libxkbcommon[X] + ) +" +DEPEND="${RDEPEND}" + +KEYWORDS="-amd64 -x86" + +src_configure() { + meson_src_configure $(meson_use X xwayland) +} diff --git a/gui-wm/cage/cage-9999.ebuild b/gui-wm/cage/cage-9999.ebuild new file mode 100644 index 0000000..e5f7918 --- /dev/null +++ b/gui-wm/cage/cage-9999.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +EGIT_REPO_URI="https://github.com/Hjdskes/${PN}" +case "${PV}" in + 9999) + inherit git-r3 + ;; + *) + SRC_URI="${EGIT_REPO_URI}/archive/v${PV}.tar.gz -> ${P}.tar.gz" +esac +inherit meson + +DESCRIPTION="A Wayland kiosk" +HOMEPAGE="https://www.hjdskes.nl/projects/${PN}" +LICENSE="MIT" +SLOT="0" + +IUSE="-X" + +RDEPEND=" + >=gui-libs/wlroots-0.11 + x11-libs/libxkbcommon + X? ( + gui-libs/wlroots[X] + x11-libs/libxkbcommon[X] + ) +" +DEPEND="${RDEPEND}" + +src_configure() { + meson_src_configure $(meson_use X xwayland) +} diff --git a/gui-wm/cage/metadata.xml b/gui-wm/cage/metadata.xml new file mode 100644 index 0000000..7e42ac2 --- /dev/null +++ b/gui-wm/cage/metadata.xml @@ -0,0 +1,15 @@ + + + + + coppens.matthias.abc@gmail.com + Matthias Coppens + + + This is Cage, a Wayland kiosk. + A kiosk runs a single, maximized application. + + + Enable support for X11 applications (XWayland) + +