public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: profiles/, net-wireless/linssid/files/, net-wireless/linssid/
@ 2025-03-01  1:14 Conrad Kostecki
  0 siblings, 0 replies; only message in thread
From: Conrad Kostecki @ 2025-03-01  1:14 UTC (permalink / raw
  To: gentoo-commits

commit:     75cf1e6913e15ec5da420d30a3f502e726f02a4d
Author:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Sat Mar  1 00:51:46 2025 +0000
Commit:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sat Mar  1 00:52:06 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75cf1e69

net-wireless/linssid: last-rite

Closes: https://bugs.gentoo.org/948048
Closes: https://bugs.gentoo.org/945260
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>

 net-wireless/linssid/Manifest                      |  1 -
 .../linssid/files/linssid-3.6-qwt620.patch         | 48 -----------------
 net-wireless/linssid/linssid-3.6-r2.ebuild         | 62 ----------------------
 net-wireless/linssid/metadata.xml                  | 20 -------
 profiles/package.mask                              |  5 --
 5 files changed, 136 deletions(-)

diff --git a/net-wireless/linssid/Manifest b/net-wireless/linssid/Manifest
deleted file mode 100644
index fbb32192ee6c..000000000000
--- a/net-wireless/linssid/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST linssid_3.6.orig.tar.gz 397541 BLAKE2B 35d56cc9439a3a117200c59a03dad3a53bbecbe522a5592ba4cd6a5d37332c4b8c6ec065b7357643bda6b7b54462d720e3ee0b3efcb5a80e14c809330d84fc2b SHA512 066c890776a23d0e5fe8518826c64edc4b7d6dcef28cd7ce58f842e52b9e2b13517358ca6df636613abd1e860b20c6b542b5df165de1aa262e1e7db8a60e00e5

diff --git a/net-wireless/linssid/files/linssid-3.6-qwt620.patch b/net-wireless/linssid/files/linssid-3.6-qwt620.patch
deleted file mode 100644
index bea00e1f432d..000000000000
--- a/net-wireless/linssid/files/linssid-3.6-qwt620.patch
+++ /dev/null
@@ -1,48 +0,0 @@
-From: Luigi Baldoni <aloisio@gmx.com>
-Date: 2021-08-04 22:14:02 +0200
-Subject: Fix compatibility with Qwt 6.2.0
-References: https://sourceforge.net/p/linssid/discussion/bugs/thread/3080bf8f4d/
-Upstream: submitted
-
-Disambiguate function calls after new overloads added in qwt 6.2.
-(courtesy of Jari Kuittinen)
-
----
-
-Index: MainForm.cpp
-===================================================================
---- a/MainForm.cpp
-+++ b/MainForm.cpp
-@@ -28,6 +28,7 @@
- #include <qwt_plot_curve.h>
- #include <qwt_plot_grid.h>
- #include <qwt_symbol.h>
-+#include <qwt_text.h>
- #include <qwt_plot_marker.h>
- #include <QPointF>
- #include <qwt_scale_draw.h>
-@@ -1036,7 +1037,7 @@ void MainForm::fillPlots() {
-                     MainForm::cellDataRay[tbi].signal ) );
-             }
-         } else {
--            MainForm::cellDataRay[tbi].pBandCurve->setSamples(0, 0, 0);
-+            MainForm::cellDataRay[tbi].pBandCurve->setSamples((double *)nullptr, (double *)nullptr, 0);
-         }
-         // now the signal history plot
-         int ixStart;
-@@ -1055,7 +1056,7 @@ void MainForm::fillPlots() {
-                     &(MainForm::cellDataRay[tbi].pHistory->signal[ixStart]), ixLength);
-         } else {
- 
--            MainForm::cellDataRay[tbi].pTimeCurve->setSamples(0, 0, 0);
-+            MainForm::cellDataRay[tbi].pTimeCurve->setSamples((double *)nullptr, (double *)nullptr, 0);
-         }
-     }
-     MainForm::mainFormWidget.chan24Plot->replot();
-@@ -1424,4 +1425,4 @@ int MainForm::MinIntStr(const string &s)
- //    const std::string whiteSpaces( " \f\n\r\t\v" );
- //    std::string::size_type pos = str.find_first_not_of( whiteSpaces );
- //    str.erase( pos + 1 );    
--//}
-\ No newline at end of file
-+//}

diff --git a/net-wireless/linssid/linssid-3.6-r2.ebuild b/net-wireless/linssid/linssid-3.6-r2.ebuild
deleted file mode 100644
index ce111693814b..000000000000
--- a/net-wireless/linssid/linssid-3.6-r2.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit qmake-utils xdg-utils
-
-DESCRIPTION="Graphical wireless scanning for Linux"
-HOMEPAGE="https://sourceforge.net/projects/linssid/"
-SRC_URI="https://downloads.sourceforge.net/${PN}/${PN}_${PV}.orig.tar.gz"
-S="${WORKDIR}/${P}/${PN}-app"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-DEPEND="
-	dev-libs/boost:=
-	dev-qt/qtcore:5
-	dev-qt/qtopengl:5
-	dev-qt/qtsvg:5
-	dev-qt/qtwidgets:5
-	x11-libs/qwt:6[opengl,qt5(+),svg]
-"
-
-RDEPEND="
-	${DEPEND}
-	net-wireless/iw
-	sys-auth/polkit
-	x11-libs/libxkbcommon[X]
-"
-
-DOCS=( README_${PV} )
-
-PATCHES=( "${FILESDIR}/${PN}-3.6-qwt620.patch" )
-
-src_prepare() {
-	default
-
-	# Fix lib path for x11-libs/qwt and use system qwt for compiling
-	sed -e '/libqwt-qt5.so.6/c\LIBS += -lqwt6-qt5' -e 's/CONFIG += release/& qwt/' -i linssid-app.pro || die
-}
-
-src_configure() {
-	eqmake5
-}
-
-src_install() {
-	emake INSTALL_ROOT="${D}" install
-
-	einstalldocs
-}
-
-pkg_postinst() {
-	xdg_desktop_database_update
-	xdg_mimeinfo_database_update
-}
-
-pkg_postrm() {
-	xdg_desktop_database_update
-	xdg_mimeinfo_database_update
-}

diff --git a/net-wireless/linssid/metadata.xml b/net-wireless/linssid/metadata.xml
deleted file mode 100644
index 731a24f42044..000000000000
--- a/net-wireless/linssid/metadata.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-	<maintainer type="person">
-		<email>conikost@gentoo.org</email>
-		<name>Conrad Kostecki</name>
-	</maintainer>
-	<longdescription>
-		LinSSID displays the information available
-		from the 'iw list' tool in a graphical format.
-		It displays a table of all of the local wireless networks
-		that your device can receive and information about them.
-		It also displays charts of the signal strength of each network by
-		channel number and over time.
-	</longdescription>
-	<upstream>
-		<bugs-to>https://sourceforge.net/p/linssid/discussion/bugs/</bugs-to>
-		<remote-id type="sourceforge">linssid</remote-id>
-	</upstream>
-</pkgmetadata>

diff --git a/profiles/package.mask b/profiles/package.mask
index 8f255974956f..da894d116672 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -228,11 +228,6 @@ games-fps/quakeforge
 # Removal on 2025-03-07. Bug: 949318
 net-misc/AQtion
 
-# Conrad Kostecki <conikost@gentoo.org> (2024-01-28)
-# A package, which depends on Qt5. Upstream dead for many years.
-# Removal on 2025-02-28. Bug #948048
-net-wireless/linssid
-
 # Conrad Kostecki <conikost@gentoo.org> (2024-01-28)
 # Binary package, which depends on Qt5. Bug #926665
 # Please update to v5 beta or v6 beta. Removal on 2025-02-28.


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2025-03-01  1:14 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-03-01  1:14 [gentoo-commits] repo/gentoo:master commit in: profiles/, net-wireless/linssid/files/, net-wireless/linssid/ Conrad Kostecki

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox