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.fdfc7e1ada76927d33dc658967738f505d91322b.voyageur@gentoo
1 commit: fdfc7e1ada76927d33dc658967738f505d91322b
2 Author: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jan 2 10:42:45 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=fdfc7e1a
7
8 www-apps/nextcloud: drop 23.0.11
9
10 Signed-off-by: Bernard Cafarelli <voyageur <AT> gentoo.org>
11
12 www-apps/nextcloud/Manifest | 1 -
13 www-apps/nextcloud/nextcloud-23.0.11.ebuild | 43 -----------------------------
14 2 files changed, 44 deletions(-)
15
16 diff --git a/www-apps/nextcloud/Manifest b/www-apps/nextcloud/Manifest
17 index 041c0f3c99ae..13a90beac784 100644
18 --- a/www-apps/nextcloud/Manifest
19 +++ b/www-apps/nextcloud/Manifest
20 @@ -1,3 +1,2 @@
21 -DIST nextcloud-23.0.11.tar.bz2 141705816 BLAKE2B fa1232ab9263e6964ceb1cd45941187db1af331cb1e4f0f149e5638f6813a7b19b838f64eec234dc2e8c7182b4aeb2d8abb61051d0ddb314ec04198f80c44a3d SHA512 094abe8eabe6746cea616db95739513c3832f8e823931abfd7dc83b8e8ecf49c4444fe478727e79b17bca5b16990cd0c95211476180e0382f45e07e5b51b6f49
22 DIST nextcloud-24.0.7.tar.bz2 124233139 BLAKE2B 991668bf897984da0f0034f954d0077779159acc6b27447603decc79bb79d6457f98cf8324e18f2ab3dda76cbbde63bc43d3ee2f1ff918d227c8256d8f3e8789 SHA512 77c1999b52ab87779908619ec8845887c9da32f90d9eb1e639d07c3899519235a18d973a35a8bfbfe9f896c7b7705cc91d571558700550857f741f98a85a52ef
23 DIST nextcloud-25.0.1.tar.bz2 146695370 BLAKE2B 01d9482301fa50e2b938cbe164310d0e3db3a791944e78ef2d7016ecd3e214907d53b589abc51c550263e636c114ee37dd027ebf3d164493c53775a10f102a61 SHA512 7fd401ffe01e5b1d568e4f66cdc5972d5e3c0b82f147a04330da9fe5ab1f2ddf152943e28f152fb635e8bca8d83a95a5a269a1f34fa189cef4a3c9dbe4e8c89b
24
25 diff --git a/www-apps/nextcloud/nextcloud-23.0.11.ebuild b/www-apps/nextcloud/nextcloud-23.0.11.ebuild
26 deleted file mode 100644
27 index ae0486c3b736..000000000000
28 --- a/www-apps/nextcloud/nextcloud-23.0.11.ebuild
29 +++ /dev/null
30 @@ -1,43 +0,0 @@
31 -# Copyright 1999-2022 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=8
35 -
36 -inherit webapp
37 -
38 -DESCRIPTION="Personal cloud that runs on your own server"
39 -HOMEPAGE="https://nextcloud.com/"
40 -SRC_URI="https://download.nextcloud.com/server/releases/${P}.tar.bz2"
41 -LICENSE="AGPL-3"
42 -
43 -KEYWORDS="~amd64 ~arm ~arm64 ~x86"
44 -IUSE="+curl +imagemagick mysql postgres +sqlite"
45 -REQUIRED_USE="|| ( mysql postgres sqlite )"
46 -
47 -DEPEND=""
48 -RDEPEND="<dev-lang/php-8.1[curl?,filter,gd,hash(+),intl,json(+),mysql?,pdo,posix,postgres?,session,simplexml,sqlite?,truetype,xmlreader,xmlwriter,zip]
49 - imagemagick? ( dev-php/pecl-imagick )
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_postinst_txt en "${FILESDIR}"/php-argon2-en.txt
71 -
72 - webapp_src_install
73 -}