Changes between Version 73 and Version 74 of DownloadSource


Ignore:
Timestamp:
May 26, 2016, 8:54:26 AM (8 years ago)
Author:
neteler
Comment:

7.0 --> 7.2; various updates and cleanup

Legend:

Unmodified
Added
Removed
Modified
  • DownloadSource

    v73 v74  
    55== Packaged Source ==
    66
    7 All source releases are available for download from:
     7The source code of all official releases is available for download from:
    88
    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/
    1112   * http://grass.osgeo.org/grass70/source/
    1213   * http://grass.osgeo.org/grass64/source/
     
    1516== Weekly snapshots ==
    1617
    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)
     18Source code tarballs are available from here:
    2019
     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)
    2124
    2225== Subversion GRASS main source code repository ==
     
    2528can be accessed:
    2629
    27 === GRASS 7.1 ===
     30=== GRASS 7.3 ===
    2831
    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
     34The '''development branch''' ('''trunk''') version of '''GRASS 7'''  can be extracted using the command:
    3035
    3136{{{
     
    3540}}}
    3641
     42=== GRASS 7.2 ===
     43
     44To 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
    3753=== GRASS 7.0 ===
    3854
    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: ~~
    4058
    4159{{{
     
    4563}}}
    4664
    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_devel
    55   #Subsequent updates:
    56   svn up
    57 }}}
    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 
    6165=== GRASS 6.4 ===
    6266
    63 To extract the current state of the '''6.4.x release branch''' version ('''old stable'''), which continuously receives bugfixes, use the command:
     67To extract the current state of the old '''6.4.x release branch''' version ('''very old stable'''), which rarely receives bugfixes, use the command:
    6468
    6569{{{
     
    7478
    7579
    76 === GRASS 6.3 ===
     80=== Committing code to SVN (developers with write access) ===
    7781
    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) ===
     82Note: 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].
    9683
    9784A commit command might look something like:
     
    10996  svn commit -m "New xyz functionality uploaded" newdir
    11097}}}
    111 
    11298
    11399
     
    193179== Compilation notes for various operating systems ==
    194180
    195 Please see [http://grass.osgeo.org/wiki/Compile_and_Install here].
     181Please see [https://grasswiki.osgeo.org/wiki/Compile_and_Install here].