Ignore:
Timestamp:
2020-12-16T23:11:25+13:00 (3 years ago)
Author:
anupama
Message:

Further rk2 changes to get the release kit to use wget to grab the old IsisGdl 32 bit mac and linux binaries on elcapitan, mountain lion and linux 64 bit. The 32 bit linux does not need to replace its 32 bit generated IsisGdl, so its compile.xml file never did that before nor at present.

Location:
main/trunk/release-kits/kits/rk2/ant-scripts
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/release-kits/kits/rk2/ant-scripts/elcapitan-compile.xml

    r34610 r34612  
    261261            <!-- for 64 bit need to copy in the statically compiled IsisGdl -->
    262262            <!--<delete file="${basedir}/compiled/bin/${os.shell}/IsisGdl"/>-->
    263             <get src="http://www.greenstone.org/caveat-emptor/IsisGdl.macleopard" dest="${basedir}/compiled/bin/${os.shell}/IsisGdl"/>
    264             <!--<move file="${basedir}/compiled/bin/${os.shell}/IsisGdl.bin32" tofile="${basedir}/compiled/bin/${os.shell}/IsisGdl"/>-->
     263            <!--<get src="https://www.greenstone.org/caveat-emptor/IsisGdl.macleopard" dest="${basedir}/compiled/bin/${os.shell}/IsisGdl"/>-->
     264            <exec executable="wget" failonerror="true">
     265              <arg value="-P"/>
     266              <arg value="${basedir}/compiled/bin/${os.shell}"/>
     267              <arg value="--no-check-certificate"/>
     268              <arg value="https://www.greenstone.org/caveat-emptor/IsisGdl.macleopard"/>
     269            </exec>
     270            <move file="${basedir}/compiled/bin/${os.shell}/IsisGdl.macleopard" tofile="${basedir}/compiled/bin/${os.shell}/IsisGdl"/>
    265271            <chmod perm="755" file="${basedir}/compiled/bin/${os.shell}/IsisGdl"/>
    266272        </if>
  • main/trunk/release-kits/kits/rk2/ant-scripts/lin64-compile.xml

    r34610 r34612  
    252252            <!-- for 64 bit need to copy in the statically compiled IsisGdl -->
    253253            <!--<delete file="${basedir}/compiled/bin/${os.shell}/IsisGdl"/>-->
    254             <get src="http://www.greenstone.org/caveat-emptor/IsisGdl.bin32" dest="${basedir}/compiled/bin/${os.shell}/IsisGdl.bin32"/>
     254            <!--<get src="https://www.greenstone.org/caveat-emptor/IsisGdl.bin32" dest="${basedir}/compiled/bin/${os.shell}/IsisGdl.bin32"/>-->
     255            <exec executable="wget" failonerror="true">
     256              <arg value="-P"/>
     257              <arg value="${basedir}/compiled/bin/${os.shell}"/>
     258              <arg value="--no-check-certificate"/>
     259              <arg value="https://www.greenstone.org/caveat-emptor/IsisGdl.bin32"/>
     260            </exec>
    255261            <move file="${basedir}/compiled/bin/${os.shell}/IsisGdl.bin32" tofile="${basedir}/compiled/bin/${os.shell}/IsisGdl"/>
    256262            <chmod perm="755" file="${basedir}/compiled/bin/${os.shell}/IsisGdl"/>
    257 
    258263        </if>
    259264
  • main/trunk/release-kits/kits/rk2/ant-scripts/mountainlion-compile.xml

    r34610 r34612  
    261261            <!-- for 64 bit need to copy in the statically compiled IsisGdl -->
    262262            <!--<delete file="${basedir}/compiled/bin/${os.shell}/IsisGdl"/>-->
    263             <get src="http://www.greenstone.org/caveat-emptor/IsisGdl.macleopard" dest="${basedir}/compiled/bin/${os.shell}/IsisGdl"/>
    264             <!--<move file="${basedir}/compiled/bin/${os.shell}/IsisGdl.bin32" tofile="${basedir}/compiled/bin/${os.shell}/IsisGdl"/>-->
     263            <!--<get src="http://www.greenstone.org/caveat-emptor/IsisGdl.macleopard" dest="${basedir}/compiled/bin/${os.shell}/IsisGdl"/>-->
     264            <exec executable="wget" failonerror="true">
     265              <arg value="-P"/>
     266              <arg value="${basedir}/compiled/bin/${os.shell}"/>
     267              <arg value="--no-check-certificate"/>
     268              <arg value="https://www.greenstone.org/caveat-emptor/IsisGdl.macleopard"/>
     269            </exec>
     270            <move file="${basedir}/compiled/bin/${os.shell}/IsisGdl.macleopard" tofile="${basedir}/compiled/bin/${os.shell}/IsisGdl"/>
     271
    265272            <chmod perm="755" file="${basedir}/compiled/bin/${os.shell}/IsisGdl"/>
    266273        </if>
Note: See TracChangeset for help on using the changeset viewer.