Gentoo Archives: gentoo-commits

From: Adam Feldman <np-hardass@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: mate-base/mate-panel/
Date: Fri, 25 Sep 2020 20:32:54
Message-Id: 1601065926.e712ec8d337ebb9cd38c86e99586b3b8dc9b2e72.np-hardass@gentoo
1 commit: e712ec8d337ebb9cd38c86e99586b3b8dc9b2e72
2 Author: Adam Feldman <NP-Hardass <AT> gentoo <DOT> org>
3 AuthorDate: Fri Sep 4 16:13:00 2020 +0000
4 Commit: Adam Feldman <np-hardass <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 25 20:32:06 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e712ec8d
7
8 mate-base/mate-panel: Bump to 1.24.1
9
10 Package-Manager: Portage-2.3.103, Repoman-2.3.23
11 Signed-off-by: Adam Feldman <NP-Hardass <AT> gentoo.org>
12
13 mate-base/mate-panel/Manifest | 1 +
14 mate-base/mate-panel/mate-panel-1.24.1.ebuild | 72 +++++++++++++++++++++++++++
15 2 files changed, 73 insertions(+)
16
17 diff --git a/mate-base/mate-panel/Manifest b/mate-base/mate-panel/Manifest
18 index 779ef5733fb..23a65932747 100644
19 --- a/mate-base/mate-panel/Manifest
20 +++ b/mate-base/mate-panel/Manifest
21 @@ -1 +1,2 @@
22 DIST mate-panel-1.24.0.tar.xz 3040068 BLAKE2B 2ef2973014e32ab62ba9d4a05a820a2640415b493886d74e09089ed91bfe61d2d53ee6313c104945ddc95c992423403f6bca72a7f8b80ce189cd9f247add931c SHA512 12a88534400603998b4d4d415940947dd6372914135aa8eb6052c75e134412739a96064ad654e8f2625dbb6fe853e8cb376c41e530c30234e08141a46634820b
23 +DIST mate-panel-1.24.1.tar.xz 3265000 BLAKE2B eb5d2c8b6668ecb1d072e80ac4062574c97b7d52a1473133efff0fb12eca4e765df016d8ede4c6745f7bd9e6ea64114ccfcdf87045ca00797e63ab9ec215435c SHA512 1a1e62207d58472daa00d409ef2b04944929af7f9fe05592076adcc069e2d70012424b3386d30f8b9adccf05c328b8ab1662b8726e507465881a4ae26c26829f
24
25 diff --git a/mate-base/mate-panel/mate-panel-1.24.1.ebuild b/mate-base/mate-panel/mate-panel-1.24.1.ebuild
26 new file mode 100644
27 index 00000000000..6b5b93b187e
28 --- /dev/null
29 +++ b/mate-base/mate-panel/mate-panel-1.24.1.ebuild
30 @@ -0,0 +1,72 @@
31 +# Copyright 1999-2020 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=6
35 +
36 +MATE_LA_PUNT="yes"
37 +
38 +inherit mate
39 +
40 +if [[ ${PV} != 9999 ]]; then
41 + KEYWORDS="~amd64 ~arm ~arm64 ~x86"
42 +fi
43 +
44 +DESCRIPTION="The MATE panel"
45 +LICENSE="FDL-1.1+ GPL-2+ LGPL-2+"
46 +SLOT="0"
47 +
48 +IUSE="X +introspection wayland"
49 +
50 +REQUIRED_USE="|| ( X wayland )"
51 +
52 +COMMON_DEPEND="
53 + dev-libs/atk
54 + >=dev-libs/dbus-glib-0.80:0
55 + >=dev-libs/glib-2.50:2
56 + >=dev-libs/libmateweather-1.17.0
57 + dev-libs/libxml2:2
58 + >=gnome-base/dconf-0.13.4
59 + >=gnome-base/librsvg-2.36.2:2
60 + >=mate-base/mate-desktop-1.17.0
61 + >=mate-base/mate-menus-1.21.0
62 + >=sys-apps/dbus-1.1.2
63 + >=x11-libs/cairo-1.0.0[X?]
64 + >=x11-libs/gdk-pixbuf-2.25.2:2
65 + >=x11-libs/gtk+-3.22:3[introspection?]
66 + x11-libs/libICE
67 + x11-libs/libSM
68 + >=x11-libs/libwnck-3.4.6:3[introspection?]
69 + >=x11-libs/pango-1.15.4:0[introspection?]
70 + X? (
71 + x11-libs/libX11
72 + x11-libs/libXau
73 + >=x11-libs/libXrandr-1.3
74 + )
75 + introspection? ( >=dev-libs/gobject-introspection-0.6.7:= )
76 + wayland? ( gui-libs/gtk-layer-shell )
77 +"
78 +
79 +RDEPEND="${COMMON_DEPEND}
80 + virtual/libintl
81 +"
82 +
83 +DEPEND="${COMMON_DEPEND}
84 + app-text/docbook-xml-dtd:4.1.2
85 + app-text/yelp-tools
86 + >=dev-lang/perl-5:=
87 + dev-util/glib-utils
88 + dev-util/gdbus-codegen
89 + dev-util/gtk-doc
90 + dev-util/gtk-doc-am
91 + >=sys-devel/gettext-0.19.8
92 + virtual/pkgconfig
93 +"
94 +
95 +src_configure() {
96 + mate_src_configure \
97 + --libexecdir=/usr/libexec/mate-applets \
98 + --disable-deprecation-flags \
99 + $(use_enable X x11) \
100 + $(use_enable introspection) \
101 + $(use_enable wayland)
102 +}