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 476F413835B for ; Wed, 12 May 2021 22:11:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4B268E094A; Wed, 12 May 2021 22:11:02 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 269DEE0949 for ; Wed, 12 May 2021 22:11:02 +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 BDFCC340C9C for ; Wed, 12 May 2021 22:11:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3CA04778 for ; Wed, 12 May 2021 22:10:59 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1620857253.b93e3e581161111eba0a64d68376aea1fad7dfbd.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: gnome-base/gnome/ X-VCS-Repository: repo/gentoo X-VCS-Files: gnome-base/gnome/gnome-40.0.ebuild X-VCS-Directories: gnome-base/gnome/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: b93e3e581161111eba0a64d68376aea1fad7dfbd X-VCS-Branch: master Date: Wed, 12 May 2021 22:10:59 +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: 6aa4dbe8-beac-4dac-970c-ee004a6b540b X-Archives-Hash: a279fe45f60c1a6e9cae5bb108e78906 commit: b93e3e581161111eba0a64d68376aea1fad7dfbd Author: Matt Turner gentoo org> AuthorDate: Wed May 5 15:00:04 2021 +0000 Commit: Matt Turner gentoo org> CommitDate: Wed May 12 22:07:33 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b93e3e58 gnome-base/gnome: Version bump to 40.0 Signed-off-by: Matt Turner gentoo.org> gnome-base/gnome/gnome-40.0.ebuild | 52 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) diff --git a/gnome-base/gnome/gnome-40.0.ebuild b/gnome-base/gnome/gnome-40.0.ebuild new file mode 100644 index 00000000000..5aaa2695cee --- /dev/null +++ b/gnome-base/gnome/gnome-40.0.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Meta package for GNOME 3, 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 ~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-40.0 + + >=x11-wm/mutter-${PV} + >=gnome-base/gnome-shell-${PV}[bluetooth?] + >=media-fonts/cantarell-0.301 + + >=x11-themes/gnome-backgrounds-40.0 + x11-themes/sound-theme-freedesktop + + accessibility? ( + >=app-accessibility/at-spi2-atk-2.38.0 + >=app-accessibility/at-spi2-core-2.40.0 + >=app-accessibility/orca-40.0 + >=gnome-extra/mousetweaks-3.32.0 + ) + classic? ( >=gnome-extra/gnome-shell-extensions-40.0 ) + extras? ( >=gnome-base/gnome-extra-apps-${PV} ) +" +PDEPEND=">=gnome-base/gvfs-1.48.0[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." +}