From 25fb0e84ae33f74c16c8d83c9695f15fd5646d22ce59e41514472ac67b5f329c Mon Sep 17 00:00:00 2001 From: Eric Schirra Date: Mon, 10 Dec 2018 18:46:14 +0000 Subject: [PATCH] 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 --- nextcloud-14.0.4.tar.bz2 | 3 --- nextcloud-15.0.0.tar.bz2 | 3 +++ nextcloud.changes | 16 ++++++++++++++++ nextcloud.spec | 9 ++++++++- 4 files changed, 27 insertions(+), 4 deletions(-) delete mode 100644 nextcloud-14.0.4.tar.bz2 create mode 100644 nextcloud-15.0.0.tar.bz2 diff --git a/nextcloud-14.0.4.tar.bz2 b/nextcloud-14.0.4.tar.bz2 deleted file mode 100644 index 489c228..0000000 --- a/nextcloud-14.0.4.tar.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4f5dd15a71694bd2f15fba0d2f942e5a5b1f5aba13511c507a23324d746b40e8 -size 49827498 diff --git a/nextcloud-15.0.0.tar.bz2 b/nextcloud-15.0.0.tar.bz2 new file mode 100644 index 0000000..cca4e50 --- /dev/null +++ b/nextcloud-15.0.0.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bb0c58171353da844019b64080c21078002a59ab956ab72adb958844a98eb78 +size 36181234 diff --git a/nextcloud.changes b/nextcloud.changes index f1b9839..f25acd4 100644 --- a/nextcloud.changes +++ b/nextcloud.changes @@ -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 diff --git a/nextcloud.spec b/nextcloud.spec index 3e1325d..624ec27 100644 --- a/nextcloud.spec +++ b/nextcloud.spec @@ -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"