public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Matt Turner" <mattst88@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/glib-networking/
Date: Wed, 29 Jun 2022 21:57:02 +0000 (UTC)	[thread overview]
Message-ID: <1656539756.136280ce1ab9c5c3bfcca36c27118f481e99871d.mattst88@gentoo> (raw)

commit:     136280ce1ab9c5c3bfcca36c27118f481e99871d
Author:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Wed Jun 29 21:46:48 2022 +0000
Commit:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Wed Jun 29 21:55:56 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=136280ce

net-libs/glib-networking: Version bump to 2.72.1

Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>

 net-libs/glib-networking/Manifest                  |  1 +
 .../glib-networking/glib-networking-2.72.1.ebuild  | 81 ++++++++++++++++++++++
 2 files changed, 82 insertions(+)

diff --git a/net-libs/glib-networking/Manifest b/net-libs/glib-networking/Manifest
index 057a44158cd8..b1b39ce8d788 100644
--- a/net-libs/glib-networking/Manifest
+++ b/net-libs/glib-networking/Manifest
@@ -1 +1,2 @@
 DIST glib-networking-2.72.0.tar.xz 265060 BLAKE2B 2ffb25b059db40fcf9b65b104cd50d81dda9482bc75031d62c10f70eaaa2e9fcfcdfb2b718253255a2565d7b6bc9ead2214167d1b5f482c0ddd3af8573dd2ef5 SHA512 2b42aebcf496f51604005f6f3243ed7e613ab3d485742b7d8af10e103b07eefd8931cc86c1cb021889fe1415ad98bf4d877a3f33203cb53688cc2c41373a8ce4
+DIST glib-networking-2.72.1.tar.xz 265308 BLAKE2B 84264df5e094a4c57d86edd57fdedb11ad00eec5937eb056de34ec3d38a0e0e2ec3d71a5ad4ab0386c45681c8784b792ca6ded9c048d93c3ed1ad47d2f31f44e SHA512 243f54f4fbce40211f276c4f56e4e40507ecb0b23527a04b2d5bd67185c017f736f088c71ebf225e69e1ae8efa5b835edd68ea5c96df3ff69a25fd391e5c52d0

diff --git a/net-libs/glib-networking/glib-networking-2.72.1.ebuild b/net-libs/glib-networking/glib-networking-2.72.1.ebuild
new file mode 100644
index 000000000000..f5cb25001455
--- /dev/null
+++ b/net-libs/glib-networking/glib-networking-2.72.1.ebuild
@@ -0,0 +1,81 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit gnome.org gnome2-utils meson-multilib xdg
+
+DESCRIPTION="Network-related giomodules for glib"
+HOMEPAGE="https://gitlab.gnome.org/GNOME/glib-networking"
+
+LICENSE="LGPL-2.1+"
+SLOT="0"
+IUSE="+gnome +libproxy +ssl test"
+RESTRICT="!test? ( test )"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+
+RDEPEND="
+	>=dev-libs/glib-2.69.0:2[${MULTILIB_USEDEP}]
+	libproxy? ( >=net-libs/libproxy-0.4.11-r1:=[${MULTILIB_USEDEP}] )
+	>=net-libs/gnutls-3.7.2:=[${MULTILIB_USEDEP}]
+	ssl? ( app-misc/ca-certificates )
+	gnome? ( gnome-base/gsettings-desktop-schemas )
+"
+DEPEND="${RDEPEND}
+	test? ( net-libs/gnutls[pkcs11] )
+"
+BDEPEND="
+	>=sys-devel/gettext-0.19.8
+	virtual/pkgconfig
+	test? ( sys-apps/dbus )
+"
+
+src_prepare() {
+	default
+	xdg_environment_reset
+
+	if ! use test ; then
+		# Don't build tests unconditionally
+		# This is a hack to avoid needing gnutls[pkcs11] when USE=-test
+		# It may become a real runtime dependency in future
+		# Please check!
+		# bug #777462
+		sed -i "/^subdir('tests')/d" tls/meson.build || die
+	fi
+}
+
+multilib_src_configure() {
+	local emesonargs=(
+		-Dgnutls=enabled
+		-Dopenssl=disabled
+		$(meson_feature libproxy)
+		$(meson_feature gnome gnome_proxy)
+		-Dinstalled_tests=false
+		-Dstatic_modules=false
+	)
+	meson_src_configure
+}
+
+multilib_src_test() {
+	dbus-run-session meson test -C "${BUILD_DIR}" || die 'tests failed'
+}
+
+pkg_postinst() {
+	xdg_pkg_postinst
+
+	multilib_pkg_postinst() {
+		gnome2_giomodule_cache_update \
+			|| die "Update GIO modules cache failed (for ${ABI})"
+	}
+	multilib_foreach_abi multilib_pkg_postinst
+}
+
+pkg_postrm() {
+	xdg_pkg_postrm
+
+	multilib_pkg_postrm() {
+		gnome2_giomodule_cache_update \
+			|| die "Update GIO modules cache failed (for ${ABI})"
+	}
+	multilib_foreach_abi multilib_pkg_postrm
+}


             reply	other threads:[~2022-06-29 21:57 UTC|newest]

Thread overview: 195+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-06-29 21:57 Matt Turner [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-08-07 10:45 [gentoo-commits] repo/gentoo:master commit in: net-libs/glib-networking/ Pacho Ramos
2024-08-07 10:45 Pacho Ramos
2024-05-08 16:59 Arthur Zamarin
2024-05-08 16:59 Arthur Zamarin
2024-05-08 16:59 Arthur Zamarin
2024-05-08 16:59 Arthur Zamarin
2024-04-09 20:00 Arthur Zamarin
2024-04-07  7:29 Arthur Zamarin
2024-03-03 20:55 Mart Raudsepp
2024-02-03 11:07 Sam James
2024-01-07 15:36 Sam James
2024-01-07 15:36 Sam James
2023-12-29 18:58 Arthur Zamarin
2023-12-29 18:58 Arthur Zamarin
2023-12-29 18:58 Arthur Zamarin
2023-12-29 18:39 Arthur Zamarin
2023-09-16 13:55 Matt Turner
2023-09-01 16:07 Arthur Zamarin
2023-08-30  7:57 Arthur Zamarin
2023-08-29 18:02 Arthur Zamarin
2023-08-29 17:49 Arthur Zamarin
2023-07-06 21:26 Matt Turner
2023-05-03  3:53 Sam James
2023-05-02 19:44 Arthur Zamarin
2023-05-02 18:13 Arthur Zamarin
2023-05-02 17:56 Arthur Zamarin
2023-05-02 17:42 Sam James
2023-05-02 17:42 Sam James
2023-05-02 17:31 Arthur Zamarin
2023-04-02  0:57 Matt Turner
2023-03-17 16:21 Matt Turner
2023-03-12  2:01 Matt Turner
2022-12-04  2:41 Matt Turner
2022-11-05 18:58 Arthur Zamarin
2022-11-05  9:58 Arthur Zamarin
2022-11-05  9:44 Arthur Zamarin
2022-10-31 14:28 Matt Turner
2022-10-14 14:29 Matt Turner
2022-09-30 18:37 Arthur Zamarin
2022-09-28 16:29 Arthur Zamarin
2022-09-28 16:29 Arthur Zamarin
2022-09-24 15:34 Matt Turner
2022-09-19  1:38 Sam James
2022-09-19  1:38 Sam James
2022-09-12 16:01 Sam James
2022-09-12 16:00 Sam James
2022-08-15 19:13 Arthur Zamarin
2022-08-15 19:13 Arthur Zamarin
2022-08-15 17:43 Arthur Zamarin
2022-08-15 17:04 Arthur Zamarin
2022-08-06  2:27 Matt Turner
2022-07-29  2:59 Sam James
2022-05-31  9:24 Jakov Smolić
2022-05-28  5:45 Sam James
2022-05-28  5:38 Sam James
2022-05-28  5:05 Sam James
2022-05-28  1:27 Sam James
2022-05-28  1:20 Sam James
2022-05-26  4:45 WANG Xuerui
2022-03-23 17:06 Matt Turner
2022-03-23  8:20 罗百科
2022-03-23  6:44 Matt Turner
2022-01-24 19:21 Sam James
2022-01-24 14:49 Sam James
2022-01-24 14:46 Sam James
2022-01-24  3:39 Sam James
2022-01-20 10:02 Jakov Smolić
2022-01-20  9:42 Arthur Zamarin
2021-12-11 17:36 Mart Raudsepp
2021-11-06  4:09 Sam James
2021-11-06  3:58 Sam James
2021-10-07  6:37 Sam James
2021-10-04  1:25 Sam James
2021-10-04  1:24 Sam James
2021-09-16 20:47 Mart Raudsepp
2021-09-15 21:04 Mart Raudsepp
2021-08-05 23:09 Matt Turner
2021-06-04  1:14 Matt Turner
2021-05-28 19:20 Sam James
2021-05-28 19:18 Sam James
2021-05-21  0:51 Yixun Lan
2021-04-27 14:13 Matt Turner
2021-04-13 16:12 Matt Turner
2021-04-13 15:03 Sam James
2021-04-13 15:00 Sam James
2021-04-12 23:11 Sam James
2021-04-12 16:02 Sam James
2021-04-01 16:44 Thomas Deutschmann
2021-03-21 13:16 Sam James
2021-03-21  4:32 Matt Turner
2021-03-12  8:01 Mikle Kolyada
2020-11-14  9:19 Mikle Kolyada
2020-11-08  0:28 Matt Turner
2020-09-07 18:17 Sam James
2020-09-07  5:50 Sam James
2020-08-29 22:15 Sam James
2020-08-29 19:54 Sam James
2020-08-29 13:11 Sam James
2020-08-16  2:53 Sam James
2020-08-12 15:50 Sam James
2020-07-26 11:46 Mart Raudsepp
2020-06-20 13:48 Thomas Deutschmann
2020-06-18  6:31 Sergei Trofimovich
2020-06-17 14:21 Mart Raudsepp
2020-06-15 15:12 Agostino Sarubbo
2020-06-15 15:10 Agostino Sarubbo
2020-06-15 15:03 Agostino Sarubbo
2020-06-14 20:19 Sergei Trofimovich
2020-06-14 20:08 Sergei Trofimovich
2020-06-13 22:05 Mart Raudsepp
2020-06-13 22:03 Mart Raudsepp
2020-06-13 22:03 Mart Raudsepp
2020-06-07 21:02 Mart Raudsepp
2020-06-03 15:32 Agostino Sarubbo
2020-05-13 17:35 Sergei Trofimovich
2020-05-01  8:35 Mart Raudsepp
2020-04-30  7:09 Sergei Trofimovich
2020-04-26  1:54 Matt Turner
2020-04-22 14:25 Agostino Sarubbo
2020-04-22  8:44 Agostino Sarubbo
2020-04-22  8:41 Agostino Sarubbo
2020-04-20 18:16 Agostino Sarubbo
2020-04-20 17:03 Agostino Sarubbo
2020-04-14 17:05 Mart Raudsepp
2020-03-25 20:33 Matt Turner
2020-03-25  4:38 Matt Turner
2020-02-23 12:24 Mart Raudsepp
2020-02-13 14:40 Agostino Sarubbo
2020-02-11 10:52 Agostino Sarubbo
2020-01-28  7:41 Agostino Sarubbo
2020-01-27 14:28 Agostino Sarubbo
2020-01-27 12:44 Agostino Sarubbo
2020-01-27  9:45 Mikle Kolyada
2020-01-27  8:10 Sergei Trofimovich
2020-01-26 22:39 Thomas Deutschmann
2020-01-11 19:24 Mart Raudsepp
2019-12-15 16:48 Pacho Ramos
2019-12-05 22:15 Sergei Trofimovich
2019-09-22  2:39 Matt Turner
2019-09-14 23:36 Sergei Trofimovich
2019-09-08  1:13 Thomas Deutschmann
2019-09-03  0:16 Aaron Bauman
2019-09-02 10:11 Agostino Sarubbo
2019-09-02  9:32 Agostino Sarubbo
2019-09-02  7:25 Agostino Sarubbo
2019-09-01 18:20 Mikle Kolyada
2019-08-31  5:26 Mikle Kolyada
2019-07-25 20:42 Mart Raudsepp
2019-04-08  8:39 Mart Raudsepp
2019-04-08  8:39 Mart Raudsepp
2019-04-07 11:02 Mikle Kolyada
2019-04-02 19:20 Sergei Trofimovich
2019-03-31 20:30 Sergei Trofimovich
2019-03-31  6:10 Mart Raudsepp
2019-03-30 16:26 Mikle Kolyada
2019-03-13 23:03 Sergei Trofimovich
2019-02-13 11:30 Mikle Kolyada
2019-02-08 20:35 Sergei Trofimovich
2019-02-07 17:09 Mikle Kolyada
2019-01-17 13:59 Mart Raudsepp
2019-01-17 13:40 Michał Górny
2018-12-30 21:27 Mikle Kolyada
2018-12-27 18:48 Fabian Groffen
2018-12-06 20:51 Mart Raudsepp
2017-11-26 23:11 David Seifert
2017-07-07 21:20 Mart Raudsepp
2017-07-07 10:12 Agostino Sarubbo
2017-06-12 10:07 Mart Raudsepp
2017-05-20  5:41 Mart Raudsepp
2017-04-22 17:53 Tobias Klausmann
2017-04-12 10:10 Jeroen Roovers
2017-03-29  7:45 Michael Weber
2017-03-28 15:09 Michael Weber
2017-03-28 14:59 Michael Weber
2016-12-06 20:43 Markus Meier
2016-11-01 23:58 Gilles Dartiguelongue
2016-10-03  6:12 Jeroen Roovers
2016-07-02 17:12 Pacho Ramos
2016-05-03 20:27 Markus Meier
2016-03-06 20:36 Mikle Kolyada
2016-01-02 15:41 Gilles Dartiguelongue
2015-12-31  0:07 Gilles Dartiguelongue
2015-11-26 10:51 Gilles Dartiguelongue
2015-11-26 10:51 Gilles Dartiguelongue
2015-11-16 14:08 Agostino Sarubbo
2015-11-15 14:23 Pacho Ramos
2015-11-15 14:23 Pacho Ramos
2015-11-12 11:07 Agostino Sarubbo
2015-10-18 11:29 Mikle Kolyada
2015-10-03  8:41 Markus Meier
2015-09-28  4:44 Jeroen Roovers
2015-09-20  6:11 Jeroen Roovers
2015-09-16  8:43 Tobias Klausmann
2015-09-07 21:55 Mikle Kolyada

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1656539756.136280ce1ab9c5c3bfcca36c27118f481e99871d.mattst88@gentoo \
    --to=mattst88@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox