├── .github └── workflows │ └── main.yml ├── README.md ├── metadata ├── .gitignore └── layout.conf ├── profiles ├── eapi └── repo_name └── scripts └── check-tree.sh /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/musl/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/musl/HEAD/README.md -------------------------------------------------------------------------------- /metadata/.gitignore: -------------------------------------------------------------------------------- 1 | /md5-cache 2 | -------------------------------------------------------------------------------- /metadata/layout.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/musl/HEAD/metadata/layout.conf -------------------------------------------------------------------------------- /profiles/eapi: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /profiles/repo_name: -------------------------------------------------------------------------------- 1 | musl 2 | -------------------------------------------------------------------------------- /scripts/check-tree.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/musl/HEAD/scripts/check-tree.sh --------------------------------------------------------------------------------