From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 14D9C158043 for ; Mon, 15 Apr 2024 06:12:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0258DE29E6; Mon, 15 Apr 2024 06:12:06 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C43B1E29E6 for ; Mon, 15 Apr 2024 06:12:05 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8EEF43433CE for ; Mon, 15 Apr 2024 06:12:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B2B831504 for ; Mon, 15 Apr 2024 06:12:02 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1713161409.5c7480ba24dcb26250820dbc79d2fa2a5a943ec7.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/pgpdump/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-crypt/pgpdump/Manifest app-crypt/pgpdump/pgpdump-0.36.ebuild X-VCS-Directories: app-crypt/pgpdump/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 5c7480ba24dcb26250820dbc79d2fa2a5a943ec7 X-VCS-Branch: master Date: Mon, 15 Apr 2024 06:12:02 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: d9be4b79-3be1-4904-a346-50e8e1238d9b X-Archives-Hash: 8c8cec797c242c24e0f4aa11f4fbdd79 commit: 5c7480ba24dcb26250820dbc79d2fa2a5a943ec7 Author: Sam James gentoo org> AuthorDate: Mon Apr 15 05:56:53 2024 +0000 Commit: Sam James gentoo org> CommitDate: Mon Apr 15 06:10:09 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c7480ba app-crypt/pgpdump: add 0.36 Signed-off-by: Sam James gentoo.org> app-crypt/pgpdump/Manifest | 1 + app-crypt/pgpdump/pgpdump-0.36.ebuild | 26 ++++++++++++++++++++++++++ 2 files changed, 27 insertions(+) diff --git a/app-crypt/pgpdump/Manifest b/app-crypt/pgpdump/Manifest index b62bc0767ada..6fe6dfea742c 100644 --- a/app-crypt/pgpdump/Manifest +++ b/app-crypt/pgpdump/Manifest @@ -1 +1,2 @@ DIST pgpdump-0.35.tar.gz 77580 BLAKE2B 2c0b8d69bccf37a0d9a192273f901c52d74fa2423f32084a9ddda9c70c2055a0b594113b486cb9bcd8e9566cef781938186400dc139e9e00439db067b38307cb SHA512 03579d7d89d98f19f50c9722c063f059904887f7ca7da3eb99a4aadc6c5361b5161c891767a93087bfb42641aa2e24a9ad6560b1e4396370217afec61a988015 +DIST pgpdump-0.36.tar.gz 77084 BLAKE2B 35fb10acd70ca4e2408bc8fdc2cbebe37d2b1ecbd96fdb847688fe1c15ef78e993bddb30015da42847ab50d2dea6ba44d97d958f395095725947120119c10aaf SHA512 0e8917893ff824b4fcb1656727f3bb120b1772259047f50f56931750ac74548eddb89a75baeaa2da4e39db8045af0db3c4f5ccbcda7e129ca4949c0abf7d4dd2 diff --git a/app-crypt/pgpdump/pgpdump-0.36.ebuild b/app-crypt/pgpdump/pgpdump-0.36.ebuild new file mode 100644 index 000000000000..beef09bea342 --- /dev/null +++ b/app-crypt/pgpdump/pgpdump-0.36.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="A PGP packet visualizer" +HOMEPAGE="https://www.mew.org/~kazu/proj/pgpdump/" +SRC_URI="https://www.mew.org/~kazu/proj/pgpdump/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~ppc ~sparc ~x86" + +DEPEND="app-arch/bzip2 + sys-libs/zlib" +RDEPEND="${DEPEND}" + +PATCHES=( + "${FILESDIR}"/${PN}-0.32-respect-ldflags.patch +) + +src_install() { + dobin pgpdump + doman pgpdump.1 + dodoc CHANGES README.md +}