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 0165A15800D for ; Wed, 5 Jul 2023 08:00:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 48981E07F2; Wed, 5 Jul 2023 08:00:46 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2C232E07F2 for ; Wed, 5 Jul 2023 08:00:46 +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 24161341092 for ; Wed, 5 Jul 2023 08:00:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7C0DAAC2 for ; Wed, 5 Jul 2023 08:00:43 +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: <1688543975.8b30a89077513fb2bd60d6d2fce9292de62592ab.gonegrier.duarte@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: app-text/ReGreet/, app-text/ReGreet/files/ X-VCS-Repository: repo/proj/guru X-VCS-Files: app-text/ReGreet/ReGreet-9999.ebuild app-text/ReGreet/files/config-cage.toml app-text/ReGreet/files/config-sway.toml app-text/ReGreet/files/sway-config app-text/ReGreet/metadata.xml X-VCS-Directories: app-text/ReGreet/ app-text/ReGreet/files/ X-VCS-Committer: gonegrier.duarte X-VCS-Committer-Name: Gonçalo Negrier Duarte X-VCS-Revision: 8b30a89077513fb2bd60d6d2fce9292de62592ab X-VCS-Branch: dev Date: Wed, 5 Jul 2023 08:00: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: 23bba6ef-21d0-4726-8fcb-7c9539c1c152 X-Archives-Hash: 4ddf19f9d52db3345a4fba5726398db0 commit: 8b30a89077513fb2bd60d6d2fce9292de62592ab Author: Gonçalo Negrier Duarte gmail com> AuthorDate: Wed Jul 5 07:59:35 2023 +0000 Commit: Gonçalo Negrier Duarte gmail com> CommitDate: Wed Jul 5 07:59:35 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=8b30a890 app-text/ReGreet: treeclean Signed-off-by: Gonçalo Negrier Duarte gmail.com> app-text/ReGreet/ReGreet-9999.ebuild | 68 --------------------------------- app-text/ReGreet/files/config-cage.toml | 6 --- app-text/ReGreet/files/config-sway.toml | 6 --- app-text/ReGreet/files/sway-config | 2 - app-text/ReGreet/metadata.xml | 12 ------ 5 files changed, 94 deletions(-) diff --git a/app-text/ReGreet/ReGreet-9999.ebuild b/app-text/ReGreet/ReGreet-9999.ebuild deleted file mode 100644 index 2505acaef..000000000 --- a/app-text/ReGreet/ReGreet-9999.ebuild +++ /dev/null @@ -1,68 +0,0 @@ -# Copyright 2019-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cargo git-r3 - -EGIT_REPO_URI="https://github.com/rharish101/ReGreet.git" - -DESCRIPTION="A clean and customizable GTK-based greetd greeter written in Rust" -HOMEPAGE="https://github.com/rharish101/ReGreet" - -LICENSE="GPL-3" -SLOT="0" -DEPEND="x11-libs/gtk+:3 - gtk4? ( gui-libs/gtk ) - cage? ( gui-wm/cage ) - sway? ( gui-wm/sway ) - || ( gui-wm/cage gui-wm/sway )" -RDEPEND=" - ${DEPEND} - gui-libs/greetd -" -BDEPEND=" - virtual/rust -" -IUSE="gtk4 logs cage sway" -REQUIRED_USE="|| ( cage sway ) cage? ( !sway ) sway? ( !cage )" - -KEYWORDS="~amd64~x86" - -src_unpack() { - git-r3_src_unpack - cargo_live_src_unpack -} - -src_configure() { - if use gtk4; then - local myfeatures=( - gtk4_8 - ) - fi - cargo_src_configure -} - -src_compile() { - cargo_src_compile -} - -src_install() { - newbin ${WORKDIR}/${P}/target/release/regreet regreet - if use cage; then - insinto /etc/greetd/ && newins ${FILESDIR}/config-cage.toml config.toml - echo "Restart cage service to verify if works (Only activate on TTY1)" - fi - if use sway; then - insinto /etc/greetd/ && newins ${FILESDIR}/config-sway.toml config.toml - insinto /etc/greetd/ && doins ${FILESDIR}/sway-config - echo "Restart cage service to verify if works (Only activate on TTY1)" - fi -} - -src_post_install () { - if use logs; then - insinto /etc/tmpfiles.d/ && newins ${WORKDIR}/${P}/systemd-tmpfiles.conf regreet.conf - systemd-tmpfiles --create "$PWD/systemd-tmpfiles.conf" - fi -} \ No newline at end of file diff --git a/app-text/ReGreet/files/config-cage.toml b/app-text/ReGreet/files/config-cage.toml deleted file mode 100644 index f363ab6da..000000000 --- a/app-text/ReGreet/files/config-cage.toml +++ /dev/null @@ -1,6 +0,0 @@ -[terminal] -vt = 1 - -[default_session] -command = "cage -s -- regreet" -user = "greetd" \ No newline at end of file diff --git a/app-text/ReGreet/files/config-sway.toml b/app-text/ReGreet/files/config-sway.toml deleted file mode 100644 index d8b8f2c1a..000000000 --- a/app-text/ReGreet/files/config-sway.toml +++ /dev/null @@ -1,6 +0,0 @@ -[terminal] -vt = 1 - -[default_session] -command = "sway --config /etc/greetd/config-sway" -user = "greetd" \ No newline at end of file diff --git a/app-text/ReGreet/files/sway-config b/app-text/ReGreet/files/sway-config deleted file mode 100644 index 0d9eae454..000000000 --- a/app-text/ReGreet/files/sway-config +++ /dev/null @@ -1,2 +0,0 @@ -exec "regreet; swaymsg exit" -include /etc/sway/config.d/* \ No newline at end of file diff --git a/app-text/ReGreet/metadata.xml b/app-text/ReGreet/metadata.xml deleted file mode 100644 index 23d69ba06..000000000 --- a/app-text/ReGreet/metadata.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - Compile with support for gtk4 - Use cage to start ReGreet - Use sway to start ReGreet - - - rharish101/ReGreet - -