Skip to content

Commit ef7610b

Browse files
Update __init__.py implement gitlab:
Implement gitlab: def _rewrite_url(url, branch=None): if not branch: branch = "HEAD" if url.startswith("github:"): url = url[7:].split("/") url = ( "https://raw.githubusercontent.com/" + url[0] + "/" + url[1] + "/" + branch + "/" + "/".join(url[2:]) ) if url.startswith("gitlab:"): url = url[7:].split("/") url = ( "https://gitlab.com/" + url[0] + "/" + url[1] + "/-/raw/" + branch + "/" + "/".join(url[2:]) ) return url #... def _install_package(package, index, target, version, mpy): if ( package.startswith("http://") or package.startswith("https://") or package.startswith("github:") or package.startswith("gitlab:") ): #...
1 parent ffb07db commit ef7610b

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

micropython/mip/mip/__init__.py

+14
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# MicroPython package installer
22
# MIT license; Copyright (c) 2022 Jim Mussared
3+
# Implement gitlab, Copyrigh (c) 2024 Olivier Lenoir
34

45
from micropython import const
56
import requests
@@ -73,6 +74,18 @@ def _rewrite_url(url, branch=None):
7374
+ "/"
7475
+ "/".join(url[2:])
7576
)
77+
if url.startswith("gitlab:"):
78+
url = url[7:].split("/")
79+
url = (
80+
"https://gitlab.com/"
81+
+ url[0]
82+
+ "/"
83+
+ url[1]
84+
+ "/-/raw/"
85+
+ branch
86+
+ "/"
87+
+ "/".join(url[2:])
88+
)
7689
return url
7790

7891

@@ -128,6 +141,7 @@ def _install_package(package, index, target, version, mpy):
128141
package.startswith("http://")
129142
or package.startswith("https://")
130143
or package.startswith("github:")
144+
or package.startswith("gitlab:")
131145
):
132146
if package.endswith(".py") or package.endswith(".mpy"):
133147
print("Downloading {} to {}".format(package, target))

0 commit comments

Comments
 (0)