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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id F2705138334 for ; Wed, 11 Dec 2019 20:53:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1C4DBE0864; Wed, 11 Dec 2019 20:53:50 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 02641E0864 for ; Wed, 11 Dec 2019 20:53:49 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B69C434D540 for ; Wed, 11 Dec 2019 20:53:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 43FF9895 for ; Wed, 11 Dec 2019 20:53:47 +0000 (UTC) From: "Patrice Clement" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrice Clement" Message-ID: <1576097619.5004356dfb22bfb369c25ad082d0dc2d96e9c6fc.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/cstream/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/cstream/cstream-3.1.1-r1.ebuild X-VCS-Directories: app-misc/cstream/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: 5004356dfb22bfb369c25ad082d0dc2d96e9c6fc X-VCS-Branch: master Date: Wed, 11 Dec 2019 20:53:47 +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: ae00ca7a-cff4-43ec-9f11-d15548848840 X-Archives-Hash: cd6a871fb6c6bab355c0514cd007dc8e commit: 5004356dfb22bfb369c25ad082d0dc2d96e9c6fc Author: Patrice Clement gentoo org> AuthorDate: Wed Dec 11 20:42:51 2019 +0000 Commit: Patrice Clement gentoo org> CommitDate: Wed Dec 11 20:53:39 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5004356d app-misc/cstream: EAPI 7 bump. Package-Manager: Portage-2.3.79, Repoman-2.3.16 Signed-off-by: Patrice Clement gentoo.org> app-misc/cstream/cstream-3.1.1-r1.ebuild | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/app-misc/cstream/cstream-3.1.1-r1.ebuild b/app-misc/cstream/cstream-3.1.1-r1.ebuild new file mode 100644 index 00000000000..dc7409c52f6 --- /dev/null +++ b/app-misc/cstream/cstream-3.1.1-r1.ebuild @@ -0,0 +1,20 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +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 +}