commit: fbbfba356213fef7369228bb5e63cdc93d35d00e
parent: 31dc293503fd019629124fbd142f88827ac1f477
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date: Fri, 10 May 2019 02:52:36 +0200
net-libs/glib-networking: Bump to 2.60.2
Diffstat:
2 files changed, 63 insertions(+), 0 deletions(-)
diff --git a/net-libs/glib-networking/Manifest b/net-libs/glib-networking/Manifest
@@ -1 +1,2 @@
DIST glib-networking-2.60.0.1.tar.xz 184368 BLAKE2B 8c1ee12a58148181844395701232d17baf1c7570209d3404dcac352486449443fe708582c98b1decbb37b5ae412acdc84d27139ea775036ea510a671dced06bf SHA512 98a34a14cdbbcb4a9496bce807e7720dd9e103adbacd5dc44439d5fcaf02eef12c0385df95767d7603587331b84c7ad4a677f47b00583a46f15a022572a3690f
+DIST glib-networking-2.60.2.tar.xz 184808 BLAKE2B 1b7b2ba42c9f5d8912af993c942927b348d37d07bce59a9b5f5427e408b3eaa1156c4d70c8ed2d4c03681ab44204a671210d9a092e3d7cc3f1d122bbbd1f2129 SHA512 bfb8c716e78dfce997baaeb8aaafc1f187aa18fabee0197211f741d6175c21760e8eb5f514711e12f19ed7d7a0e4931dc7469b0ba778dc0e354c9123cf5a67f1
diff --git a/net-libs/glib-networking/glib-networking-2.60.2.ebuild b/net-libs/glib-networking/glib-networking-2.60.2.ebuild
@@ -0,0 +1,62 @@
+# Copyright 2018-2019 Haelwenn (lanodan) Monnier <contact@hacktivis.me>
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit gnome2-utils meson xdg multilib-minimal
+
+DESCRIPTION="Network-related giomodules for glib"
+HOMEPAGE="https://git.gnome.org/browse/${PN}/"
+SRC_URI="https://ftp.gnome.org/pub/GNOME/sources/${PN}/$(ver_cut 1-2)/${P}.tar.xz"
+
+LICENSE="LGPL-2.1+"
+SLOT="0"
+IUSE="gnome gnutls +libproxy libressl +openssl test ssl"
+KEYWORDS="~amd64"
+
+REQUIRED_USE="ssl? ( || ( gnutls openssl ) )"
+
+DEPEND="
+ >=dev-libs/glib-2.55.1:2[${MULTILIB_USEDEP}]
+ libproxy? ( >=net-libs/libproxy-0.3.1:=[${MULTILIB_USEDEP}] )
+ gnutls? ( >=net-libs/gnutls-3.4.6:=[${MULTILIB_USEDEP}] )
+ openssl? (
+ !libressl? ( dev-libs/openssl:0=[${MULTILIB_USEDEP}] )
+ libressl? ( dev-libs/libressl:=[${MULTILIB_USEDEP}] )
+ )
+"
+
+multilib_src_configure() {
+ local emesonargs=(
+ $(meson_feature gnutls)
+ $(meson_feature openssl)
+ $(meson_feature libproxy)
+ $(meson_feature gnome gnome_proxy)
+ -Dinstalled_tests=false
+ -Dstatic_modules=false
+ )
+
+ meson_src_configure
+}
+
+multilib_src_compile() {
+ meson_src_compile
+}
+
+multilib_src_install() {
+ meson_src_install
+}
+
+multilib_src_test() {
+ meson_src_test
+}
+
+pkg_postinst() {
+ xdg_pkg_postinst
+ multilib_foreach_abi gnome2_giomodule_cache_update
+}
+
+pkg_postrm() {
+ xdg_pkg_postrm
+ multilib_foreach_abi gnome2_giomodule_cache_update
+}