Gentoo Archives: gentoo-commits

From: "Manuel Rüger" <mrueg@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: lxqt-base/lxqt-about/
Date: Mon, 26 Sep 2016 22:45:44
Message-Id: 1474929646.5e960cd75fc86485e6d871afc51ad59539e7ef34.mrueg@gentoo
1 commit: 5e960cd75fc86485e6d871afc51ad59539e7ef34
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Mon Sep 26 22:40:46 2016 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Mon Sep 26 22:40:46 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e960cd7
7
8 lxqt-base/lxqt-about: Version bump to 0.11.0
9
10 Package-Manager: portage-2.3.1
11
12 lxqt-base/lxqt-about/Manifest | 1 +
13 lxqt-base/lxqt-about/lxqt-about-0.11.0.ebuild | 36 +++++++++++++++++++++++++++
14 2 files changed, 37 insertions(+)
15
16 diff --git a/lxqt-base/lxqt-about/Manifest b/lxqt-base/lxqt-about/Manifest
17 index 2190f7f..8f503ad 100644
18 --- a/lxqt-base/lxqt-about/Manifest
19 +++ b/lxqt-base/lxqt-about/Manifest
20 @@ -1 +1,2 @@
21 DIST lxqt-about-0.10.0.tar.xz 30280 SHA256 d308f228d1cc72d2cc9acec608adc31cdf9182feded0e9ca8dd2691d227f28fa SHA512 dc764a431b610dcd3e1595dc40f3265eef8e0feb5d3e186098a2b8e23e8604f82f0a721822914c0a34169eea83af1a2d74988df69928ce7a0f07e405092cb467 WHIRLPOOL e3138231560e2e7687dd0f8c7edd2569a0c7eca3040b93b97d499527aa15b0227b65539f96f7d751c16977119f5c46bd7c686eb9dffd0e91d1a76f6b39417df0
22 +DIST lxqt-about-0.11.0.tar.xz 21856 SHA256 26bd91a1ca559353c2bcb82378918419b8e059a47956c2f89e533b3fac2881b6 SHA512 53d818e036275075f41edef7af4615e5dbdb651cade68a6f502cbea6f75d32d368111536a3987078d3f682187cd6c420d8af827cc8fafa48d247ef4af5e0febf WHIRLPOOL a057621c154cccbaf2cd8183efe2cd9dc66ca1a279b25d4870a5602eff7196689da0cfb4cfbce353b6b783ab5fca5d4ff29ad33f1b8990e5f9ea50e307c2f238
23
24 diff --git a/lxqt-base/lxqt-about/lxqt-about-0.11.0.ebuild b/lxqt-base/lxqt-about/lxqt-about-0.11.0.ebuild
25 new file mode 100644
26 index 00000000..c32253f
27 --- /dev/null
28 +++ b/lxqt-base/lxqt-about/lxqt-about-0.11.0.ebuild
29 @@ -0,0 +1,36 @@
30 +# Copyright 1999-2016 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +# $Id$
33 +
34 +EAPI=5
35 +inherit cmake-utils
36 +
37 +DESCRIPTION="LXQt about dialog"
38 +HOMEPAGE="http://lxqt.org/"
39 +
40 +if [[ ${PV} = *9999* ]]; then
41 + inherit git-r3
42 + EGIT_REPO_URI="git://git.lxde.org/git/lxde/${PN}.git"
43 +else
44 + SRC_URI="https://downloads.lxqt.org/lxqt/${PV}/${P}.tar.xz"
45 + KEYWORDS="~amd64 ~arm ~arm64 ~x86"
46 +fi
47 +
48 +LICENSE="LGPL-2.1+"
49 +SLOT="0"
50 +
51 +DEPEND="
52 + dev-qt/qtcore:5
53 + dev-qt/qtdbus:5
54 + dev-qt/qtgui:5
55 + dev-qt/qtwidgets:5
56 + dev-qt/qtx11extras:5
57 + dev-qt/qtxml:5
58 + ~lxqt-base/liblxqt-${PV}
59 +"
60 +RDEPEND="${DEPEND}"
61 +
62 +src_configure() {
63 + local mycmakeargs=( -DPULL_TRANSLATIONS=OFF )
64 + cmake-utils_src_configure
65 +}