Replace git.openstack.org URLs with opendev.org URLs

Change-Id: Iad6b06a96727b5aa05d2a2a0eeee1389fa3e0104
This commit is contained in:
jacky06 2019-04-23 13:44:38 +08:00
parent 9c511c84b6
commit f4c2251e26
6 changed files with 14 additions and 14 deletions

View File

@ -35,15 +35,15 @@ Project Hosting Details
* https://wiki.openstack.org/wiki/Meetings#Murano_meeting * https://wiki.openstack.org/wiki/Meetings#Murano_meeting
* Code Hosting * Code Hosting
* https://git.openstack.org/cgit/openstack/murano * https://opendev.org/openstack/murano
* https://git.openstack.org/cgit/openstack/murano-agent * https://opendev.org/openstack/murano-agent
* https://git.openstack.org/cgit/openstack/murano-dashboard * https://opendev.org/openstack/murano-dashboard
* https://git.openstack.org/cgit/openstack/python-muranoclient * https://opendev.org/openstack/python-muranoclient
* Code Review * Code Review
* https://review.openstack.org/#/q/murano+AND+status:+open,n,z * https://review.opendev.org/#/q/murano+AND+status:+open,n,z
* https://docs.openstack.org/infra/manual/developers.html#development-workflow * https://docs.openstack.org/infra/manual/developers.html#development-workflow

View File

@ -33,7 +33,7 @@ in a "push-the-button" manner.
.. _Launchpad project: https://launchpad.net/python-muranoclient .. _Launchpad project: https://launchpad.net/python-muranoclient
.. _Blueprints: https://blueprints.launchpad.net/python-muranoclient .. _Blueprints: https://blueprints.launchpad.net/python-muranoclient
.. _Bugs: https://bugs.launchpad.net/python-muranoclient .. _Bugs: https://bugs.launchpad.net/python-muranoclient
.. _Source: https://git.openstack.org/cgit/openstack/python-muranoclient .. _Source: https://opendev.org/openstack/python-muranoclient
.. _How to Contribute: https://docs.openstack.org/infra/manual/developers.html .. _How to Contribute: https://docs.openstack.org/infra/manual/developers.html
.. _Specs: https://specs.openstack.org/openstack/murano-specs/ .. _Specs: https://specs.openstack.org/openstack/murano-specs/
.. _Release Notes: https://docs.openstack.org/releasenotes/python-muranoclient .. _Release Notes: https://docs.openstack.org/releasenotes/python-muranoclient

View File

@ -49,7 +49,7 @@ DEFAULT_REPO_URL = "http://apps.openstack.org/api/v1/murano_repo/liberty/"
# quick local fix for keystoneclient bug which blocks built-in reauth # quick local fix for keystoneclient bug which blocks built-in reauth
# functionality in case of expired token. # functionality in case of expired token.
# bug: https://bugs.launchpad.net/python-keystoneclient/+bug/1551392 # bug: https://bugs.launchpad.net/python-keystoneclient/+bug/1551392
# fix: https://review.openstack.org/#/c/286236/ # fix: https://review.opendev.org/#/c/286236/
class AuthCLI(DefaultCLI): class AuthCLI(DefaultCLI):
def invalidate(self): def invalidate(self):
retval = super(AuthCLI, self).invalidate() retval = super(AuthCLI, self).invalidate()

View File

@ -103,7 +103,7 @@ CLONE_FROM_GIT=$1
fi fi
fi fi
# Cloning from GIT # Cloning from GIT
GIT_WEBPATH_PRFX="https://git.openstack.org/cgit/openstack/" GIT_WEBPATH_PRFX="https://opendev.org/openstack/"
gitclone "$GIT_WEBPATH_PRFX$SERVICE_SRV_NAME.git" $GIT_CLONE_DIR gitclone "$GIT_WEBPATH_PRFX$SERVICE_SRV_NAME.git" $GIT_CLONE_DIR
# End clone from git section # End clone from git section
fi fi

View File

@ -82,7 +82,7 @@ CLONE_FROM_GIT=$1
fi fi
fi fi
# Cloning from GIT # Cloning from GIT
GIT_WEBPATH_PRFX="https://git.openstack.org/cgit/openstack/" GIT_WEBPATH_PRFX="https://opendev.org/openstack/"
gitclone "$GIT_WEBPATH_PRFX$SERVICE_SRV_NAME.git" $GIT_CLONE_DIR gitclone "$GIT_WEBPATH_PRFX$SERVICE_SRV_NAME.git" $GIT_CLONE_DIR
# End clone from git section # End clone from git section
fi fi

10
tox.ini
View File

@ -11,7 +11,7 @@ install_command = pip install {opts} {packages}
setenv = VIRTUAL_ENV={envdir} setenv = VIRTUAL_ENV={envdir}
passenv = http_proxy HTTP_PROXY https_proxy HTTPS_PROXY no_proxy NO_PROXY passenv = http_proxy HTTP_PROXY https_proxy HTTPS_PROXY no_proxy NO_PROXY
deps = deps =
-c{env:UPPER_CONSTRAINTS_FILE:https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt} -c{env:UPPER_CONSTRAINTS_FILE:https://opendev.org/openstack/requirements/raw/branch/master/upper-constraints.txt}
-r{toxinidir}/requirements.txt -r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt -r{toxinidir}/test-requirements.txt
commands = stestr run {posargs} commands = stestr run {posargs}
@ -21,7 +21,7 @@ basepython = python3
commands = flake8 {posargs} commands = flake8 {posargs}
[testenv:py27-queens] [testenv:py27-queens]
install_command = pip install -chttps://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt?h=stable/queens {opts} {packages} install_command = pip install -chttps://opendev.org/openstack/requirements/raw/branch/stable/queens/upper-constraints.txt {opts} {packages}
deps = -r{toxinidir}/requirements.txt deps = -r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt -r{toxinidir}/test-requirements.txt
@ -58,14 +58,14 @@ commands =
[testenv:pyflakes] [testenv:pyflakes]
basepython = python3 basepython = python3
deps = deps =
-c{env:UPPER_CONSTRAINTS_FILE:https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt} -c{env:UPPER_CONSTRAINTS_FILE:https://opendev.org/openstack/requirements/plain/upper-constraints.txt}
flake8 flake8
commands = flake8 commands = flake8
[testenv:docs] [testenv:docs]
basepython = python3 basepython = python3
deps = deps =
-c{env:UPPER_CONSTRAINTS_FILE:https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt} -c{env:UPPER_CONSTRAINTS_FILE:https://opendev.org/openstack/requirements/plain/upper-constraints.txt}
-r{toxinidir}/requirements.txt -r{toxinidir}/requirements.txt
-r{toxinidir}/doc/requirements.txt -r{toxinidir}/doc/requirements.txt
commands = commands =
@ -74,7 +74,7 @@ commands =
[testenv:releasenotes] [testenv:releasenotes]
basepython = python3 basepython = python3
deps = deps =
-c{env:UPPER_CONSTRAINTS_FILE:https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt} -c{env:UPPER_CONSTRAINTS_FILE:https://opendev.org/openstack/requirements/plain/upper-constraints.txt}
-r{toxinidir}/requirements.txt -r{toxinidir}/requirements.txt
-r{toxinidir}/doc/requirements.txt -r{toxinidir}/doc/requirements.txt
commands = sphinx-build -a -E -W -d releasenotes/build/doctrees -b html releasenotes/source releasenotes/build/html commands = sphinx-build -a -E -W -d releasenotes/build/doctrees -b html releasenotes/source releasenotes/build/html