Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-office/libalkimia/
Date: Wed, 07 Feb 2018 14:14:58
Message-Id: 1518012874.04f494effb4fdb9ab1eb78ac1556c77812f87219.asturm@gentoo
1 commit: 04f494effb4fdb9ab1eb78ac1556c77812f87219
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Wed Feb 7 13:22:49 2018 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Wed Feb 7 14:14:34 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=04f494ef
7
8 app-office/libalkimia: 7.0 version bump
9
10 Closes: https://bugs.gentoo.org/646356
11 Package-Manager: Portage-2.3.24, Repoman-2.3.6
12
13 app-office/libalkimia/Manifest | 1 +
14 app-office/libalkimia/libalkimia-7.0.ebuild | 33 +++++++++++++++++++++++++++++
15 2 files changed, 34 insertions(+)
16
17 diff --git a/app-office/libalkimia/Manifest b/app-office/libalkimia/Manifest
18 index c3c23fcb4f1..377485ec8f7 100644
19 --- a/app-office/libalkimia/Manifest
20 +++ b/app-office/libalkimia/Manifest
21 @@ -1 +1,2 @@
22 +DIST alkimia-7.0.tar.xz 37992 BLAKE2B 998ab4c560edf1f327369fd49e56687e35d672490fe367afbddaca5e0e8a2980213825bdeddd41e1dc37dfb825c1fc4b997e4c7c4e787ca2c819f5d0333f4688 SHA512 0d84616d6b593cba76caee4875f2cda209a4c5f3727abb9a6902faecd46dad4f4a19c099fe3c4677bf9abf540dbd5a76eacf8bb761fac3a3aee9723601064e1e
23 DIST libalkimia-5.0.0.tar.xz 28400 BLAKE2B 68fa555b1e42bcadcf7aa229092e8a2d6500f4e5d03720dd259eec43daeb7f2916564500d1d2b32c0b36988a8907120404830880a7d10999c3c6b9d010903f61 SHA512 9ba205f5726f237389b9ea928ef37fc3b38161aaec5988dcc64afa3d8e53575a055b248e3c27e738db13f9e6af231f493e1374bbc50d0672729b0cdb391ce99f
24
25 diff --git a/app-office/libalkimia/libalkimia-7.0.ebuild b/app-office/libalkimia/libalkimia-7.0.ebuild
26 new file mode 100644
27 index 00000000000..369d414c124
28 --- /dev/null
29 +++ b/app-office/libalkimia/libalkimia-7.0.ebuild
30 @@ -0,0 +1,33 @@
31 +# Copyright 1999-2018 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=6
35 +
36 +KDE_TEST="forceoptional"
37 +KMNAME="alkimia"
38 +inherit kde5
39 +
40 +DESCRIPTION="Library with common classes and functionality used by KDE finance applications"
41 +HOMEPAGE="https://www.linux-apps.com/content/show.php/libalkimia?content=137323"
42 +SRC_URI="mirror://kde/stable/${KMNAME}/${PV}/src/${KMNAME}-${PV}.tar.xz"
43 +
44 +LICENSE="LGPL-2.1"
45 +SLOT="0/7"
46 +KEYWORDS="~amd64 ~x86"
47 +IUSE="doc"
48 +
49 +RDEPEND="
50 + $(add_qt_dep qtdbus)
51 + dev-libs/gmp:0=[cxx]
52 +"
53 +DEPEND="${RDEPEND}
54 + virtual/pkgconfig
55 + doc? ( app-doc/doxygen )
56 +"
57 +
58 +src_configure() {
59 + local mycmakeargs=(
60 + $(cmake-utils_use_find_package doc Doxygen)
61 + )
62 + kde5_src_configure
63 +}