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: Mon, 02 Jan 2023 10:54:42
Message-Id: 1672656874.6d5cec8200cbe876a851e2384f2dc6a7e37a7167.voyageur@gentoo
1 commit: 6d5cec8200cbe876a851e2384f2dc6a7e37a7167
2 Author: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jan 2 10:43:48 2023 +0000
4 Commit: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
5 CommitDate: Mon Jan 2 10:54:34 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d5cec82
7
8 www-apps/nextcloud: add 24.0.8, 25.0.2
9
10 Signed-off-by: Bernard Cafarelli <voyageur <AT> gentoo.org>
11
12 www-apps/nextcloud/Manifest | 2 ++
13 www-apps/nextcloud/nextcloud-24.0.8.ebuild | 43 ++++++++++++++++++++++++++++++
14 www-apps/nextcloud/nextcloud-25.0.2.ebuild | 43 ++++++++++++++++++++++++++++++
15 3 files changed, 88 insertions(+)
16
17 diff --git a/www-apps/nextcloud/Manifest b/www-apps/nextcloud/Manifest
18 index 13a90beac784..c97bb26c5298 100644
19 --- a/www-apps/nextcloud/Manifest
20 +++ b/www-apps/nextcloud/Manifest
21 @@ -1,2 +1,4 @@
22 DIST nextcloud-24.0.7.tar.bz2 124233139 BLAKE2B 991668bf897984da0f0034f954d0077779159acc6b27447603decc79bb79d6457f98cf8324e18f2ab3dda76cbbde63bc43d3ee2f1ff918d227c8256d8f3e8789 SHA512 77c1999b52ab87779908619ec8845887c9da32f90d9eb1e639d07c3899519235a18d973a35a8bfbfe9f896c7b7705cc91d571558700550857f741f98a85a52ef
23 +DIST nextcloud-24.0.8.tar.bz2 124547281 BLAKE2B 0c0be4180fcf49b91534ef50b984df7eddcd275209cf3ec831aec2d4a5d8dd1ae84ed4b12db5564625066e09c109b9b4f25cb87bf6d4e32b1c54c2614fc5d556 SHA512 a885a93ac9f0fff1249ef9cbd3c88fb11786a178fcd0c4a5886c781d8270302b259267be760c6df91aa3cf27d360e38e5602fd3a186a918e50ccd55561e8f801
24 DIST nextcloud-25.0.1.tar.bz2 146695370 BLAKE2B 01d9482301fa50e2b938cbe164310d0e3db3a791944e78ef2d7016ecd3e214907d53b589abc51c550263e636c114ee37dd027ebf3d164493c53775a10f102a61 SHA512 7fd401ffe01e5b1d568e4f66cdc5972d5e3c0b82f147a04330da9fe5ab1f2ddf152943e28f152fb635e8bca8d83a95a5a269a1f34fa189cef4a3c9dbe4e8c89b
25 +DIST nextcloud-25.0.2.tar.bz2 149894878 BLAKE2B 8980fa45dcfa1f9cc70434f0bdd15154a2ef42b80bb4e57b5cb2792afa9ad77867640bc6a6d266b88e52a12aae829d34bd55d5c46fd2ba74acde0bea7b4c028e SHA512 e65147825cce7c645f552c683426b96c802c513eabbf90122e713fb5a5d341f816b0928b2af72876fdcd245b49b72bfd60f0fafb793deace3a686e13eca918bb
26
27 diff --git a/www-apps/nextcloud/nextcloud-24.0.8.ebuild b/www-apps/nextcloud/nextcloud-24.0.8.ebuild
28 new file mode 100644
29 index 000000000000..e9db891d0021
30 --- /dev/null
31 +++ b/www-apps/nextcloud/nextcloud-24.0.8.ebuild
32 @@ -0,0 +1,43 @@
33 +# Copyright 1999-2023 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=8
37 +
38 +inherit webapp
39 +
40 +DESCRIPTION="Personal cloud that runs on your own server"
41 +HOMEPAGE="https://nextcloud.com/"
42 +SRC_URI="https://download.nextcloud.com/server/releases/${P}.tar.bz2"
43 +LICENSE="AGPL-3"
44 +
45 +KEYWORDS="~amd64 ~arm ~arm64 ~x86"
46 +IUSE="+curl +imagemagick mysql postgres +sqlite"
47 +REQUIRED_USE="|| ( mysql postgres sqlite )"
48 +
49 +DEPEND=""
50 +RDEPEND="<dev-lang/php-8.2[curl?,filter,gd,hash(+),intl,json(+),mysql?,pdo,posix,postgres?,session,simplexml,sqlite?,truetype,xmlreader,xmlwriter,zip]
51 + imagemagick? ( dev-php/pecl-imagick )
52 + virtual/httpd-php"
53 +
54 +S=${WORKDIR}/${PN}
55 +
56 +pkg_setup() {
57 + webapp_pkg_setup
58 +}
59 +
60 +src_install() {
61 + webapp_src_preinst
62 +
63 + insinto "${MY_HTDOCSDIR}"
64 + doins -r .
65 + dodir "${MY_HTDOCSDIR}"/data
66 +
67 + webapp_serverowned -R "${MY_HTDOCSDIR}"/apps
68 + webapp_serverowned -R "${MY_HTDOCSDIR}"/data
69 + webapp_serverowned -R "${MY_HTDOCSDIR}"/config
70 + webapp_configfile "${MY_HTDOCSDIR}"/.htaccess
71 +
72 + webapp_postinst_txt en "${FILESDIR}"/php-argon2-en.txt
73 +
74 + webapp_src_install
75 +}
76
77 diff --git a/www-apps/nextcloud/nextcloud-25.0.2.ebuild b/www-apps/nextcloud/nextcloud-25.0.2.ebuild
78 new file mode 100644
79 index 000000000000..e9db891d0021
80 --- /dev/null
81 +++ b/www-apps/nextcloud/nextcloud-25.0.2.ebuild
82 @@ -0,0 +1,43 @@
83 +# Copyright 1999-2023 Gentoo Authors
84 +# Distributed under the terms of the GNU General Public License v2
85 +
86 +EAPI=8
87 +
88 +inherit webapp
89 +
90 +DESCRIPTION="Personal cloud that runs on your own server"
91 +HOMEPAGE="https://nextcloud.com/"
92 +SRC_URI="https://download.nextcloud.com/server/releases/${P}.tar.bz2"
93 +LICENSE="AGPL-3"
94 +
95 +KEYWORDS="~amd64 ~arm ~arm64 ~x86"
96 +IUSE="+curl +imagemagick mysql postgres +sqlite"
97 +REQUIRED_USE="|| ( mysql postgres sqlite )"
98 +
99 +DEPEND=""
100 +RDEPEND="<dev-lang/php-8.2[curl?,filter,gd,hash(+),intl,json(+),mysql?,pdo,posix,postgres?,session,simplexml,sqlite?,truetype,xmlreader,xmlwriter,zip]
101 + imagemagick? ( dev-php/pecl-imagick )
102 + virtual/httpd-php"
103 +
104 +S=${WORKDIR}/${PN}
105 +
106 +pkg_setup() {
107 + webapp_pkg_setup
108 +}
109 +
110 +src_install() {
111 + webapp_src_preinst
112 +
113 + insinto "${MY_HTDOCSDIR}"
114 + doins -r .
115 + dodir "${MY_HTDOCSDIR}"/data
116 +
117 + webapp_serverowned -R "${MY_HTDOCSDIR}"/apps
118 + webapp_serverowned -R "${MY_HTDOCSDIR}"/data
119 + webapp_serverowned -R "${MY_HTDOCSDIR}"/config
120 + webapp_configfile "${MY_HTDOCSDIR}"/.htaccess
121 +
122 + webapp_postinst_txt en "${FILESDIR}"/php-argon2-en.txt
123 +
124 + webapp_src_install
125 +}