├── .github └── workflows │ └── check.yml ├── .travis.yml ├── COPYING ├── COPYING.README ├── LICENSE-APACHE ├── LICENSE-MIT ├── Makefile-decls.am ├── Makefile.am ├── README.md ├── autogen.sh ├── configure.ac ├── git.mk ├── man ├── Makefile-man.am ├── git-evtag.xml └── meson.build ├── meson.build ├── meson_options.txt ├── packaging ├── Makefile.dist-packaging ├── builddeps.sh ├── git-evtag.spec.in ├── meson-compat-install-symlink.sh └── rpmbuild-cwd ├── rust ├── .gitignore ├── Cargo.toml ├── Makefile-inc.am ├── meson.build ├── rustfmt.toml └── src │ └── main.rs ├── src ├── Makefile-git-evtag.am ├── git-evtag-compute-py ├── git-evtag.c └── meson.build └── tests ├── Makefile-tests.am ├── git-evtag-compute-py ├── gpghome ├── key1.asc ├── key2.asc ├── key3.asc ├── meson.build ├── secring.gpg ├── trustdb.gpg └── trusted │ ├── meson.build │ └── pubring.gpg ├── libtest.sh ├── meson.build ├── tap-test ├── tap.test.in └── test-basic.sh /.github/workflows/check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwalters/git-evtag/HEAD/.github/workflows/check.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwalters/git-evtag/HEAD/.travis.yml -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwalters/git-evtag/HEAD/COPYING -------------------------------------------------------------------------------- /COPYING.README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwalters/git-evtag/HEAD/COPYING.README -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwalters/git-evtag/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwalters/git-evtag/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /Makefile-decls.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwalters/git-evtag/HEAD/Makefile-decls.am -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwalters/git-evtag/HEAD/Makefile.am -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwalters/git-evtag/HEAD/README.md -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwalters/git-evtag/HEAD/autogen.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwalters/git-evtag/HEAD/configure.ac -------------------------------------------------------------------------------- /git.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwalters/git-evtag/HEAD/git.mk -------------------------------------------------------------------------------- /man/Makefile-man.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwalters/git-evtag/HEAD/man/Makefile-man.am -------------------------------------------------------------------------------- /man/git-evtag.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwalters/git-evtag/HEAD/man/git-evtag.xml -------------------------------------------------------------------------------- /man/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwalters/git-evtag/HEAD/man/meson.build -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwalters/git-evtag/HEAD/meson.build -------------------------------------------------------------------------------- /meson_options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwalters/git-evtag/HEAD/meson_options.txt -------------------------------------------------------------------------------- /packaging/Makefile.dist-packaging: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwalters/git-evtag/HEAD/packaging/Makefile.dist-packaging -------------------------------------------------------------------------------- /packaging/builddeps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwalters/git-evtag/HEAD/packaging/builddeps.sh -------------------------------------------------------------------------------- /packaging/git-evtag.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwalters/git-evtag/HEAD/packaging/git-evtag.spec.in -------------------------------------------------------------------------------- /packaging/meson-compat-install-symlink.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwalters/git-evtag/HEAD/packaging/meson-compat-install-symlink.sh -------------------------------------------------------------------------------- /packaging/rpmbuild-cwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwalters/git-evtag/HEAD/packaging/rpmbuild-cwd -------------------------------------------------------------------------------- /rust/.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /rust/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwalters/git-evtag/HEAD/rust/Cargo.toml -------------------------------------------------------------------------------- /rust/Makefile-inc.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwalters/git-evtag/HEAD/rust/Makefile-inc.am -------------------------------------------------------------------------------- /rust/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwalters/git-evtag/HEAD/rust/meson.build -------------------------------------------------------------------------------- /rust/rustfmt.toml: -------------------------------------------------------------------------------- 1 | use_try_shorthand = true 2 | -------------------------------------------------------------------------------- /rust/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwalters/git-evtag/HEAD/rust/src/main.rs -------------------------------------------------------------------------------- /src/Makefile-git-evtag.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwalters/git-evtag/HEAD/src/Makefile-git-evtag.am -------------------------------------------------------------------------------- /src/git-evtag-compute-py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwalters/git-evtag/HEAD/src/git-evtag-compute-py -------------------------------------------------------------------------------- /src/git-evtag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwalters/git-evtag/HEAD/src/git-evtag.c -------------------------------------------------------------------------------- /src/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwalters/git-evtag/HEAD/src/meson.build -------------------------------------------------------------------------------- /tests/Makefile-tests.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwalters/git-evtag/HEAD/tests/Makefile-tests.am -------------------------------------------------------------------------------- /tests/git-evtag-compute-py: -------------------------------------------------------------------------------- 1 | ../src/git-evtag-compute-py -------------------------------------------------------------------------------- /tests/gpghome/key1.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwalters/git-evtag/HEAD/tests/gpghome/key1.asc -------------------------------------------------------------------------------- /tests/gpghome/key2.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwalters/git-evtag/HEAD/tests/gpghome/key2.asc -------------------------------------------------------------------------------- /tests/gpghome/key3.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwalters/git-evtag/HEAD/tests/gpghome/key3.asc -------------------------------------------------------------------------------- /tests/gpghome/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwalters/git-evtag/HEAD/tests/gpghome/meson.build -------------------------------------------------------------------------------- /tests/gpghome/secring.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwalters/git-evtag/HEAD/tests/gpghome/secring.gpg -------------------------------------------------------------------------------- /tests/gpghome/trustdb.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwalters/git-evtag/HEAD/tests/gpghome/trustdb.gpg -------------------------------------------------------------------------------- /tests/gpghome/trusted/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwalters/git-evtag/HEAD/tests/gpghome/trusted/meson.build -------------------------------------------------------------------------------- /tests/gpghome/trusted/pubring.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwalters/git-evtag/HEAD/tests/gpghome/trusted/pubring.gpg -------------------------------------------------------------------------------- /tests/libtest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwalters/git-evtag/HEAD/tests/libtest.sh -------------------------------------------------------------------------------- /tests/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwalters/git-evtag/HEAD/tests/meson.build -------------------------------------------------------------------------------- /tests/tap-test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwalters/git-evtag/HEAD/tests/tap-test -------------------------------------------------------------------------------- /tests/tap.test.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwalters/git-evtag/HEAD/tests/tap.test.in -------------------------------------------------------------------------------- /tests/test-basic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwalters/git-evtag/HEAD/tests/test-basic.sh --------------------------------------------------------------------------------