diff options
author | John Turner <jturner.usa+gentoo@gmail.com> | 2025-09-18 04:44:32 -0400 |
---|---|---|
committer | John Turner <jturner.usa+gentoo@gmail.com> | 2025-09-18 04:49:42 -0400 |
commit | da614aa9962eb00dec32c87a651c9ac6947bbc44 (patch) | |
tree | f095cb55f796e67ba2dec83001d2c7290f39f789 /sec-keys | |
parent | 42e097cc77abc5194a0a9d78089b3489ca4ef8ad (diff) | |
download | ebuilds-master.tar.gz |
Diffstat (limited to 'sec-keys')
-rw-r--r-- | sec-keys/jturnerusa/Manifest | 1 | ||||
-rw-r--r-- | sec-keys/jturnerusa/jturnerusa-0.ebuild | 23 |
2 files changed, 24 insertions, 0 deletions
diff --git a/sec-keys/jturnerusa/Manifest b/sec-keys/jturnerusa/Manifest new file mode 100644 index 0000000..56debd4 --- /dev/null +++ b/sec-keys/jturnerusa/Manifest @@ -0,0 +1 @@ +DIST jturnerusa-0.asc 80 BLAKE2B 6e349dec8f90816166d8446dac11f2e43dab1c0867a938dc60781a8738eacdc0ef07cfa84704d88dee5c32442b0f175cc1a4edb55089b9318861ed9cc6bdc506 SHA512 6a1734b7d19bd0a575c673cd6fb9114cb3a3ffc4bf2143edaa3fb13b8ae6c304674e5cd15423e95dfc5be9b33c3edae135086d94e1e96194bc642cf1a6ddc703 diff --git a/sec-keys/jturnerusa/jturnerusa-0.ebuild b/sec-keys/jturnerusa/jturnerusa-0.ebuild new file mode 100644 index 0000000..b9992a2 --- /dev/null +++ b/sec-keys/jturnerusa/jturnerusa-0.ebuild @@ -0,0 +1,23 @@ +# Copyright 2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="SSH key for John Turner." +HOMEPAGE="https://jturnerusa.dev" +SRC_URI="https://jturnerusa.dev/keys/ssh/gentoo-pc -> ${P}.asc" +S=${T} + +LICENSE="" +SLOT="0" +KEYWORDS="~amd64" + +src_compile() { + local principal="jturner.usa@gmail.com" + echo "${principal} $(cat ${DISTDIR}/${P}.asc)" > ${S}/jturnerusa.asc || die +} + +src_install() { + insinto /usr/share/ssh-keys + newins ${S}/jturnerusa.asc ${PN}.asc +} |