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, 30 Apr 2021 21:58:51
Message-Id: 1619819920.86f59c3d317e1641990daca810e2d80298b41165.mattst88@gentoo
1 commit: 86f59c3d317e1641990daca810e2d80298b41165
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Fri Apr 30 21:57:03 2021 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Fri Apr 30 21:58:40 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86f59c3d
7
8 gnome-extra/gnome-calculator: Version bump to 40.1
9
10 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
11
12 gnome-extra/gnome-calculator/Manifest | 1 +
13 .../gnome-calculator/gnome-calculator-40.1.ebuild | 73 ++++++++++++++++++++++
14 2 files changed, 74 insertions(+)
15
16 diff --git a/gnome-extra/gnome-calculator/Manifest b/gnome-extra/gnome-calculator/Manifest
17 index 158bbbd6428..8577915a857 100644
18 --- a/gnome-extra/gnome-calculator/Manifest
19 +++ b/gnome-extra/gnome-calculator/Manifest
20 @@ -1,2 +1,3 @@
21 DIST gnome-calculator-3.38.2.tar.xz 1004684 BLAKE2B c2b6a0ff2e6a91c43a1670945af989b715f0f7369050dac13bec02898ef6780ec4484c6ee9f6e6bb19b8ecc9d7d8c2df0c824ac9c3309783cbc89b96fe1f16b9 SHA512 41e58b34640e795108a552aa0d95b03f0c84c4d5af6eef7fe8350c5f4e031a0fad7cad73034b38b2121f09687815b6b10a6a86fb00c7cbf720ccb06a8eea0403
22 DIST gnome-calculator-40.0.tar.xz 1022596 BLAKE2B 9522c8698492eeb07fbd86e8baeaee67433a1d43b2c97c4c895ca7ac8958a01c4e05c73598b1c14a2b333bfbc156b824669b20e878fcb681ade99c1ceef5ce72 SHA512 f22e9a9ade2f236142b7ebc3e54ed07834b049087ed8606571730e3bef2ab86317718df622368515266ba9578f660d7cd892cf87cf43bca9441369c838967c5d
23 +DIST gnome-calculator-40.1.tar.xz 1023164 BLAKE2B 977fc227adaa50efa271776035a11ca79166a703c9c8d618c13af477056622a9faa42c3a8876257a117486399e91fceec7a19b930293883078846a645db912fe SHA512 f46acc802ef130ec59e4376a02032ab683e6d166d691d7c5f626e2a978f017f171c0e8ad50991d1828cb325b1bd53f63ef256b9b24860842224fa3dd7e27f4da
24
25 diff --git a/gnome-extra/gnome-calculator/gnome-calculator-40.1.ebuild b/gnome-extra/gnome-calculator/gnome-calculator-40.1.ebuild
26 new file mode 100644
27 index 00000000000..17bd94f4fdf
28 --- /dev/null
29 +++ b/gnome-extra/gnome-calculator/gnome-calculator-40.1.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 +}