Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/qcustomplot/
Date: Thu, 04 Jun 2020 08:51:41
Message-Id: 1591260685.d78d956543ccf12847df2decc21ade9f030c20ff.asturm@gentoo
1 commit: d78d956543ccf12847df2decc21ade9f030c20ff
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jun 4 08:51:25 2020 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Thu Jun 4 08:51:25 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d78d9565
7
8 dev-libs/qcustomplot: Drop 2.0.0
9
10 Package-Manager: Portage-2.3.100, Repoman-2.3.22
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 dev-libs/qcustomplot/Manifest | 2 --
14 dev-libs/qcustomplot/qcustomplot-2.0.0.ebuild | 46 ---------------------------
15 2 files changed, 48 deletions(-)
16
17 diff --git a/dev-libs/qcustomplot/Manifest b/dev-libs/qcustomplot/Manifest
18 index 2f2a77d38dd..b597eb03cf3 100644
19 --- a/dev-libs/qcustomplot/Manifest
20 +++ b/dev-libs/qcustomplot/Manifest
21 @@ -1,4 +1,2 @@
22 -DIST qcustomplot-sharedlib-2.0.0.tar.gz 1949 BLAKE2B 6d2d1b7da0dbdb83485ce1a1b69b5d4270fa73af25240decd1764d0872065a7457252aac3b81ccc9d5cbcfe24f8ed67ff843f092b344065b8b0f26aa2c6bef14 SHA512 f4ba719287067c2bb999a6e4ffb3694b32b1d72867c396fee1834ba2916f2931eda07bbe25c4d2ea6f6af18bd78917660dc6eabd98f72c9da987ae288ed4e611
23 DIST qcustomplot-sharedlib-2.0.1.tar.gz 1963 BLAKE2B 294877d929564767009a8a4409111408eda1eb4e0cc64b48e644d25f30ef18151c2df1f0c5caa4e95c5b75dd492e795f97077e47bb927ff9637a2da9a2ec757e SHA512 ce90540fca7226eac37746327e1939a9c7af38fc2595f385ed04d6d1f49560da08fb5fae15d1b9d22b6ba578583f70de8f89ef26796770d41bf599c1b15c535d
24 -DIST qcustomplot-source-2.0.0.tar.gz 317398 BLAKE2B c2d587e06026789a164f16ffdd00d324172654b6953ace637815b022dc14cc96362cf4022512ec3feea3725a651c1af0f50f09d0ca1c5e86ebcfbe3f50aa3ff2 SHA512 66c648877ed0a14cf527ac8526788065f494119cc61993d20268a0046c8e6c5a1c73a61f50a73e6a39ec55435bc5f74c613ee21254293ddab34ba7c2484c4f5a
25 DIST qcustomplot-source-2.0.1.tar.gz 319140 BLAKE2B 868133f5126eea0aa8f80d34272f854de93b60575e3eed1b52211bec5ed96886503ba5c7f15c6f0ff15f3f67e35db6e5333adfc7465cee40768a65ed1b7275da SHA512 b44abbd8fd95970a829bbb6e7becc0765e24bd8f05958c8c1223303b68fb4c0a64f503cf0a2fe4fc53957e6e61a6618500475cff3e81ed0ab387a9eada2c83a3
26
27 diff --git a/dev-libs/qcustomplot/qcustomplot-2.0.0.ebuild b/dev-libs/qcustomplot/qcustomplot-2.0.0.ebuild
28 deleted file mode 100644
29 index 3d626c3e118..00000000000
30 --- a/dev-libs/qcustomplot/qcustomplot-2.0.0.ebuild
31 +++ /dev/null
32 @@ -1,46 +0,0 @@
33 -# Copyright 1999-2018 Gentoo Authors
34 -# Distributed under the terms of the GNU General Public License v2
35 -
36 -EAPI=6
37 -
38 -inherit qmake-utils
39 -
40 -DESCRIPTION="Qt C++ widget for plotting and data visualization"
41 -HOMEPAGE="https://www.qcustomplot.com/"
42 -SRC_URI="
43 - https://www.qcustomplot.com/release/${PV}/QCustomPlot-sharedlib.tar.gz -> ${PN}-sharedlib-${PV}.tar.gz
44 - https://www.qcustomplot.com/release/${PV}/QCustomPlot-source.tar.gz -> ${PN}-source-${PV}.tar.gz"
45 -
46 -SLOT="0"
47 -LICENSE="GPL-3"
48 -KEYWORDS="amd64 ~arm x86 ~amd64-linux ~x86-linux"
49 -IUSE=""
50 -
51 -RDEPEND="
52 - dev-qt/qtcore:5
53 - dev-qt/qtgui:5
54 - dev-qt/qtprintsupport:5
55 - dev-qt/qtwidgets:5
56 -"
57 -DEPEND="${RDEPEND}"
58 -
59 -S=${WORKDIR}/${PN}-source
60 -
61 -src_prepare() {
62 - default
63 -
64 - sed \
65 - -e 's:../../::g' \
66 - -e '/CONFIG/s:shared.*:shared:g' \
67 - "${WORKDIR}"/${PN}-sharedlib/sharedlib-compilation/sharedlib-compilation.pro > ${PN}.pro || die
68 -}
69 -
70 -src_configure() {
71 - eqmake5
72 -}
73 -
74 -src_install() {
75 - dolib.so lib${PN}*
76 - doheader ${PN}.h
77 - dodoc changelog.txt
78 -}