Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: gnome-base/gsettings-desktop-schemas/
Date: Sun, 25 Sep 2022 01:49:03
Message-Id: 1664070527.d1657ef078ab7a2b5b303c38f3dd165b1b2e70ce.mattst88@gentoo
1 commit: d1657ef078ab7a2b5b303c38f3dd165b1b2e70ce
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Sun Sep 25 01:40:31 2022 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Sun Sep 25 01:48:47 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1657ef0
7
8 gnome-base/gsettings-desktop-schemas: Version bump to 43.0
9
10 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
11
12 gnome-base/gsettings-desktop-schemas/Manifest | 1 +
13 .../gsettings-desktop-schemas-43.0.ebuild | 48 ++++++++++++++++++++++
14 2 files changed, 49 insertions(+)
15
16 diff --git a/gnome-base/gsettings-desktop-schemas/Manifest b/gnome-base/gsettings-desktop-schemas/Manifest
17 index 02f8f32ae618..7f7c19867640 100644
18 --- a/gnome-base/gsettings-desktop-schemas/Manifest
19 +++ b/gnome-base/gsettings-desktop-schemas/Manifest
20 @@ -1 +1,2 @@
21 DIST gsettings-desktop-schemas-42.0.tar.xz 709372 BLAKE2B abe682b32dc3c419a65b3752b9fa6821ed0058f06a4b123728a8d095ff3b6f65b569d9b80d43aac28fa5d79439c316cb628f0c63cd500c7ebc40cc4eff704bdb SHA512 db73988a6b38857d1aa6588ccac42099c57dcc187ef01776567cc7c28aff67dc06d6a8a067e0c69167d03cd865f0c1d58e75469a40f969084bb2537b088f8664
22 +DIST gsettings-desktop-schemas-43.0.tar.xz 736456 BLAKE2B 8fa0866a2747af370dbdc329afc2272e998d992bb4d19079a15d8f04063bd09660cabaf19123fedced5c6ebca13a21c207e1238178344d92a3a3d60ef0aa0152 SHA512 a3acd953ec206375e99e0988438e46b42668094d1b5425ccf21a7fe451887b705e2a5efe6870ee6bfc6722f54e5aa6a422de2af2099f29a5230f415744df2cf8
23
24 diff --git a/gnome-base/gsettings-desktop-schemas/gsettings-desktop-schemas-43.0.ebuild b/gnome-base/gsettings-desktop-schemas/gsettings-desktop-schemas-43.0.ebuild
25 new file mode 100644
26 index 000000000000..42509dcaeef9
27 --- /dev/null
28 +++ b/gnome-base/gsettings-desktop-schemas/gsettings-desktop-schemas-43.0.ebuild
29 @@ -0,0 +1,48 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +PYTHON_COMPAT=( python3_{8..11} )
36 +inherit gnome.org gnome2-utils meson python-any-r1 xdg
37 +
38 +DESCRIPTION="Collection of GSettings schemas for GNOME desktop"
39 +HOMEPAGE="https://gitlab.gnome.org/GNOME/gsettings-desktop-schemas"
40 +
41 +LICENSE="LGPL-2.1+"
42 +SLOT="0"
43 +IUSE="+introspection"
44 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~sparc-solaris ~x86-solaris"
45 +
46 +BDEPEND="
47 + introspection? ( >=dev-libs/gobject-introspection-1.54:= )
48 + dev-util/glib-utils
49 + >=sys-devel/gettext-0.19.8
50 + virtual/pkgconfig
51 + ${PYTHON_DEPS}
52 +"
53 +
54 +PATCHES=(
55 + # Revert change to 'Source Code Pro 10' and 'Cantarell 11' fonts back to generic sans and monospace aliases
56 + "${FILESDIR}"/3.32.0-default-fonts.patch
57 +)
58 +
59 +src_prepare() {
60 + default
61 +
62 + python_fix_shebang build-aux/meson/post-install.py
63 +}
64 +
65 +src_configure() {
66 + meson_src_configure $(meson_use introspection)
67 +}
68 +
69 +pkg_postinst() {
70 + xdg_pkg_postinst
71 + gnome2_schemas_update
72 +}
73 +
74 +pkg_postrm() {
75 + xdg_pkg_postrm
76 + gnome2_schemas_update
77 +}