Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-visualization/labplot/
Date: Sat, 08 Sep 2018 13:29:58
Message-Id: 1536413331.baebbfc03c34360a4364dc2c9154a893f5f09939.asturm@gentoo
1 commit: baebbfc03c34360a4364dc2c9154a893f5f09939
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sat Sep 8 13:24:52 2018 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 8 13:28:51 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=baebbfc0
7
8 sci-visualization/labplot: Drop 2.4.0
9
10 Package-Manager: Portage-2.3.49, Repoman-2.3.10
11
12 sci-visualization/labplot/Manifest | 1 -
13 sci-visualization/labplot/labplot-2.4.0.ebuild | 73 --------------------------
14 2 files changed, 74 deletions(-)
15
16 diff --git a/sci-visualization/labplot/Manifest b/sci-visualization/labplot/Manifest
17 index 146e34d4dfa..141373dce8b 100644
18 --- a/sci-visualization/labplot/Manifest
19 +++ b/sci-visualization/labplot/Manifest
20 @@ -1,2 +1 @@
21 -DIST labplot-2.4.0-kf5.tar.xz 6038072 BLAKE2B b1116a516f3d94d331584f22aefe4e9e54c0c96e98c08a90929bea1aaf379f04437d39a8644afc7cc7feda3f43881ba552d310ca263ae3fc6db24dbc8fb57777 SHA512 5d29dd7d63d484359e73c8d82d8dbc25a069e1f33829cf75c2a2009ebae2027353ecf578b51806b5f35ae17ec472f5cbfdb4caed2637dc1ecc9229d33033d21b
22 DIST labplot-2.5.0.tar.xz 11831656 BLAKE2B b6c122509874f1f7a554814b7ac9889b416d36f750ff831773aed313f9eff23abc0809f40f6f591051b287bd1a875af455f5d500ce54130c4d8ddfe5fcfa0870 SHA512 a4b285917e30b0ac00cb8c8ad6827ba3884d95fccc0511a0a317bb2d637e48e6579929c45cfb8bba737bb5a01472a2baa9d812a688730ac4fa40b23cc6625eba
23
24 diff --git a/sci-visualization/labplot/labplot-2.4.0.ebuild b/sci-visualization/labplot/labplot-2.4.0.ebuild
25 deleted file mode 100644
26 index 41c5faefd1e..00000000000
27 --- a/sci-visualization/labplot/labplot-2.4.0.ebuild
28 +++ /dev/null
29 @@ -1,73 +0,0 @@
30 -# Copyright 1999-2017 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=6
34 -
35 -EGIT_BRANCH="frameworks"
36 -KDE_HANDBOOK="forceoptional"
37 -inherit kde5
38 -
39 -DESCRIPTION="Scientific data analysis and visualisation based on KDE Frameworks"
40 -HOMEPAGE="https://www.kde.org/applications/education/labplot/"
41 -[[ ${KDE_BUILD_TYPE} != live ]] && SRC_URI="mirror://kde/stable/${PN}/${PV}/${P}-kf5.tar.xz"
42 -
43 -LICENSE="GPL-2"
44 -KEYWORDS="~amd64 ~x86"
45 -IUSE="cantor fftw fits hdf5 netcdf"
46 -
47 -[[ ${KDE_BUILD_TYPE} != live ]] && S="${WORKDIR}/${P}-kf5"
48 -
49 -COMMON_DEPEND="
50 - $(add_frameworks_dep karchive)
51 - $(add_frameworks_dep kcompletion)
52 - $(add_frameworks_dep kconfig)
53 - $(add_frameworks_dep kconfigwidgets)
54 - $(add_frameworks_dep kcoreaddons)
55 - $(add_frameworks_dep kdelibs4support)
56 - $(add_frameworks_dep ki18n)
57 - $(add_frameworks_dep kiconthemes)
58 - $(add_frameworks_dep kio)
59 - $(add_frameworks_dep ktextwidgets)
60 - $(add_frameworks_dep kwidgetsaddons)
61 - $(add_frameworks_dep kxmlgui)
62 - $(add_qt_dep qtconcurrent)
63 - $(add_qt_dep qtgui)
64 - $(add_qt_dep qtprintsupport)
65 - $(add_qt_dep qtsvg)
66 - $(add_qt_dep qtwidgets)
67 - >=sci-libs/gsl-1.15:=
68 - cantor? ( $(add_kdeapps_dep cantor) )
69 - fftw? ( sci-libs/fftw:3.0= )
70 - fits? ( sci-libs/cfitsio:= )
71 - hdf5? ( sci-libs/hdf5:= )
72 - netcdf? ( sci-libs/netcdf:= )
73 -"
74 -DEPEND="${COMMON_DEPEND}
75 - sys-devel/gettext
76 - x11-misc/shared-mime-info
77 -"
78 -RDEPEND="${COMMON_DEPEND}
79 - !sci-visualization/labplot:4
80 -"
81 -
82 -src_prepare() {
83 - kde5_src_prepare
84 -
85 - if ! use handbook && [[ ${KDE_BUILD_TYPE} != live ]]; then
86 - cmake_comment_add_subdirectory doc-translations
87 - fi
88 -
89 - punt_bogus_dep KF5 NewStuff
90 -}
91 -
92 -src_configure() {
93 - local mycmakeargs=(
94 - -DENABLE_CANTOR=$(usex cantor)
95 - -DENABLE_FFTW=$(usex fftw)
96 - -DENABLE_FITS=$(usex fits)
97 - -DENABLE_HDF5=$(usex hdf5)
98 - -DENABLE_NETCDF=$(usex netcdf)
99 - )
100 -
101 - kde5_src_configure
102 -}