├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── apacman ├── apacman.8 ├── apacman.conf ├── apacman.conf.5 ├── apacman.install ├── docs ├── apacman.8.html └── apacman.conf.5.html ├── release.sh ├── test.bats └── zsh-completion /.gitignore: -------------------------------------------------------------------------------- 1 | old/ 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oshazard/apacman/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oshazard/apacman/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oshazard/apacman/HEAD/README.md -------------------------------------------------------------------------------- /apacman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oshazard/apacman/HEAD/apacman -------------------------------------------------------------------------------- /apacman.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oshazard/apacman/HEAD/apacman.8 -------------------------------------------------------------------------------- /apacman.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oshazard/apacman/HEAD/apacman.conf -------------------------------------------------------------------------------- /apacman.conf.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oshazard/apacman/HEAD/apacman.conf.5 -------------------------------------------------------------------------------- /apacman.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oshazard/apacman/HEAD/apacman.install -------------------------------------------------------------------------------- /docs/apacman.8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oshazard/apacman/HEAD/docs/apacman.8.html -------------------------------------------------------------------------------- /docs/apacman.conf.5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oshazard/apacman/HEAD/docs/apacman.conf.5.html -------------------------------------------------------------------------------- /release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oshazard/apacman/HEAD/release.sh -------------------------------------------------------------------------------- /test.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oshazard/apacman/HEAD/test.bats -------------------------------------------------------------------------------- /zsh-completion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oshazard/apacman/HEAD/zsh-completion --------------------------------------------------------------------------------