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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 944CC138334 for ; Sun, 21 Oct 2018 14:58:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B241CE0863; Sun, 21 Oct 2018 14:58:23 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7FF0DE0863 for ; Sun, 21 Oct 2018 14:58:23 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2DE3E335D40 for ; Sun, 21 Oct 2018 14:58:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9A8FA444 for ; Sun, 21 Oct 2018 14:58:18 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1540133852.a960f744dfbb6236dc328f1ee8966d75a7285798.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-visualization/labplot/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-visualization/labplot/labplot-2.5.0.ebuild X-VCS-Directories: sci-visualization/labplot/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: a960f744dfbb6236dc328f1ee8966d75a7285798 X-VCS-Branch: master Date: Sun, 21 Oct 2018 14:58:18 +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-Archives-Salt: c3f5d300-3d87-4f95-85bd-fe26e62fc329 X-Archives-Hash: 89e25670fdabbe03923aba927e2a1bdc commit: a960f744dfbb6236dc328f1ee8966d75a7285798 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Oct 21 14:51:50 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Oct 21 14:57:32 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a960f744 sci-visualization/labplot: Drop 2.5.0 (r0) Signed-off-by: Andreas Sturmlechner gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 sci-visualization/labplot/labplot-2.5.0.ebuild | 68 -------------------------- 1 file changed, 68 deletions(-) diff --git a/sci-visualization/labplot/labplot-2.5.0.ebuild b/sci-visualization/labplot/labplot-2.5.0.ebuild deleted file mode 100644 index 7c2b38eee9e..00000000000 --- a/sci-visualization/labplot/labplot-2.5.0.ebuild +++ /dev/null @@ -1,68 +0,0 @@ -# Copyright 1999-2018 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -KDE_HANDBOOK="forceoptional" -KDE_TEST="forceoptional" -inherit kde5 - -DESCRIPTION="Scientific data analysis and visualisation based on KDE Frameworks" -HOMEPAGE="https://www.kde.org/applications/education/labplot/" -[[ ${KDE_BUILD_TYPE} != live ]] && SRC_URI="mirror://kde/stable/${PN}/${PV}/${P}.tar.xz" - -LICENSE="GPL-2" -KEYWORDS="~amd64 ~x86" -IUSE="cantor fftw fits hdf5 libcerf netcdf" - -COMMON_DEPEND=" - $(add_frameworks_dep karchive) - $(add_frameworks_dep kcompletion) - $(add_frameworks_dep kconfig) - $(add_frameworks_dep kconfigwidgets) - $(add_frameworks_dep kcoreaddons) - $(add_frameworks_dep kdelibs4support) - $(add_frameworks_dep ki18n) - $(add_frameworks_dep kiconthemes) - $(add_frameworks_dep kio) - $(add_frameworks_dep knewstuff) - $(add_frameworks_dep ktextwidgets) - $(add_frameworks_dep kwidgetsaddons) - $(add_frameworks_dep kxmlgui) - $(add_frameworks_dep syntax-highlighting) - $(add_qt_dep qtconcurrent) - $(add_qt_dep qtgui) - $(add_qt_dep qtprintsupport) - $(add_qt_dep qtserialport) - $(add_qt_dep qtsvg) - $(add_qt_dep qtwidgets) - >=sci-libs/gsl-1.15:= - cantor? ( $(add_kdeapps_dep cantor) ) - fftw? ( sci-libs/fftw:3.0= ) - fits? ( sci-libs/cfitsio:= ) - hdf5? ( sci-libs/hdf5:= ) - libcerf? ( sci-libs/libcerf ) - netcdf? ( sci-libs/netcdf:= ) -" -DEPEND="${COMMON_DEPEND} - sys-devel/bison - sys-devel/gettext - x11-misc/shared-mime-info -" -RDEPEND="${COMMON_DEPEND} - !sci-visualization/labplot:4 -" - -src_configure() { - local mycmakeargs=( - -DENABLE_CANTOR=$(usex cantor) - -DENABLE_FFTW=$(usex fftw) - -DENABLE_FITS=$(usex fits) - -DENABLE_HDF5=$(usex hdf5) - -DENABLE_LIBCERF=$(usex libcerf) - -DENABLE_NETCDF=$(usex netcdf) - -DENABLE_TESTS=$(usex test) - ) - - kde5_src_configure -}