commit: 3d0bd69ccd4a4752aa957244ae867345ce3f05d8
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 27 17:24:49 2025 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Dec 27 17:24:49 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d0bd69c
app-crypt/sequoia-sqv: drop 1.3.0
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-crypt/sequoia-sqv/sequoia-sqv-1.3.0.ebuild | 81 --------------------------
1 file changed, 81 deletions(-)
diff --git a/app-crypt/sequoia-sqv/sequoia-sqv-1.3.0.ebuild
b/app-crypt/sequoia-sqv/sequoia-sqv-1.3.0.ebuild
deleted file mode 100644
index 948e8cb08b44..000000000000
--- a/app-crypt/sequoia-sqv/sequoia-sqv-1.3.0.ebuild
+++ /dev/null
@@ -1,81 +0,0 @@
-# Copyright 2021-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-CRATES="
-"
-
-LLVM_COMPAT=( {17..20} )
-RUST_NEEDS_LLVM=1
-
-inherit bash-completion-r1 cargo llvm-r1
-
-DESCRIPTION="A simple OpenPGP signature verification program"
-HOMEPAGE="https://sequoia-pgp.org/ https://gitlab.com/sequoia-pgp/sequoia-sqv"
-SRC_URI="
-
https://gitlab.com/sequoia-pgp/sequoia-sqv/-/archive/v${PV}/${PN}-v${PV}.tar.bz2
- ${CARGO_CRATE_URIS}
-"
-SRC_URI+="
https://dev.gentoo.org/~sam/distfiles/${CATEGORY}/${PN}/${P}-crates.tar.xz"
-S="${WORKDIR}"/${PN}-v${PV}
-
-LICENSE="GPL-2+"
-# Dependent crate licenses
-LICENSE+="
- Apache-2.0 BSD Boost-1.0 CC0-1.0 ISC LGPL-2+ MIT Unicode-3.0
- || ( GPL-2 GPL-3 LGPL-3 )
-"
-SLOT="0"
-KEYWORDS="amd64 ~ppc64"
-
-QA_FLAGS_IGNORED="usr/bin/sqv"
-
-COMMON_DEPEND="
- dev-libs/gmp:=
- dev-libs/nettle:=
-"
-
-DEPEND="
- ${COMMON_DEPEND}
-"
-RDEPEND="${COMMON_DEPEND}"
-# Needed for bindgen
-BDEPEND="
- $(llvm_gen_dep '
- llvm-core/clang:${LLVM_SLOT}
- ')
- virtual/pkgconfig
-"
-
-pkg_setup() {
- llvm-r1_pkg_setup
- rust_pkg_setup
-}
-
-src_compile() {
- # Set this here so that it doesn't change if we run tests
- # and cause a recompilation.
- asset_dir="${T}"/assets
- export ASSET_OUT_DIR="${asset_dir}"
-
- # Setting CARGO_TARGET_DIR is required to have the build system
- # create the bash and zsh completion files.
- export CARGO_TARGET_DIR="${S}/target"
-
- cargo_src_compile
-}
-
-src_install() {
- cargo_src_install
-
- newbashcomp "${asset_dir}"/shell-completions/sqv.bash sqv
-
- doman "${asset_dir}"/man-pages/sqv.1
-
- insinto /usr/share/zsh/site-functions
- doins "${asset_dir}"/shell-completions/_sqv
-
- insinto /usr/share/fish/vendor_completions.d
- doins "${asset_dir}"/shell-completions/sqv.fish
-}