summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorgy Yakovlev <gyakovlev@gentoo.org>2023-01-19 14:18:49 -0800
committerGeorgy Yakovlev <gyakovlev@gentoo.org>2023-01-19 14:24:08 -0800
commit83f7493e4f294330d822ab73b32d568c6c8dbca1 (patch)
tree34c1b0e47738534064cdddeff5f65e9c0d5b53e9 /app-crypt/minisign
parentdev-ml/facile: bump EAPI to 8 (diff)
downloadgentoo-83f7493e4f294330d822ab73b32d568c6c8dbca1.tar.gz
gentoo-83f7493e4f294330d822ab73b32d568c6c8dbca1.tar.bz2
gentoo-83f7493e4f294330d822ab73b32d568c6c8dbca1.zip
app-crypt/minisign: drop 0.9
Signed-off-by: Georgy Yakovlev <gyakovlev@gentoo.org>
Diffstat (limited to 'app-crypt/minisign')
-rw-r--r--app-crypt/minisign/Manifest1
-rw-r--r--app-crypt/minisign/minisign-0.9.ebuild30
2 files changed, 0 insertions, 31 deletions
diff --git a/app-crypt/minisign/Manifest b/app-crypt/minisign/Manifest
index 9ad31126e5db..6eaf975d7bfb 100644
--- a/app-crypt/minisign/Manifest
+++ b/app-crypt/minisign/Manifest
@@ -1,2 +1 @@
DIST minisign-0.10.tar.gz 18242 BLAKE2B 8b71f01ced4be00c38937e7db5ace2c7e348410a9381f6cc27374827fa0a9da70cca96153af199880ccd5f2265e18a7f21d074f877e0e21ca797bbba2bf5cbf5 SHA512 6a38500ed896c17b100bca47443f9806debe6e44d3ce09189f5f8913a41d4913434397175d1caa770fb0cc0918078dfc71c01b82b9bf919fdfba00434f4ce100
-DIST minisign-0.9.tar.gz 15664 BLAKE2B f9f358a27b069e752894326932a8c5c51f308ade49ed7088a5f693b4e8327639fc5578607f348994a7ab7484091ed93190894c1965cadbbbf2a27e939ccc117b SHA512 7970f3e72ff759f3f02416de5d6035e1c8dd4e92ea718083cc5091c7e2355b59c4e178c60ca934985ba1e1afcd970967d4fb39a434ba54b140f3fc9be661253d
diff --git a/app-crypt/minisign/minisign-0.9.ebuild b/app-crypt/minisign/minisign-0.9.ebuild
deleted file mode 100644
index 19f80e60bbd4..000000000000
--- a/app-crypt/minisign/minisign-0.9.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 2019-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake
-
-DESCRIPTION="Dead simple tool to sign files and verify signatures"
-HOMEPAGE="https://github.com/jedisct1/minisign"
-
-if [[ ${PV} == "9999" ]]; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/jedisct1/${PN}.git"
-else
- SRC_URI="https://github.com/jedisct1/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86"
-fi
-
-LICENSE="ISC"
-SLOT="0"
-
-IUSE=""
-
-DEPEND=">=dev-libs/libsodium-1.0.16:=[-minimal]"
-RDEPEND="${DEPEND}"
-
-src_configure() {
- local mycmakeargs=( -DCMAKE_STRIP="${EPREFIX}/bin/true" )
- cmake_src_configure
-}