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 10F9715817D for ; Mon, 17 Jun 2024 22:36:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A4C88E29BE; Mon, 17 Jun 2024 22:36: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 81206E29BE for ; Mon, 17 Jun 2024 22:36: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 81C07335D6A for ; Mon, 17 Jun 2024 22:36:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E2D891D28 for ; Mon, 17 Jun 2024 22:36:18 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1718663651.96070b8f64929d80a2b1747cf9a609e6a098470f.conikost@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-4.0.0.ebuild X-VCS-Directories: app-misc/cstream/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 96070b8f64929d80a2b1747cf9a609e6a098470f X-VCS-Branch: master Date: Mon, 17 Jun 2024 22:36:18 +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: 4d094c05-36a2-4c88-a5b8-9b67aa63bb81 X-Archives-Hash: 2d8dd47622c0b0b3d8cf8eea8babee73 commit: 96070b8f64929d80a2b1747cf9a609e6a098470f Author: Michael Mair-Keimberger levelnine at> AuthorDate: Thu May 30 18:17:04 2024 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Mon Jun 17 22:34:11 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96070b8f app-misc/cstream: add 4.0.0 Signed-off-by: Michael Mair-Keimberger levelnine.at> Signed-off-by: Conrad Kostecki gentoo.org> app-misc/cstream/Manifest | 1 + app-misc/cstream/cstream-4.0.0.ebuild | 26 ++++++++++++++++++++++++++ 2 files changed, 27 insertions(+) diff --git a/app-misc/cstream/Manifest b/app-misc/cstream/Manifest index 262961147b29..6742e145125f 100644 --- a/app-misc/cstream/Manifest +++ b/app-misc/cstream/Manifest @@ -1 +1,2 @@ DIST cstream-3.2.1.tar.gz 110388 BLAKE2B 4537f2affd696620f53cfdb08d8f85ba01bdc1b5db8b3d8fa3e373a1ece96f2dc1e88efed20f1278ffde87cd1456b466d87c2c2c05480abdf79af84ca7d629f7 SHA512 f40819f07e27887528d9ff1abe6183e6e97fcefc60eb0b289f20449cdef73567b2cb5f40c52bf66dd3f4c8f869bdfdcbe0faa983659e6f8f427129f75ee1ee70 +DIST cstream-4.0.0.tar.gz 113042 BLAKE2B 3f9238de2c39b62c27eece6920e20b132eaf85e4455584a3bea48024bf0017338027988a3f0b7fabcb247684dc66113412d6b5077aab1f5a59142f5ce2154d00 SHA512 fe9eedcc1a63e3dd14f569bd3ee6cce60b6d6d6169eb170086d8784cb16b4a79b93913a3ecedaf2091f342e27e3bb31db042cba118ffdd847f71d51b9039072c diff --git a/app-misc/cstream/cstream-4.0.0.ebuild b/app-misc/cstream/cstream-4.0.0.ebuild new file mode 100644 index 000000000000..371ec1a47a59 --- /dev/null +++ b/app-misc/cstream/cstream-4.0.0.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2024 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="https://www.cons.org/cracauer/cstream.html" +SRC_URI="https://www.cons.org/cracauer/download/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +PATCHES=( + "${FILESDIR}"/${PN}-3.2.1-Fix-implicit-function-declaration.patch +) + +src_prepare() { + default + + rm auxdir/missing || die "Failed to remove auxdir/missing" + + eautoreconf +}