Skip to content

Commit db5d957

Browse files
committed
changing Quantum-GIS to QGIS according to new repository
1 parent f98eed9 commit db5d957

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

fabgis/common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def setup_env():
4747
env.fg.home = os.path.join('/home/', env.fg.user)
4848
env.fg.workspace = os.path.join(env.fg.home, 'dev')
4949
env.fg.inasafe_git_url = 'git://github.com/AIFDR/inasafe.git'
50-
env.fg.qgis_git_url = 'git://github.com/qgis/Quantum-GIS.git'
50+
env.fg.qgis_git_url = 'git://github.com/qgis/QGIS.git'
5151
env.fg.kandan_git_url = 'git://github.com/kandanapp/kandan.git'
5252
env.fg.gdal_svn_url = 'https://svn.osgeo.org/gdal/trunk/gdal'
5353
env.fg.tilemill_tarball_url = (

fabgis/qgis.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@ def clone_qgis(branch='master', delete_local_branches=False):
3030
#run('git config --global push.default simple')
3131

3232
code_base = '%s/cpp' % env.fg.workspace
33-
code_path = '%s/Quantum-GIS' % code_base
33+
code_path = '%s/QGIS' % code_base
3434

3535
update_git_checkout(
3636
code_base,
3737
env.fg.qgis_git_url,
38-
'Quantum-GIS',
38+
'QGIS',
3939
branch)
4040
if exists(code_path):
4141
with cd(code_path):
@@ -49,7 +49,7 @@ def compile_qgis(build_path, build_prefix, gdal_from_source=False):
4949
5050
:param build_path: Path to the cmake build dir that should be used. Path
5151
must point to under the QGIS git checkout dir. e.g.
52-
Quantum-GIS/build-fabgis.
52+
QGIS/build-fabgis.
5353
:type build_path: str
5454
5555
:param build_prefix: Path where the QGIS binaries should be installed to.
@@ -119,7 +119,7 @@ def install_qgis1_8(gdal_from_source=False):
119119
sudo('apt-get build-dep -y qgis')
120120
clone_qgis(branch='release-1_8')
121121
workspace = '%s/cpp' % env.fg.workspace
122-
code_path = '%s/Quantum-GIS' % workspace
122+
code_path = '%s/QGIS' % workspace
123123
build_path = '%s/build-qgis18-fabgis' % code_path
124124
build_prefix = '/usr/local/qgis-1.8'
125125
compile_qgis(build_path, build_prefix, gdal_from_source)
@@ -149,7 +149,7 @@ def install_qgis2(gdal_from_source=False):
149149

150150
clone_qgis(branch='release-2_0')
151151
workspace = '%s/cpp' % env.fg.workspace
152-
code_path = '%s/Quantum-GIS' % workspace
152+
code_path = '%s/QGIS' % workspace
153153
build_path = '%s/build-qgis2-fabgis' % code_path
154154
build_prefix = '/usr/local/qgis-2.0'
155155
compile_qgis(build_path, build_prefix, gdal_from_source)
@@ -179,7 +179,7 @@ def install_master(gdal_from_source=False):
179179

180180
clone_qgis(branch='master')
181181
workspace = '%s/cpp' % env.fg.workspace
182-
code_path = '%s/Quantum-GIS' % workspace
182+
code_path = '%s/QGIS' % workspace
183183
build_path = '%s/build-master-fabgis' % code_path
184184
build_prefix = '/usr/local/qgis-master'
185185
compile_qgis(build_path, build_prefix, gdal_from_source)

scrap.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def all():
4949
'dev',
5050
'python')
5151
env.inasafe_git_url = 'git://github.com/AIFDR/inasafe.git'
52-
env.qgis_git_url = 'git://github.com/qgis/Quantum-GIS.git'
52+
env.qgis_git_url = 'git://github.com/qgis/QGIS.git'
5353
env.repo_alias = 'inasafe-test'
5454
env.code_path = os.path.join(env.workspace, env.repo_alias)
5555

0 commit comments

Comments
 (0)