Gentoo Archives: gentoo-commits

From: Bernard Cafarelli <voyageur@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/owncloud-client/
Date: Mon, 27 Sep 2021 22:39:21
Message-Id: 1632782354.8410331c250fb8e67585a09ce5340fa9a8c1a4ec.voyageur@gentoo
1 commit: 8410331c250fb8e67585a09ce5340fa9a8c1a4ec
2 Author: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
3 AuthorDate: Mon Sep 27 22:27:34 2021 +0000
4 Commit: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
5 CommitDate: Mon Sep 27 22:39:14 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8410331c
7
8 net-misc/owncloud-client: 2.9.0.5150 bump
9
10 Also fixes compilation with newer Qt
11 Doc has been removed completely from tarball
12
13 Closes: https://bugs.gentoo.org/810661
14 Package-Manager: Portage-3.0.24, Repoman-3.0.3
15 Signed-off-by: Bernard Cafarelli <voyageur <AT> gentoo.org>
16
17 net-misc/owncloud-client/Manifest | 1 +
18 .../owncloud-client-2.9.0.5150.ebuild | 69 ++++++++++++++++++++++
19 2 files changed, 70 insertions(+)
20
21 diff --git a/net-misc/owncloud-client/Manifest b/net-misc/owncloud-client/Manifest
22 index c2b260fead5..75c02de2612 100644
23 --- a/net-misc/owncloud-client/Manifest
24 +++ b/net-misc/owncloud-client/Manifest
25 @@ -1,2 +1,3 @@
26 DIST ownCloud-2.7.6.3261.tar.xz 14237692 BLAKE2B 914b069b10fa2f169677768e1578c5b8569836eb574889c72c0ea1ca3e16e6b7c65bcdd1f4a5ce4259eab6ec56110e3b45799d010921e47c7f64ccfd0ed545bf SHA512 1f647dd0b33472e31719651fa22b5864867d98fa1e2f11f9eadb6ce15382f5f97ac49d726af079716b6fac573367485a6f11a5b2e5e5c95d4d063f6caab51dcd
27 DIST ownCloud-2.8.2.4246.tar.xz 15044652 BLAKE2B ee1ee412667266273a9a9722940559562c6c43213b013fe7c21328e04ac967afb16f460e6fa711f37d1d4ea7d0fc15fc398d835cf6a939f4c8dfd54cd4846fed SHA512 0ab2ef72191cc2d5c2621c97c09cb1d25472a30f511235a190465e246a8312f13a255011abb9690c481887f2f15094414c87ce594252eb8debcb39b9cbc8a178
28 +DIST ownCloud-2.9.0.5150.tar.xz 5775740 BLAKE2B c43044dd383d66dd212bcd3efd818fad289ac51b082eaa7b47db03778cdfc87725efbdffc567e416bf5444d7e58f795606f093a782ca783cefc2d4994df3fb2a SHA512 c183b2d4340dc8880d2bf31aedaffb96da518fdb60f1e8c857ee2f8d02c36cb69552475fdbf536f7ecebd9af2a7732f52a9e02f20450452c78d346910be3cf57
29
30 diff --git a/net-misc/owncloud-client/owncloud-client-2.9.0.5150.ebuild b/net-misc/owncloud-client/owncloud-client-2.9.0.5150.ebuild
31 new file mode 100644
32 index 00000000000..ef8aeb7b1ca
33 --- /dev/null
34 +++ b/net-misc/owncloud-client/owncloud-client-2.9.0.5150.ebuild
35 @@ -0,0 +1,69 @@
36 +# Copyright 1999-2021 Gentoo Authors
37 +# Distributed under the terms of the GNU General Public License v2
38 +
39 +EAPI=7
40 +
41 +inherit cmake xdg
42 +
43 +MY_PN="ownCloud"
44 +DESCRIPTION="Synchronize files from ownCloud Server with your computer"
45 +HOMEPAGE="https://owncloud.org/"
46 +SRC_URI="https://download.owncloud.com/desktop/${MY_PN}/stable/${PV}/source/${MY_PN}-${PV}.tar.xz"
47 +
48 +LICENSE="CC-BY-3.0 GPL-2"
49 +SLOT="0"
50 +KEYWORDS="~amd64 ~arm64 ~x86"
51 +IUSE="dolphin gnome-keyring nautilus test"
52 +
53 +COMMON_DEPEND=">=dev-db/sqlite-3.4:3
54 + dev-libs/qtkeychain[gnome-keyring?,qt5(+)]
55 + dev-qt/qtconcurrent:5
56 + dev-qt/qtcore:5
57 + dev-qt/qtdbus:5
58 + dev-qt/qtgui:5
59 + dev-qt/qtnetwork:5[ssl]
60 + dev-qt/qtsql:5
61 + dev-qt/qtwidgets:5
62 + dev-qt/qtxml:5
63 + sys-fs/inotify-tools
64 + dolphin? (
65 + kde-frameworks/kcoreaddons:5
66 + kde-frameworks/kio:5
67 + )
68 + nautilus? ( dev-python/nautilus-python )"
69 +
70 +RDEPEND="${COMMON_DEPEND}"
71 +DEPEND="${COMMON_DEPEND}
72 + dev-qt/linguist-tools:5
73 + kde-frameworks/extra-cmake-modules
74 + test? (
75 + dev-util/cmocka
76 + dev-qt/qttest:5
77 + )"
78 +
79 +RESTRICT="!test? ( test )"
80 +
81 +S=${WORKDIR}/${MY_PN}-${PV}
82 +
83 +src_prepare() {
84 + # Keep tests in ${T}
85 + sed -i -e "s#\"/tmp#\"${T}#g" test/test*.cpp || die
86 +
87 + if ! use nautilus; then
88 + pushd shell_integration > /dev/null || die
89 + cmake_comment_add_subdirectory nautilus
90 + popd > /dev/null || die
91 + fi
92 + cmake_src_prepare
93 +}
94 +
95 +src_configure() {
96 + local mycmakeargs=(
97 + -DSYSCONF_INSTALL_DIR="${EPREFIX}"/etc
98 + -DCMAKE_INSTALL_DOCDIR=/usr/share/doc/${PF}
99 + -DBUILD_SHELL_INTEGRATION_DOLPHIN=$(usex dolphin)
100 + -DBUILD_TESTING=$(usex test)
101 + )
102 +
103 + cmake_src_configure
104 +}