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

« back to all changes in this revision

Viewing changes to debian/patches/transferred-typo.patch

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
Description: Fix 'transfered' typo, replace with 'transferred'.
 
2
Author: Bas Couwenberg <sebastic@xs4all.nl>
 
3
Forwarded: http://trac.osgeo.org/grass/ticket/2560
 
4
Applied-Upstream: r64321, https://trac.osgeo.org/grass/changeset/64321
 
5
 
 
6
--- a/lib/init/variables.html
 
7
+++ b/lib/init/variables.html
 
8
@@ -259,7 +259,7 @@ PERMANENT
 
9
     non-native, vector features are written to output external
 
10
     datasource immediately. By default, the vector library writes
 
11
     output data to a temporary vector map in native format and when
 
12
-    closing the map, the features are transfered to output external
 
13
+    closing the map, the features are transferred to output external
 
14
     datasource. Note: if output vector format is topological PostGIS
 
15
     format, then the vector library writes features immediately to output
 
16
     database (in this case GRASS_VECTOR_EXTERNAL_IMMEDIATE is ignored).</dd>
 
17
--- a/lib/python/temporal/temporal_algebra.py
 
18
+++ b/lib/python/temporal/temporal_algebra.py
 
19
@@ -1798,7 +1798,7 @@ class TemporalAlgebraParser(object):
 
20
             tfunc = gvar.tfunc.upper()
 
21
             # Get value for function name from dictionary.
 
22
             tfuncval = tfuncdict[tfunc]
 
23
-            # Check if value has to be transfered to datetime object for comparison.
 
24
+            # Check if value has to be transferred to datetime object for comparison.
 
25
             if tfunc in ["START_DATE", "END_DATE"]:
 
26
                 timeobj = datetime.strptime(value.replace("\"",""), '%Y-%m-%d')
 
27
                 value = timeobj.date()
 
28
--- a/lib/vector/Vlib/open.c
 
29
+++ b/lib/vector/Vlib/open.c
 
30
@@ -1304,7 +1304,7 @@ int map_format(struct Map_info *Map)
 
31
         else {
 
32
             /* vector features are written to the temporary vector map
 
33
              * in the native format and when closing the map
 
34
-             * transfered to output OGR layer */
 
35
+             * transferred to output OGR layer */
 
36
             format = GV_FORMAT_NATIVE;
 
37
             Map->temporary = TRUE;
 
38
         }
 
39
@@ -1421,7 +1421,7 @@ int map_format(struct Map_info *Map)
 
40
             else {
 
41
                 /* vector features are written to the temporary vector map
 
42
                  * in the native format and when closing the map
 
43
-                 * transfered to output PostGIS layer */
 
44
+                 * transferred to output PostGIS layer */
 
45
                 format = GV_FORMAT_NATIVE;
 
46
                 Map->temporary = TRUE;
 
47
             }
 
48
--- a/lib/vector/diglib/spindex_rw.c
 
49
+++ b/lib/vector/diglib/spindex_rw.c
 
50
@@ -659,8 +659,8 @@ int rtree_dump_node_file(FILE * fp, off_
 
51
  * all following methods to transfer spatial indices (rtrees) are based
 
52
  * on the same idea
 
53
  * do a postorder depth-first non-recursive traversal of the rtree
 
54
- * a leaf node is transfered first
 
55
- * the root node is transfered last
 
56
+ * a leaf node is transferred first
 
57
+ * the root node is transferred last
 
58
  * 
 
59
  * this applies to all four scenarios
 
60
  * - from intermediate file to sidx file
 
61
@@ -973,7 +973,7 @@ static void rtree_load_to_memory(struct
 
62
        loadnode = 1;
 
63
        /* this is an internal node in the RTree
 
64
         * all its children are read first,
 
65
-        * before it is transfered to the RTree in memory */
 
66
+        * before it is transferred to the RTree in memory */
 
67
        if (s[top].sn.level > 0) {
 
68
            for (i = s[top].branch_id; i < t->nodecard; i++) {
 
69
                if (s[top].pos[i] > 0) {
 
70
@@ -991,7 +991,7 @@ static void rtree_load_to_memory(struct
 
71
                        /* leaf node
 
72
                         * vector object IDs are stored in file as
 
73
                         * off_t but always fit into an int, see dig_structs.h
 
74
-                        * vector object IDs are transfered to child.id */
 
75
+                        * vector object IDs are transferred to child.id */
 
76
                        if (s[top].sn.level == 0) {
 
77
                            s[top].sn.branch[j].child.id =
 
78
                                (int)s[top].pos[j];
 
79
@@ -1098,7 +1098,7 @@ static void rtree_load_to_file(struct gv
 
80
        loadnode = 1;
 
81
        /* this is an internal node in the RTree
 
82
         * all its children are read first,
 
83
-        * before it is transfered to the RTree in memory */
 
84
+        * before it is transferred to the RTree in memory */
 
85
        if (s[top].sn.level > 0) {
 
86
            for (i = s[top].branch_id; i < t->nodecard; i++) {
 
87
                if (s[top].pos[i] > 0) {
 
88
@@ -1116,7 +1116,7 @@ static void rtree_load_to_file(struct gv
 
89
                        /* leaf node
 
90
                         * vector object IDs are stored in file as
 
91
                         * off_t but always fit into an int, see dig_structs.h
 
92
-                        * vector object IDs are transfered to child.id */
 
93
+                        * vector object IDs are transferred to child.id */
 
94
                        if (s[top].sn.level == 0) {
 
95
                            s[top].sn.branch[j].child.id =
 
96
                                    (int)s[top].pos[j];
 
97
--- a/raster/r.watershed/shed/com_line.c
 
98
+++ b/raster/r.watershed/shed/com_line.c
 
99
@@ -4,7 +4,7 @@
 
100
 #include "watershed.h"
 
101
 #include "string.h"
 
102
 
 
103
-/* make sure any useful info is transfered to the man page before ripping out the interactive help messages */
 
104
+/* make sure any useful info is transferred to the man page before ripping out the interactive help messages */
 
105
 /* in addition there seem to be some useful user options here which are not currently available from the main parser */
 
106
 int com_line_Gwater(INPUT * input, OUTPUT * output)
 
107
 {