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 AC125158093 for ; Sat, 2 Jul 2022 22:48:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E247AE0AE5; Sat, 2 Jul 2022 22:48:21 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B6ED0E0AE5 for ; Sat, 2 Jul 2022 22:48:21 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B97EB341D87 for ; Sat, 2 Jul 2022 22:48:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 462E9326 for ; Sat, 2 Jul 2022 22:48:19 +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: <1656802084.071635a02a465e0ecdd46e9625a0a894b1422fda.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/cstream/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/cstream/Manifest app-misc/cstream/cstream-3.2.1.ebuild X-VCS-Directories: app-misc/cstream/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 071635a02a465e0ecdd46e9625a0a894b1422fda X-VCS-Branch: master Date: Sat, 2 Jul 2022 22:48:19 +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: b834618c-02bb-48ce-afaf-0552a77e8b96 X-Archives-Hash: 4cb5018df3ced1f4984f116ec7af2826 commit: 071635a02a465e0ecdd46e9625a0a894b1422fda Author: Sam James gentoo org> AuthorDate: Sat Jul 2 22:48:04 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sat Jul 2 22:48:04 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=071635a0 app-misc/cstream: add 3.2.1 Signed-off-by: Sam James gentoo.org> app-misc/cstream/Manifest | 1 + app-misc/cstream/cstream-3.2.1.ebuild | 22 ++++++++++++++++++++++ 2 files changed, 23 insertions(+) diff --git a/app-misc/cstream/Manifest b/app-misc/cstream/Manifest index 47c4b98b7b6c..749aab551d88 100644 --- a/app-misc/cstream/Manifest +++ b/app-misc/cstream/Manifest @@ -1 +1,2 @@ DIST cstream-3.1.1.tar.gz 96609 BLAKE2B 360183c215e4aaf536d6455393b8e5a27fcfb15dc581205e53c0a160c97d028165cd9c24feea13f9a4ed11de1710ffbd1d548cadaa7fdef912eb1ee932a49ee6 SHA512 8d6364da622711f6888fd221b2f36f5da23d2a562d5a797d58d7ef361415481de8ab9ae55ae856d47c2d0141d570e22a61ab0ce9954c043877196df168f2f43a +DIST cstream-3.2.1.tar.gz 110388 BLAKE2B 4537f2affd696620f53cfdb08d8f85ba01bdc1b5db8b3d8fa3e373a1ece96f2dc1e88efed20f1278ffde87cd1456b466d87c2c2c05480abdf79af84ca7d629f7 SHA512 f40819f07e27887528d9ff1abe6183e6e97fcefc60eb0b289f20449cdef73567b2cb5f40c52bf66dd3f4c8f869bdfdcbe0faa983659e6f8f427129f75ee1ee70 diff --git a/app-misc/cstream/cstream-3.2.1.ebuild b/app-misc/cstream/cstream-3.2.1.ebuild new file mode 100644 index 000000000000..315ee13ddc53 --- /dev/null +++ b/app-misc/cstream/cstream-3.2.1.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit autotools + +DESCRIPTION="General-purpose stream-handling tool like UNIX dd" +HOMEPAGE="http://www.cons.org/cracauer/cstream.html" +SRC_URI="http://www.cons.org/cracauer/download/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +src_prepare() { + default + + rm auxdir/missing || die "Failed to remove auxdir/missing" + + eautoreconf +}