Gentoo Archives: gentoo-commits

From: Davide Pesavento <pesa@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/qcustomplot/
Date: Wed, 15 Nov 2017 06:00:47
Message-Id: 1510725598.87a182adc2538718a1c8a12e3cbad0ba4fc878d8.pesa@gentoo
1 commit: 87a182adc2538718a1c8a12e3cbad0ba4fc878d8
2 Author: Davide Pesavento <pesa <AT> gentoo <DOT> org>
3 AuthorDate: Wed Nov 15 05:59:58 2017 +0000
4 Commit: Davide Pesavento <pesa <AT> gentoo <DOT> org>
5 CommitDate: Wed Nov 15 05:59:58 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=87a182ad
7
8 dev-libs/qcustomplot: version bump
9
10 Package-Manager: Portage-2.3.13, Repoman-2.3.4
11
12 dev-libs/qcustomplot/Manifest | 2 ++
13 dev-libs/qcustomplot/qcustomplot-2.0.0.ebuild | 46 +++++++++++++++++++++++++++
14 2 files changed, 48 insertions(+)
15
16 diff --git a/dev-libs/qcustomplot/Manifest b/dev-libs/qcustomplot/Manifest
17 index fa7b3a139de..7e2e7994754 100644
18 --- a/dev-libs/qcustomplot/Manifest
19 +++ b/dev-libs/qcustomplot/Manifest
20 @@ -1,2 +1,4 @@
21 DIST qcustomplot-sharedlib-1.3.2.tar.gz 1924 SHA256 18af836d2ac32f0dc2a4b1485c3038f4f5f3acf07550d86077ba5871e54bb269 SHA512 645d71c9d63ccd324f341778556f0b9ddceb3fee87b037c66f7ea7624973e24e292da7539861ffa1c8545cc0691a1041110b25d688f0b3d8787a44798a5e190e WHIRLPOOL d7ff5ffa460ac6b05816f1705f29ea82bbd709ca131ad3dc496abab1e718524f1dbe536dfaf726b0508143dbc76256a080fad8544c4e4412e58b980309e1aa2a
22 +DIST qcustomplot-sharedlib-2.0.0.tar.gz 1949 SHA256 e5998b883dc7af8aa0260f4eccc5dfa1ed011094df842414c5d6ce95a4ddd9f6 SHA512 f4ba719287067c2bb999a6e4ffb3694b32b1d72867c396fee1834ba2916f2931eda07bbe25c4d2ea6f6af18bd78917660dc6eabd98f72c9da987ae288ed4e611 WHIRLPOOL 33388defb8eec382c81c15facfd3f38401dfd5eacd594344e72740950c1a6551e447e9e3a471ba0b041ade9086184fe4dd1b37d9c545a2c1b3fcef0b3a0eb5e1
23 DIST qcustomplot-source-1.3.2.tar.gz 225912 SHA256 a3649824c6d2d08efb0b54629e6ffe4cc57fa08ad9eb9f39edbb0c30b9659b51 SHA512 0e9fefd3f6e4428009428d3155b1a26e1d4b2a62567ca7812cefa67c06fa53f301229d8bd2c3abbe0fb7ddacb9a07515522ded56c0745cd31b1f85323d4499fb WHIRLPOOL fb5c59c71aee5fc95af9a75054f7a41a28eac7c70f296cf1b0dc4a58927f73b94a5b02203b520e367f673e4741959d195cebe6f50141be8157122aa249ea6c4a
24 +DIST qcustomplot-source-2.0.0.tar.gz 317398 SHA256 68b4502d6aac502b0630724e95e07abeb8246a68448a78f62661f58abee9a815 SHA512 66c648877ed0a14cf527ac8526788065f494119cc61993d20268a0046c8e6c5a1c73a61f50a73e6a39ec55435bc5f74c613ee21254293ddab34ba7c2484c4f5a WHIRLPOOL 49637db58cb0996c2b2574632e97156bd753097c924d93b46e57cc6284f42a03b76415a96fd6372400fe9c89f0d09bddef50bb9b9253f0d9455f99e8461c5392
25
26 diff --git a/dev-libs/qcustomplot/qcustomplot-2.0.0.ebuild b/dev-libs/qcustomplot/qcustomplot-2.0.0.ebuild
27 new file mode 100644
28 index 00000000000..fdd27dd99da
29 --- /dev/null
30 +++ b/dev-libs/qcustomplot/qcustomplot-2.0.0.ebuild
31 @@ -0,0 +1,46 @@
32 +# Copyright 1999-2017 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=6
36 +
37 +inherit qmake-utils
38 +
39 +DESCRIPTION="Qt C++ widget for plotting and data visualization"
40 +HOMEPAGE="http://www.qcustomplot.com/"
41 +SRC_URI="
42 + http://www.qcustomplot.com/release/${PV}/QCustomPlot-sharedlib.tar.gz -> ${PN}-sharedlib-${PV}.tar.gz
43 + http://www.qcustomplot.com/release/${PV}/QCustomPlot-source.tar.gz -> ${PN}-source-${PV}.tar.gz"
44 +
45 +SLOT="0"
46 +LICENSE="GPL-3"
47 +KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux"
48 +IUSE=""
49 +
50 +RDEPEND="
51 + dev-qt/qtcore:5
52 + dev-qt/qtgui:5
53 + dev-qt/qtprintsupport:5
54 + dev-qt/qtwidgets:5
55 +"
56 +DEPEND="${RDEPEND}"
57 +
58 +S=${WORKDIR}/${PN}-source
59 +
60 +src_prepare() {
61 + default
62 +
63 + sed \
64 + -e 's:../../::g' \
65 + -e '/CONFIG/s:shared.*:shared:g' \
66 + "${WORKDIR}"/${PN}-sharedlib/sharedlib-compilation/sharedlib-compilation.pro > ${PN}.pro || die
67 +}
68 +
69 +src_configure() {
70 + eqmake5
71 +}
72 +
73 +src_install() {
74 + dolib.so lib${PN}*
75 + doheader ${PN}.h
76 + dodoc changelog.txt
77 +}