Gentoo Archives: gentoo-commits

From: Mart Raudsepp <leio@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: gnome-base/gnome-menus/
Date: Sun, 05 Jan 2020 10:36:21
Message-Id: 1578220539.bbdb778115af3e9b048503d28557e656bc027f97.leio@gentoo
1 commit: bbdb778115af3e9b048503d28557e656bc027f97
2 Author: Mart Raudsepp <leio <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jan 5 10:30:20 2020 +0000
4 Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
5 CommitDate: Sun Jan 5 10:35:39 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bbdb7781
7
8 gnome-base/gnome-menus: bump to 3.32.0
9
10 Drop the ignore_kde_standalone.patch stuff, as it seems mostly
11 legacy - there aren't dozens of X-KDE-settings-* desktop files
12 anymore, only some external ones it seems that might not have
13 gotten the memo to remove the category.
14 If this is a problem, it should be fixed properly or worked
15 around in other /etc/xdg/menus files too
16 (gnome-flashback-applications.menu, xfce-applications.menu, etc)
17
18 Package-Manager: Portage-2.3.79, Repoman-2.3.12
19 Signed-off-by: Mart Raudsepp <leio <AT> gentoo.org>
20
21 gnome-base/gnome-menus/Manifest | 1 +
22 gnome-base/gnome-menus/gnome-menus-3.32.0.ebuild | 36 ++++++++++++++++++++++++
23 2 files changed, 37 insertions(+)
24
25 diff --git a/gnome-base/gnome-menus/Manifest b/gnome-base/gnome-menus/Manifest
26 index 352b5c37f05..44fe9e3d63a 100644
27 --- a/gnome-base/gnome-menus/Manifest
28 +++ b/gnome-base/gnome-menus/Manifest
29 @@ -1 +1,2 @@
30 DIST gnome-menus-3.13.3.tar.xz 404664 BLAKE2B 7772c817317b4af86e740aeea3095f51ff210f73e53160ca2359d45a017236c82fe787956c04a9e0001e2511671438d4955f0bf7947cdfa8649d78fe931d6d79 SHA512 d631eb17ddc1b33227d0e5862a9344a8605ee1e9ebc1f12ce4ac98895adaf8a82ef2a49415d99bc194a02f30f30c3d6d49759f280fbc246c9e482711fd5021d2
31 +DIST gnome-menus-3.32.0.tar.xz 499680 BLAKE2B ee43c2be29f6d3f5eaf5369c3b3809fc2728564321853a6dd23df1d81138868f9be2f57d0bcd0eb69a509e224f77dc357a8c71afe569bfb1bbdb13ce3b80636f SHA512 8a429e092b1e4a1a794473d7cae611684321e797792e1063911ddcbb496140033838b348bc209b4c0566a13233cfa1144cae7a188a483abf34c5af6feb44a884
32
33 diff --git a/gnome-base/gnome-menus/gnome-menus-3.32.0.ebuild b/gnome-base/gnome-menus/gnome-menus-3.32.0.ebuild
34 new file mode 100644
35 index 00000000000..c9f8efffcd4
36 --- /dev/null
37 +++ b/gnome-base/gnome-menus/gnome-menus-3.32.0.ebuild
38 @@ -0,0 +1,36 @@
39 +# Copyright 1999-2020 Gentoo Authors
40 +# Distributed under the terms of the GNU General Public License v2
41 +
42 +EAPI="6"
43 +
44 +inherit gnome2
45 +
46 +DESCRIPTION="Library and layout configuration for the Desktop Menu fd.o specification"
47 +HOMEPAGE="https://gitlab.gnome.org/GNOME/gnome-menus"
48 +
49 +LICENSE="GPL-2+ LGPL-2+"
50 +SLOT="3"
51 +KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
52 +
53 +IUSE="+introspection test"
54 +RESTRICT="!test? ( test )"
55 +
56 +RDEPEND="
57 + >=dev-libs/glib-2.29.15:2
58 + introspection? ( >=dev-libs/gobject-introspection-0.9.5:= )
59 +"
60 +DEPEND="${RDEPEND}
61 + >=sys-devel/gettext-0.19.4
62 + virtual/pkgconfig
63 + test? ( dev-libs/gjs )
64 +"
65 +
66 +DOCS="AUTHORS ChangeLog HACKING MAINTAINERS NEWS README"
67 +
68 +src_configure() {
69 + # Do NOT compile with --disable-debug/--enable-debug=no
70 + # It disables api usage checks
71 + gnome2_src_configure \
72 + $(use_enable introspection) \
73 + --disable-static
74 +}