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: Fri, 04 Jun 2021 09:41:28
Message-Id: 1622799682.b26d2437ed42c933395e0b2bd2e36da57130fbde.voyageur@gentoo
1 commit: b26d2437ed42c933395e0b2bd2e36da57130fbde
2 Author: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jun 4 09:38:34 2021 +0000
4 Commit: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
5 CommitDate: Fri Jun 4 09:41:22 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b26d2437
7
8 net-misc/owncloud-client: drop old
9
10 Package-Manager: Portage-3.0.19, Repoman-3.0.3
11 Signed-off-by: Bernard Cafarelli <voyageur <AT> gentoo.org>
12
13 net-misc/owncloud-client/Manifest | 2 -
14 .../owncloud-client-2.7.4.2934.ebuild | 84 ----------------------
15 .../owncloud-client-2.7.5.3180.ebuild | 84 ----------------------
16 3 files changed, 170 deletions(-)
17
18 diff --git a/net-misc/owncloud-client/Manifest b/net-misc/owncloud-client/Manifest
19 index f6abf34b309..f6afcc355b2 100644
20 --- a/net-misc/owncloud-client/Manifest
21 +++ b/net-misc/owncloud-client/Manifest
22 @@ -1,3 +1 @@
23 -DIST ownCloud-2.7.4.2934.tar.xz 14151708 BLAKE2B ad6f3d827a2fdcead6fdc2514696e8fbdb75b2d365c9a09602b95b24c669695e3693167f5da305e27e6fb2266f106b50c578def1d1518730926a10f640defbd9 SHA512 7e04d987751d0b8e29fbe8ba8ae58f38fabd7f5007f7508d001532e595b00f58cce487b1d180928154286ffd6b01db1e6ca0407f7d675e8b101ec4ae8414f2a6
24 -DIST ownCloud-2.7.5.3180.tar.xz 14154036 BLAKE2B ebee57568b917c1c7dec8f41f172caf53d0bfe4eae5e24ec5c9adbf656bf667769b0ed341a13a899ff6a04cd779d92b145736dce5a4e72055d306b2f08e0a902 SHA512 9e788341c45753eb2d2c62d252cf453259474689fd7d498147e0f4548a9038bd44bdca1539f9617d383853f8f9ca2f24c575667fb96e2a1a4ceec30195d257c2
25 DIST ownCloud-2.7.6.3261.tar.xz 14237692 BLAKE2B 914b069b10fa2f169677768e1578c5b8569836eb574889c72c0ea1ca3e16e6b7c65bcdd1f4a5ce4259eab6ec56110e3b45799d010921e47c7f64ccfd0ed545bf SHA512 1f647dd0b33472e31719651fa22b5864867d98fa1e2f11f9eadb6ce15382f5f97ac49d726af079716b6fac573367485a6f11a5b2e5e5c95d4d063f6caab51dcd
26
27 diff --git a/net-misc/owncloud-client/owncloud-client-2.7.4.2934.ebuild b/net-misc/owncloud-client/owncloud-client-2.7.4.2934.ebuild
28 deleted file mode 100644
29 index 4afe35f947d..00000000000
30 --- a/net-misc/owncloud-client/owncloud-client-2.7.4.2934.ebuild
31 +++ /dev/null
32 @@ -1,84 +0,0 @@
33 -# Copyright 1999-2021 Gentoo Authors
34 -# Distributed under the terms of the GNU General Public License v2
35 -
36 -EAPI=7
37 -
38 -inherit cmake xdg
39 -
40 -MY_PN="ownCloud"
41 -DESCRIPTION="Synchronize files from ownCloud Server with your computer"
42 -HOMEPAGE="https://owncloud.org/"
43 -SRC_URI="https://download.owncloud.com/desktop/${MY_PN}/stable/${PV}/source/${MY_PN}-${PV}.tar.xz"
44 -
45 -LICENSE="CC-BY-3.0 GPL-2"
46 -SLOT="0"
47 -KEYWORDS="~amd64 ~x86"
48 -IUSE="doc dolphin gnome-keyring nautilus test"
49 -
50 -COMMON_DEPEND=">=dev-db/sqlite-3.4:3
51 - dev-libs/qtkeychain[gnome-keyring?,qt5(+)]
52 - dev-qt/qtconcurrent:5
53 - dev-qt/qtcore:5
54 - dev-qt/qtdbus:5
55 - dev-qt/qtgui:5
56 - dev-qt/qtnetwork:5[ssl]
57 - dev-qt/qtsql:5
58 - dev-qt/qtwidgets:5
59 - dev-qt/qtxml:5
60 - sys-fs/inotify-tools
61 - dolphin? (
62 - kde-frameworks/kcoreaddons:5
63 - kde-frameworks/kio:5
64 - )
65 - nautilus? ( dev-python/nautilus-python )"
66 -
67 -RDEPEND="${COMMON_DEPEND}"
68 -DEPEND="${COMMON_DEPEND}
69 - dev-qt/linguist-tools:5
70 - kde-frameworks/extra-cmake-modules
71 - doc? (
72 - dev-python/sphinx
73 - dev-tex/latexmk
74 - dev-texlive/texlive-latexextra
75 - virtual/latex-base
76 - )
77 - test? (
78 - dev-util/cmocka
79 - dev-qt/qttest:5
80 - )"
81 -
82 -RESTRICT="!test? ( test )"
83 -
84 -S=${WORKDIR}/${MY_PN}-${PV}
85 -
86 -src_prepare() {
87 - # Keep tests in ${T}
88 - sed -i -e "s#\"/tmp#\"${T}#g" test/test*.cpp || die
89 -
90 - if ! use nautilus; then
91 - pushd shell_integration > /dev/null || die
92 - cmake_comment_add_subdirectory nautilus
93 - popd > /dev/null || die
94 - fi
95 - cmake_src_prepare
96 -}
97 -
98 -src_configure() {
99 - local mycmakeargs=(
100 - -DSYSCONF_INSTALL_DIR="${EPREFIX}"/etc
101 - -DCMAKE_INSTALL_DOCDIR=/usr/share/doc/${PF}
102 - -DCMAKE_DISABLE_FIND_PACKAGE_Sphinx=$(usex !doc)
103 - -DBUILD_SHELL_INTEGRATION_DOLPHIN=$(usex dolphin)
104 - -DBUILD_TESTING=$(usex test)
105 - )
106 -
107 - cmake_src_configure
108 -}
109 -
110 -pkg_postinst() {
111 - if ! use doc ; then
112 - elog "Documentation and man pages not installed"
113 - elog "Enable doc USE-flag to generate them"
114 - fi
115 - xdg_pkg_postinst
116 -}
117
118 diff --git a/net-misc/owncloud-client/owncloud-client-2.7.5.3180.ebuild b/net-misc/owncloud-client/owncloud-client-2.7.5.3180.ebuild
119 deleted file mode 100644
120 index 4afe35f947d..00000000000
121 --- a/net-misc/owncloud-client/owncloud-client-2.7.5.3180.ebuild
122 +++ /dev/null
123 @@ -1,84 +0,0 @@
124 -# Copyright 1999-2021 Gentoo Authors
125 -# Distributed under the terms of the GNU General Public License v2
126 -
127 -EAPI=7
128 -
129 -inherit cmake xdg
130 -
131 -MY_PN="ownCloud"
132 -DESCRIPTION="Synchronize files from ownCloud Server with your computer"
133 -HOMEPAGE="https://owncloud.org/"
134 -SRC_URI="https://download.owncloud.com/desktop/${MY_PN}/stable/${PV}/source/${MY_PN}-${PV}.tar.xz"
135 -
136 -LICENSE="CC-BY-3.0 GPL-2"
137 -SLOT="0"
138 -KEYWORDS="~amd64 ~x86"
139 -IUSE="doc dolphin gnome-keyring nautilus test"
140 -
141 -COMMON_DEPEND=">=dev-db/sqlite-3.4:3
142 - dev-libs/qtkeychain[gnome-keyring?,qt5(+)]
143 - dev-qt/qtconcurrent:5
144 - dev-qt/qtcore:5
145 - dev-qt/qtdbus:5
146 - dev-qt/qtgui:5
147 - dev-qt/qtnetwork:5[ssl]
148 - dev-qt/qtsql:5
149 - dev-qt/qtwidgets:5
150 - dev-qt/qtxml:5
151 - sys-fs/inotify-tools
152 - dolphin? (
153 - kde-frameworks/kcoreaddons:5
154 - kde-frameworks/kio:5
155 - )
156 - nautilus? ( dev-python/nautilus-python )"
157 -
158 -RDEPEND="${COMMON_DEPEND}"
159 -DEPEND="${COMMON_DEPEND}
160 - dev-qt/linguist-tools:5
161 - kde-frameworks/extra-cmake-modules
162 - doc? (
163 - dev-python/sphinx
164 - dev-tex/latexmk
165 - dev-texlive/texlive-latexextra
166 - virtual/latex-base
167 - )
168 - test? (
169 - dev-util/cmocka
170 - dev-qt/qttest:5
171 - )"
172 -
173 -RESTRICT="!test? ( test )"
174 -
175 -S=${WORKDIR}/${MY_PN}-${PV}
176 -
177 -src_prepare() {
178 - # Keep tests in ${T}
179 - sed -i -e "s#\"/tmp#\"${T}#g" test/test*.cpp || die
180 -
181 - if ! use nautilus; then
182 - pushd shell_integration > /dev/null || die
183 - cmake_comment_add_subdirectory nautilus
184 - popd > /dev/null || die
185 - fi
186 - cmake_src_prepare
187 -}
188 -
189 -src_configure() {
190 - local mycmakeargs=(
191 - -DSYSCONF_INSTALL_DIR="${EPREFIX}"/etc
192 - -DCMAKE_INSTALL_DOCDIR=/usr/share/doc/${PF}
193 - -DCMAKE_DISABLE_FIND_PACKAGE_Sphinx=$(usex !doc)
194 - -DBUILD_SHELL_INTEGRATION_DOLPHIN=$(usex dolphin)
195 - -DBUILD_TESTING=$(usex test)
196 - )
197 -
198 - cmake_src_configure
199 -}
200 -
201 -pkg_postinst() {
202 - if ! use doc ; then
203 - elog "Documentation and man pages not installed"
204 - elog "Enable doc USE-flag to generate them"
205 - fi
206 - xdg_pkg_postinst
207 -}