Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libnma/
Date: Fri, 25 Mar 2022 20:54:09
Message-Id: 1648241630.d0679606260857cb08593af651ab3be2c28bfd95.mattst88@gentoo
1 commit: d0679606260857cb08593af651ab3be2c28bfd95
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Fri Mar 25 20:15:47 2022 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Fri Mar 25 20:53:50 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d0679606
7
8 net-libs/libnma: Version bump to 1.8.36
9
10 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
11
12 net-libs/libnma/Manifest | 1 +
13 net-libs/libnma/libnma-1.8.36.ebuild | 71 ++++++++++++++++++++++++++++++++++++
14 2 files changed, 72 insertions(+)
15
16 diff --git a/net-libs/libnma/Manifest b/net-libs/libnma/Manifest
17 index 91947a92f40c..ac3d86f692ba 100644
18 --- a/net-libs/libnma/Manifest
19 +++ b/net-libs/libnma/Manifest
20 @@ -1 +1,2 @@
21 DIST libnma-1.8.34.tar.xz 1342040 BLAKE2B e81004cf97832bdd010869fd7a801ceda42b96a70a0bd0aa50f821f7e3c361716f8075ec8ae82a224b6f617ee9b3f177239a53dd9eb982dd49da409d97671fd9 SHA512 aca1e24a852072e65d1fba910613981373bb7bb7869b2e44abc9e41c527d234273f034215d62889a265aa3327ad2cce0cea7368b025df97dab12bff098310aaf
22 +DIST libnma-1.8.36.tar.xz 1368748 BLAKE2B b60f3d383e5a55a766be8f8df71eb710d68b388c5ec0b946789856504327f6a8093943cc7b58dba992883099a899f3f55c70e5275d495610e79cef8e3e97d1b8 SHA512 c3f675d773d1be9006c01c3149751c8da1d5d08467be6d9aa921da3d867fdc9e8b26c7e6c9bd46a6cfd38a7eb721f8bcc209b43d9789a0b55c6029e11ca0fd22
23
24 diff --git a/net-libs/libnma/libnma-1.8.36.ebuild b/net-libs/libnma/libnma-1.8.36.ebuild
25 new file mode 100644
26 index 000000000000..024459425f6e
27 --- /dev/null
28 +++ b/net-libs/libnma/libnma-1.8.36.ebuild
29 @@ -0,0 +1,71 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +inherit gnome.org gnome2-utils meson xdg vala
36 +
37 +DESCRIPTION="NetworkManager GUI library"
38 +HOMEPAGE="https://wiki.gnome.org/Projects/NetworkManager"
39 +
40 +LICENSE="GPL-2+"
41 +SLOT="0"
42 +# pkcs11 default enabled as it's a small dep often already present by libnma users, and it was default enabled as IUSE=+gcr in nm-applet before
43 +IUSE="gtk-doc +introspection +pkcs11 vala"
44 +REQUIRED_USE="vala? ( introspection )"
45 +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
46 +
47 +DEPEND="
48 + >=gui-libs/gtk-4.0:4
49 + app-text/iso-codes
50 + net-misc/mobile-broadband-provider-info
51 + >=dev-libs/glib-2.38:2
52 + >=x11-libs/gtk+-3.12:3[introspection?]
53 + >=net-misc/networkmanager-1.7[introspection?]
54 + pkcs11? ( >=app-crypt/gcr-3.14:= )
55 + introspection? ( >=dev-libs/gobject-introspection-1.56:= )
56 +"
57 +RDEPEND="${DEPEND}
58 + !<gnome-extra/nm-applet-1.16.0" # gschema moved to here before nm-applet-1.16.0
59 +BDEPEND="
60 + dev-libs/libxml2
61 + >=sys-devel/gettext-0.19.8
62 + virtual/pkgconfig
63 + gtk-doc? ( dev-util/gtk-doc
64 + app-text/docbook-xml-dtd:4.3 )
65 + vala? ( $(vala_depend)
66 + net-misc/networkmanager[vala]
67 + )
68 +"
69 +
70 +src_prepare() {
71 + default
72 + use vala && vala_setup
73 + xdg_environment_reset
74 +}
75 +
76 +src_configure() {
77 + local emesonargs=(
78 + -Dlibnma_gtk4=true
79 + $(meson_use pkcs11 gcr)
80 + -Dmore_asserts=0
81 + -Dgcr_gtk4=false
82 + -Diso_codes=true
83 + -Dmobile_broadband_provider_info=true
84 + -Dld_gc=false
85 + $(meson_use gtk-doc gtk_doc)
86 + $(meson_use introspection)
87 + $(meson_use vala vapi)
88 + )
89 + meson_src_configure
90 +}
91 +
92 +pkg_postinst() {
93 + xdg_pkg_postinst
94 + gnome2_schemas_update
95 +}
96 +
97 +pkg_postrm() {
98 + xdg_pkg_postrm
99 + gnome2_schemas_update
100 +}