* [gentoo-commits] repo/gentoo:master commit in: app-crypt/mkp224o/
@ 2022-02-13 20:36 Matthew Smith
0 siblings, 0 replies; 9+ messages in thread
From: Matthew Smith @ 2022-02-13 20:36 UTC (permalink / raw
To: gentoo-commits
commit: d334406dd8d20eee8386128f886599d56bc7002c
Author: Matthew Smith <matthew <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 13 20:36:19 2022 +0000
Commit: Matthew Smith <matthew <AT> gentoo <DOT> org>
CommitDate: Sun Feb 13 20:36:35 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d334406d
app-crypt/mkp224o: initial import at 1.5.0
Signed-off-by: Matthew Smith <matthew <AT> gentoo.org>
app-crypt/mkp224o/Manifest | 1 +
app-crypt/mkp224o/metadata.xml | 14 +++++++++++++
app-crypt/mkp224o/mkp224o-1.5.0.ebuild | 36 ++++++++++++++++++++++++++++++++++
3 files changed, 51 insertions(+)
diff --git a/app-crypt/mkp224o/Manifest b/app-crypt/mkp224o/Manifest
new file mode 100644
index 000000000000..7048da480d16
--- /dev/null
+++ b/app-crypt/mkp224o/Manifest
@@ -0,0 +1 @@
+DIST mkp224o-1.5.0-src.tar.gz 1378324 BLAKE2B 19d38fbf23328607fa428ec9329cdc909b210b4235d85e14ff372347c9b408ecf22d41dac7122bdae06725d7bca0c3d53c81cc27272c47517e714e9b8e0625dd SHA512 aa5adc91e695dbfd8ece5fdfe3ca370056d4390a5186326b35ee37402040fa24675ede5389c48b79a1e57b624b86024ff72957741fef175602f7721f20c5cc14
diff --git a/app-crypt/mkp224o/metadata.xml b/app-crypt/mkp224o/metadata.xml
new file mode 100644
index 000000000000..6bbe7e963edf
--- /dev/null
+++ b/app-crypt/mkp224o/metadata.xml
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>matthew@gentoo.org</email>
+ <name>Matthew Smith</name>
+ </maintainer>
+ <use>
+ <flag name="pcre2">Search with a regex instead of prefix/suffix matching</flag>
+ </use>
+ <upstream>
+ <remote-id type="github">cathugger/mkp224o</remote-id>
+ </upstream>
+</pkgmetadata>
diff --git a/app-crypt/mkp224o/mkp224o-1.5.0.ebuild b/app-crypt/mkp224o/mkp224o-1.5.0.ebuild
new file mode 100644
index 000000000000..0c0578e589f5
--- /dev/null
+++ b/app-crypt/mkp224o/mkp224o-1.5.0.ebuild
@@ -0,0 +1,36 @@
+# 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 pcre2"
+
+DEPEND="
+ dev-libs/libsodium:=
+ pcre2? ( dev-libs/libpcre2:= )
+"
+RDEPEND="${DEPEND}"
+
+DOCS=( OPTIMISATION.txt README.txt )
+
+src_configure() {
+ local myeconfargs=(
+ --enable-regex=$(usex pcre2)
+ --enable-statistics
+ )
+ use cpu_flags_x86_sse2 && myeconfargs+=( --enable-donna-sse2 )
+
+ econf "${myeconfargs[@]}"
+}
+
+src_install() {
+ einstalldocs
+ dobin ${PN}
+}
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-crypt/mkp224o/
@ 2022-03-13 10:32 Jakov Smolić
0 siblings, 0 replies; 9+ messages in thread
From: Jakov Smolić @ 2022-03-13 10:32 UTC (permalink / raw
To: gentoo-commits
commit: 7cc486dcce345ee147bc37aa1d022ce66bbc8667
Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 13 10:32:15 2022 +0000
Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Sun Mar 13 10:32:15 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7cc486dc
app-crypt/mkp224o: Stabilize 1.5.0 amd64, #835011
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
app-crypt/mkp224o/mkp224o-1.5.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-crypt/mkp224o/mkp224o-1.5.0.ebuild b/app-crypt/mkp224o/mkp224o-1.5.0.ebuild
index 0c0578e589f5..4e71a3ec031b 100644
--- a/app-crypt/mkp224o/mkp224o-1.5.0.ebuild
+++ b/app-crypt/mkp224o/mkp224o-1.5.0.ebuild
@@ -9,7 +9,7 @@ SRC_URI="https://github.com/cathugger/${PN}/releases/download/v${PV}/${PN}-${PV}
LICENSE="CC0-1.0"
SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
IUSE="cpu_flags_x86_sse2 pcre2"
DEPEND="
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-crypt/mkp224o/
@ 2022-07-02 9:54 Matthew Smith
0 siblings, 0 replies; 9+ messages in thread
From: Matthew Smith @ 2022-07-02 9:54 UTC (permalink / raw
To: gentoo-commits
commit: 9645f0cf2f75834ae139ab8974cedc2395fa5bf1
Author: Matthew Smith <matthew <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 2 09:45:55 2022 +0000
Commit: Matthew Smith <matthew <AT> gentoo <DOT> org>
CommitDate: Sat Jul 2 09:45:55 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9645f0cf
app-crypt/mkp224o: add 1.6.1
Signed-off-by: Matthew Smith <matthew <AT> gentoo.org>
app-crypt/mkp224o/Manifest | 1 +
app-crypt/mkp224o/mkp224o-1.6.1.ebuild | 36 ++++++++++++++++++++++++++++++++++
2 files changed, 37 insertions(+)
diff --git a/app-crypt/mkp224o/Manifest b/app-crypt/mkp224o/Manifest
index 7048da480d16..4bd4fdc62350 100644
--- a/app-crypt/mkp224o/Manifest
+++ b/app-crypt/mkp224o/Manifest
@@ -1 +1,2 @@
DIST mkp224o-1.5.0-src.tar.gz 1378324 BLAKE2B 19d38fbf23328607fa428ec9329cdc909b210b4235d85e14ff372347c9b408ecf22d41dac7122bdae06725d7bca0c3d53c81cc27272c47517e714e9b8e0625dd SHA512 aa5adc91e695dbfd8ece5fdfe3ca370056d4390a5186326b35ee37402040fa24675ede5389c48b79a1e57b624b86024ff72957741fef175602f7721f20c5cc14
+DIST mkp224o-1.6.1-src.tar.gz 1387615 BLAKE2B 271424dcee44b5b1e1a35346a0cc1c37ee5d430231fe93e0b936ac994c892f0406ea361be763732db8a8397684ecad70e26c34f5553a415e7ed0592417672310 SHA512 d0c21ee5fb5f7b2950e1c39af5dc62b1e26aef0917b53169e9c3f9a99a7febe70bb2f96ada612c71bdbdbf8cad9c1f407d175af49fca40eedd68bbe8112970a5
diff --git a/app-crypt/mkp224o/mkp224o-1.6.1.ebuild b/app-crypt/mkp224o/mkp224o-1.6.1.ebuild
new file mode 100644
index 000000000000..6a5af08b0f9c
--- /dev/null
+++ b/app-crypt/mkp224o/mkp224o-1.6.1.ebuild
@@ -0,0 +1,36 @@
+# 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 pcre2"
+
+DEPEND="
+ dev-libs/libsodium:=
+ pcre2? ( dev-libs/libpcre2:= )
+"
+RDEPEND="${DEPEND}"
+
+DOCS=( OPTIMISATION.txt README.md )
+
+src_configure() {
+ local myeconfargs=(
+ --enable-regex=$(usex pcre2)
+ --enable-statistics
+ )
+ use cpu_flags_x86_sse2 && myeconfargs+=( --enable-donna-sse2 )
+
+ econf "${myeconfargs[@]}"
+}
+
+src_install() {
+ einstalldocs
+ dobin ${PN}
+}
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-crypt/mkp224o/
@ 2022-07-28 23:06 Sam James
0 siblings, 0 replies; 9+ messages in thread
From: Sam James @ 2022-07-28 23:06 UTC (permalink / raw
To: gentoo-commits
commit: 45749e937b220a8654b714b9944766178bda77c0
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Jul 28 23:05:59 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Jul 28 23:05:59 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=45749e93
app-crypt/mkp224o: Stabilize 1.6.1 amd64, #861755
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-crypt/mkp224o/mkp224o-1.6.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-crypt/mkp224o/mkp224o-1.6.1.ebuild b/app-crypt/mkp224o/mkp224o-1.6.1.ebuild
index 6a5af08b0f9c..bde686797b7b 100644
--- a/app-crypt/mkp224o/mkp224o-1.6.1.ebuild
+++ b/app-crypt/mkp224o/mkp224o-1.6.1.ebuild
@@ -9,7 +9,7 @@ SRC_URI="https://github.com/cathugger/${PN}/releases/download/v${PV}/${PN}-${PV}
LICENSE="CC0-1.0"
SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
IUSE="cpu_flags_x86_sse2 pcre2"
DEPEND="
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-crypt/mkp224o/
@ 2022-09-09 9:48 Matthew Smith
0 siblings, 0 replies; 9+ messages in thread
From: Matthew Smith @ 2022-09-09 9:48 UTC (permalink / raw
To: gentoo-commits
commit: b5e016e208c7e862319e89480fe8a107f88e82a4
Author: Matthew Smith <matthew <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 9 08:47:58 2022 +0000
Commit: Matthew Smith <matthew <AT> gentoo <DOT> org>
CommitDate: Fri Sep 9 09:46:24 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b5e016e2
app-crypt/mkp224o: drop 1.5.0
Signed-off-by: Matthew Smith <matthew <AT> gentoo.org>
app-crypt/mkp224o/Manifest | 1 -
app-crypt/mkp224o/mkp224o-1.5.0.ebuild | 36 ----------------------------------
2 files changed, 37 deletions(-)
diff --git a/app-crypt/mkp224o/Manifest b/app-crypt/mkp224o/Manifest
index 4bd4fdc62350..2a6e1efd6262 100644
--- a/app-crypt/mkp224o/Manifest
+++ b/app-crypt/mkp224o/Manifest
@@ -1,2 +1 @@
-DIST mkp224o-1.5.0-src.tar.gz 1378324 BLAKE2B 19d38fbf23328607fa428ec9329cdc909b210b4235d85e14ff372347c9b408ecf22d41dac7122bdae06725d7bca0c3d53c81cc27272c47517e714e9b8e0625dd SHA512 aa5adc91e695dbfd8ece5fdfe3ca370056d4390a5186326b35ee37402040fa24675ede5389c48b79a1e57b624b86024ff72957741fef175602f7721f20c5cc14
DIST mkp224o-1.6.1-src.tar.gz 1387615 BLAKE2B 271424dcee44b5b1e1a35346a0cc1c37ee5d430231fe93e0b936ac994c892f0406ea361be763732db8a8397684ecad70e26c34f5553a415e7ed0592417672310 SHA512 d0c21ee5fb5f7b2950e1c39af5dc62b1e26aef0917b53169e9c3f9a99a7febe70bb2f96ada612c71bdbdbf8cad9c1f407d175af49fca40eedd68bbe8112970a5
diff --git a/app-crypt/mkp224o/mkp224o-1.5.0.ebuild b/app-crypt/mkp224o/mkp224o-1.5.0.ebuild
deleted file mode 100644
index 4e71a3ec031b..000000000000
--- a/app-crypt/mkp224o/mkp224o-1.5.0.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 pcre2"
-
-DEPEND="
- dev-libs/libsodium:=
- pcre2? ( dev-libs/libpcre2:= )
-"
-RDEPEND="${DEPEND}"
-
-DOCS=( OPTIMISATION.txt README.txt )
-
-src_configure() {
- local myeconfargs=(
- --enable-regex=$(usex pcre2)
- --enable-statistics
- )
- use cpu_flags_x86_sse2 && myeconfargs+=( --enable-donna-sse2 )
-
- econf "${myeconfargs[@]}"
-}
-
-src_install() {
- einstalldocs
- dobin ${PN}
-}
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-crypt/mkp224o/
@ 2022-12-18 11:12 Matthew Smith
0 siblings, 0 replies; 9+ messages in thread
From: Matthew Smith @ 2022-12-18 11:12 UTC (permalink / raw
To: gentoo-commits
commit: 56e7435cd1acfdbaaea2103c574789c513fef777
Author: Matthew Smith <matthew <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 18 10:46:19 2022 +0000
Commit: Matthew Smith <matthew <AT> gentoo <DOT> org>
CommitDate: Sun Dec 18 11:11:07 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=56e7435c
app-crypt/mkp224o: rename pcre2 use flag to pcre
Bug: https://bugs.gentoo.org/886541
Closes: https://github.com/gentoo/gentoo/pull/28701
Acked-by: Sam James <sam <AT> gentoo.org>
Signed-off-by: Matthew Smith <matthew <AT> gentoo.org>
app-crypt/mkp224o/metadata.xml | 2 +-
app-crypt/mkp224o/{mkp224o-1.6.1.ebuild => mkp224o-1.6.1-r1.ebuild} | 6 +++---
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/app-crypt/mkp224o/metadata.xml b/app-crypt/mkp224o/metadata.xml
index e9ab26926571..a6dc6944c619 100644
--- a/app-crypt/mkp224o/metadata.xml
+++ b/app-crypt/mkp224o/metadata.xml
@@ -6,7 +6,7 @@
<name>Matthew Smith</name>
</maintainer>
<use>
- <flag name="pcre2">Search with a regex instead of prefix/suffix matching</flag>
+ <flag name="pcre">Search with a regex instead of prefix/suffix matching</flag>
</use>
<upstream>
<remote-id type="github">cathugger/mkp224o</remote-id>
diff --git a/app-crypt/mkp224o/mkp224o-1.6.1.ebuild b/app-crypt/mkp224o/mkp224o-1.6.1-r1.ebuild
similarity index 87%
rename from app-crypt/mkp224o/mkp224o-1.6.1.ebuild
rename to app-crypt/mkp224o/mkp224o-1.6.1-r1.ebuild
index bde686797b7b..1185aeba051a 100644
--- a/app-crypt/mkp224o/mkp224o-1.6.1.ebuild
+++ b/app-crypt/mkp224o/mkp224o-1.6.1-r1.ebuild
@@ -10,11 +10,11 @@ SRC_URI="https://github.com/cathugger/${PN}/releases/download/v${PV}/${PN}-${PV}
LICENSE="CC0-1.0"
SLOT="0"
KEYWORDS="amd64"
-IUSE="cpu_flags_x86_sse2 pcre2"
+IUSE="cpu_flags_x86_sse2 pcre"
DEPEND="
dev-libs/libsodium:=
- pcre2? ( dev-libs/libpcre2:= )
+ pcre? ( dev-libs/libpcre2:= )
"
RDEPEND="${DEPEND}"
@@ -22,7 +22,7 @@ DOCS=( OPTIMISATION.txt README.md )
src_configure() {
local myeconfargs=(
- --enable-regex=$(usex pcre2)
+ --enable-regex=$(usex pcre)
--enable-statistics
)
use cpu_flags_x86_sse2 && myeconfargs+=( --enable-donna-sse2 )
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-crypt/mkp224o/
@ 2024-01-23 17:20 Matthew Smith
0 siblings, 0 replies; 9+ messages in thread
From: Matthew Smith @ 2024-01-23 17:20 UTC (permalink / raw
To: gentoo-commits
commit: 875f87c7a83aaf528bc00d904b44f0848713b5b6
Author: Matthew Smith <matthew <AT> gentoo <DOT> org>
AuthorDate: Tue Jan 23 17:18:56 2024 +0000
Commit: Matthew Smith <matthew <AT> gentoo <DOT> org>
CommitDate: Tue Jan 23 17:18:56 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=875f87c7
app-crypt/mkp224o: add 1.7.0
Signed-off-by: Matthew Smith <matthew <AT> gentoo.org>
app-crypt/mkp224o/Manifest | 2 ++
app-crypt/mkp224o/mkp224o-1.7.0.ebuild | 43 ++++++++++++++++++++++++++++++++++
2 files changed, 45 insertions(+)
diff --git a/app-crypt/mkp224o/Manifest b/app-crypt/mkp224o/Manifest
index 2a6e1efd6262..bf211390453a 100644
--- a/app-crypt/mkp224o/Manifest
+++ b/app-crypt/mkp224o/Manifest
@@ -1 +1,3 @@
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.7.0.ebuild b/app-crypt/mkp224o/mkp224o-1.7.0.ebuild
new file mode 100644
index 000000000000..0a71180ad77a
--- /dev/null
+++ b/app-crypt/mkp224o/mkp224o-1.7.0.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+VERIFY_SIG_OPENPGP_KEY_PATH=/usr/share/openpgp-keys/cathugger.gpg
+inherit verify-sig
+
+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
+ verify-sig? ( https://github.com/cathugger/${PN}/releases/download/v${PV}/${PN}-${PV}-src.tar.gz.sig )
+"
+
+LICENSE="CC0-1.0"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="cpu_flags_x86_sse2 pcre"
+
+DEPEND="
+ dev-libs/libsodium:=
+ pcre? ( dev-libs/libpcre2:= )
+"
+RDEPEND="${DEPEND}"
+BDEPEND="verify-sig? ( sec-keys/openpgp-keys-cathugger )"
+
+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}
+}
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-crypt/mkp224o/
@ 2024-03-13 19:38 Arthur Zamarin
0 siblings, 0 replies; 9+ messages in thread
From: Arthur Zamarin @ 2024-03-13 19:38 UTC (permalink / raw
To: gentoo-commits
commit: cf4757767b0b9124100f14002a494b5270b1b4d6
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 13 19:38:20 2024 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Wed Mar 13 19:38:20 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf475776
app-crypt/mkp224o: Stabilize 1.7.0 amd64, #926941
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
app-crypt/mkp224o/mkp224o-1.7.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-crypt/mkp224o/mkp224o-1.7.0.ebuild b/app-crypt/mkp224o/mkp224o-1.7.0.ebuild
index 0a71180ad77a..731160026478 100644
--- a/app-crypt/mkp224o/mkp224o-1.7.0.ebuild
+++ b/app-crypt/mkp224o/mkp224o-1.7.0.ebuild
@@ -15,7 +15,7 @@ SRC_URI="
LICENSE="CC0-1.0"
SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
IUSE="cpu_flags_x86_sse2 pcre"
DEPEND="
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-crypt/mkp224o/
@ 2024-03-24 16:24 Matthew Smith
0 siblings, 0 replies; 9+ messages in thread
From: Matthew Smith @ 2024-03-24 16:24 UTC (permalink / raw
To: gentoo-commits
commit: 0fb3b82169864de479a79ec3dfa54f7c5b4afdec
Author: Matthew Smith <matthew <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 24 15:28:06 2024 +0000
Commit: Matthew Smith <matthew <AT> gentoo <DOT> org>
CommitDate: Sun Mar 24 16:24:35 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0fb3b821
app-crypt/mkp224o: drop 1.6.1-r1
Signed-off-by: Matthew Smith <matthew <AT> gentoo.org>
app-crypt/mkp224o/Manifest | 1 -
app-crypt/mkp224o/mkp224o-1.6.1-r1.ebuild | 36 -------------------------------
2 files changed, 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}
-}
^ permalink raw reply related [flat|nested] 9+ messages in thread
end of thread, other threads:[~2024-03-24 16:24 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-01-23 17:20 [gentoo-commits] repo/gentoo:master commit in: app-crypt/mkp224o/ Matthew Smith
-- strict thread matches above, loose matches on Subject: below --
2024-03-24 16:24 Matthew Smith
2024-03-13 19:38 Arthur Zamarin
2022-12-18 11:12 Matthew Smith
2022-09-09 9:48 Matthew Smith
2022-07-28 23:06 Sam James
2022-07-02 9:54 Matthew Smith
2022-03-13 10:32 Jakov Smolić
2022-02-13 20:36 Matthew Smith
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox