diff options
author | Oz Tiram <oz.tiram@gmail.com> | 2022-12-02 12:33:39 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-12-03 01:04:16 +0000 |
commit | 0dc8d560ffbacddb2bf117d458d9238797470ef0 (patch) | |
tree | 68b1bb9c82439aa046a685e4fe73480d39911532 /mate-base | |
parent | mate-extra/mate-calc: add 1.26.0 (diff) | |
download | gentoo-0dc8d560ffbacddb2bf117d458d9238797470ef0.tar.gz gentoo-0dc8d560ffbacddb2bf117d458d9238797470ef0.tar.bz2 gentoo-0dc8d560ffbacddb2bf117d458d9238797470ef0.zip |
mate-base/mate: bump version 1.26
Fix QA with 1.24 - remove dependency on mate-themes-meta
Signed-off-by: Oz Tiram <oz.tiram@gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/28508
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'mate-base')
-rw-r--r-- | mate-base/mate/mate-1.24.ebuild | 1 | ||||
-rw-r--r-- | mate-base/mate/mate-1.26.0.ebuild | 83 |
2 files changed, 83 insertions, 1 deletions
diff --git a/mate-base/mate/mate-1.24.ebuild b/mate-base/mate/mate-1.24.ebuild index 98ce83118b27..908ad880c495 100644 --- a/mate-base/mate/mate-1.24.ebuild +++ b/mate-base/mate/mate-1.24.ebuild @@ -43,7 +43,6 @@ RDEPEND=" themes? ( =x11-themes/mate-backgrounds-${MATE_BRANCH}* =x11-themes/mate-icon-theme-${MATE_BRANCH}* - >=x11-themes/mate-themes-meta-${MATE_THEMES_V} ) extras? ( =app-arch/engrampa-${MATE_BRANCH}* diff --git a/mate-base/mate/mate-1.26.0.ebuild b/mate-base/mate/mate-1.26.0.ebuild new file mode 100644 index 000000000000..87e02d5b75f9 --- /dev/null +++ b/mate-base/mate/mate-1.26.0.ebuild @@ -0,0 +1,83 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +if [[ ${PV} == 9999 ]]; then + MATE_BRANCH=9999 + MATE_THEMES_V=9999 +else + MATE_BRANCH="$(ver_cut 1-2)" + MATE_THEMES_V=3 + KEYWORDS="~amd64 ~arm ~arm64 ~loong ~riscv ~x86" +fi + +SRC_URI="" +DESCRIPTION="Meta ebuild for MATE, a traditional desktop environment" +HOMEPAGE="https://mate-desktop.org" + +LICENSE="metapackage" + +SLOT="0" +IUSE="+base bluetooth help +notification +themes +extras" + +S="${WORKDIR}" + +RDEPEND=" + =mate-base/mate-desktop-${MATE_BRANCH}* + =mate-base/mate-menus-${MATE_BRANCH}* + =mate-base/mate-panel-${MATE_BRANCH}* + =mate-base/mate-session-manager-${MATE_BRANCH}* + =mate-base/mate-settings-daemon-${MATE_BRANCH}* + =x11-wm/marco-${MATE_BRANCH}* + base? ( + =mate-base/caja-${MATE_BRANCH}* + =mate-base/mate-applets-meta-${MATE_BRANCH}* + =mate-base/mate-control-center-${MATE_BRANCH}* + =mate-extra/mate-media-${MATE_BRANCH}* + =x11-misc/mozo-${MATE_BRANCH}* + =x11-terms/mate-terminal-${MATE_BRANCH}* + ) + bluetooth? ( net-wireless/blueman ) + themes? ( + =x11-themes/mate-backgrounds-${MATE_BRANCH}* + =x11-themes/mate-icon-theme-${MATE_BRANCH}* + ) + extras? ( + =app-arch/engrampa-${MATE_BRANCH}* + =app-editors/pluma-${MATE_BRANCH}* + =app-text/atril-${MATE_BRANCH}* + =mate-extra/caja-extensions-${MATE_BRANCH}* + =mate-extra/mate-calc-${MATE_BRANCH}* + =mate-extra/mate-netbook-${MATE_BRANCH}* + =mate-extra/mate-power-manager-${MATE_BRANCH}* + =mate-extra/mate-screensaver-${MATE_BRANCH}* + =mate-extra/mate-system-monitor-${MATE_BRANCH}* + =mate-extra/mate-utils-${MATE_BRANCH}* + =media-gfx/eom-${MATE_BRANCH}* + ) + help? ( + gnome-extra/yelp + =mate-extra/mate-user-guide-${MATE_BRANCH}* + ) +" + +PDEPEND=" + notification? ( =x11-misc/mate-notification-daemon-${MATE_BRANCH}* ) + virtual/notification-daemon:0" + +pkg_postinst() { + elog "For installation, usage and troubleshooting details regarding MATE;" + elog "read more about it at Gentoo Wiki: https://wiki.gentoo.org/wiki/MATE" + elog "" + if ! has_version x11-misc/mate-notification-daemon; then + elog "If you experience any issues with notifications, please try using" + elog "x11-misc/mate-notification-daemon instead your currently installed daemon" + elog "" + fi + elog "Some packages that are not included in this meta-package but may be of interest:" + elog " mate-extra/caja-dropbox" + elog " mate-extra/mate-user-share" + elog " mate-extra/caja-admin" + elog " mate-extra/caja-hide" +} |