Gentoo Archives: gentoo-commits

From: Mart Raudsepp <leio@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: profiles/, net-libs/glib-networking/
Date: Wed, 15 Sep 2021 19:57:59
Message-Id: 1631735736.5b8279516ff67df18ae3c6ce99551241207d50c6.leio@gentoo
1 commit: 5b8279516ff67df18ae3c6ce99551241207d50c6
2 Author: Mart Raudsepp <leio <AT> gentoo <DOT> org>
3 AuthorDate: Wed Sep 15 15:20:03 2021 +0000
4 Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 15 19:55:36 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b827951
7
8 net-libs/glib-networking: bump to 2.70_rc
9
10 Package-Manager: Portage-3.0.20, Repoman-3.0.2
11 Signed-off-by: Mart Raudsepp <leio <AT> gentoo.org>
12
13 net-libs/glib-networking/Manifest | 1 +
14 .../glib-networking/glib-networking-2.70_rc.ebuild | 83 ++++++++++++++++++++++
15 profiles/package.mask | 1 +
16 3 files changed, 85 insertions(+)
17
18 diff --git a/net-libs/glib-networking/Manifest b/net-libs/glib-networking/Manifest
19 index de666e0f10b..ea5b7c244ce 100644
20 --- a/net-libs/glib-networking/Manifest
21 +++ b/net-libs/glib-networking/Manifest
22 @@ -1,2 +1,3 @@
23 DIST glib-networking-2.68.1.tar.xz 237876 BLAKE2B 11d982a3d65ae5793a3b6c30cf31737ede5879aa3747416253bacc34d62a1ada944a718223300d63a5b37615492929e63c1c0cad6ef34775ee95e49f6769dc04 SHA512 da38b64e6709c864e1c6a60989d86439e0afb1dbf7b7f60a67f58cf430ae354ef9fe7465e74790b0c2827d2f1c39a250db4372d98fab6ab8d73946a7f51e3b22
24 DIST glib-networking-2.68.2.tar.xz 239040 BLAKE2B 2b65a63205d3071d05898ca869ae117c9b9fd548b19d9a1c82869a1eb54b77113f8908cd32108f4ca851cc0975ed34c16df04906b5b3c1f9a9a03574187ba929 SHA512 5c2d485332ff1b5a4d0f257b4e7a371b0bfe899b98ee4157845e5f5d3f10cf6f2df891407396edb6955420064dbaa57a5dc3c62c6392881cff05332db925d32d
25 +DIST glib-networking-2.70.rc.tar.xz 259756 BLAKE2B 4ba60ab836e5859fa658b0c21bfccaa67e9c665dd86245c9ff9b9ba251239b9c5a3d17aabc56527a32f46142bd4d7100188946d4a05ee0cc8c99e3c281322ae5 SHA512 eacd31370c397900ccd850a4ea19adc8ee6de10847792d975263b6163c5b354f92022fe3ac6ba94e2f4c1b0ca1535cd4600c445809ee42a83ff4b393260ae7e5
26
27 diff --git a/net-libs/glib-networking/glib-networking-2.70_rc.ebuild b/net-libs/glib-networking/glib-networking-2.70_rc.ebuild
28 new file mode 100644
29 index 00000000000..58404976927
30 --- /dev/null
31 +++ b/net-libs/glib-networking/glib-networking-2.70_rc.ebuild
32 @@ -0,0 +1,83 @@
33 +# Copyright 1999-2021 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=7
37 +
38 +inherit gnome.org gnome2-utils meson-multilib xdg
39 +
40 +DESCRIPTION="Network-related giomodules for glib"
41 +HOMEPAGE="https://gitlab.gnome.org/GNOME/glib-networking"
42 +
43 +LICENSE="LGPL-2.1+"
44 +SLOT="0"
45 +IUSE="+gnome +libproxy +ssl test"
46 +RESTRICT="!test? ( test )"
47 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
48 +MY_PV=${PV/_/.}
49 +SRC_URI="mirror://gnome/sources/${GNOME_ORG_MODULE}/${GNOME_ORG_PVP}/${GNOME_ORG_MODULE}-${MY_PV}.tar.${GNOME_TARBALL_SUFFIX}"
50 +S="${WORKDIR}/${GNOME_ORG_MODULE}-${MY_PV}"
51 +
52 +RDEPEND="
53 + >=dev-libs/glib-2.69.0:2[${MULTILIB_USEDEP}]
54 + libproxy? ( >=net-libs/libproxy-0.4.11-r1:=[${MULTILIB_USEDEP}] )
55 + >=net-libs/gnutls-3.7.2:=[${MULTILIB_USEDEP}]
56 + ssl? ( app-misc/ca-certificates )
57 + gnome? ( gnome-base/gsettings-desktop-schemas )
58 +"
59 +DEPEND="${RDEPEND}
60 + test? ( net-libs/gnutls[pkcs11] )
61 +"
62 +BDEPEND="
63 + >=sys-devel/gettext-0.19.8
64 + virtual/pkgconfig
65 + test? ( sys-apps/dbus )
66 +"
67 +
68 +src_prepare() {
69 + xdg_src_prepare
70 +
71 + if ! use test ; then
72 + # Don't build tests unconditionally
73 + # This is a hack to avoid needing gnutls[pkcs11] when USE=-test
74 + # It may become a real runtime dependency in future
75 + # Please check!
76 + # bug #777462
77 + sed -i "/^subdir('tls\/tests')/d" meson.build || die
78 + fi
79 +}
80 +
81 +multilib_src_configure() {
82 + local emesonargs=(
83 + -Dgnutls=enabled
84 + -Dopenssl=disabled
85 + $(meson_feature libproxy)
86 + $(meson_feature gnome gnome_proxy)
87 + -Dinstalled_tests=false
88 + -Dstatic_modules=false
89 + )
90 + meson_src_configure
91 +}
92 +
93 +multilib_src_test() {
94 + dbus-run-session meson test -C "${BUILD_DIR}" || die 'tests failed'
95 +}
96 +
97 +pkg_postinst() {
98 + xdg_pkg_postinst
99 +
100 + multilib_pkg_postinst() {
101 + gnome2_giomodule_cache_update \
102 + || die "Update GIO modules cache failed (for ${ABI})"
103 + }
104 + multilib_foreach_abi multilib_pkg_postinst
105 +}
106 +
107 +pkg_postrm() {
108 + xdg_pkg_postrm
109 +
110 + multilib_pkg_postrm() {
111 + gnome2_giomodule_cache_update \
112 + || die "Update GIO modules cache failed (for ${ABI})"
113 + }
114 + multilib_foreach_abi multilib_pkg_postrm
115 +}
116
117 diff --git a/profiles/package.mask b/profiles/package.mask
118 index a455cbf7f72..573801ec5e4 100644
119 --- a/profiles/package.mask
120 +++ b/profiles/package.mask
121 @@ -43,6 +43,7 @@ net-libs/libsoup:3.0
122 >=dev-util/gdbus-codegen-2.69
123 >=dev-util/glib-utils-2.69
124 >=dev-libs/glib-2.69
125 +>=net-libs/glib-networking-2.69
126
127 # Ionen Wolkens <ionen@g.o> (2021-09-12)
128 # No reverse dependencies, stuck on EAPI-5.