├── .astylerc ├── .editorconfig ├── .gitignore ├── COPYING ├── Makefile ├── README.pod ├── doc ├── .gitignore ├── Makefile ├── paccapability.pod ├── paccheck.pod ├── pacconf.pod ├── pacfile.pod ├── pacinfo.pod ├── pacini.pod ├── paclock.pod ├── paclog.pod ├── pacrepairdb.pod ├── pacrepairfile.pod ├── pacreport.pod ├── pacsift.pod ├── pacsync.pod ├── pactrans.pod ├── pacutils-mtree.pod ├── pacutils-sysroot.pod └── pacutils-uix.pod ├── ext ├── globdir.c │ ├── .gitignore │ ├── COPYING │ ├── Makefile │ ├── README.pod │ ├── ext │ │ └── tap.c │ │ │ ├── .gitignore │ │ │ ├── README.pod │ │ │ ├── t │ │ │ ├── .gitignore │ │ │ ├── 01-sanity.c │ │ │ ├── 10-basic.c │ │ │ ├── Makefile │ │ │ └── expected │ │ │ │ └── 10-basic.t.out │ │ │ └── tap.c │ ├── globdir.c │ ├── globdir.h │ └── t │ │ ├── .gitignore │ │ ├── .proverc │ │ ├── 01-sanity.c │ │ ├── 10-escape_pattern.c │ │ ├── 10-is_pattern.c │ │ ├── 10-split_pattern.c │ │ ├── 20-globat.c │ │ ├── 30-globdir.c │ │ ├── 40-glob_append.c │ │ ├── 40-glob_dooffs.c │ │ ├── 40-glob_err.c │ │ ├── 40-glob_mark.c │ │ ├── 40-glob_nocheck.c │ │ ├── 40-glob_noescape.c │ │ ├── 40-glob_nosort.c │ │ ├── Makefile │ │ ├── globdir_test.h │ │ └── runtest.sh ├── mini.c │ ├── .gitignore │ ├── .gitmodules │ ├── README.pod │ ├── mini.c │ ├── mini.h │ └── t │ │ ├── .gitignore │ │ ├── 01-sanity.c │ │ ├── 10-basic.c │ │ ├── 10-lookup.c │ │ ├── 90-smoke.c │ │ └── Makefile ├── tap.c │ ├── .gitignore │ ├── README.pod │ ├── t │ │ ├── .gitignore │ │ ├── 01-sanity.c │ │ ├── 10-basic.c │ │ ├── Makefile │ │ └── expected │ │ │ └── 10-basic.t.out │ └── tap.c └── update ├── lib ├── Makefile ├── pacutils.c ├── pacutils.h └── pacutils │ ├── config-defaults.h │ ├── config.c │ ├── config.h │ ├── depends.c │ ├── depends.h │ ├── log.c │ ├── log.h │ ├── mtree.c │ ├── mtree.h │ ├── ui.c │ ├── ui.h │ ├── uix.c │ ├── uix.h │ ├── util.c │ └── util.h ├── src ├── .gitignore ├── Makefile ├── config-defaults.h ├── paccapability.c ├── paccheck.c ├── pacconf.c ├── pacfile.c ├── pacinfo.c ├── pacini.c ├── paclock.c ├── paclog.c ├── pacrepairdb.c ├── pacrepairfile.c ├── pacreport.c ├── pacsift.c ├── pacsync.c └── pactrans.c └── t ├── .gitignore ├── .proverc ├── 10-basename.c ├── 10-config-basic.c ├── 10-filelist_contains_path.c ├── 10-log-action-parse.c ├── 10-log-reader-basic.c ├── 10-log-transaction-parse.c ├── 10-mtree-basic.c ├── 10-parse-datetime.c ├── 10-pathcmp.c ├── 10-strreplace.c ├── 10-util-read-list.c ├── 20-config-includes.c ├── 20-config-root-inheritance.c ├── 30-config-sysroot.c ├── 40-ui-cb-download-progress.c ├── 99-pu_list_shift.c ├── Makefile ├── pacutils_test.h └── runtest.sh /.astylerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/.astylerc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/Makefile -------------------------------------------------------------------------------- /README.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/README.pod -------------------------------------------------------------------------------- /doc/.gitignore: -------------------------------------------------------------------------------- 1 | *.1 2 | *.3 3 | *.8 4 | -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/paccapability.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/doc/paccapability.pod -------------------------------------------------------------------------------- /doc/paccheck.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/doc/paccheck.pod -------------------------------------------------------------------------------- /doc/pacconf.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/doc/pacconf.pod -------------------------------------------------------------------------------- /doc/pacfile.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/doc/pacfile.pod -------------------------------------------------------------------------------- /doc/pacinfo.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/doc/pacinfo.pod -------------------------------------------------------------------------------- /doc/pacini.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/doc/pacini.pod -------------------------------------------------------------------------------- /doc/paclock.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/doc/paclock.pod -------------------------------------------------------------------------------- /doc/paclog.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/doc/paclog.pod -------------------------------------------------------------------------------- /doc/pacrepairdb.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/doc/pacrepairdb.pod -------------------------------------------------------------------------------- /doc/pacrepairfile.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/doc/pacrepairfile.pod -------------------------------------------------------------------------------- /doc/pacreport.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/doc/pacreport.pod -------------------------------------------------------------------------------- /doc/pacsift.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/doc/pacsift.pod -------------------------------------------------------------------------------- /doc/pacsync.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/doc/pacsync.pod -------------------------------------------------------------------------------- /doc/pactrans.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/doc/pactrans.pod -------------------------------------------------------------------------------- /doc/pacutils-mtree.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/doc/pacutils-mtree.pod -------------------------------------------------------------------------------- /doc/pacutils-sysroot.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/doc/pacutils-sysroot.pod -------------------------------------------------------------------------------- /doc/pacutils-uix.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/doc/pacutils-uix.pod -------------------------------------------------------------------------------- /ext/globdir.c/.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | -------------------------------------------------------------------------------- /ext/globdir.c/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/ext/globdir.c/COPYING -------------------------------------------------------------------------------- /ext/globdir.c/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/ext/globdir.c/Makefile -------------------------------------------------------------------------------- /ext/globdir.c/README.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/ext/globdir.c/README.pod -------------------------------------------------------------------------------- /ext/globdir.c/ext/tap.c/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ext/globdir.c/ext/tap.c/README.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/ext/globdir.c/ext/tap.c/README.pod -------------------------------------------------------------------------------- /ext/globdir.c/ext/tap.c/t/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/ext/globdir.c/ext/tap.c/t/.gitignore -------------------------------------------------------------------------------- /ext/globdir.c/ext/tap.c/t/01-sanity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/ext/globdir.c/ext/tap.c/t/01-sanity.c -------------------------------------------------------------------------------- /ext/globdir.c/ext/tap.c/t/10-basic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/ext/globdir.c/ext/tap.c/t/10-basic.c -------------------------------------------------------------------------------- /ext/globdir.c/ext/tap.c/t/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/ext/globdir.c/ext/tap.c/t/Makefile -------------------------------------------------------------------------------- /ext/globdir.c/ext/tap.c/t/expected/10-basic.t.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/ext/globdir.c/ext/tap.c/t/expected/10-basic.t.out -------------------------------------------------------------------------------- /ext/globdir.c/ext/tap.c/tap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/ext/globdir.c/ext/tap.c/tap.c -------------------------------------------------------------------------------- /ext/globdir.c/globdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/ext/globdir.c/globdir.c -------------------------------------------------------------------------------- /ext/globdir.c/globdir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/ext/globdir.c/globdir.h -------------------------------------------------------------------------------- /ext/globdir.c/t/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/ext/globdir.c/t/.gitignore -------------------------------------------------------------------------------- /ext/globdir.c/t/.proverc: -------------------------------------------------------------------------------- 1 | --exec=./runtest.sh 2 | -------------------------------------------------------------------------------- /ext/globdir.c/t/01-sanity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/ext/globdir.c/t/01-sanity.c -------------------------------------------------------------------------------- /ext/globdir.c/t/10-escape_pattern.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/ext/globdir.c/t/10-escape_pattern.c -------------------------------------------------------------------------------- /ext/globdir.c/t/10-is_pattern.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/ext/globdir.c/t/10-is_pattern.c -------------------------------------------------------------------------------- /ext/globdir.c/t/10-split_pattern.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/ext/globdir.c/t/10-split_pattern.c -------------------------------------------------------------------------------- /ext/globdir.c/t/20-globat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/ext/globdir.c/t/20-globat.c -------------------------------------------------------------------------------- /ext/globdir.c/t/30-globdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/ext/globdir.c/t/30-globdir.c -------------------------------------------------------------------------------- /ext/globdir.c/t/40-glob_append.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/ext/globdir.c/t/40-glob_append.c -------------------------------------------------------------------------------- /ext/globdir.c/t/40-glob_dooffs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/ext/globdir.c/t/40-glob_dooffs.c -------------------------------------------------------------------------------- /ext/globdir.c/t/40-glob_err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/ext/globdir.c/t/40-glob_err.c -------------------------------------------------------------------------------- /ext/globdir.c/t/40-glob_mark.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/ext/globdir.c/t/40-glob_mark.c -------------------------------------------------------------------------------- /ext/globdir.c/t/40-glob_nocheck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/ext/globdir.c/t/40-glob_nocheck.c -------------------------------------------------------------------------------- /ext/globdir.c/t/40-glob_noescape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/ext/globdir.c/t/40-glob_noescape.c -------------------------------------------------------------------------------- /ext/globdir.c/t/40-glob_nosort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/ext/globdir.c/t/40-glob_nosort.c -------------------------------------------------------------------------------- /ext/globdir.c/t/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/ext/globdir.c/t/Makefile -------------------------------------------------------------------------------- /ext/globdir.c/t/globdir_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/ext/globdir.c/t/globdir_test.h -------------------------------------------------------------------------------- /ext/globdir.c/t/runtest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/ext/globdir.c/t/runtest.sh -------------------------------------------------------------------------------- /ext/mini.c/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.o 3 | *.swp 4 | -------------------------------------------------------------------------------- /ext/mini.c/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/ext/mini.c/.gitmodules -------------------------------------------------------------------------------- /ext/mini.c/README.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/ext/mini.c/README.pod -------------------------------------------------------------------------------- /ext/mini.c/mini.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/ext/mini.c/mini.c -------------------------------------------------------------------------------- /ext/mini.c/mini.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/ext/mini.c/mini.h -------------------------------------------------------------------------------- /ext/mini.c/t/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/ext/mini.c/t/.gitignore -------------------------------------------------------------------------------- /ext/mini.c/t/01-sanity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/ext/mini.c/t/01-sanity.c -------------------------------------------------------------------------------- /ext/mini.c/t/10-basic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/ext/mini.c/t/10-basic.c -------------------------------------------------------------------------------- /ext/mini.c/t/10-lookup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/ext/mini.c/t/10-lookup.c -------------------------------------------------------------------------------- /ext/mini.c/t/90-smoke.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/ext/mini.c/t/90-smoke.c -------------------------------------------------------------------------------- /ext/mini.c/t/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/ext/mini.c/t/Makefile -------------------------------------------------------------------------------- /ext/tap.c/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ext/tap.c/README.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/ext/tap.c/README.pod -------------------------------------------------------------------------------- /ext/tap.c/t/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/ext/tap.c/t/.gitignore -------------------------------------------------------------------------------- /ext/tap.c/t/01-sanity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/ext/tap.c/t/01-sanity.c -------------------------------------------------------------------------------- /ext/tap.c/t/10-basic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/ext/tap.c/t/10-basic.c -------------------------------------------------------------------------------- /ext/tap.c/t/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/ext/tap.c/t/Makefile -------------------------------------------------------------------------------- /ext/tap.c/t/expected/10-basic.t.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/ext/tap.c/t/expected/10-basic.t.out -------------------------------------------------------------------------------- /ext/tap.c/tap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/ext/tap.c/tap.c -------------------------------------------------------------------------------- /ext/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/ext/update -------------------------------------------------------------------------------- /lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/lib/Makefile -------------------------------------------------------------------------------- /lib/pacutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/lib/pacutils.c -------------------------------------------------------------------------------- /lib/pacutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/lib/pacutils.h -------------------------------------------------------------------------------- /lib/pacutils/config-defaults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/lib/pacutils/config-defaults.h -------------------------------------------------------------------------------- /lib/pacutils/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/lib/pacutils/config.c -------------------------------------------------------------------------------- /lib/pacutils/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/lib/pacutils/config.h -------------------------------------------------------------------------------- /lib/pacutils/depends.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/lib/pacutils/depends.c -------------------------------------------------------------------------------- /lib/pacutils/depends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/lib/pacutils/depends.h -------------------------------------------------------------------------------- /lib/pacutils/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/lib/pacutils/log.c -------------------------------------------------------------------------------- /lib/pacutils/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/lib/pacutils/log.h -------------------------------------------------------------------------------- /lib/pacutils/mtree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/lib/pacutils/mtree.c -------------------------------------------------------------------------------- /lib/pacutils/mtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/lib/pacutils/mtree.h -------------------------------------------------------------------------------- /lib/pacutils/ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/lib/pacutils/ui.c -------------------------------------------------------------------------------- /lib/pacutils/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/lib/pacutils/ui.h -------------------------------------------------------------------------------- /lib/pacutils/uix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/lib/pacutils/uix.c -------------------------------------------------------------------------------- /lib/pacutils/uix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/lib/pacutils/uix.h -------------------------------------------------------------------------------- /lib/pacutils/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/lib/pacutils/util.c -------------------------------------------------------------------------------- /lib/pacutils/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/lib/pacutils/util.h -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/config-defaults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/src/config-defaults.h -------------------------------------------------------------------------------- /src/paccapability.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/src/paccapability.c -------------------------------------------------------------------------------- /src/paccheck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/src/paccheck.c -------------------------------------------------------------------------------- /src/pacconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/src/pacconf.c -------------------------------------------------------------------------------- /src/pacfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/src/pacfile.c -------------------------------------------------------------------------------- /src/pacinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/src/pacinfo.c -------------------------------------------------------------------------------- /src/pacini.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/src/pacini.c -------------------------------------------------------------------------------- /src/paclock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/src/paclock.c -------------------------------------------------------------------------------- /src/paclog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/src/paclog.c -------------------------------------------------------------------------------- /src/pacrepairdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/src/pacrepairdb.c -------------------------------------------------------------------------------- /src/pacrepairfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/src/pacrepairfile.c -------------------------------------------------------------------------------- /src/pacreport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/src/pacreport.c -------------------------------------------------------------------------------- /src/pacsift.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/src/pacsift.c -------------------------------------------------------------------------------- /src/pacsync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/src/pacsync.c -------------------------------------------------------------------------------- /src/pactrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/src/pactrans.c -------------------------------------------------------------------------------- /t/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/t/.gitignore -------------------------------------------------------------------------------- /t/.proverc: -------------------------------------------------------------------------------- 1 | --exec=./runtest.sh 2 | -------------------------------------------------------------------------------- /t/10-basename.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/t/10-basename.c -------------------------------------------------------------------------------- /t/10-config-basic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/t/10-config-basic.c -------------------------------------------------------------------------------- /t/10-filelist_contains_path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/t/10-filelist_contains_path.c -------------------------------------------------------------------------------- /t/10-log-action-parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/t/10-log-action-parse.c -------------------------------------------------------------------------------- /t/10-log-reader-basic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/t/10-log-reader-basic.c -------------------------------------------------------------------------------- /t/10-log-transaction-parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/t/10-log-transaction-parse.c -------------------------------------------------------------------------------- /t/10-mtree-basic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/t/10-mtree-basic.c -------------------------------------------------------------------------------- /t/10-parse-datetime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/t/10-parse-datetime.c -------------------------------------------------------------------------------- /t/10-pathcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/t/10-pathcmp.c -------------------------------------------------------------------------------- /t/10-strreplace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/t/10-strreplace.c -------------------------------------------------------------------------------- /t/10-util-read-list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/t/10-util-read-list.c -------------------------------------------------------------------------------- /t/20-config-includes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/t/20-config-includes.c -------------------------------------------------------------------------------- /t/20-config-root-inheritance.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/t/20-config-root-inheritance.c -------------------------------------------------------------------------------- /t/30-config-sysroot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/t/30-config-sysroot.c -------------------------------------------------------------------------------- /t/40-ui-cb-download-progress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/t/40-ui-cb-download-progress.c -------------------------------------------------------------------------------- /t/99-pu_list_shift.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/t/99-pu_list_shift.c -------------------------------------------------------------------------------- /t/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/t/Makefile -------------------------------------------------------------------------------- /t/pacutils_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/t/pacutils_test.h -------------------------------------------------------------------------------- /t/runtest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgregory/pacutils/HEAD/t/runtest.sh --------------------------------------------------------------------------------