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 B7228158016 for ; Mon, 18 Dec 2023 23:54:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 77A7D2BC022; Mon, 18 Dec 2023 23:54:16 +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 570442BC022 for ; Mon, 18 Dec 2023 23:54:16 +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 4EA90335D7B for ; Mon, 18 Dec 2023 23:54:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AD0751339 for ; Mon, 18 Dec 2023 23:54:13 +0000 (UTC) From: "Mart Raudsepp" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mart Raudsepp" Message-ID: <1702943611.eba05f2ac9ac21013d8546572f87d53baffd23f1.leio@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: gnome-base/gnome/ X-VCS-Repository: repo/gentoo X-VCS-Files: gnome-base/gnome/gnome-44.4.ebuild X-VCS-Directories: gnome-base/gnome/ X-VCS-Committer: leio X-VCS-Committer-Name: Mart Raudsepp X-VCS-Revision: eba05f2ac9ac21013d8546572f87d53baffd23f1 X-VCS-Branch: master Date: Mon, 18 Dec 2023 23:54:13 +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: 181fd8af-cb5e-4484-af1c-e26490852cc3 X-Archives-Hash: bfd2c84cf18aa3ad12bb164d07dad2da commit: eba05f2ac9ac21013d8546572f87d53baffd23f1 Author: Mart Raudsepp gentoo org> AuthorDate: Mon Dec 18 23:53:31 2023 +0000 Commit: Mart Raudsepp gentoo org> CommitDate: Mon Dec 18 23:53:31 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eba05f2a gnome-base/gnome: add 44.4 Signed-off-by: Mart Raudsepp gentoo.org> gnome-base/gnome/gnome-44.4.ebuild | 51 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) diff --git a/gnome-base/gnome/gnome-44.4.ebuild b/gnome-base/gnome/gnome-44.4.ebuild new file mode 100644 index 000000000000..bf8a07d94b6d --- /dev/null +++ b/gnome-base/gnome/gnome-44.4.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Meta package for GNOME, merge this package to install" +HOMEPAGE="https://www.gnome.org/" + +LICENSE="metapackage" +SLOT="2.0" # Cannot be installed at the same time as gnome-2 + +# when unmasking for an arch +# double check none of the deps are still masked ! +KEYWORDS="~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86" + +IUSE="accessibility +bluetooth +classic cups +extras" + +S=${WORKDIR} + +# TODO: check accessibility completeness +RDEPEND=" + >=gnome-base/gnome-core-libs-${PV}[cups?] + >=gnome-base/gnome-core-apps-${PV}[cups?,bluetooth?] + + >=gnome-base/gdm-44.1 + + >=x11-wm/mutter-44.3 + >=gnome-base/gnome-shell-44.3 + >=media-fonts/cantarell-0.303.1 + + >=x11-themes/gnome-backgrounds-44.0 + x11-themes/sound-theme-freedesktop + + accessibility? ( + >=app-accessibility/at-spi2-core-2.48.3 + >=app-accessibility/orca-44.1 + >=gnome-extra/mousetweaks-3.32.0 + ) + classic? ( >=gnome-extra/gnome-shell-extensions-44.0 ) + extras? ( >=gnome-base/gnome-extra-apps-${PV} ) +" +PDEPEND=">=gnome-base/gvfs-1.50.6[udisks]" + +DEPEND="" +BDEPEND="" + +pkg_postinst() { + # Remind people where to find our project information + elog "Please remember to look at https://wiki.gentoo.org/wiki/Project:GNOME" + elog "for information about the project and documentation." +}