Changes between Version 73 and Version 74 of DownloadSource
- Timestamp:
- 05/26/16 08:54:26 (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DownloadSource
v73 v74 5 5 == Packaged Source == 6 6 7 All source releases areavailable for download from:7 The source code of all official releases is available for download from: 8 8 9 * For a release download list (GRASS GIS 5.x to 7.x), see '''[wiki:Release]''' 10 * '''Download at http://grass.osgeo.org/download/''' or directly from 9 * For a release download list (GRASS GIS 5.x to 7.x), see '''[wiki:Release]''' overview page 10 * Download at http://grass.osgeo.org/download/ or directly from 11 * http://grass.osgeo.org/grass72/source/ 11 12 * http://grass.osgeo.org/grass70/source/ 12 13 * http://grass.osgeo.org/grass64/source/ … … 15 16 == Weekly snapshots == 16 17 17 * http://grass.osgeo.org/grass71/source/snapshot/ (development) 18 * http://grass.osgeo.org/grass70/source/snapshot/ (stable) 19 * http://grass.osgeo.org/grass64/source/snapshot/ (old stable) 18 Source code tarballs are available from here: 20 19 20 * http://grass.osgeo.org/grass73/source/snapshot/ (development) 21 * http://grass.osgeo.org/grass72/source/snapshot/ (upcoming stable) 22 * http://grass.osgeo.org/grass70/source/snapshot/ (old stable) 23 * http://grass.osgeo.org/grass64/source/snapshot/ (very old stable) 21 24 22 25 == Subversion GRASS main source code repository == … … 25 28 can be accessed: 26 29 27 === GRASS 7. 1===30 === GRASS 7.3 === 28 31 29 The '''development branch''' version of '''GRASS 7''' can be extracted using the command: 32 ''(used to have the pseudo-name 7.1.svn till May 2016)'' 33 34 The '''development branch''' ('''trunk''') version of '''GRASS 7''' can be extracted using the command: 30 35 31 36 {{{ … … 35 40 }}} 36 41 42 === GRASS 7.2 === 43 44 To extract the current '''7.2.x release branch''' version ('''stable'''), which continuously receives bugfixes, use the command: 45 46 {{{ 47 svn checkout https://svn.osgeo.org/grass/grass/branches/releasebranch_7_2 grass72_release 48 #Subsequent updates: 49 svn up 50 }}} 51 52 37 53 === GRASS 7.0 === 38 54 39 To extract the current '''7.0.0 release branch''' version ('''stable'''), which continuously receives bugfixes, use the command: 55 ''Note: not recommended any more since May 2016'' 56 57 ~~To extract the current '''7.0.x release branch''' version ('''stable'''), which continuously receives bugfixes, use the command: ~~ 40 58 41 59 {{{ … … 45 63 }}} 46 64 47 48 === GRASS 6.5 ===49 50 ~~~~To extract the current '''6.5.0 development branch''' version of '''GRASS 6''' use the command:~~~~51 '''Note: development here is discouraged and should take place in GRASS 7.'''52 53 {{{54 svn checkout https://svn.osgeo.org/grass/grass/branches/develbranch_6 grass6_devel55 #Subsequent updates:56 svn up57 }}}58 59 If you have a local trunk version and want to continue with GRASS 6 development, read here to easily [wiki:HowToSVN#Switchtherepository switch to this GRASS 6 development branch].60 61 65 === GRASS 6.4 === 62 66 63 To extract the current state of the '''6.4.x release branch''' version ('''old stable'''), which continuously receives bugfixes, use the command:67 To extract the current state of the old '''6.4.x release branch''' version ('''very old stable'''), which rarely receives bugfixes, use the command: 64 68 65 69 {{{ … … 74 78 75 79 76 === GRASS 6.3===80 === Committing code to SVN (developers with write access) === 77 81 78 To extract the old '''6.3.x release branch''' version ('''old unstable''') use the command: 79 80 {{{ 81 svn checkout https://svn.osgeo.org/grass/grass/branches/releasebranch_6_3 grass63_release 82 }}} 83 84 === GRASS 6.2 === 85 86 To extract the old '''6.2.x stable''' version use the command: 87 88 {{{ 89 svn checkout https://svn.osgeo.org/grass/grass/branches/releasebranch_6_2 grass62_release 90 }}} 91 92 93 Note: Write access to the Subversion repository is governed by [wiki:RFC/2_LegalAspectsOfCodeContributions RFC 2: Legal aspects of code contributions]. Committers should take care to use https for access, and use their [http://www.osgeo.org/osgeo_userid OSGeo Userid] for authentication. 94 95 === Committing code to SVN (developers with write access) === 82 Note: Write access to the Subversion repository is governed by [wiki:RFC/2_LegalAspectsOfCodeContributions RFC 2: Legal aspects of code contributions]. Committers should take care to use https for access, and use their [http://www.osgeo.org/osgeo_userid OSGeo Userid] for authentication. See also [wiki:HowToContribute How-To Contribute]. 96 83 97 84 A commit command might look something like: … … 109 96 svn commit -m "New xyz functionality uploaded" newdir 110 97 }}} 111 112 98 113 99 … … 193 179 == Compilation notes for various operating systems == 194 180 195 Please see [http ://grass.osgeo.org/wiki/Compile_and_Install here].181 Please see [https://grasswiki.osgeo.org/wiki/Compile_and_Install here].