public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Anna Vyalkova" <cyber+gentoo@sysrq.in>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/proj/guru:dev commit in: app-admin/i2pd-tools/
Date: Sat, 26 Nov 2022 13:51:23 +0000 (UTC)	[thread overview]
Message-ID: <1669465643.141a5ec5f53bed2b158439db0580e4e1cbfbc568.cybertailor@gentoo> (raw)

commit:     141a5ec5f53bed2b158439db0580e4e1cbfbc568
Author:     Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Fri Nov 25 22:38:43 2022 +0000
Commit:     Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
CommitDate: Sat Nov 26 12:27:23 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=141a5ec5

app-admin/i2pd-tools: add 0.2022.11.26

Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>

 app-admin/i2pd-tools/Manifest                      |  2 +
 .../i2pd-tools/i2pd-tools-0.2022.11.26.ebuild      | 56 ++++++++++++++++++++++
 2 files changed, 58 insertions(+)

diff --git a/app-admin/i2pd-tools/Manifest b/app-admin/i2pd-tools/Manifest
index 163801820..d37d71bda 100644
--- a/app-admin/i2pd-tools/Manifest
+++ b/app-admin/i2pd-tools/Manifest
@@ -1,2 +1,4 @@
 DIST i2pd-3c076654794c619eed228adcac075e9c1dea732f.tar.gz 572916 BLAKE2B efbda8436332b1ad966ba891622efd3341cd725a3ec2e091a208f9dff592345a81f703d02d2df7d6aca5141743f2e3167779de9606e24bed32740ab763ea493f SHA512 1b9b262a2e8ee44352286360a2982b25d8ac1aae4ab03f6653bbce0baa399e8cf7e822ab4a117ee6fe7215c5199b7b727497cca89440fc55c5b7abc2dcb4adf3
+DIST i2pd-aead9db9712f8b07828a264a40898643385d7553.tar.gz 623605 BLAKE2B a73d89dd2c8b55e58e558fb1fe4b5b2a78d25c87c8fc9255c18a04433f9df7efc1519714bf855420498535d37ef38c71d58833ed401b48c28527b1db289cdb62 SHA512 28790c8926b1430d8ae75b96db4386f2753e3a708e989d5abcdbb6025eed55f00036339ab8c7dd36cda565f5c850f0dada92dcfbbed0077bda661cf141a79fae
 DIST i2pd-tools-0.2021.10.17.tar.gz 19650 BLAKE2B f80c1058c94aed9db88ebc917050b2eae878e0303e4fc12545541e50ab639052044235e3e8bfa33486b0c6b921b8d0391f2785c9576a262ea3b80c1a1c4630f2 SHA512 272cecb895a3775ede1a9a2af3df901fda4626128dd0f3233203ec534be0abbfa92afd56709cf3281394ff33f56cef3ab2867cef4524ca14a1201bb9bdd54996
+DIST i2pd-tools-0.2022.11.26.tar.gz 19673 BLAKE2B b7551fae39436ff7a06c7ae8f8338b22c1cddc7bf05ffebc031760ab3ac9e3968f65ca706f99668f0d31515887490a83fd1ece1f0f5d7301d31e9b7b424214f2 SHA512 78e56edc3a98be9b2c65c60acba501de9dc63542d927ddc0968feda82a8e3fb7cc20a07cbc742693afd57ff043340a85b49b80a3dfe43f07a73df423a426512a

diff --git a/app-admin/i2pd-tools/i2pd-tools-0.2022.11.26.ebuild b/app-admin/i2pd-tools/i2pd-tools-0.2022.11.26.ebuild
new file mode 100644
index 000000000..720db3172
--- /dev/null
+++ b/app-admin/i2pd-tools/i2pd-tools-0.2022.11.26.ebuild
@@ -0,0 +1,56 @@
+# Copyright 2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit toolchain-funcs
+
+COMMIT="aadc780b44135d4b13f80b843d4c43810c2d7a7d"
+I2PD_COMMIT="aead9db9712f8b07828a264a40898643385d7553" # keep in sync with bundled version
+DESCRIPTION="Some useful tools for I2P"
+HOMEPAGE="https://github.com/PurpleI2P/i2pd-tools"
+SRC_URI="
+	https://github.com/PurpleI2P/${PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz
+	https://github.com/PurpleI2P/i2pd/archive/${I2PD_COMMIT}.tar.gz -> i2pd-${I2PD_COMMIT}.tar.gz
+"
+S="${WORKDIR}/${PN}-${COMMIT}"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64"
+
+DEPEND="
+	dev-libs/boost:=
+	dev-libs/openssl:=
+	sys-libs/zlib:=
+"
+RDEPEND="${DEPEND}"
+
+PATCHES=(
+	"${FILESDIR}"/0001-${PN}-nodebug.patch
+	"${FILESDIR}"/0002-${PN}-flags.patch
+)
+
+src_unpack() {
+	default
+
+	rmdir "${S}/i2pd" || die
+	mv "${WORKDIR}"/i2pd-${I2PD_COMMIT} "${S}"/i2pd || die
+}
+
+src_configure() {
+	tc-export CXX
+}
+
+src_install() {
+	local -a binaries
+
+	# extracted from Makefile
+	binaries=(
+		keygen keyinfo famtool routerinfo regaddr regaddr_3ld vain
+		i2pbase64 offlinekeys b33address regaddralias x25519 verifyhost
+	)
+	dobin "${binaries[@]}"
+
+	einstalldocs
+}


             reply	other threads:[~2022-11-26 13:51 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-11-26 13:51 Anna Vyalkova [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-03-09  7:14 [gentoo-commits] repo/proj/guru:dev commit in: app-admin/i2pd-tools/ Anna Vyalkova
2025-03-05 13:42 Anna Vyalkova
2024-11-20  6:16 Anna Vyalkova
2024-06-30  4:10 Anna Vyalkova
2023-11-25 18:15 Anna Vyalkova
2023-05-08  4:09 Anna Vyalkova
2023-03-21  1:31 Anna Vyalkova
2023-03-20  6:00 Anna Vyalkova
2022-11-03  3:09 Anna Vyalkova

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1669465643.141a5ec5f53bed2b158439db0580e4e1cbfbc568.cybertailor@gentoo \
    --to=cyber+gentoo@sysrq.in \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox