Skip to content
Snippets Groups Projects
Commit 5e10b0d2 authored by Oriol Tintó's avatar Oriol Tintó
Browse files

Update recipe for dwd-icon-tools to point to dkrz gitlab.

parent 8e6555e8
No related branches found
No related tags found
No related merge requests found
Pipeline #18930 failed
......@@ -27,9 +27,17 @@ from pathlib import Path
class DwdIconTools(Package):
"""DWD Icon Tools"""
homepage = "https://www.example.com"
homepage = "https://gitlab.dkrz.de/dwd-sw/dwd_icon_tools.git"
# maintainers("oriol.tinto")
git = "ssh://git@gitlab.lrz.de/dkrz-mirror/dwd_icon_tools.git"
url = "https://gitlab.dkrz.de/dwd-sw/dwd_icon_tools.git"
token = os.environ.get('SPACK_ICON_NWP_GITTOKEN')
if token is not None:
parsed = urlparse(git)
user = 'token'
password = token
url = "{}://{}:{}@{}/{}".format(parsed.scheme, user, password, parsed.netloc, parsed.path)
version("2.5.2", branch="icontools-2.5.2")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment