Accepting request 874796 from server:php:applications
OBS-URL: https://build.opensuse.org/request/show/874796 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/nextcloud?expand=0&rev=56
This commit is contained in:
commit
9b2d3b6d31
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:8ced82b772bf0af67d5be1323e40f977429bc0a2bcc864095efc78767500b72b
|
|
||||||
size 105883310
|
|
3
nextcloud-21.0.0.tar.bz2
Normal file
3
nextcloud-21.0.0.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:ceadaeef67685a11afc5b23b0a86ba3c7bd0a7b138d5d1ecc05262383655f1f0
|
||||||
|
size 110504725
|
@ -1,3 +1,23 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Feb 19 15:00:15 UTC 2021 - ecsos <ecsos@opensuse.org>
|
||||||
|
|
||||||
|
- Update to 21.0.0
|
||||||
|
The biggest improvements we introduce with Nextcloud 21 are:
|
||||||
|
- High Performance Back-end for Nextcloud Files: reduces server
|
||||||
|
load from desktop clients and web interface polling by 90%
|
||||||
|
while delivering instant notifications to users.
|
||||||
|
- And a wide range of performance improvements all over on top,
|
||||||
|
decreasing loading times of pages and reducing load on the server
|
||||||
|
- Collaborative features: new Whiteboard, author colours in Text
|
||||||
|
and Document Templates to increase team productivity
|
||||||
|
- Nextcloud Talk: debuts message status indicators, a raise hand
|
||||||
|
feature, a group conversation description and more!
|
||||||
|
- A range of Groupware improvements like drag'n'drop and nicer
|
||||||
|
threading in Mail and syncing social media avatars in Contacts.
|
||||||
|
* BugFixes:
|
||||||
|
https://github.com/nextcloud/server/milestone/120?closed=1
|
||||||
|
- Fix missing db things automatically at upgrade.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Feb 3 11:25:49 UTC 2021 - ecsos <ecsos@opensuse.org>
|
Wed Feb 3 11:25:49 UTC 2021 - ecsos <ecsos@opensuse.org>
|
||||||
|
|
||||||
|
@ -47,7 +47,7 @@
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
Name: nextcloud
|
Name: nextcloud
|
||||||
Version: 20.0.7
|
Version: 21.0.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: File hosting service
|
Summary: File hosting service
|
||||||
License: AGPL-3.0-only
|
License: AGPL-3.0-only
|
||||||
@ -85,8 +85,8 @@ Requires: php-posix
|
|||||||
Requires: php-zip
|
Requires: php-zip
|
||||||
#
|
#
|
||||||
%if 0%{?fedora_version} || 0%{?rhel} || 0%{?rhel_version} || 0%{?centos_version}
|
%if 0%{?fedora_version} || 0%{?rhel} || 0%{?rhel_version} || 0%{?centos_version}
|
||||||
Requires: php < 7.5.0
|
Requires: php < 8.1.0
|
||||||
Requires: php >= 7.2.0
|
Requires: php >= 7.3.0
|
||||||
Requires: php-process
|
Requires: php-process
|
||||||
Requires: php-xml
|
Requires: php-xml
|
||||||
Recommends: sqlite
|
Recommends: sqlite
|
||||||
@ -280,6 +280,11 @@ fi
|
|||||||
if [ -s %{statedir}/occ_maintenance_mode_during_nextcloud_install ]; then
|
if [ -s %{statedir}/occ_maintenance_mode_during_nextcloud_install ]; then
|
||||||
echo "%{name}: occ maintenance:repair (fix possible errors)"
|
echo "%{name}: occ maintenance:repair (fix possible errors)"
|
||||||
su %{nc_user} -s /bin/sh -c "cd %{nc_dir}; PATH=%{ocphp_bin}:$PATH php ./occ maintenance:repair" || true
|
su %{nc_user} -s /bin/sh -c "cd %{nc_dir}; PATH=%{ocphp_bin}:$PATH php ./occ maintenance:repair" || true
|
||||||
|
echo "%{name}: occ db:add-missing-* (add missing db things)"
|
||||||
|
su %{nc_user} -s /bin/sh -c "cd %{nc_dir}; PATH=%{ocphp_bin}:$PATH php ./occ maintenance:mimetype:update-db" || true
|
||||||
|
su %{nc_user} -s /bin/sh -c "cd %{nc_dir}; PATH=%{ocphp_bin}:$PATH php ./occ db:add-missing-columns" || true
|
||||||
|
su %{nc_user} -s /bin/sh -c "cd %{nc_dir}; PATH=%{ocphp_bin}:$PATH php ./occ db:add-missing-indices" || true
|
||||||
|
su %{nc_user} -s /bin/sh -c "cd %{nc_dir}; PATH=%{ocphp_bin}:$PATH php ./occ db:add-missing-primary-keys" || true
|
||||||
echo "%{name}: occ update apps"
|
echo "%{name}: occ update apps"
|
||||||
su %{nc_user} -s /bin/sh -c "cd %{nc_dir}; PATH=%{ocphp_bin}:$PATH php ./occ app:update --all" || true
|
su %{nc_user} -s /bin/sh -c "cd %{nc_dir}; PATH=%{ocphp_bin}:$PATH php ./occ app:update --all" || true
|
||||||
echo "%{name}: occ upgrade"
|
echo "%{name}: occ upgrade"
|
||||||
|
Loading…
Reference in New Issue
Block a user