~ubuntu-branches/ubuntu/wily/grass/wily

« back to all changes in this revision

Viewing changes to scripts/g.extension/g.extension.html

Tags: 7.0.0~rc1+ds1-1~exp1
* New upstream release candidate.
* Repack upstream tarball, remove precompiled Python objects.
* Add upstream metadata.
* Update gbp.conf and Vcs-Git URL to use the experimental branch.
* Update watch file for GRASS 7.0.
* Drop build dependencies for Tcl/Tk, add build dependencies:
  python-numpy, libnetcdf-dev, netcdf-bin, libblas-dev, liblapack-dev
* Update Vcs-Browser URL to use cgit instead of gitweb.
* Update paths to use grass70.
* Add configure options: --with-netcdf, --with-blas, --with-lapack,
  remove --with-tcltk-includes.
* Update patches for GRASS 7.
* Update copyright file, changes:
  - Update copyright years
  - Group files by license
  - Remove unused license sections
* Add patches for various typos.
* Fix desktop file with patch instead of d/rules.
* Use minimal dh rules.
* Bump Standards-Version to 3.9.6, no changes.
* Use dpkg-maintscript-helper to replace directories with symlinks.
  (closes: #776349)
* Update my email to use @debian.org address.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<h2>DESCRIPTION</h2>
 
2
 
 
3
<em>g.extension</em> downloads and installs, removes or updates
 
4
extensions from
 
5
<a href="http://svn.osgeo.org/grass/grass-addons/grass7/">GRASS Addons SVN repository</a> into the local GRASS GIS installation.
 
6
 
 
7
<p>Re-running <em>g.extension</em> on an installed GRASS Addons
 
8
extension re-installs the requested extension which may include
 
9
updates. All locally installed GRASS Addons extensions can be
 
10
re-installed
 
11
by <em><a href="g.extension.all.html">g.extension.all</a></em>.
 
12
 
 
13
<h2>EXAMPLES</h2>
 
14
 
 
15
Download and install <em>r.stream.distance</em> into current GRASS installation
 
16
 
 
17
<div class="code"><pre>
 
18
g.extension extension=r.stream.distance
 
19
</pre></div>
 
20
 
 
21
Remove locally installed extension
 
22
 
 
23
<div class="code"><pre>
 
24
g.extension extension=r.stream.distance operation=remove
 
25
</pre></div>
 
26
 
 
27
List all available extensions from GRASS Addons SVN repository
 
28
 
 
29
<div class="code"><pre>
 
30
g.extension -l
 
31
</pre></div>
 
32
 
 
33
List all locally installed extensions
 
34
 
 
35
<div class="code"><pre>
 
36
g.extension -a
 
37
</pre></div>
 
38
 
 
39
<h2>SEE ALSO</h2>
 
40
 
 
41
<em>
 
42
<a href="g.extension.all.html">g.extension.all</a>
 
43
</em>
 
44
 
 
45
<p>
 
46
See also <a href="http://grasswiki.osgeo.org/wiki/GRASS_AddOns">GRASS Addons</a> wiki page.
 
47
 
 
48
<h2>AUTHORS</h2>
 
49
 
 
50
Markus Neteler (original shell script)<br>
 
51
Martin Landa, Czech Technical University in Prague, Czech Republic (Python rewrite)
 
52
 
 
53
<p>
 
54
<i>Last changed: $Date: 2014-11-02 21:55:12 +0100 (Sun, 02 Nov 2014) $</i>