From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A2A1015808B for ; Wed, 9 Feb 2022 13:14:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AFA45E08F4; Wed, 9 Feb 2022 13:14:53 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 95C2BE08F4 for ; Wed, 9 Feb 2022 13:14:53 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id CE49F343018 for ; Wed, 9 Feb 2022 13:14:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6CAAE2B8 for ; Wed, 9 Feb 2022 13:14:51 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1644412476.48449a998c95f8f33a35d8b4d0e4fd1a7fa8f958.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-wireless/linssid/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-wireless/linssid/linssid-3.6-r1.ebuild X-VCS-Directories: net-wireless/linssid/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 48449a998c95f8f33a35d8b4d0e4fd1a7fa8f958 X-VCS-Branch: master Date: Wed, 9 Feb 2022 13:14:51 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 8b72d327-5a1c-4faa-abf9-d3bd1895b032 X-Archives-Hash: c7fa17627e725540cb346c4fd671236c commit: 48449a998c95f8f33a35d8b4d0e4fd1a7fa8f958 Author: Conrad Kostecki gentoo org> AuthorDate: Wed Feb 9 13:14:07 2022 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Wed Feb 9 13:14:36 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=48449a99 net-wireless/linssid: drop 3.6-r1 Signed-off-by: Conrad Kostecki gentoo.org> net-wireless/linssid/linssid-3.6-r1.ebuild | 61 ------------------------------ 1 file changed, 61 deletions(-) diff --git a/net-wireless/linssid/linssid-3.6-r1.ebuild b/net-wireless/linssid/linssid-3.6-r1.ebuild deleted file mode 100644 index f12ac63ff47b..000000000000 --- a/net-wireless/linssid/linssid-3.6-r1.ebuild +++ /dev/null @@ -1,61 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit qmake-utils xdg-utils - -DESCRIPTION="Graphical wireless scanning for Linux" -HOMEPAGE="https://sourceforge.net/projects/linssid/" -SRC_URI="mirror://sourceforge/${PN}/${PN}_${PV}.orig.tar.gz" - -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] -" - -S="${WORKDIR}/${P}/${PN}-app" - -DOCS=( README_${PV} ) - -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 -}