community/nextcloud: upgrade to 15.0.2

App user_external is now available only through the appstore:
05fb0e2f33
This commit is contained in:
Leonardo Arena 2019-01-14 10:15:20 +00:00
parent 400633702e
commit a1550a0f0b
2 changed files with 17 additions and 6 deletions

View File

@ -1,8 +1,8 @@
# Maintainer: Leonardo Arena <rnalrd@alpinelinux.org>
# Contributor: Jakub Jirutka <jakub@jirutka.cz>
pkgname=nextcloud
pkgver=15.0.0
pkgrel=1
pkgver=15.0.2
pkgrel=0
pkgdesc="A safe home for all your data"
url="http://nextcloud.com"
arch="noarch"
@ -76,7 +76,6 @@ _apps="accessibility
survey_client
systemtags
theming
user_external
user_ldap
"
for _i in $_apps; do
@ -229,7 +228,7 @@ _package_app() {
mv "$pkgdir"/$_appsdir/$appname "$subpkgdir"/$_appsdir/
}
sha512sums="5a3d8d0f299bcaa4b71abb4cb9140c969e1c7ba9febe6c38243619ea13cff10ecb340c5b444dfb98585fd6d9f4728ebb4e31f459de4c6a31be6690d7dc5ad42a nextcloud-15.0.0.zip
sha512sums="2ec8f0de7825c4c92a2f8947ac3f797562071d32fc8638fc2b8341aa52fe957d29c3e5bc645f8d157a324afecedde1ad0974fa62f388cb785a28613f40116c40 nextcloud-15.0.2.zip
59151300c1153cad7fa2a1a972825c81a71df523b319b22799ce1bd846c1a63c7e37c608a125a98e4e733857cc65db9f329fafef7a5b1365d802c476450fce22 nextcloud15-dont-chmod.patch
e9d15d00368c8840c0144a9f0f45a951717b6c441f98a98568c064639f223df4b6190be040fc56840d3a23b3f7c69348b3d9e94ad4e86f371754ecd057a329d2 nextcloud15-app-encryption-info-add-mcrypt.patch
aef3c92497d738d6968e0f0b0d415b4953500db24ae14af41ef972665cf7eff00cb6c53dc953845fdbb389c3c965a75b8b14b9247513c05cf4130fe1cfc61731 dont-update-htaccess.patch

View File

@ -29,6 +29,18 @@ if [ $(apk version -t "$ver_old" '12.0.0-r2') = '<' ]; then
fi
fi
if [ "${ver_new%-r*}" != "${ver_old%-r*}" ]; then
echo '* Run "occ upgrade" to finish upgrade of your NextCloud instance!' >&2
if [ $(apk version -t "$ver_old" '15.0.2-r0') = '<' ]; then
cat >&2 <<-EOF
*
* App "user_external" is no longer available via release channel.
* You need to uninstall the package and install it via appstore:
*
* apk del nextcloud-user_external
*
EOF
fi
if [ "${ver_new%-r*}" != "${ver_old%-r*}" ]; then
echo ' * Run "occ upgrade" to finish upgrading your NextCloud instance!' >&2
fi