├── .githooks └── pre-commit ├── .github └── workflows │ ├── black.yml │ └── ci.yml ├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── extrafiles ├── completion.fish └── completion.sh ├── pyproject.toml ├── setup.cfg ├── setup.py └── xbstrap ├── __init__.py ├── __main__.py ├── base.py ├── cli_utils.py ├── exceptions.py ├── mirror ├── __init__.py └── __main__.py ├── pipeline ├── __init__.py └── __main__.py ├── schema.yml ├── subpkgs.py ├── util.py ├── vcs_utils.py └── xbps_utils.py /.githooks/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/managarm/xbstrap/HEAD/.githooks/pre-commit -------------------------------------------------------------------------------- /.github/workflows/black.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/managarm/xbstrap/HEAD/.github/workflows/black.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/managarm/xbstrap/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | __pycache__ 3 | *.egg-info 4 | site-local 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/managarm/xbstrap/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/managarm/xbstrap/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/managarm/xbstrap/HEAD/README.md -------------------------------------------------------------------------------- /extrafiles/completion.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/managarm/xbstrap/HEAD/extrafiles/completion.fish -------------------------------------------------------------------------------- /extrafiles/completion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/managarm/xbstrap/HEAD/extrafiles/completion.sh -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/managarm/xbstrap/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/managarm/xbstrap/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/managarm/xbstrap/HEAD/setup.py -------------------------------------------------------------------------------- /xbstrap/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/managarm/xbstrap/HEAD/xbstrap/__init__.py -------------------------------------------------------------------------------- /xbstrap/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/managarm/xbstrap/HEAD/xbstrap/__main__.py -------------------------------------------------------------------------------- /xbstrap/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/managarm/xbstrap/HEAD/xbstrap/base.py -------------------------------------------------------------------------------- /xbstrap/cli_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/managarm/xbstrap/HEAD/xbstrap/cli_utils.py -------------------------------------------------------------------------------- /xbstrap/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/managarm/xbstrap/HEAD/xbstrap/exceptions.py -------------------------------------------------------------------------------- /xbstrap/mirror/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/managarm/xbstrap/HEAD/xbstrap/mirror/__init__.py -------------------------------------------------------------------------------- /xbstrap/mirror/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/managarm/xbstrap/HEAD/xbstrap/mirror/__main__.py -------------------------------------------------------------------------------- /xbstrap/pipeline/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/managarm/xbstrap/HEAD/xbstrap/pipeline/__init__.py -------------------------------------------------------------------------------- /xbstrap/pipeline/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/managarm/xbstrap/HEAD/xbstrap/pipeline/__main__.py -------------------------------------------------------------------------------- /xbstrap/schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/managarm/xbstrap/HEAD/xbstrap/schema.yml -------------------------------------------------------------------------------- /xbstrap/subpkgs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/managarm/xbstrap/HEAD/xbstrap/subpkgs.py -------------------------------------------------------------------------------- /xbstrap/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/managarm/xbstrap/HEAD/xbstrap/util.py -------------------------------------------------------------------------------- /xbstrap/vcs_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/managarm/xbstrap/HEAD/xbstrap/vcs_utils.py -------------------------------------------------------------------------------- /xbstrap/xbps_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/managarm/xbstrap/HEAD/xbstrap/xbps_utils.py --------------------------------------------------------------------------------