Skip to content

Commit c0eb997

Browse files
authoredFeb 10, 2017
Merge pull request #4118 from alexbruy/processing-saga-ltr
[processing] support only SAGA LTR
2 parents a46afca + 732b501 commit c0eb997

File tree

1,435 files changed

+25
-10915
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,435 files changed

+25
-10915
lines changed
 
Lines changed: 2 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,7 @@
11
FILE(GLOB PY_FILES *.py)
2-
FILE(GLOB DESCR212_FILES description/2.1.2/*.txt)
3-
FILE(GLOB DESCR213_FILES description/2.1.3/*.txt)
4-
FILE(GLOB DESCR214_FILES description/2.1.4/*.txt)
5-
FILE(GLOB DESCR220_FILES description/2.2.0/*.txt)
6-
FILE(GLOB DESCR222_FILES description/2.2.2/*.txt)
7-
FILE(GLOB DESCR223_FILES description/2.2.3/*.txt)
8-
FILE(GLOB HELP_FILES help/*.rst)
2+
FILE(GLOB DESCR_FILES description/*.txt)
93

104
ADD_SUBDIRECTORY(ext)
115

126
PLUGIN_INSTALL(processing algs/saga ${PY_FILES})
13-
PLUGIN_INSTALL(processing algs/saga/description/2.1.2 ${DESCR212_FILES})
14-
PLUGIN_INSTALL(processing algs/saga/description/2.1.3 ${DESCR213_FILES})
15-
PLUGIN_INSTALL(processing algs/saga/description/2.1.4 ${DESCR214_FILES})
16-
PLUGIN_INSTALL(processing algs/saga/description/2.2.0 ${DESCR220_FILES})
17-
PLUGIN_INSTALL(processing algs/saga/description/2.2.2 ${DESCR222_FILES})
18-
PLUGIN_INSTALL(processing algs/saga/description/2.2.3 ${DESCR223_FILES})
19-
PLUGIN_INSTALL(processing algs/saga/help ${HELP_FILES})
7+
PLUGIN_INSTALL(processing algs/saga/description/ ${DESCR_FILES})

‎python/plugins/processing/algs/saga/SagaAlgorithm212.py renamed to ‎python/plugins/processing/algs/saga/SagaAlgorithm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
sessionExportedLayers = {}
6363

6464

65-
class SagaAlgorithm212(GeoAlgorithm):
65+
class SagaAlgorithm(GeoAlgorithm):
6666

6767
OUTPUT_EXTENT = 'OUTPUT_EXTENT'
6868

0 commit comments

Comments
 (0)
Please sign in to comment.