Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libblkmaker/
Date: Mon, 05 Oct 2020 05:47:03
Message-Id: 1601876808.72f6c0ab4330b6a6c0355808a87809a48eac4a7a.juippis@gentoo
1 commit: 72f6c0ab4330b6a6c0355808a87809a48eac4a7a
2 Author: Luke Dashjr <luke-jr+git <AT> utopios <DOT> org>
3 AuthorDate: Thu Aug 27 23:27:54 2020 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Mon Oct 5 05:46:48 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=72f6c0ab
7
8 net-libs/libblkmaker: Bump to 0.6.0
9
10 Signed-off-by: Luke Dashjr <luke-jr+git <AT> utopios.org>
11 Closes: https://bugs.gentoo.org/696520
12 Closes: https://github.com/gentoo/gentoo/pull/17289
13 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
14
15 net-libs/libblkmaker/Manifest | 1 +
16 net-libs/libblkmaker/libblkmaker-0.6.0.ebuild | 31 +++++++++++++++++++++++++++
17 2 files changed, 32 insertions(+)
18
19 diff --git a/net-libs/libblkmaker/Manifest b/net-libs/libblkmaker/Manifest
20 index b72411b8b23..471906d0f89 100644
21 --- a/net-libs/libblkmaker/Manifest
22 +++ b/net-libs/libblkmaker/Manifest
23 @@ -1,3 +1,4 @@
24 DIST libblkmaker-0.3.2.tgz 17893 BLAKE2B 390ed56c7d77b904ec52d52cfa9dfff4e5c01c1662e0f5a5f17f92eb7b3d79619bd6ee64cfa28bbff5750db7cbc31d1cd5662b11a86ef63882063ddcb72cfb6b SHA512 e45c50c11676995171f6fb27346a42843a2c035c391ab84b5e565f5fff109a4ced6cdafb6c662572eb7243b25d2014400e9516cdbbd0d65f4ea31da7d0e74bdf
25 DIST libblkmaker-0.4.3-github.tgz 13712 BLAKE2B 4c93b8a74d25b5833371e2db78062f35c726b6ac89b8b22420a61d15a1d37cf0784b001e7061da4274ed34691021d5e92a27ce04260621cfdac6b4c7c49ce69f SHA512 a8686fc0cd757a214e24476c2fc8bac4511e6522ba977134150c0084dd2a3d7620f3378f4c454dcefb675840b71597f37d5b696a74ad0251b5d3921082c23285
26 DIST libblkmaker-0.5.3-github.tgz 14161 BLAKE2B c8da4f7e3e2811cc88a03537ceb2e145ba3bb796520f4330d190e5935c13b73769cba73612d321f5c63b636bbd821e334b5a72ab893bd765edbcf49ce374f789 SHA512 57edcd583879d6abea716b6817a99dc345485392d149ddc6bb2ff9bac76d22f84cd960dc0746852e7c944a10b85d26c57fb107eac79680f77829c9bbc03c202d
27 +DIST libblkmaker-0.6.0-github.tgz 28907 BLAKE2B 31b64604040a514ae844564d19e884932fbaa0640d0491cda5ec9e922b0714c89e8810f1da3d0057625633555ea486c15e20f2a32d8528a6795be52e692d4e4f SHA512 3e9028c7c4664491274c241020d507ba6d736b9e9048562434d27d92f6cdd58ec167fae060bc355ee6a7f010a6a8a6ccff1660ecfc616c705c5deb3ed95c5e69
28
29 diff --git a/net-libs/libblkmaker/libblkmaker-0.6.0.ebuild b/net-libs/libblkmaker/libblkmaker-0.6.0.ebuild
30 new file mode 100644
31 index 00000000000..3a9c7429f91
32 --- /dev/null
33 +++ b/net-libs/libblkmaker/libblkmaker-0.6.0.ebuild
34 @@ -0,0 +1,31 @@
35 +# Copyright 1999-2020 Gentoo Authors
36 +# Distributed under the terms of the GNU General Public License v2
37 +
38 +EAPI=7
39 +
40 +inherit autotools multilib-minimal
41 +
42 +DESCRIPTION="C implementation of Bitcoin's getblocktemplate interface"
43 +HOMEPAGE="https://github.com/bitcoin/libblkmaker"
44 +LICENSE="MIT"
45 +
46 +SRC_URI="https://github.com/bitcoin/${PN}/archive/v${PV}.tar.gz -> ${P}-github.tgz"
47 +SLOT="0/7"
48 +KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
49 +IUSE="test"
50 +RESTRICT="!test? ( test )"
51 +
52 +RDEPEND="
53 + >=dev-libs/jansson-2.0.0[${MULTILIB_USEDEP}]
54 + dev-libs/libbase58[${MULTILIB_USEDEP}]
55 +"
56 +DEPEND="${RDEPEND}
57 + test? ( dev-libs/libgcrypt[${MULTILIB_USEDEP}] )
58 +"
59 +
60 +ECONF_SOURCE="${S}"
61 +
62 +src_prepare() {
63 + default
64 + eautoreconf
65 +}