├── .builds ├── alpine.yml ├── debian.yml └── openbsd.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── src ├── archive.c ├── common.h ├── fspec-changeset.c ├── fspec-cpio.c ├── fspec-fromdir.c ├── fspec-iso.c ├── fspec-sort.c ├── fspec-tar.c ├── parse.c └── util.c └── test ├── 0002-fspec-fromdir-sanity.test ├── 0003-fspec-archive-dirdata.test ├── 0004-fspec-archive-relative-spec.test ├── 0005-fspec-sort.test ├── 0006-fspec-sort-fill.test ├── run-all └── run-one /.builds/alpine.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchambers/fspec-tools/HEAD/.builds/alpine.yml -------------------------------------------------------------------------------- /.builds/debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchambers/fspec-tools/HEAD/.builds/debian.yml -------------------------------------------------------------------------------- /.builds/openbsd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchambers/fspec-tools/HEAD/.builds/openbsd.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchambers/fspec-tools/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchambers/fspec-tools/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchambers/fspec-tools/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchambers/fspec-tools/HEAD/README.md -------------------------------------------------------------------------------- /src/archive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchambers/fspec-tools/HEAD/src/archive.c -------------------------------------------------------------------------------- /src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchambers/fspec-tools/HEAD/src/common.h -------------------------------------------------------------------------------- /src/fspec-changeset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchambers/fspec-tools/HEAD/src/fspec-changeset.c -------------------------------------------------------------------------------- /src/fspec-cpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchambers/fspec-tools/HEAD/src/fspec-cpio.c -------------------------------------------------------------------------------- /src/fspec-fromdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchambers/fspec-tools/HEAD/src/fspec-fromdir.c -------------------------------------------------------------------------------- /src/fspec-iso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchambers/fspec-tools/HEAD/src/fspec-iso.c -------------------------------------------------------------------------------- /src/fspec-sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchambers/fspec-tools/HEAD/src/fspec-sort.c -------------------------------------------------------------------------------- /src/fspec-tar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchambers/fspec-tools/HEAD/src/fspec-tar.c -------------------------------------------------------------------------------- /src/parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchambers/fspec-tools/HEAD/src/parse.c -------------------------------------------------------------------------------- /src/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchambers/fspec-tools/HEAD/src/util.c -------------------------------------------------------------------------------- /test/0002-fspec-fromdir-sanity.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchambers/fspec-tools/HEAD/test/0002-fspec-fromdir-sanity.test -------------------------------------------------------------------------------- /test/0003-fspec-archive-dirdata.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchambers/fspec-tools/HEAD/test/0003-fspec-archive-dirdata.test -------------------------------------------------------------------------------- /test/0004-fspec-archive-relative-spec.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchambers/fspec-tools/HEAD/test/0004-fspec-archive-relative-spec.test -------------------------------------------------------------------------------- /test/0005-fspec-sort.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchambers/fspec-tools/HEAD/test/0005-fspec-sort.test -------------------------------------------------------------------------------- /test/0006-fspec-sort-fill.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchambers/fspec-tools/HEAD/test/0006-fspec-sort-fill.test -------------------------------------------------------------------------------- /test/run-all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchambers/fspec-tools/HEAD/test/run-all -------------------------------------------------------------------------------- /test/run-one: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchambers/fspec-tools/HEAD/test/run-one --------------------------------------------------------------------------------