Gentoo Archives: gentoo-commits

From: Michael Palimaka <kensington@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/qcustomplot/
Date: Sun, 31 Mar 2019 11:14:32
Message-Id: 1554030857.a1a68837a5e59deda2cb51441f3f24c7fc63f173.kensington@gentoo
1 commit: a1a68837a5e59deda2cb51441f3f24c7fc63f173
2 Author: Michael Palimaka <kensington <AT> gentoo <DOT> org>
3 AuthorDate: Sun Mar 31 11:14:00 2019 +0000
4 Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
5 CommitDate: Sun Mar 31 11:14:17 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a1a68837
7
8 dev-libs/qcustomplot: version bump 2.0.1
9
10 Package-Manager: Portage-2.3.62, Repoman-2.3.12
11 Signed-off-by: Michael Palimaka <kensington <AT> gentoo.org>
12
13 dev-libs/qcustomplot/Manifest | 2 ++
14 dev-libs/qcustomplot/qcustomplot-2.0.1.ebuild | 46 +++++++++++++++++++++++++++
15 2 files changed, 48 insertions(+)
16
17 diff --git a/dev-libs/qcustomplot/Manifest b/dev-libs/qcustomplot/Manifest
18 index 847e533f7be..2f2a77d38dd 100644
19 --- a/dev-libs/qcustomplot/Manifest
20 +++ b/dev-libs/qcustomplot/Manifest
21 @@ -1,2 +1,4 @@
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.1.ebuild b/dev-libs/qcustomplot/qcustomplot-2.0.1.ebuild
28 new file mode 100644
29 index 00000000000..51051c6445a
30 --- /dev/null
31 +++ b/dev-libs/qcustomplot/qcustomplot-2.0.1.ebuild
32 @@ -0,0 +1,46 @@
33 +# Copyright 1999-2019 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=7
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 +LICENSE="GPL-3"
47 +SLOT="0"
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 +}