Changes between Initial Version and Version 1 of DownloadSource


Ignore:
Timestamp:
Apr 7, 2007, 11:59:46 AM (17 years ago)
Author:
warmerdam
Comment:

New

Legend:

Unmodified
Added
Removed
Modified
  • DownloadSource

    v1 v1  
     1= Downloading GDAL/OGR Source =
     2
     3== Packaged Source ==
     4
     5All source releases are available for download from:
     6 * http://download.osgeo.org/gdal
     7
     8=== 1.4.0 ===
     9
     101.4.0 is the latest stable release.
     11 * http://download.osgeo.org/gdal/gdal140.zip - source as a zip
     12 * http://download.osgeo.org/gdal/gdal-1.4.0.tar.gz - source as .tar.gz
     13 * http://download.osgeo.org/gdal/gdal140doc.zip - html reference docs
     14 * http://download.osgeo.org/gdal/gdalautotest-1.4.0.tar.gz - test suite
     15
     16=== Nightly Snapshots ===
     17
     18Each night a snapshot is created from the subversion trunk, and made available at the following url.  These nightly snapshots are of the current development version, and may be broken on any given night.  Use at own risk!
     19
     20 * http://download.osgeo.org/gdal/daily
     21
     22== Subversion ==
     23
     24The GDAL/OGR software lives in the [http://subversion.tigris.org Subversion] source control system.  It can be browsed online using the [http://trac.osgeo.org/gdal/browser Browse Source] button on the top bar.
     25
     26With the subversion client software installed, the current development version can be extracted using the command:
     27
     28{{{
     29  svn checkout https://svn.osgeo.org/gdal/trunk/gdal gdal
     30}}}
     31
     32To extract the current stable version use the command:
     33
     34{{{
     35  svn checkout https://svn.osgeo.org/gdal/branches/1.4/gdal gdal
     36}}}
     37
     38Update access to the Subversion repository is governed by [http://www.gdal.org/rfc3_commiters.html RFC 3: GDAL Commiter Guidelines].  Commiters should take care to use https for access, and use their [http://www.osgeo.org/osgeo_userid OSGeo Userid] for authentication.  A commit command might look something like:
     39
     40{{{
     41  svn commit -m "fix buffer overwrite in RawRasterBand::RasterIO() (bug #999)" rawdataset.cpp --username warmerdam
     42}}}