SHA256
1
0
forked from pool/nextcloud

Accepting request 516978 from server:php:applications

1

OBS-URL: https://build.opensuse.org/request/show/516978
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/nextcloud?expand=0&rev=4
This commit is contained in:
Dominique Leuenberger 2017-08-24 16:53:05 +00:00 committed by Git OBS Bridge
commit 687e410293
4 changed files with 33 additions and 11 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:1b9d9cf05e657cd564a552b418fbf42d669ca51e0fd1f1f118fe44cbf93a243f
size 41743343

3
nextcloud-12.0.2.tar.bz2 Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:eb34d6cb9f55ee84bf2ad847b4b08cdb925321848ffa2264a9b1566e7b21a17c
size 42756355

View File

@ -1,3 +1,22 @@
-------------------------------------------------------------------
Tue Aug 15 09:16:16 UTC 2017 - ecsos@opensuse.org
- upstream update to version 12.0.2
* Server
- Minor bugfix release
-------------------------------------------------------------------
Thu Aug 10 19:47:41 UTC 2017 - ecsos@opensuse.org
- upstream update to version 12.0.1
So many changes. See https://nextcloud.com/changelog/#latest12
-------------------------------------------------------------------
Mon Jul 17 18:32:45 UTC 2017 - ecsos@opensuse.org
- unneeded git-files should not be remove,
otherwise it throw integrity check failure in some situations.
-------------------------------------------------------------------
Mon May 22 15:28:21 UTC 2017 - ecsos@opensuse.org

View File

@ -48,7 +48,7 @@
%define statedir /run
%endif
Name: nextcloud
%define base_version 12.0.0
%define base_version 12.0.2
Version: %{base_version}
Release: 0
Summary: File hosting service
@ -119,13 +119,16 @@ cp %{SOURCE2} .
cp %{SOURCE3} .
cp %{SOURCE4} .
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" "{}" \;
### Don't remove git files!!
### git files should not be removed, otherwise nextcloud rise up integrity check failure in some situations.
###
## 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