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: Fri, 29 Oct 2021 07:14:00
Message-Id: 1635491618.267ccf7092a3957f80a8f5004a1ea140124e5c94.voyageur@gentoo
1 commit: 267ccf7092a3957f80a8f5004a1ea140124e5c94
2 Author: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
3 AuthorDate: Fri Oct 29 07:13:38 2021 +0000
4 Commit: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
5 CommitDate: Fri Oct 29 07:13:38 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=267ccf70
7
8 www-apps/nextcloud: drop security vulnerable version
9
10 Bug: https://bugs.gentoo.org/820368
11 Package-Manager: Portage-3.0.28, Repoman-3.0.3
12 Signed-off-by: Bernard Cafarelli <voyageur <AT> gentoo.org>
13
14 www-apps/nextcloud/Manifest | 1 -
15 www-apps/nextcloud/nextcloud-21.0.4.ebuild | 43 ------------------------------
16 2 files changed, 44 deletions(-)
17
18 diff --git a/www-apps/nextcloud/Manifest b/www-apps/nextcloud/Manifest
19 index d9e7b64e3f9..0e28f4a8362 100644
20 --- a/www-apps/nextcloud/Manifest
21 +++ b/www-apps/nextcloud/Manifest
22 @@ -1,4 +1,3 @@
23 DIST nextcloud-20.0.13.tar.bz2 110837657 BLAKE2B b29a0b1db7dba682fee13a38e95502b7235c926a323a34f6c8e38d19876f0c3484d922a9602c0211320d8d82b0da2063612812846809c14c38853bcc6bf450f3 SHA512 a31182e7efcf151bb46f71147025aff6a00f8c7dbd545338e8005c40c2b82b21a75ea73a2119db3029e7dd85b9b018e417525b3ab59a3353dd73eafcf87122d0
24 -DIST nextcloud-21.0.4.tar.bz2 140200496 BLAKE2B 9dd54a10dda30fdd1107266c8acc7f0161596107c04546336f29ac523275c93be8fd1877558c1b7e469769f5e30f3eb2179896c8bb26db4c20bf6a44f8bc3df7 SHA512 7fef1aa4bc4b9c158a3c50bdff87054b97cfeed8d066076676f00189380c115d318a657492dc2a0f138b85f15fd7dc807c0137775b76f37dbc7b052514614390
25 DIST nextcloud-21.0.5.tar.bz2 127542660 BLAKE2B b6c2bc642705ba5572a74a1f473e09a7be0ad6c4937b1a15d3b29bdad652872c373b9b6ab126c1ea90f32dced3fbb34505c82a7fc9d6913e407c6e43b97fe55b SHA512 ef8796cb17e6143dc1c9ccdea56105d0d7e2138eddae228724074b6360f99d0416a3682be047955b9a84dd6a961cdbb15ccff67ee6656a896699bbfa640d715d
26 DIST nextcloud-22.2.0.tar.bz2 131241307 BLAKE2B b23526c0a12817b16fa7733b34143bdd4a581b829a7934e6d6865b028ccb46cb3e08b6a077325feea1234d966b36a3017ee6d9443851d30481955654840c29ca SHA512 ecf308fdd46f43e4507d90eae90f4fece4410ac546929cda8ce3f0c48db7fc644a37558c4d1aeef8943cda4c0474d6afa5e151af5c5b9c6f17b4ae05f5e0fc26
27
28 diff --git a/www-apps/nextcloud/nextcloud-21.0.4.ebuild b/www-apps/nextcloud/nextcloud-21.0.4.ebuild
29 deleted file mode 100644
30 index facb2613636..00000000000
31 --- a/www-apps/nextcloud/nextcloud-21.0.4.ebuild
32 +++ /dev/null
33 @@ -1,43 +0,0 @@
34 -# Copyright 1999-2021 Gentoo Authors
35 -# Distributed under the terms of the GNU General Public License v2
36 -
37 -EAPI=7
38 -
39 -inherit webapp
40 -
41 -DESCRIPTION="Personal cloud that runs on your own server"
42 -HOMEPAGE="https://nextcloud.com/"
43 -SRC_URI="https://download.nextcloud.com/server/releases/${P}.tar.bz2"
44 -LICENSE="AGPL-3"
45 -
46 -KEYWORDS="amd64 ~arm ~arm64 x86"
47 -IUSE="+curl +imagemagick mysql postgres +sqlite"
48 -REQUIRED_USE="|| ( mysql postgres sqlite )"
49 -
50 -DEPEND=""
51 -RDEPEND="dev-lang/php[curl?,filter,gd,hash(+),intl,json(+),mysql?,pdo,posix,postgres?,session,simplexml,sqlite?,truetype,xmlreader,xmlwriter,zip]
52 - imagemagick? ( dev-php/pecl-imagick )
53 - virtual/httpd-php"
54 -
55 -S=${WORKDIR}/${PN}
56 -
57 -pkg_setup() {
58 - webapp_pkg_setup
59 -}
60 -
61 -src_install() {
62 - webapp_src_preinst
63 -
64 - insinto "${MY_HTDOCSDIR}"
65 - doins -r .
66 - dodir "${MY_HTDOCSDIR}"/data
67 -
68 - webapp_serverowned -R "${MY_HTDOCSDIR}"/apps
69 - webapp_serverowned -R "${MY_HTDOCSDIR}"/data
70 - webapp_serverowned -R "${MY_HTDOCSDIR}"/config
71 - webapp_configfile "${MY_HTDOCSDIR}"/.htaccess
72 -
73 - webapp_postinst_txt en "${FILESDIR}"/php-argon2-en.txt
74 -
75 - webapp_src_install
76 -}