1 |
%define version 15.0.0 |
%define version 15.0.0 |
2 |
%define release 3 |
%define release 4 |
3 |
|
|
4 |
%define apache_serverroot /usr/share |
%define apache_serverroot /usr/share |
5 |
%define apache_confdir /etc/httpd/conf.d |
%define apache_confdir /etc/httpd/conf.d |
47 |
Requires: php71-php-mysqlnd |
Requires: php71-php-mysqlnd |
48 |
#rh-php71-php-pdo_mysql |
#rh-php71-php-pdo_mysql |
49 |
|
|
50 |
|
Conflicts: nextcloud < 15 |
51 |
|
|
52 |
%description |
%description |
53 |
Nextcloud files and configuration. |
Nextcloud files and configuration. |
57 |
nc_data_dir: %{nc_data_dir} |
nc_data_dir: %{nc_data_dir} |
58 |
nc_config_dir: %{nc_config_dir} |
nc_config_dir: %{nc_config_dir} |
59 |
|
|
60 |
|
%pre |
61 |
|
# true if $1 is greater than or equal $2 |
62 |
|
verlte() { |
63 |
|
[ "$1" = "`echo -e "$1\n$2" | sort -V | head -n1`" ] |
64 |
|
} |
65 |
|
|
66 |
|
verlt() { |
67 |
|
[ "$1" = "$2" ] && return 1 || verlte $1 $2 |
68 |
|
} |
69 |
|
# if there is already an installed version |
70 |
|
if [ -f /usr/share/nextcloud/version.php ] |
71 |
|
then |
72 |
|
echo "version.php found, already installed" |
73 |
|
# get version number |
74 |
|
installedver=`php -r 'require("/usr/share/nextcloud/version.php"); print "$OC_VersionString";'`; |
75 |
|
majvers=`echo %{version} | cut -d. -f1` |
76 |
|
majcurvers=`echo $installedver | cut -d. -f1` |
77 |
|
echo "and the version is $installedver" |
78 |
|
# we should fail with exit 1 if |
79 |
|
# installed version > rpm version |
80 |
|
if ( verlte $installedver %{version} ) |
81 |
|
then |
82 |
|
echo "Installed version has been upgraded and is most recent than this rpm" |
83 |
|
exit 1 |
84 |
|
elif [ $(($majvers-1)) > $majcurvers ] |
85 |
|
then # installed version < rpm version -1 |
86 |
|
echo "can not upgrade from $installedver to %{version}, please do a manual update with intermediate version" |
87 |
|
exit 1 |
88 |
|
fi |
89 |
|
fi |
90 |
|
|
91 |
|
|
92 |
%install |
%install |
93 |
rm -rf %{buildroot} |
rm -rf %{buildroot} |
137 |
|
|
138 |
|
|
139 |
%changelog |
%changelog |
140 |
|
* Mon Jan 07 2019 Jean-Philipe Pialasse <tests@pialasse.com> 15.0.0-4.sme |
141 |
|
- prevent rpm to upgrade if webupdate has been used [SME: 10670] |
142 |
|
and rpm version is < to on disk version |
143 |
|
or if rppm version is more than one major release greater |
144 |
|
|
145 |
* Fri Dec 21 2018 Jean-Philipe Pialasse <tests@pialasse.com> 15.0.0-3.sme |
* Fri Dec 21 2018 Jean-Philipe Pialasse <tests@pialasse.com> 15.0.0-3.sme |
146 |
- Update to release 15.0.0 [SME: 10669] |
- Update to release 15.0.0 [SME: 10669] |
147 |
|
|