| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271 |
- #!/usr/bin/env python3
- from __future__ import annotations
- import os
- import pathlib
- import platform
- import shutil
- import subprocess
- import tarfile
- import httpx
- CURRENT_DIR = pathlib.Path(__file__).parent
- def main():
- bat()
- delta()
- dua()
- dust()
- eza()
- git_whence()
- jujutsu()
- lazygit()
- oh_my_posh()
- starship()
- def bat():
- if platform.system() == 'Darwin':
- print('$ brew install git-delta')
- subprocess.run(['brew', 'install', 'bat'], check=True)
- return
- else:
- assert platform.system() == 'Linux'
- if subprocess.run(['dpkg', '-l', 'bat'], stdout=subprocess.DEVNULL).returncode == 0:
- print_gray('bat package already installed')
- return
- subprocess.run(['sudo', 'apt', 'install', 'bat', '--yes'], check=True)
- def delta():
- if platform.system() == 'Darwin':
- print('$ brew install git-delta')
- subprocess.run(['brew', 'install', 'git-delta'], check=True)
- return
- else:
- assert platform.system() == 'Linux'
- if subprocess.run(['dpkg', '-l', 'git-delta'], stdout=subprocess.DEVNULL).returncode == 0:
- print_gray('git-delta package already installed')
- return
- client = httpx.Client()
- latest = gh_latest_version(client, 'dandavison', 'delta')
- version = latest['name']
- arch = get_output(['dpkg', '--print-architecture'])
- filename = f'git-delta_{version}_{arch}.deb'
- (asset,) = (asset for asset in latest['assets'] if asset['name'] == filename)
- deb_path = CURRENT_DIR / 'git-delta.deb'
- download(client, asset['browser_download_url'], deb_path)
- try:
- subprocess.run(['sudo', 'dpkg', '-i', deb_path], check=True)
- finally:
- os.unlink(deb_path)
- def dua():
- if platform.system() == 'Darwin':
- print('$ brew install dua-cli')
- subprocess.run(['brew', 'install', 'dua-cli'], check=True)
- return
- else:
- assert platform.system() == 'Linux'
- dua_path = CURRENT_DIR / 'dua'
- if dua_path.exists():
- print_gray('dua already downloaded')
- return
- client = httpx.Client()
- latest = gh_latest_version(client, 'Byron', 'dua-cli')
- version = latest['name']
- dirname = f'dua-{version}-{platform.machine()}-unknown-linux-musl'
- filename = dirname + '.tar.gz'
- (asset,) = (asset for asset in latest['assets'] if asset['name'] == filename)
- tarball_path = CURRENT_DIR / 'dua.tar.gz'
- download(client, asset['browser_download_url'], tarball_path)
- with tarfile.open(tarball_path) as tar:
- with tar.extractfile(dirname + '/dua') as binary, dua_path.open('wb') as f: # pyright: ignore[reportOptionalContextManager]
- shutil.copyfileobj(binary, f)
- os.unlink(tarball_path)
- dua_path.chmod(0o755)
- def dust():
- if platform.system() == 'Darwin':
- print('$ brew install dust')
- subprocess.run(['brew', 'install', 'dust'], check=True)
- return
- else:
- assert platform.system() == 'Linux'
- dust_path = CURRENT_DIR / 'dust'
- if dust_path.exists():
- print_gray('dust already downloaded')
- return
- client = httpx.Client()
- latest = gh_latest_version(client, 'bootandy', 'dust')
- version = latest['name']
- dirname = f'dust-{version}-{platform.machine()}-unknown-linux-musl'
- filename = dirname + '.tar.gz'
- (asset,) = (asset for asset in latest['assets'] if asset['name'] == filename)
- tarball_path = CURRENT_DIR / 'dust.tar.gz'
- download(client, asset['browser_download_url'], tarball_path)
- with tarfile.open(tarball_path) as tar:
- with tar.extractfile(dirname + '/dust') as binary, dust_path.open('wb') as f: # pyright: ignore[reportOptionalContextManager]
- shutil.copyfileobj(binary, f)
- os.unlink(tarball_path)
- dust_path.chmod(0o755)
- def eza():
- if platform.system() == 'Darwin':
- print('$ brew install eza')
- subprocess.run(['brew', 'install', 'eza'], check=True)
- return
- else:
- assert platform.system() == 'Linux'
- if (CURRENT_DIR / 'eza').exists():
- print_gray('eza already downloaded')
- return
- client = httpx.Client()
- url = f'https://github.com/eza-community/eza/releases/latest/download/eza_{platform.machine()}-unknown-linux-gnu.tar.gz'
- tarball_path = CURRENT_DIR / 'eza.tar.gz'
- download(client, url, tarball_path)
- with tarfile.open(tarball_path) as tar:
- tar.extract('./eza', CURRENT_DIR)
- tarball_path.unlink()
- def git_whence():
- if platform.system() == 'Darwin':
- print('$ brew install raylu/formulae/git-whence')
- subprocess.run(['brew', 'install', 'raylu/formulae/git-whence'], check=True)
- return
- else:
- assert platform.system() == 'Linux'
- if (CURRENT_DIR / 'git-whence').exists():
- print_gray('git-whence already downloaded')
- return
- client = httpx.Client()
- url = f'https://github.com/raylu/git-whence/releases/latest/download/git-whence-{platform.machine()}-unknown-linux-gnu'
- download(client, url, CURRENT_DIR / 'git-whence')
- os.chmod(CURRENT_DIR / 'git-whence', 0o755)
- def jujutsu():
- if platform.system() == 'Darwin':
- print('$ brew install jj')
- subprocess.run(['brew', 'install', 'jj'], check=True)
- return
- else:
- assert platform.system() == 'Linux'
- if (CURRENT_DIR / 'jj').exists():
- print_gray('jj already downloaded')
- return
- client = httpx.Client()
- latest = gh_latest_version(client, 'jj-vcs', 'jj')
- version = latest['name']
- arch = platform.machine()
- url = f'https://github.com/jj-vcs/jj/releases/download/{version}/jj-{version}-{arch}-unknown-linux-musl.tar.gz'
- tarball_path = CURRENT_DIR / 'jj.tar.gz'
- download(client, url, tarball_path)
- with tarfile.open(tarball_path, 'r:gz') as tar:
- tar.extract('./jj', CURRENT_DIR, filter='data')
- tarball_path.unlink()
- def lazygit():
- if (CURRENT_DIR / 'lazygit').exists():
- print_gray('lazygit package already installed')
- return
- client = httpx.Client()
- latest = gh_latest_version(client, 'jesseduffield', 'lazygit')
- version = latest['name']
- arch = platform.machine()
- if arch == 'aarch64':
- arch = 'arm64'
- url = f'https://github.com/jesseduffield/lazygit/releases/download/{version}/lazygit_{version.lstrip("v")}_{platform.system()}_{arch}.tar.gz'
- download(client, url, CURRENT_DIR / 'lazygit.tgz')
- with tarfile.open(CURRENT_DIR / 'lazygit.tgz', 'r:gz') as tar:
- tar.extract('lazygit', CURRENT_DIR)
- os.unlink(CURRENT_DIR / 'lazygit.tgz')
- def oh_my_posh():
- if platform.system() == 'Darwin':
- print('$ brew install oh-my-posh')
- subprocess.run(['brew', 'install', 'oh-my-posh'], check=True)
- return
- else:
- assert platform.system() == 'Linux'
- if (CURRENT_DIR / 'oh-my-posh').exists():
- print_gray('oh-my-posh already downloaded')
- return
- client = httpx.Client()
- arch = platform.machine()
- if arch == 'aarch64':
- arch = 'arm64'
- elif arch == 'x86_64':
- arch = 'amd64'
- url = f'https://github.com/JanDeDobbeleer/oh-my-posh/releases/latest/download/posh-linux-{arch}'
- download(client, url, CURRENT_DIR / 'oh-my-posh')
- os.chmod(CURRENT_DIR / 'oh-my-posh', 0o755)
- def starship():
- if platform.system() == 'Darwin':
- print('$ brew install starship')
- subprocess.run(['brew', 'install', 'starship'], check=True)
- return
- else:
- assert platform.system() == 'Linux'
- if (CURRENT_DIR / 'starship').exists():
- print_gray('starship already downloaded')
- return
- client = httpx.Client()
- arch = platform.machine()
- if arch == 'x86_64':
- libc = 'gnu'
- else:
- libc = 'musl'
- url = f'https://github.com/starship/starship/releases/latest/download/starship-{arch}-unknown-linux-{libc}.tar.gz'
- tarball_path = CURRENT_DIR / 'starship.tar.gz'
- download(client, url, tarball_path)
- with tarfile.open(tarball_path, 'r:gz') as tar:
- tar.extract('starship', CURRENT_DIR)
- tarball_path.unlink()
- def get_output(argv: list[str]) -> str:
- proc = subprocess.run(argv, check=True, capture_output=True, encoding='ascii')
- return proc.stdout.rstrip('\n')
- def gh_latest_version(client: httpx.Client, org: str, repo: str) -> dict:
- r = client.get(f'https://api.github.com/repos/{org}/{repo}/releases/latest',
- headers={'Accept': 'application/vnd.github+json', 'X-GitHub-Api-Version': '2022-11-28'})
- r.raise_for_status()
- return r.json()
- def download(client: httpx.Client, url: str, path: pathlib.Path) -> None:
- print('downloading', url, 'to', path)
- with client.stream('GET', url, follow_redirects=True) as r:
- r.raise_for_status()
- with path.open('wb') as f:
- for chunk in r.iter_bytes():
- f.write(chunk)
- def print_gray(*args: object):
- print('\x1B[90;m', end='')
- print(*args, end='')
- print('\x1B[0m')
- if __name__ == '__main__':
- main()
|