forked from pool/nextcloud
Accepting request 656922 from home:ecsos:server
- Update to 15.0.0 Nextcloud 15 introduces social networking, next-gen 2-factor authentication and innovative collaborative document editing abilities. This release also adds a new design and grid view, workflow features and 2-3x faster loading performance. As this is a major release, the changelog is very long. Find an overview of what has been improved in this series of blog posts or see: https://nextcloud.com/changelog/ - Use php7 in apache under suse_version >= 1500 now. OBS-URL: https://build.opensuse.org/request/show/656922 OBS-URL: https://build.opensuse.org/package/show/server:php:applications/nextcloud?expand=0&rev=62
This commit is contained in:
parent
c9d5bbb665
commit
25fb0e84ae
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:4f5dd15a71694bd2f15fba0d2f942e5a5b1f5aba13511c507a23324d746b40e8
|
||||
size 49827498
|
3
nextcloud-15.0.0.tar.bz2
Normal file
3
nextcloud-15.0.0.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:5bb0c58171353da844019b64080c21078002a59ab956ab72adb958844a98eb78
|
||||
size 36181234
|
@ -1,3 +1,19 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 10 17:15:24 UTC 2018 - ecsos@opensuse.org
|
||||
|
||||
- Update to 15.0.0
|
||||
Nextcloud 15 introduces social networking, next-gen 2-factor
|
||||
authentication and innovative collaborative document editing
|
||||
abilities.
|
||||
This release also adds a new design and grid view, workflow
|
||||
features and 2-3x faster loading performance.
|
||||
|
||||
As this is a major release, the changelog is very long.
|
||||
Find an overview of what has been improved in this series of blog
|
||||
posts or see: https://nextcloud.com/changelog/
|
||||
|
||||
- Use php7 in apache under suse_version >= 1500 now.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Nov 27 22:51:28 UTC 2018 - ecsos@opensuse.org
|
||||
|
||||
|
@ -49,7 +49,7 @@
|
||||
%endif
|
||||
|
||||
Name: nextcloud
|
||||
Version: 14.0.4
|
||||
Version: 15.0.0
|
||||
Release: 0
|
||||
Summary: File hosting service
|
||||
License: AGPL-3.0-only
|
||||
@ -213,11 +213,18 @@ else
|
||||
fi
|
||||
|
||||
%if 0%{?suse_version}
|
||||
%if 0%{?suse_version} >= 1500
|
||||
# make sure php7 is not in APACHE_MODULES, so that we don't create dups.
|
||||
perl -pani -e 's@^(APACHE_MODULES=".*)\bphp7\b@$1@' /etc/sysconfig/apache2
|
||||
# add php7 to APACHE_MODULES
|
||||
perl -pani -e 's@^(APACHE_MODULES=")@${1}php7 @' /etc/sysconfig/apache2
|
||||
%else
|
||||
# make sure php5 is not in APACHE_MODULES, so that we don't create dups.
|
||||
perl -pani -e 's@^(APACHE_MODULES=".*)\bphp5\b@$1@' /etc/sysconfig/apache2
|
||||
# add php5 to APACHE_MODULES
|
||||
perl -pani -e 's@^(APACHE_MODULES=")@${1}php5 @' /etc/sysconfig/apache2
|
||||
%endif
|
||||
%endif
|
||||
|
||||
if [ -s %{statedir}/apache_stopped_during_nextcloud_install ]; then
|
||||
echo "%{name} post-install: Restarting Apache"
|
||||
|
Loading…
Reference in New Issue
Block a user