Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/cstream/
Date: Sat, 02 Jul 2022 22:48:22
Message-Id: 1656802084.071635a02a465e0ecdd46e9625a0a894b1422fda.sam@gentoo
1 commit: 071635a02a465e0ecdd46e9625a0a894b1422fda
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jul 2 22:48:04 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Sat Jul 2 22:48:04 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=071635a0
7
8 app-misc/cstream: add 3.2.1
9
10 Signed-off-by: Sam James <sam <AT> gentoo.org>
11
12 app-misc/cstream/Manifest | 1 +
13 app-misc/cstream/cstream-3.2.1.ebuild | 22 ++++++++++++++++++++++
14 2 files changed, 23 insertions(+)
15
16 diff --git a/app-misc/cstream/Manifest b/app-misc/cstream/Manifest
17 index 47c4b98b7b6c..749aab551d88 100644
18 --- a/app-misc/cstream/Manifest
19 +++ b/app-misc/cstream/Manifest
20 @@ -1 +1,2 @@
21 DIST cstream-3.1.1.tar.gz 96609 BLAKE2B 360183c215e4aaf536d6455393b8e5a27fcfb15dc581205e53c0a160c97d028165cd9c24feea13f9a4ed11de1710ffbd1d548cadaa7fdef912eb1ee932a49ee6 SHA512 8d6364da622711f6888fd221b2f36f5da23d2a562d5a797d58d7ef361415481de8ab9ae55ae856d47c2d0141d570e22a61ab0ce9954c043877196df168f2f43a
22 +DIST cstream-3.2.1.tar.gz 110388 BLAKE2B 4537f2affd696620f53cfdb08d8f85ba01bdc1b5db8b3d8fa3e373a1ece96f2dc1e88efed20f1278ffde87cd1456b466d87c2c2c05480abdf79af84ca7d629f7 SHA512 f40819f07e27887528d9ff1abe6183e6e97fcefc60eb0b289f20449cdef73567b2cb5f40c52bf66dd3f4c8f869bdfdcbe0faa983659e6f8f427129f75ee1ee70
23
24 diff --git a/app-misc/cstream/cstream-3.2.1.ebuild b/app-misc/cstream/cstream-3.2.1.ebuild
25 new file mode 100644
26 index 000000000000..315ee13ddc53
27 --- /dev/null
28 +++ b/app-misc/cstream/cstream-3.2.1.ebuild
29 @@ -0,0 +1,22 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +inherit autotools
36 +
37 +DESCRIPTION="General-purpose stream-handling tool like UNIX dd"
38 +HOMEPAGE="http://www.cons.org/cracauer/cstream.html"
39 +SRC_URI="http://www.cons.org/cracauer/download/${P}.tar.gz"
40 +
41 +LICENSE="MIT"
42 +SLOT="0"
43 +KEYWORDS="~amd64 ~x86"
44 +
45 +src_prepare() {
46 + default
47 +
48 + rm auxdir/missing || die "Failed to remove auxdir/missing"
49 +
50 + eautoreconf
51 +}