diff --git a/matrix_puppeteer_line/__main__.py b/matrix_puppeteer_line/__main__.py index a76d370..7b96a1c 100644 --- a/matrix_puppeteer_line/__main__.py +++ b/matrix_puppeteer_line/__main__.py @@ -35,7 +35,7 @@ class MessagesBridge(Bridge): command = "python -m matrix_puppeteer_line" description = ("A very hacky Matrix-LINE bridge based on running " "LINE's Chrome extension in Puppeteer.") - repo_url = "git://miscworks.net/matrix-puppeteer-line" + repo_url = "https://src.miscworks.net/fair/matrix-puppeteer-line" real_user_content_key = "net.miscworks.line.puppet" version = version markdown_version = linkified_version diff --git a/matrix_puppeteer_line/get_version.py b/matrix_puppeteer_line/get_version.py index b17c170..3fdbe2b 100644 --- a/matrix_puppeteer_line/get_version.py +++ b/matrix_puppeteer_line/get_version.py @@ -19,7 +19,7 @@ def run(cmd): if os.path.exists(".git") and shutil.which("git"): try: git_revision = run(["git", "rev-parse", "HEAD"]).strip().decode("ascii") - git_revision_url = f"git://miscworks.net/matrix-puppeteer-line/commit/{git_revision}" + git_revision_url = f"https://src.miscworks.net/fair/matrix-puppeteer-line/commit/{git_revision}" git_revision = git_revision[:8] except (subprocess.SubprocessError, OSError): git_revision = "unknown" diff --git a/puppet/package.json b/puppet/package.json index 00c7d56..8f8d94f 100644 --- a/puppet/package.json +++ b/puppet/package.json @@ -4,13 +4,13 @@ "description": "Puppeteer module for matrix-puppeteer-line", "repository": { "type": "git", - "url": "git://miscworks.net/matrix-puppeteer-line.git" + "url": "git+https://src.miscworks.net/fair/matrix-puppeteer-line.git" }, "type": "module", "main": "src/main.js", "author": "Andrew Ferrazzutti ", "license": "AGPL-3.0-or-later", - "homepage": "https://miscworks.net/dir/matrix-puppeteer-line", + "homepage": "https://src.miscworks.net/fair/matrix-puppeteer-line", "scripts": { "start": "node ./src/main.js" }, diff --git a/setup.py b/setup.py index 4dda952..c03c16e 100644 --- a/setup.py +++ b/setup.py @@ -35,12 +35,12 @@ linkified_version = {linkified_version!r} setuptools.setup( name="matrix-puppeteer-line", version=version, - url="git://miscworks.net/matrix-puppeteer-line", + url="https://src.miscworks.net/fair/matrix-puppeteer-line", - author="Tulir Asokan", - author_email="tulir@maunium.net", + author="Andrew Ferrazzutti", + author_email="fair@miscworks.net", - description="A very hacky Matrix-SMS bridge based on using Android Messages for Web in Puppeteer.", + description="A very hacky Matrix-LINE bridge based on running LINE's Chrome extension in Puppeteer.", long_description=long_desc, long_description_content_type="text/markdown",