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-notificationd/
Date: Fri, 28 Oct 2016 19:11:35
Message-Id: 1477681874.33b7cac97882173f80b5d4238545d744bec14b22.mrueg@gentoo
1 commit: 33b7cac97882173f80b5d4238545d744bec14b22
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Fri Oct 28 19:11:14 2016 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Fri Oct 28 19:11:14 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=33b7cac9
7
8 lxqt-base/lxqt-notificationd: Version bump to 0.11.0
9
10 Package-Manager: portage-2.3.2
11
12 lxqt-base/lxqt-notificationd/Manifest | 1 +
13 .../lxqt-notificationd-0.11.0.ebuild | 39 ++++++++++++++++++++++
14 2 files changed, 40 insertions(+)
15
16 diff --git a/lxqt-base/lxqt-notificationd/Manifest b/lxqt-base/lxqt-notificationd/Manifest
17 index ef1cff3..e9abfa2 100644
18 --- a/lxqt-base/lxqt-notificationd/Manifest
19 +++ b/lxqt-base/lxqt-notificationd/Manifest
20 @@ -1 +1,2 @@
21 DIST lxqt-notificationd-0.10.0.tar.xz 30896 SHA256 5c0859157ff6a20d613ea4aca24e786faf79ab6d69afec1e0b3671e3bbda53d5 SHA512 3a3ebcc104ac6de3c11ceac8a0c6b8f942e824b1301413fa20f93be68d53e02747e8c478fc744fa1bd3f04d2f54cd042c4b538cd537626d8b69088274a323519 WHIRLPOOL 56e93e04aa5ec5f81b6d6f43fdcb2ccebb429505372f51e18d28c19432133eb2a3f701ae7bda121c9474bfe7c9063c643fd470e69e2e88b9c1904ce542fc1a06
22 +DIST lxqt-notificationd-0.11.0.tar.xz 30592 SHA256 2e57b4f0c68694a8faf4999039b039f13291c720017b14c0bbdd8e0b49a0fa82 SHA512 f6dd3463ac993d7c7743addd6924dc8f15717f658c576c78ad01e4db361d1f1c98d02f6a2bec0069c191ad923b1ff63d49faf6ff7d564f67030233d6979adec5 WHIRLPOOL ee73ff0223d1009b0c78301857997deecee9b8a5f563a5d6bc7f0f29220d502e076abe9156a350ce59e568ea50188081a947b6e8baf3365e6257a7287c8b8e13
23
24 diff --git a/lxqt-base/lxqt-notificationd/lxqt-notificationd-0.11.0.ebuild b/lxqt-base/lxqt-notificationd/lxqt-notificationd-0.11.0.ebuild
25 new file mode 100644
26 index 00000000..078fdf2
27 --- /dev/null
28 +++ b/lxqt-base/lxqt-notificationd/lxqt-notificationd-0.11.0.ebuild
29 @@ -0,0 +1,39 @@
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 notification daemon and library"
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="GPL-2 LGPL-2.1+"
49 +SLOT="0"
50 +
51 +RDEPEND="
52 + >=dev-libs/libqtxdg-1.0.0
53 + dev-qt/qtcore:5
54 + dev-qt/qtdbus:5
55 + dev-qt/qtgui:5
56 + dev-qt/qtwidgets:5
57 + dev-qt/qtx11extras:5
58 + dev-qt/qtxml:5
59 + kde-frameworks/kwindowsystem:5
60 + ~lxqt-base/liblxqt-${PV}
61 + =lxqt-base/lxqt-common-0.11*"
62 +DEPEND="${RDEPEND}
63 + dev-qt/linguist-tools:5"
64 +
65 +src_configure() {
66 + local mycmakeargs=( -DPULL_TRANSLATIONS=OFF )
67 + cmake-utils_src_configure
68 +}