/[smecontribs]/rpms/nextcloud/contribs9/nextcloud.spec
ViewVC logotype

Diff of /rpms/nextcloud/contribs9/nextcloud.spec

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph | View Patch Patch

Revision 1.8 by jpp, Tue Jan 8 02:49:07 2019 UTC Revision 1.9 by jpp, Tue Jan 8 03:56:26 2019 UTC
# Line 74  then Line 74  then
74      installedver=`php  -r 'require("/usr/share/nextcloud/version.php"); print "$OC_VersionString";'`;      installedver=`php  -r 'require("/usr/share/nextcloud/version.php"); print "$OC_VersionString";'`;
75      majvers=`echo %{version} | cut -d. -f1`      majvers=`echo %{version} | cut -d. -f1`
76      majcurvers=`echo $installedver | cut -d. -f1`      majcurvers=`echo $installedver | cut -d. -f1`
     echo "and the version is $installedver"  
77      # we should fail with exit 1 if      # we should fail with exit 1 if
78          # installed version  > rpm version          # installed version  > rpm version
79          if ( verlte $installedver %{version} )          if ( verlte %{version} $installedver )
80                  then                  then
81                  echo "Installed version has been upgraded and is most recent than this rpm"                  echo "Installed version has $installedver been upgraded and is most recent than this rpm %{version} version"
82    #               echo "backup current install to /usr/share/nextcloud_back"
83    #               mkdir /usr/share/nextcloud_back
84    #               rsync -ar /usr/share/nextcloud/ /usr/share/nextcloud_back
85                  exit 1                  exit 1
86          elif [  $(($majvers-1)) > $majcurvers  ]          elif [ $(($majvers-1)) -gt $majcurvers ]
87                  then # installed version < rpm version -1                  then # installed version < rpm version -1
88                  echo "can not upgrade from $installedver to  %{version}, please do a manual update with intermediate version"                  echo "can not upgrade from $installedver to %{version}, please do a manual or web update with intermediate version"
89    #               echo "backup current install to /usr/share/nextcloud_back"
90    #                mkdir /usr/share/nextcloud_back
91    #                rsync -ar /usr/share/nextcloud/ /usr/share/nextcloud_back
92                  exit 1                  exit 1
93          fi          fi
94  fi  fi
95    
96    %postun
97    # true if $1 is greater than or equal $2
98    verlte() {
99        [  "$1" = "`echo -e "$1\n$2" | sort -V | head -n1`" ]
100    }
101    
102    verlt() {
103        [ "$1" = "$2" ] && return 1 || verlte $1 $2
104    }
105    
106    if [ $1 == 1 ]]; then
107    # if there is already an installed version
108    if [ -f /usr/share/nextcloud/version.php ]
109    then
110    #    echo "version.php found, already installed"
111        # get version number
112        installedver=`php  -r 'require("/usr/share/nextcloud/version.php"); print "$OC_VersionString";'`;
113        majvers=`echo %{version} | cut -d. -f1`
114        majcurvers=`echo $installedver | cut -d. -f1`
115    #    echo "and the version is $installedver"
116        # we should fail with exit 1 if
117            # installed version  > rpm version
118            if ( verlte %{version} $installedver )
119                    then
120    #                echo "reverting content"
121    #                rsync -ar /usr/share/nextcloud_back/ /usr/share/nextcloud_back
122    #               rm -rf /usr/share/nextcloud_back
123                    exit 0
124            elif [ $(($majvers-1)) -gt $majcurvers ]
125                    then # installed version < rpm version -1
126    #               echo "reverting content"
127    #                rsync -ar /usr/share/nextcloud_back/ /usr/share/nextcloud_back
128    #                rm -rf /usr/share/nextcloud_back
129                    exit 0
130            fi
131    fi
132    fi
133    
134  %install  %install
135  rm -rf %{buildroot}  rm -rf %{buildroot}


Legend:
Removed lines/characters  
Changed lines/characters
  Added lines/characters

admin@koozali.org
ViewVC Help
Powered by ViewVC 1.2.1 RSS 2.0 feed