Accepting request 498187 from server:php:applications
1 OBS-URL: https://build.opensuse.org/request/show/498187 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/nextcloud?expand=0&rev=3
This commit is contained in:
commit
3ff04de129
14
README.SUSE
Normal file
14
README.SUSE
Normal file
@ -0,0 +1,14 @@
|
||||
To speed up nextcloud you should enable PHP OPcache
|
||||
|
||||
The OPcache improves the performance of PHP applications by caching precompiled bytecode. We recommend at least following settings:
|
||||
|
||||
Put this in this insert in /etc/php5/apache2/php.ini
|
||||
|
||||
opcache.enable=On
|
||||
opcache.enable_cli=1
|
||||
opcache.interned_strings_buffer=8
|
||||
opcache.max_accelerated_files=10000
|
||||
opcache.memory_consumption=128
|
||||
opcache.save_comments=1
|
||||
opcache.revalidate_freq=1
|
||||
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:28d5ee39f31c6be20f037ad2eb300272ad9bb72a7d428eb0152c7a3fde87d545
|
||||
size 39873178
|
3
nextcloud-12.0.0.tar.bz2
Normal file
3
nextcloud-12.0.0.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1b9d9cf05e657cd564a552b418fbf42d669ca51e0fd1f1f118fe44cbf93a243f
|
||||
size 41743343
|
@ -1,3 +1,15 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon May 22 15:28:21 UTC 2017 - ecsos@opensuse.org
|
||||
|
||||
- upstream update to version 12.0.0
|
||||
no changelog from upstream at this time
|
||||
See https://github.com/nextcloud/server/issues?q=is%3Aissue+milestone%3A%22Nextcloud+12.0%22+is%3Aclosed
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Apr 28 22:46:46 UTC 2017 - ecsos@opensuse.org
|
||||
|
||||
- fix boo#1036756: package security issue
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Apr 24 18:09:20 UTC 2017 - adamradovits12@hotmail.com
|
||||
|
||||
|
@ -48,7 +48,7 @@
|
||||
%define statedir /run
|
||||
%endif
|
||||
Name: nextcloud
|
||||
%define base_version 11.0.3
|
||||
%define base_version 12.0.0
|
||||
Version: %{base_version}
|
||||
Release: 0
|
||||
Summary: File hosting service
|
||||
@ -59,7 +59,8 @@ Source0: https://download.nextcloud.com/server/releases/%{name}-%{version
|
||||
Source1: apache_secure_data
|
||||
Source2: README
|
||||
Source3: README.SELinux
|
||||
Source4: robots.txt
|
||||
Source4: README.SUSE
|
||||
Source5: robots.txt
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
BuildArch: noarch
|
||||
|
||||
@ -117,7 +118,14 @@ hosting services and using them.
|
||||
cp %{SOURCE2} .
|
||||
cp %{SOURCE3} .
|
||||
cp %{SOURCE4} .
|
||||
#%%patch0 -p0
|
||||
cp %{SOURCE5} .
|
||||
# delete unneeded gitfiles
|
||||
rm -r `find . -name ".gitignore" -or -name ".gitkeep" -or -name ".github"`
|
||||
# remove entries in signature.json to prevent integrity check failure
|
||||
find . -iname signature.json \
|
||||
-exec sed -i "/\/.gitignore\": ./d" "{}" \; \
|
||||
-exec sed -i "/\/.gitkeep\": ./d" "{}" \; \
|
||||
-exec sed -i "/\/.github\": ./d" "{}" \;
|
||||
|
||||
%build
|
||||
|
||||
@ -157,25 +165,25 @@ rm -f ${idir}/indie.json
|
||||
# We don't do this for new installs. Only for updates.
|
||||
# If the first argument to pre is 1, the RPM operation is an initial installation. If the argument is 2,
|
||||
# the operation is an upgrade from an existing version to a new one.
|
||||
if [ $1 -gt 1 -a ! -s /tmp/apache_stopped_during_nextcloud_install ]; then
|
||||
if [ $1 -gt 1 -a ! -s %{statedir}/apache_stopped_during_nextcloud_install ]; then
|
||||
echo "%{name} update: Checking for running Apache"
|
||||
# FIXME: this above should make it idempotent -- a requirement with openSUSE.
|
||||
# it does not work.
|
||||
%if 0%{?suse_version} && 0
|
||||
%if 0%{?suse_version} <= 1110
|
||||
rcapache2 status | grep running > /tmp/apache_stopped_during_nextcloud_install
|
||||
rcapache2 status | grep running > %{statedir}/apache_stopped_during_nextcloud_install
|
||||
rcapache2 stop
|
||||
%else
|
||||
service apache2 status | grep running > /tmp/apache_stopped_during_nextcloud_install
|
||||
service apache2 status | grep running > %{statedir}/apache_stopped_during_nextcloud_install
|
||||
service apache2 stop
|
||||
%endif
|
||||
%endif
|
||||
%if 0%{?fedora_version} || 0%{?rhel_version} || 0%{?centos_version}
|
||||
service httpd status | grep running > /tmp/apache_stopped_during_nextcloud_install
|
||||
service httpd status | grep running > %{statedir}/apache_stopped_during_nextcloud_install
|
||||
service httpd stop
|
||||
%endif
|
||||
fi
|
||||
if [ -s /tmp/apache_stopped_during_nextcloud_install ]; then
|
||||
if [ -s %{statedir}/apache_stopped_during_nextcloud_install ]; then
|
||||
echo "%{name} pre-install: Stopping Apache"
|
||||
fi
|
||||
|
||||
@ -205,7 +213,7 @@ perl -pani -e 's@^(APACHE_MODULES=".*)\bphp5\b@$1@' /etc/sysconfig/apache2
|
||||
perl -pani -e 's@^(APACHE_MODULES=")@${1}php5 @' /etc/sysconfig/apache2
|
||||
%endif
|
||||
|
||||
if [ -s /tmp/apache_stopped_during_nextcloud_install ]; then
|
||||
if [ -s %{statedir}/apache_stopped_during_nextcloud_install ]; then
|
||||
echo "%{name} post-install: Restarting Apache"
|
||||
## If we stopped apache in pre section, we now should restart. -- but *ONLY* then!
|
||||
## Maybe delegate that task to occ upgrade? They also need to handle this, somehow.
|
||||
@ -228,14 +236,23 @@ echo "%{name}: occ maintenance:mode --off"
|
||||
su %{oc_user} -s /bin/sh -c "cd %{oc_dir}; PATH=%{ocphp_bin}:$PATH php ./occ maintenance:mode --off" || true
|
||||
fi
|
||||
|
||||
rm -f /tmp/apache_stopped_during_nextcloud_install
|
||||
rm -f %{statedir}/apache_stopped_during_nextcloud_install
|
||||
rm -f %{statedir}/occ_maintenance_mode_during_nextcloud_install
|
||||
|
||||
%files
|
||||
%defattr(-,wwwrun,www)
|
||||
%defattr(644,root,root,755)
|
||||
%exclude %{apache_serverroot}/%{name}/README
|
||||
%exclude %{apache_serverroot}/%{name}/README.SUSE
|
||||
%exclude %{apache_serverroot}/%{name}/README.SELinux
|
||||
%doc README README.SELinux
|
||||
%doc README README.SUSE README.SELinux
|
||||
%{apache_serverroot}/%{name}
|
||||
%config %attr(0644,root,root) %{apache_confdir}/nextcloud.conf
|
||||
%attr(-,wwwrun,www) %{apache_serverroot}/%{name}/occ
|
||||
%config(noreplace) %{apache_confdir}/nextcloud.conf
|
||||
%config(noreplace) %{apache_serverroot}/%{name}/.user.ini
|
||||
%defattr(664,wwwrun,www,775)
|
||||
%{apache_serverroot}/%{name}/apps
|
||||
%defattr(660,wwwrun,www,770)
|
||||
%{apache_serverroot}/%{name}/config
|
||||
%{apache_serverroot}/%{name}/data
|
||||
|
||||
%changelog
|
||||
|
Loading…
Reference in New Issue
Block a user