Gentoo Archives: gentoo-commits

From: Bernard Cafarelli <voyageur@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: www-apps/owncloud/
Date: Mon, 30 Aug 2021 11:31:01
Message-Id: 1630322910.9b6a89333ea957f0f811de3883a6850040efbde2.voyageur@gentoo
1 commit: 9b6a89333ea957f0f811de3883a6850040efbde2
2 Author: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
3 AuthorDate: Mon Aug 30 11:28:30 2021 +0000
4 Commit: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
5 CommitDate: Mon Aug 30 11:28:30 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b6a8933
7
8 www-apps/owncloud: 10.8.0 bump
9
10 Closes: https://bugs.gentoo.org/810697
11 Package-Manager: Portage-3.0.22, Repoman-3.0.3
12 Signed-off-by: Bernard Cafarelli <voyageur <AT> gentoo.org>
13
14 www-apps/owncloud/Manifest | 1 +
15 www-apps/owncloud/owncloud-10.8.0.ebuild | 47 ++++++++++++++++++++++++++++++++
16 2 files changed, 48 insertions(+)
17
18 diff --git a/www-apps/owncloud/Manifest b/www-apps/owncloud/Manifest
19 index fae57a8a405..caff0833560 100644
20 --- a/www-apps/owncloud/Manifest
21 +++ b/www-apps/owncloud/Manifest
22 @@ -1 +1,2 @@
23 DIST owncloud-10.7.0.tar.bz2 24129028 BLAKE2B 47ce3584f8123cc0a315c7d88847df5844c951e354fcecd7a876ca01f0fa24823a86bdd950dd885f3bbb46f60d8a39271e31d43ac6dac8f3df506d6cdc531231 SHA512 ebb636b8ffd06d4ceb1dd0d50c15ab393b8c7bf2f0e23c61ba957add6ac4d4ba4cdefb9cda2c703f337c82a295e2c40a467a602227728e9506f9a150c9f2fd3c
24 +DIST owncloud-10.8.0.tar.bz2 24917781 BLAKE2B 909a8b51034fe07f83adcb3aff9c8eab790da40b115ecc715c4307ecb0364d5f65d75178d76ff27969b28a46f9585915412db235120dbb8600809057eea3c7f1 SHA512 47a23e5c2946e5d4c1d8c8e6d1b754e2a2bce436af532dbc7aa36c8031185fcc28b500fefa064e5290f2af68cbea823fa893acdb90307c9eddf53e126d282c96
25
26 diff --git a/www-apps/owncloud/owncloud-10.8.0.ebuild b/www-apps/owncloud/owncloud-10.8.0.ebuild
27 new file mode 100644
28 index 00000000000..e7ba0f1d7ab
29 --- /dev/null
30 +++ b/www-apps/owncloud/owncloud-10.8.0.ebuild
31 @@ -0,0 +1,47 @@
32 +# Copyright 1999-2021 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +inherit webapp
38 +
39 +DESCRIPTION="Web-based storage application where all your data is under your own control"
40 +HOMEPAGE="https://owncloud.org"
41 +SRC_URI="https://download.owncloud.org/community/${P}.tar.bz2"
42 +LICENSE="AGPL-3"
43 +
44 +KEYWORDS="~amd64 ~arm ~x86"
45 +IUSE="+curl mysql postgres +sqlite"
46 +REQUIRED_USE="|| ( mysql postgres sqlite )"
47 +
48 +DEPEND=""
49 +RDEPEND=">=dev-lang/php-7.0[curl?,filter,gd,hash(+),intl,json(+),mysql?,pdo,posix,postgres?,session,simplexml,sqlite?,xmlreader,xmlwriter,zip]
50 + virtual/httpd-php"
51 +
52 +S=${WORKDIR}/${PN}
53 +
54 +pkg_setup() {
55 + webapp_pkg_setup
56 +}
57 +
58 +src_install() {
59 + webapp_src_preinst
60 +
61 + insinto "${MY_HTDOCSDIR}"
62 + doins -r .
63 + dodir "${MY_HTDOCSDIR}"/data
64 +
65 + webapp_serverowned -R "${MY_HTDOCSDIR}"/apps
66 + webapp_serverowned -R "${MY_HTDOCSDIR}"/data
67 + webapp_serverowned -R "${MY_HTDOCSDIR}"/config
68 + webapp_configfile "${MY_HTDOCSDIR}"/.htaccess
69 +
70 + webapp_src_install
71 +}
72 +
73 +pkg_postinst() {
74 + elog "Additional applications (calendar, ...) are no longer provided by default."
75 + elog "You can install them after login via the applications management page"
76 + elog "(check the recommended tab). No application data is lost."
77 + webapp_pkg_postinst
78 +}