public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Mart Raudsepp" <leio@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libnma/, net-libs/libnma/files/
Date: Sat,  6 Feb 2021 09:59:34 +0000 (UTC)	[thread overview]
Message-ID: <1612605424.5a961cd3d1a61f52cb683c81884767493578035c.leio@gentoo> (raw)

commit:     5a961cd3d1a61f52cb683c81884767493578035c
Author:     Mart Raudsepp <leio <AT> gentoo <DOT> org>
AuthorDate: Sat Feb  6 09:39:37 2021 +0000
Commit:     Mart Raudsepp <leio <AT> gentoo <DOT> org>
CommitDate: Sat Feb  6 09:57:04 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a961cd3

net-libs/libnma: remove old

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Mart Raudsepp <leio <AT> gentoo.org>

 net-libs/libnma/Manifest                           |  1 -
 net-libs/libnma/files/1.8.28-nma-ws-leak-fix.patch | 86 ----------------------
 net-libs/libnma/libnma-1.8.24.ebuild               | 22 ------
 net-libs/libnma/libnma-1.8.28.ebuild               | 72 ------------------
 4 files changed, 181 deletions(-)

diff --git a/net-libs/libnma/Manifest b/net-libs/libnma/Manifest
index 411e28380aa..6cc656c73eb 100644
--- a/net-libs/libnma/Manifest
+++ b/net-libs/libnma/Manifest
@@ -1,2 +1 @@
-DIST libnma-1.8.28.tar.xz 1366584 BLAKE2B 598c2d310844930a5ed8b8d4b8bc0ae91193a8e62bccdb60050cc980cd37d198adf728b98694d9f1cf9f523998b865d9682fd271c88e434ead777ed5b69866b4 SHA512 d3996da3433493149edf0743b7f2280a83db2efc2228f04eddb773bbcb08ea2efcb640f781cb1d0a5cbabd8b25b1c612387682ff5239151d8ce249568e877f5b
 DIST libnma-1.8.30.tar.xz 1386248 BLAKE2B 7021e85595819b0cbd44b8c62087f49a5ecccc4bb230820d9a0159bf33b904df4f5c8021a79822c37d0933bdcde790a44f6d960b7f5f504e7506849aed35d54c SHA512 4d8f93d035fca4252e5c5dafc756ee6bc8f1d302aaeca77c5c0acb5d7f6cd4214224fb48e2706e69084c5a714aafa7837769be17d0642cc29eded9eb175a1107

diff --git a/net-libs/libnma/files/1.8.28-nma-ws-leak-fix.patch b/net-libs/libnma/files/1.8.28-nma-ws-leak-fix.patch
deleted file mode 100644
index 8f2042a2568..00000000000
--- a/net-libs/libnma/files/1.8.28-nma-ws-leak-fix.patch
+++ /dev/null
@@ -1,86 +0,0 @@
-From 55e33e4ce01c8b2b8dc98a5ee40a5636579cd577 Mon Sep 17 00:00:00 2001
-From: Beniamino Galvani <bgalvani@redhat.com>
-Date: Sat, 11 Apr 2020 15:44:17 +0200
-Subject: [PATCH] nma-ws: properly dispose wireless security objects
-
-Chain up to parent to properly free resources on dispose().
-
-Fixes: b61cc1b9fa040 ("nma-ws: add")
-
-https://gitlab.gnome.org/GNOME/libnma/-/issues/7
----
- src/nma-ws/nma-ws-802-1x.c  | 2 ++
- src/nma-ws/nma-ws-leap.c    | 2 ++
- src/nma-ws/nma-ws-sae.c     | 2 ++
- src/nma-ws/nma-ws-wep-key.c | 2 ++
- src/nma-ws/nma-ws-wpa-psk.c | 2 ++
- 5 files changed, 10 insertions(+)
-
-diff --git a/src/nma-ws/nma-ws-802-1x.c b/src/nma-ws/nma-ws-802-1x.c
-index ba348266..0c148ce5 100644
---- a/src/nma-ws/nma-ws-802-1x.c
-+++ b/src/nma-ws/nma-ws-802-1x.c
-@@ -482,6 +482,8 @@ dispose (GObject *object)
- 	g_clear_pointer (&self->secrets_hints, g_strfreev);
- 	g_clear_pointer (&self->username, g_free);
- 	g_clear_pointer (&self->password, g_free);
-+
-+	G_OBJECT_CLASS (nma_ws_802_1x_parent_class)->dispose (object);
- }
- 
- static void
-diff --git a/src/nma-ws/nma-ws-leap.c b/src/nma-ws/nma-ws-leap.c
-index f90d43aa..df6d2dde 100644
---- a/src/nma-ws/nma-ws-leap.c
-+++ b/src/nma-ws/nma-ws-leap.c
-@@ -260,6 +260,8 @@ dispose (GObject *object)
- 	NMAWsLeap *self = NMA_WS_LEAP (object);
- 
- 	g_clear_object (&self->connection);
-+
-+	G_OBJECT_CLASS (nma_ws_leap_parent_class)->dispose (object);
- }
- 
- static void
-diff --git a/src/nma-ws/nma-ws-sae.c b/src/nma-ws/nma-ws-sae.c
-index e3454bbd..00fb6ff5 100644
---- a/src/nma-ws/nma-ws-sae.c
-+++ b/src/nma-ws/nma-ws-sae.c
-@@ -252,6 +252,8 @@ dispose (GObject *object)
- 	NMAWsSae *self = NMA_WS_SAE (object);
- 
- 	g_clear_object (&self->connection);
-+
-+	G_OBJECT_CLASS (nma_ws_sae_parent_class)->dispose (object);
- }
- 
- static void
-diff --git a/src/nma-ws/nma-ws-wep-key.c b/src/nma-ws/nma-ws-wep-key.c
-index cae8c272..992aabf7 100644
---- a/src/nma-ws/nma-ws-wep-key.c
-+++ b/src/nma-ws/nma-ws-wep-key.c
-@@ -404,6 +404,8 @@ dispose (GObject *object)
- 	NMAWsWepKey *self = NMA_WS_WEP_KEY (object);
- 
- 	g_clear_object (&self->connection);
-+
-+	G_OBJECT_CLASS (nma_ws_wep_key_parent_class)->dispose (object);
- }
- 
- static void
-diff --git a/src/nma-ws/nma-ws-wpa-psk.c b/src/nma-ws/nma-ws-wpa-psk.c
-index 1c73922a..27604960 100644
---- a/src/nma-ws/nma-ws-wpa-psk.c
-+++ b/src/nma-ws/nma-ws-wpa-psk.c
-@@ -270,6 +270,8 @@ dispose (GObject *object)
- 	NMAWsWpaPsk *self = NMA_WS_WPA_PSK (object);
- 
- 	g_clear_object (&self->connection);
-+
-+	G_OBJECT_CLASS (nma_ws_wpa_psk_parent_class)->dispose (object);
- }
- 
- static void
--- 
-2.20.1
-

diff --git a/net-libs/libnma/libnma-1.8.24.ebuild b/net-libs/libnma/libnma-1.8.24.ebuild
deleted file mode 100644
index d088541fa52..00000000000
--- a/net-libs/libnma/libnma-1.8.24.ebuild
+++ /dev/null
@@ -1,22 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="NetworkManager GUI library"
-HOMEPAGE="https://wiki.gnome.org/Projects/NetworkManager"
-
-LICENSE="GPL-2+"
-SLOT="0"
-IUSE="+introspection"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ppc ppc64 ~sparc x86"
-
-# This is a transitional package for 1.8.24, but 1.16 version will be a real one split out of nm-applet by upstream
-RDEPEND="~gnome-extra/nm-applet-${PV}[introspection?]"
-DEPEND="${RDEPEND}"
-BDEPEND=""
-
-S="${WORKDIR}"
-
-src_unpack() { :; }
-src_install() { :; }

diff --git a/net-libs/libnma/libnma-1.8.28.ebuild b/net-libs/libnma/libnma-1.8.28.ebuild
deleted file mode 100644
index 140757c9ecb..00000000000
--- a/net-libs/libnma/libnma-1.8.28.ebuild
+++ /dev/null
@@ -1,72 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit gnome.org gnome2-utils meson xdg vala
-
-DESCRIPTION="NetworkManager GUI library"
-HOMEPAGE="https://wiki.gnome.org/Projects/NetworkManager"
-
-LICENSE="GPL-2+"
-SLOT="0"
-# 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
-IUSE="gtk-doc +introspection +pkcs11 vala"
-REQUIRED_USE="vala? ( introspection )"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
-
-DEPEND="
-	app-text/iso-codes
-	net-misc/mobile-broadband-provider-info
-	>=dev-libs/glib-2.38:2
-	>=x11-libs/gtk+-3.10:3[introspection?]
-	>=net-misc/networkmanager-1.7[introspection?]
-	pkcs11? ( >=app-crypt/gcr-3.14:= )
-	introspection? ( >=dev-libs/gobject-introspection-1.56:= )
-"
-RDEPEND="${DEPEND}
-	!<gnome-extra/nm-applet-1.16.0" # gschema moved to here before nm-applet-1.16.0
-BDEPEND="
-	dev-libs/libxml2
-	>=sys-devel/gettext-0.19.8
-	virtual/pkgconfig
-	gtk-doc? ( dev-util/gtk-doc
-		app-text/docbook-xml-dtd:4.3 )
-	vala? ( $(vala_depend)
-		net-misc/networkmanager[vala]
-	)
-"
-
-PATCHES=(
-	"${FILESDIR}"/${PV}-nma-ws-leak-fix.patch
-)
-
-src_prepare() {
-	use vala && vala_src_prepare
-	xdg_src_prepare
-}
-
-src_configure() {
-	local emesonargs=(
-		-Dlibnma_gtk4=false
-		$(meson_use pkcs11 gcr)
-		-Dmore_asserts=0
-		-Diso_codes=true
-		-Dmobile_broadband_provider_info=true
-		-Dld_gc=false
-		$(meson_use gtk-doc gtk_doc)
-		$(meson_use introspection)
-		$(meson_use vala vapi)
-	)
-	meson_src_configure
-}
-
-pkg_postinst() {
-	xdg_pkg_postinst
-	gnome2_schemas_update
-}
-
-pkg_postrm() {
-	xdg_pkg_postrm
-	gnome2_schemas_update
-}


                 reply	other threads:[~2021-02-06  9:59 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

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=1612605424.5a961cd3d1a61f52cb683c81884767493578035c.leio@gentoo \
    --to=leio@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