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-extra/gnome-calculator/
Date: Fri, 16 Apr 2021 22:19:16
Message-Id: 1618611455.9e5b210d26891b81150705e0d6bcd4d2eaf70ff1.mattst88@gentoo
1 commit: 9e5b210d26891b81150705e0d6bcd4d2eaf70ff1
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Fri Apr 16 22:15:20 2021 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Fri Apr 16 22:17:35 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e5b210d
7
8 gnome-extra/gnome-calculator: Version bump to 40.0
9
10 Closes: https://bugs.gentoo.org/782775
11 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
12
13 gnome-extra/gnome-calculator/Manifest | 1 +
14 .../gnome-calculator/gnome-calculator-40.0.ebuild | 73 ++++++++++++++++++++++
15 2 files changed, 74 insertions(+)
16
17 diff --git a/gnome-extra/gnome-calculator/Manifest b/gnome-extra/gnome-calculator/Manifest
18 index 59b576b3d7e..158bbbd6428 100644
19 --- a/gnome-extra/gnome-calculator/Manifest
20 +++ b/gnome-extra/gnome-calculator/Manifest
21 @@ -1 +1,2 @@
22 DIST gnome-calculator-3.38.2.tar.xz 1004684 BLAKE2B c2b6a0ff2e6a91c43a1670945af989b715f0f7369050dac13bec02898ef6780ec4484c6ee9f6e6bb19b8ecc9d7d8c2df0c824ac9c3309783cbc89b96fe1f16b9 SHA512 41e58b34640e795108a552aa0d95b03f0c84c4d5af6eef7fe8350c5f4e031a0fad7cad73034b38b2121f09687815b6b10a6a86fb00c7cbf720ccb06a8eea0403
23 +DIST gnome-calculator-40.0.tar.xz 1022596 BLAKE2B 9522c8698492eeb07fbd86e8baeaee67433a1d43b2c97c4c895ca7ac8958a01c4e05c73598b1c14a2b333bfbc156b824669b20e878fcb681ade99c1ceef5ce72 SHA512 f22e9a9ade2f236142b7ebc3e54ed07834b049087ed8606571730e3bef2ab86317718df622368515266ba9578f660d7cd892cf87cf43bca9441369c838967c5d
24
25 diff --git a/gnome-extra/gnome-calculator/gnome-calculator-40.0.ebuild b/gnome-extra/gnome-calculator/gnome-calculator-40.0.ebuild
26 new file mode 100644
27 index 00000000000..17bd94f4fdf
28 --- /dev/null
29 +++ b/gnome-extra/gnome-calculator/gnome-calculator-40.0.ebuild
30 @@ -0,0 +1,73 @@
31 +# Copyright 1999-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +PYTHON_COMPAT=( python3_{7..9} )
36 +VALA_MIN_API_VERSION="0.40"
37 +
38 +inherit gnome.org gnome2-utils meson python-any-r1 vala virtualx xdg
39 +
40 +DESCRIPTION="A calculator application for GNOME"
41 +HOMEPAGE="https://wiki.gnome.org/Apps/Calculator"
42 +
43 +LICENSE="GPL-3+"
44 +SLOT="0"
45 +IUSE="+introspection test"
46 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
47 +
48 +# gtksourceview vapi definitions in dev-lang/vala itself are too old, and newer vala removes them
49 +# altogether, thus we need them installed by gtksourceview[vala]
50 +RDEPEND="
51 + >=dev-libs/glib-2.40.0:2
52 + dev-libs/libxml2:2
53 + >=net-libs/libsoup-2.42:2.4
54 + >=dev-libs/libgee-0.20.0:0.8
55 + dev-libs/mpc:=
56 + dev-libs/mpfr:0=
57 + >=x11-libs/gtk+-3.24.1:3
58 + >=gui-libs/libhandy-1.0.0:1=
59 + >=x11-libs/gtksourceview-4.0.2:4
60 + introspection? ( >=dev-libs/gobject-introspection-1.58:= )
61 +"
62 +DEPEND="${RDEPEND}"
63 +BDEPEND="
64 + ${PYTHON_DEPS}
65 + dev-libs/appstream-glib
66 + dev-util/itstool
67 + >=sys-devel/gettext-0.19.8
68 + virtual/pkgconfig
69 + $(vala_depend)
70 + net-libs/libsoup:2.4[vala]
71 + x11-libs/gtksourceview:4[vala]
72 +"
73 +
74 +src_prepare() {
75 + xdg_src_prepare
76 + vala_src_prepare
77 + # Automagic dep on valadoc - don't bother for now
78 + sed -e '/subdir.*doc/d' -i meson.build || die
79 +}
80 +
81 +src_configure() {
82 + local emesonargs=(
83 + -Ddisable-ui=false
84 + #-Dvala-version # doesn't do anything in 3.34
85 + $(meson_use !introspection disable-introspection)
86 + $(meson_use test ui-tests)
87 + )
88 + meson_src_configure
89 +}
90 +
91 +src_test() {
92 + virtx meson_src_test
93 +}
94 +
95 +pkg_postinst() {
96 + xdg_pkg_postinst
97 + gnome2_schemas_update
98 +}
99 +
100 +pkg_postrm() {
101 + xdg_pkg_postrm
102 + gnome2_schemas_update
103 +}