diff options
author | Florian Schmaus <flow@gentoo.org> | 2024-10-17 10:37:39 +0200 |
---|---|---|
committer | Florian Schmaus <flow@gentoo.org> | 2024-10-17 10:41:05 +0200 |
commit | 55f9753f176843ce483c0927ce278f0801cfc850 (patch) | |
tree | 7cff02a2097148bf4626fb26aaff0189c457859a /www-apps | |
parent | net-wireless/bluez: Stabilize 5.78 amd64, #941684 (diff) | |
download | gentoo-55f9753f176843ce483c0927ce278f0801cfc850.tar.gz gentoo-55f9753f176843ce483c0927ce278f0801cfc850.tar.bz2 gentoo-55f9753f176843ce483c0927ce278f0801cfc850.zip |
www-apps/nextcloud: add 29.0.8
Signed-off-by: Florian Schmaus <flow@gentoo.org>
Diffstat (limited to 'www-apps')
-rw-r--r-- | www-apps/nextcloud/Manifest | 1 | ||||
-rw-r--r-- | www-apps/nextcloud/nextcloud-29.0.8.ebuild | 43 |
2 files changed, 44 insertions, 0 deletions
diff --git a/www-apps/nextcloud/Manifest b/www-apps/nextcloud/Manifest index 5c4d5a185d4b..ee0ee0e98d9c 100644 --- a/www-apps/nextcloud/Manifest +++ b/www-apps/nextcloud/Manifest @@ -6,4 +6,5 @@ DIST nextcloud-29.0.2.tar.bz2 205723162 BLAKE2B c33cc2a13e797cb2777bed7d1c17d455 DIST nextcloud-29.0.4.tar.bz2 204867575 BLAKE2B ac91ecb560631762000cf0c6ef69a5262aa67591837e36373550201e075df629f64d63329925671af08f05f987da35046cdaf4b44d48f2e30d5d7fdb026a16a9 SHA512 65508d9610d4b459f11bceadd61d19eb8165e6804c658c4492fb97843c86107bfc75d080156d1afcf5a029ad143b77277cc4e63890444c089e1047f17db1e085 DIST nextcloud-29.0.5.tar.bz2 204001633 BLAKE2B 00ff6d5fbb758feb0587145726cfa4bffeaa8946ae19ad93aa85dcd47cab6f9ba4c7264d1949d86839ce8053a251c264bb40a37b0bb2248dc617e3b7079b84cc SHA512 65576b4dbb865bd05378cbbe9040d78c3c8e212f0f259451a00b724af821374d8157cdcdd1db8a4eb0a52afa8d307a856e3a0e76883be116cf5c44e239b7fa05 DIST nextcloud-29.0.7.tar.bz2 204453544 BLAKE2B 8affb8c2c6faf82df014e06fb9df3226e1ea6a0c9922a01a1b0f1e1120925b755163ee15d3a95f5fd4635dcc2d472290de29fc97b52c5e669122b32c7d64a28e SHA512 9a87ea11870aec4b26499e85c9ef91e38644d947c810c619f22f617307014b58adc24ebd19841af8aa3b5185427610f278951e48bb7ae242fa4de1eb3e6abb63 +DIST nextcloud-29.0.8.tar.bz2 204336151 BLAKE2B 9746c941b4c349a02299dae7120c2bd8b5ab3d80e686e529128dcae3ddbd5cd0396a3c3eb1f4c059f7888d44d681744df90ba422cca52bb57b37bb3a1bdd53fe SHA512 ec99d5efc6a573627cae9b42f7f34e3c8ee7ba9bc3bfe1bb032c9e8fcef2831ce32f7dcb72c3303582b205de390619bd7f892a7bc4415c0826e02f73496714b0 DIST nextcloud-30.0.0.tar.bz2 182332972 BLAKE2B 1ac4abde030f4c0be783808abebe70bdf48077cebf7a89714351b40ae33d03d6832fbd985c0fdd13a6ebc38f3a8ee5a3e7c24c6cdf4913232f748e4baa03cbb9 SHA512 03681b44640d3b496393325b88c80a20f1817fc27c4ee82fd2b46a4e75b1568da904ee9e531123bc0576a77c6290d925730c2a45282ab8fa756b7d00a7ba0c84 diff --git a/www-apps/nextcloud/nextcloud-29.0.8.ebuild b/www-apps/nextcloud/nextcloud-29.0.8.ebuild new file mode 100644 index 000000000000..cdae29e997d4 --- /dev/null +++ b/www-apps/nextcloud/nextcloud-29.0.8.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit webapp + +DESCRIPTION="Personal cloud that runs on your own server" +HOMEPAGE="https://nextcloud.com/" +SRC_URI="https://download.nextcloud.com/server/releases/${P}.tar.bz2" + +S=${WORKDIR}/${PN} + +LICENSE="AGPL-3" +KEYWORDS="~amd64 ~arm ~arm64 ~x86" + +IUSE="+curl +imagemagick mysql postgres +sqlite" +REQUIRED_USE="|| ( mysql postgres sqlite )" + +RDEPEND="dev-lang/php[curl?,filter,gd,hash(+),intl,json(+),mysql?,pdo,posix,postgres?,session,simplexml,sqlite?,truetype,xmlreader,xmlwriter,zip] + imagemagick? ( dev-php/pecl-imagick ) + virtual/httpd-php" + +pkg_setup() { + webapp_pkg_setup +} + +src_install() { + webapp_src_preinst + + insinto "${MY_HTDOCSDIR}" + doins -r . + dodir "${MY_HTDOCSDIR}"/data + + webapp_serverowned -R "${MY_HTDOCSDIR}"/apps + webapp_serverowned -R "${MY_HTDOCSDIR}"/data + webapp_serverowned -R "${MY_HTDOCSDIR}"/config + webapp_configfile "${MY_HTDOCSDIR}"/.htaccess + + webapp_postinst_txt en "${FILESDIR}"/php-argon2-en.txt + + webapp_src_install +} |