public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: x11-libs/qwtpolar/, profiles/
@ 2024-12-20 17:31 Andreas Sturmlechner
  0 siblings, 0 replies; only message in thread
From: Andreas Sturmlechner @ 2024-12-20 17:31 UTC (permalink / raw
  To: gentoo-commits

commit:     8ea5b2e59bc5fe2634d8f4824304a72aafe80759
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 20 17:30:51 2024 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Fri Dec 20 17:30:51 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ea5b2e5

x11-libs/qwtpolar: treeclean

Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 profiles/package.mask                      |  5 ---
 x11-libs/qwtpolar/Manifest                 |  1 -
 x11-libs/qwtpolar/metadata.xml             | 11 ------
 x11-libs/qwtpolar/qwtpolar-1.1.1-r4.ebuild | 60 ------------------------------
 4 files changed, 77 deletions(-)

diff --git a/profiles/package.mask b/profiles/package.mask
index 7ccdcb60aec3..b31024118638 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -159,11 +159,6 @@ dev-python/shiboken2
 # [3] https://wiki.gentoo.org/wiki/Nouveau
 x11-drivers/nvidia-drivers:0/470
 
-# Andreas Sturmlechner <asturm@gentoo.org> (2024-11-18)
-# All classes were moved to >=x11-libs/qwt-6.2.0. No revdeps.
-# Removal on 2024-12-18.
-x11-libs/qwtpolar
-
 # Robin H. Johnson <robbat2@gentoo.org> (2024-11-17)
 # bug 943698
 # Poor upstream code quality, unmaintained upstream;

diff --git a/x11-libs/qwtpolar/Manifest b/x11-libs/qwtpolar/Manifest
deleted file mode 100644
index 09e9c9da5a6a..000000000000
--- a/x11-libs/qwtpolar/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST qwtpolar-1.1.1.tar.bz2 565546 BLAKE2B 7067a006c44d49fab1dc16e115c528aaf72fa172d92487bd38e112bdff99e8ea4d83f0dafcb7f17af4bad9190c809468e47db652ca712645504b350dc9f03ed3 SHA512 5b752e5426ae15740737277c2ba244cab947c54d573b4eedd1f54359b6eab1fa738d40f68f6c806106d01596eabc9f6d7ee825dde11a4925bebd643f42021621

diff --git a/x11-libs/qwtpolar/metadata.xml b/x11-libs/qwtpolar/metadata.xml
deleted file mode 100644
index 388d8d5fbf96..000000000000
--- a/x11-libs/qwtpolar/metadata.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-	<maintainer type="project">
-		<email>sci-geosciences@gentoo.org</email>
-		<name>Gentoo Geosciences Project</name>
-	</maintainer>
-	<upstream>
-		<remote-id type="sourceforge">qwtpolar</remote-id>
-	</upstream>
-</pkgmetadata>

diff --git a/x11-libs/qwtpolar/qwtpolar-1.1.1-r4.ebuild b/x11-libs/qwtpolar/qwtpolar-1.1.1-r4.ebuild
deleted file mode 100644
index aa82b64f48e4..000000000000
--- a/x11-libs/qwtpolar/qwtpolar-1.1.1-r4.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit qmake-utils
-
-DESCRIPTION="Library for displaying values on a polar coordinate system"
-HOMEPAGE="https://qwtpolar.sourceforge.io/"
-SRC_URI="https://downloads.sourceforge.net/project/${PN}/${PN}/${PV}/${P}.tar.bz2"
-
-LICENSE="qwt"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-RDEPEND="
-	dev-qt/qtcore:5
-	dev-qt/qtgui:5
-	dev-qt/qtprintsupport:5
-	dev-qt/qtsvg:5
-	dev-qt/qtwidgets:5
-	<x11-libs/qwt-6.2:6=[designer,qt5(+),svg,-polar(-)]
-"
-DEPEND="${RDEPEND}
-	dev-qt/qtconcurrent:5
-"
-
-src_prepare() {
-	default
-
-	local qtplugindir="${EPREFIX}$(qt5_get_plugindir)"
-
-	sed \
-		-e "/QWT_POLAR_INSTALL_PREFIX /s:=.*$:= ${EPREFIX}/usr:g" \
-		-e "/QWT_POLAR_INSTALL_LIBS/s:lib:$(get_libdir):g" \
-		-e "/QWT_POLAR_INSTALL_DOCS/s:doc:share/doc/${PF}:g" \
-		-e "/QWT_POLAR_INSTALL_PLUGINS/s:=.*$:= ${qtplugindir}/designer/:g" \
-		-e "/QWT_POLAR_INSTALL_FEATURES/s:=.*$:= ${qtplugindir}/features/:g" \
-		-e "/= QwtPolarDesigner/ d" \
-		-e "/= QwtPolarExamples/d" \
-		-i ${PN}config.pri || die
-
-	sed \
-		-e "s:{QWT_POLAR_ROOT}/lib:{QWT_POLAR_ROOT}/$(get_libdir):" \
-		-i src/src.pro || die
-	echo "INCLUDEPATH += ${EPREFIX}/usr/include/qwt6" >> src/src.pro
-	cat >> designer/designer.pro <<- EOF
-	INCLUDEPATH += "${EPREFIX}"/usr/include/qwt6
-	LIBS += -L"${S}/$(get_libdir)"
-	EOF
-}
-
-src_configure() {
-	eqmake5
-}
-
-src_install() {
-	emake DESTDIR="${D}" INSTALL_ROOT="${D}" install
-	einstalldocs
-}


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

only message in thread, other threads:[~2024-12-20 17:31 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-12-20 17:31 [gentoo-commits] repo/gentoo:master commit in: x11-libs/qwtpolar/, profiles/ Andreas Sturmlechner

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