summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Smith <matthew@gentoo.org>2024-03-24 15:28:06 +0000
committerMatthew Smith <matthew@gentoo.org>2024-03-24 16:24:35 +0000
commit0fb3b82169864de479a79ec3dfa54f7c5b4afdec (patch)
treeef632468696cd6bdbda8067e0c9db205bd93a687 /app-crypt
parentmedia-gfx/renderdoc: fix UnusedLocalUse (diff)
downloadgentoo-0fb3b82169864de479a79ec3dfa54f7c5b4afdec.tar.gz
gentoo-0fb3b82169864de479a79ec3dfa54f7c5b4afdec.tar.bz2
gentoo-0fb3b82169864de479a79ec3dfa54f7c5b4afdec.zip
app-crypt/mkp224o: drop 1.6.1-r1
Signed-off-by: Matthew Smith <matthew@gentoo.org>
Diffstat (limited to 'app-crypt')
-rw-r--r--app-crypt/mkp224o/Manifest1
-rw-r--r--app-crypt/mkp224o/mkp224o-1.6.1-r1.ebuild36
2 files changed, 0 insertions, 37 deletions
diff --git a/app-crypt/mkp224o/Manifest b/app-crypt/mkp224o/Manifest
index bf211390453a..a4a9f4a441f2 100644
--- a/app-crypt/mkp224o/Manifest
+++ b/app-crypt/mkp224o/Manifest
@@ -1,3 +1,2 @@
-DIST mkp224o-1.6.1-src.tar.gz 1387615 BLAKE2B 271424dcee44b5b1e1a35346a0cc1c37ee5d430231fe93e0b936ac994c892f0406ea361be763732db8a8397684ecad70e26c34f5553a415e7ed0592417672310 SHA512 d0c21ee5fb5f7b2950e1c39af5dc62b1e26aef0917b53169e9c3f9a99a7febe70bb2f96ada612c71bdbdbf8cad9c1f407d175af49fca40eedd68bbe8112970a5
DIST mkp224o-1.7.0-src.tar.gz 1388765 BLAKE2B 63b99d29ec1f1e971926417c14a77aa32f620dc0983eec4761ac9a40aa55ff6fb6182554377b4629e90c157de6eee25c9fac7250b55e51e1c7d68e705631d8d5 SHA512 3585a6708b32420f594b4aa27db2ad4aaeb84dedd5b6109b3440b575e4573909079f0ac477b709af6b5e33084b2098cff5fb59101155d9e905da2caf215856c8
DIST mkp224o-1.7.0-src.tar.gz.sig 585 BLAKE2B 0454257e35fd9433374551416ece13fd5f7e0ae5fc50c4ad10d336768afbde231090bf1355c750f7302f753f2a2dcc25be6433afc18ad4d015cad9aadd0d5fa3 SHA512 906972a347e8b8111adf80bd358da007b71d8deab2d55a6f78d84793f1f91001d0e807d0f09fe429d03bc3a0ea610792ea58bdcd347fb0d1a360600f1be7df2e
diff --git a/app-crypt/mkp224o/mkp224o-1.6.1-r1.ebuild b/app-crypt/mkp224o/mkp224o-1.6.1-r1.ebuild
deleted file mode 100644
index 1185aeba051a..000000000000
--- a/app-crypt/mkp224o/mkp224o-1.6.1-r1.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DESCRIPTION="Vanity address generator for v3 Tor hidden service addresses"
-HOMEPAGE="https://github.com/cathugger/mkp224o"
-SRC_URI="https://github.com/cathugger/${PN}/releases/download/v${PV}/${PN}-${PV}-src.tar.gz"
-
-LICENSE="CC0-1.0"
-SLOT="0"
-KEYWORDS="amd64"
-IUSE="cpu_flags_x86_sse2 pcre"
-
-DEPEND="
- dev-libs/libsodium:=
- pcre? ( dev-libs/libpcre2:= )
-"
-RDEPEND="${DEPEND}"
-
-DOCS=( OPTIMISATION.txt README.md )
-
-src_configure() {
- local myeconfargs=(
- --enable-regex=$(usex pcre)
- --enable-statistics
- )
- use cpu_flags_x86_sse2 && myeconfargs+=( --enable-donna-sse2 )
-
- econf "${myeconfargs[@]}"
-}
-
-src_install() {
- einstalldocs
- dobin ${PN}
-}