From: "Pacho Ramos" <pacho@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/glib-networking/
Date: Wed, 7 Aug 2024 10:45:26 +0000 (UTC) [thread overview]
Message-ID: <1723027516.022b90b454d5b278d2f5ab5c6eb44b8f0b8b257f.pacho@gentoo> (raw)
commit: 022b90b454d5b278d2f5ab5c6eb44b8f0b8b257f
Author: Guillermo Joandet <gjoandet <AT> gmail <DOT> com>
AuthorDate: Sun Mar 3 01:06:31 2024 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Wed Aug 7 10:45:16 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=022b90b4
net-libs/glib-networking: Bump to 2.80.0
Signed-off-by: Guillermo Joandet <gjoandet <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/35605
Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
net-libs/glib-networking/Manifest | 1 +
.../glib-networking/glib-networking-2.80.0.ebuild | 87 ++++++++++++++++++++++
2 files changed, 88 insertions(+)
diff --git a/net-libs/glib-networking/Manifest b/net-libs/glib-networking/Manifest
index 023d9d387cf3..408b33f0f688 100644
--- a/net-libs/glib-networking/Manifest
+++ b/net-libs/glib-networking/Manifest
@@ -1,3 +1,4 @@
DIST glib-networking-2.76.1.tar.xz 280896 BLAKE2B d4fb8e30096e2e0bdca183795e5d6f86f13c887ad61a52a46dd2af90756ced41e540f286b2cdafb4655cf337758e3742508c0e62e0ea3850ab293cd04e12488e SHA512 9da7844dc767c8dc33953bf984aa9fcc12ac6f9945b55b9c0ec34ecf13592deefead37dc27b048f564dc423286224c041b9842034e197d90f93822128fab4f97
DIST glib-networking-2.78.0.tar.xz 282864 BLAKE2B 24b503a79e3a75c706e5aac98bb4593c6a282d980175633e77097ec8dcb7399f1e197ef42cad9f1f0a7c0456e0f09fbb7a197dcdf1ee2eff0f061ea826e2ee33 SHA512 7574e82aa018332edf99dd284c7fd74b5935bca4a6a70e950ae4b22bbe7be188433fea69e35c742cae120e7ff7d1a6b4f5bf3957fc31f220f50189d3958a3f58
DIST glib-networking-2.78.1.tar.xz 283472 BLAKE2B 424a7d1f05b8589e9f5ca4e53fe4aead2ded484799b984e80ba8c203633bb5c7cec47cf56d15df4af1cb900025a560b9f07a9ebaeb5428c051f600849630a310 SHA512 dc8076d3ff1c97c44c7ba04f74bed50117b07f703efc1bc4cc44989ffcfada0ab49813556ad5bb1831dfb114c4f74ec7bfe08c9b6b514ae7049700211606b288
+DIST glib-networking-2.80.0.tar.xz 287044 BLAKE2B cf407acf5876756dac1fae19b6442b718aa8cdcfd381b00a2d34acc9cac60b519df82a27ceca9af0cc25d54dac03bf43cf74e5f485e6c8fe6b84e11e71719200 SHA512 9707bd47a7f613bc24ac3212737b6b67c57fb6c5dc20e8659a6276750cb07d2af7d42277e4c7294644e8e833eb5aea28320f3d517073e1316860a1dee2e3dc2b
diff --git a/net-libs/glib-networking/glib-networking-2.80.0.ebuild b/net-libs/glib-networking/glib-networking-2.80.0.ebuild
new file mode 100644
index 000000000000..2bd4d6da77ff
--- /dev/null
+++ b/net-libs/glib-networking/glib-networking-2.80.0.ebuild
@@ -0,0 +1,87 @@
+# Copyright 1999-2024 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 ~x64-solaris"
+
+RDEPEND="
+ >=dev-libs/glib-2.73.3:2[${MULTILIB_USEDEP}]
+ libproxy? ( >=net-libs/libproxy-0.4.16[${MULTILIB_USEDEP}] )
+ >=net-libs/gnutls-3.7.4:=[${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 environment_proxy)
+ $(meson_feature libproxy)
+ $(meson_feature gnome gnome_proxy)
+ -Dinstalled_tests=false
+ -Ddebug_logs=false
+ )
+ meson_src_configure
+}
+
+multilib_src_test() {
+ # Pretend the network is available so we get real libproxy parsing
+ # output rather than it giving up early in e.g. systemd-nspawn in some
+ # cases.
+ # https://github.com/libproxy/libproxy/issues/260 (bug #914382)
+ local -x GIO_USE_NETWORK_MONITOR=base
+ 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
+}
next reply other threads:[~2024-08-07 10:45 UTC|newest]
Thread overview: 195+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-08-07 10:45 Pacho Ramos [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-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-06-29 21:57 Matt Turner
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=1723027516.022b90b454d5b278d2f5ab5c6eb44b8f0b8b257f.pacho@gentoo \
--to=pacho@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