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/nextcloud/
Date: Sat, 08 Oct 2016 09:23:24
Message-Id: 1475918589.90bfdabf6aa0bdd71fa98bbb8d706aa3c837a69d.voyageur@gentoo
1 commit: 90bfdabf6aa0bdd71fa98bbb8d706aa3c837a69d
2 Author: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 8 09:23:09 2016 +0000
4 Commit: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 8 09:23:09 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=90bfdabf
7
8 www-apps/nextcloud: also update 9.x branch
9
10 Package-Manager: portage-2.3.1
11
12 www-apps/nextcloud/Manifest | 1 +
13 www-apps/nextcloud/nextcloud-9.0.54.ebuild | 41 ++++++++++++++++++++++++++++++
14 2 files changed, 42 insertions(+)
15
16 diff --git a/www-apps/nextcloud/Manifest b/www-apps/nextcloud/Manifest
17 index 5f3b457..09b0f08 100644
18 --- a/www-apps/nextcloud/Manifest
19 +++ b/www-apps/nextcloud/Manifest
20 @@ -1,3 +1,4 @@
21 DIST nextcloud-10.0.0.tar.bz2 35368025 SHA256 1aaa177c0a00095fb97a3ca7eefb0b4236b652d58341e1cf3dbea9dc0787761f SHA512 3c2084a633c323122ccc754c11feaabda33e5fcd3580f911ecc72f4e27fb1765b334f943fb5f7c216bbcb24ae2f63cf028162061e687acbe468b0f691a7fef13 WHIRLPOOL f58849b8441c809f9c2c77daf30000404f59cea0e221d7f25eeac08fd40a6ecb0df249c146f87e6d2a2481850bd89ec210ce858cd4f7c415a8a86cfaca8ab851
22 DIST nextcloud-10.0.1.tar.bz2 35059973 SHA256 39412a28f02fd7ca8c9267b4ccf02ac28c1eb27995d77c06ceb2699375978b25 SHA512 d86f2f924f4ced1a94cb42af39dbbc94e95893da23dbe67e41a92385d9202d36513f166bc295ff8c52c7c8fefab76332810c137bcefeb3f9fc1102a4063dc4d5 WHIRLPOOL 33baa77e66fef94b5e3905b9f638b65589e33bc7d3fdc62c6716381f163f85d49ad721c029bff6b25aeaa82af5311babce1ea086f4a76c3b69687a111f2168f4
23 DIST nextcloud-9.0.53.tar.bz2 28549436 SHA256 1ceade1f7b3c8692b792ebfd2c5c7259ff6a0a26d3bd46a762ee6f5cdf052904 SHA512 9691751218e68cd9b1d5b9ed5da632ceb5d0eda175141060785da4b076e6a47c0b782569f58dd8021f2a87df1a687e1a990d4f863d03f19106f85c2e5a6611cc WHIRLPOOL d74737e452ae26043a75a9ee70569a02d06dbf8b0a010eab870054cf6503649450befed8207859ef7f92d46cbb9b6fe8d44d8904ee36fe814d3235e909d4f274
24 +DIST nextcloud-9.0.54.tar.bz2 33790902 SHA256 8a4aa5c254b137828c16752863ccb29868643d53ba762440ad4047893d05b9ef SHA512 32f079f814d209f36445c1cc5120b461968ff5d9634cee57d35d114154b41afca083cfec120fcc32d5437c180dbc1a8cc667ca5673099a043ee7fcaf1d8fd99d WHIRLPOOL dd09057c2ebdd3122e3e54b92773e017fb6c5b5102627e181703d85a677f4534950ac5701888290015e518f694dc15937f61cafc8677702e44d272b63884ec32
25
26 diff --git a/www-apps/nextcloud/nextcloud-9.0.54.ebuild b/www-apps/nextcloud/nextcloud-9.0.54.ebuild
27 new file mode 100644
28 index 00000000..958f161
29 --- /dev/null
30 +++ b/www-apps/nextcloud/nextcloud-9.0.54.ebuild
31 @@ -0,0 +1,41 @@
32 +# Copyright 1999-2016 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +# $Id$
35 +
36 +EAPI=6
37 +
38 +inherit eutils webapp
39 +
40 +DESCRIPTION="Personal cloud that runs on your own server"
41 +HOMEPAGE="http://nextcloud.com"
42 +SRC_URI="http://download.nextcloud.com/server/releases/${P}.tar.bz2"
43 +LICENSE="AGPL-3"
44 +
45 +KEYWORDS="~amd64 ~arm ~x86"
46 +IUSE="+curl mysql postgres +sqlite"
47 +REQUIRED_USE="|| ( mysql postgres sqlite )"
48 +
49 +DEPEND=""
50 +RDEPEND="dev-lang/php[curl?,filter,gd,hash,json,mysql?,pdo,posix,postgres?,session,simplexml,sqlite?,xmlreader,xmlwriter,zip]
51 + virtual/httpd-php"
52 +
53 +S=${WORKDIR}/${PN}
54 +
55 +pkg_setup() {
56 + webapp_pkg_setup
57 +}
58 +
59 +src_install() {
60 + webapp_src_preinst
61 +
62 + insinto "${MY_HTDOCSDIR}"
63 + doins -r .
64 + dodir "${MY_HTDOCSDIR}"/data
65 +
66 + webapp_serverowned -R "${MY_HTDOCSDIR}"/apps
67 + webapp_serverowned -R "${MY_HTDOCSDIR}"/data
68 + webapp_serverowned -R "${MY_HTDOCSDIR}"/config
69 + webapp_configfile "${MY_HTDOCSDIR}"/.htaccess
70 +
71 + webapp_src_install
72 +}