Gentoo Archives: gentoo-commits

From: Sam Jorna <wraeth@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-p2p/go-ipfs-bin/
Date: Mon, 06 Jun 2016 01:16:56
Message-Id: 1465175763.9f283a33e3a16c550aae869008a208c52264f5e6.wraeth@gentoo
1 commit: 9f283a33e3a16c550aae869008a208c52264f5e6
2 Author: Sam Jorna <wraeth <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jun 6 01:16:03 2016 +0000
4 Commit: Sam Jorna <wraeth <AT> gentoo <DOT> org>
5 CommitDate: Mon Jun 6 01:16:03 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f283a33
7
8 net-p2p/go-ipfs-bin: bump to 0.4.2
9
10 Bump package version to 0.4.2 per maintainer request.
11
12 Package-Manager: portage-2.3.0_rc1
13
14 net-p2p/go-ipfs-bin/Manifest | 2 ++
15 net-p2p/go-ipfs-bin/go-ipfs-bin-0.4.2.ebuild | 26 ++++++++++++++++++++++++++
16 2 files changed, 28 insertions(+)
17
18 diff --git a/net-p2p/go-ipfs-bin/Manifest b/net-p2p/go-ipfs-bin/Manifest
19 index 62b245e..90233a6 100644
20 --- a/net-p2p/go-ipfs-bin/Manifest
21 +++ b/net-p2p/go-ipfs-bin/Manifest
22 @@ -1,2 +1,4 @@
23 DIST go-ipfs_v0.4.1_linux-386.tar.gz 6653590 SHA256 fcac752999975327d9309f6370b06dc5c23516019ed06fb0e41a601c620ecc1a SHA512 34ffe88359a12efd3f951b967cc03a7e279270d95b8e00958cfe08c07c0669cbfbf8d01ed68f69be86e39caa20b82893ac17bf868ce56de4c486ac80bed0ab59 WHIRLPOOL 80c5f6b921df53969c5d0b7d0045bfe766bab15d2221ae21c1bec8f87f1bdc9988f53bbb70968afe9ce0b01c8d0f1394299c7c9d51539f8c82387bd8c6461454
24 DIST go-ipfs_v0.4.1_linux-amd64.tar.gz 7112859 SHA256 145b32f49e971eeb1545dc36321ae52e7b4ae4362b5b8aca6e4f6ab407aa5498 SHA512 1bee2c5b744d0727b95c1151da1d3e02c0c4b1c439e8d813de740571c667f83ee6e535fb66ba74714355c5edff5bd9b19425429c65cc50eaeee813f6479e0d5e WHIRLPOOL 58f666faa7793d5a2e7ca2430e58d6e2363769cc90015ed2be0e5f37544449ac617842f45ad588a8fb6dacafb9e0299f4cf25313b4ac89dba2eb78d295f9db25
25 +DIST go-ipfs_v0.4.2_linux-386.tar.gz 7141495 SHA256 db015247e500289533ce5b514e8f8649d26ffd0d45d993f6941065b9759e393e SHA512 02aa3bc06727da4084219f51de8a384e4a4ab351fae17cc0bda0e1255629dd69443eb5a9665c901660490ca1116876f6ad879420edf20df02172513ddfcb3025 WHIRLPOOL 0cd26f8fb625262fa0b6dfcff0a2745b59085498bbf24f84018c939de16ee6ccdfa2817b30328aa37f50bee8b4a79c34a751ded877fe207309a540f59ae86ed9
26 +DIST go-ipfs_v0.4.2_linux-amd64.tar.gz 7642422 SHA256 f9802fd8f793ac65ced66153d0159596e4ea6181def17c087c90d421e274e52e SHA512 f9435ae4bd48cd7a6845aeae2bc7b4b2ce899195653b24665430598e579015fad12e9f3b47540a7fd92cc23ebc3b88bb0b575b72e96c60e047b7d697247e790b WHIRLPOOL 5e32820a501973555780fbb5548502ff5c0a956f2ec6dd7705fd048fe2c41dd54fa4415f28d400da421eae6af3344d239ec2b04811de36a66f6c31e492dd5675
27
28 diff --git a/net-p2p/go-ipfs-bin/go-ipfs-bin-0.4.2.ebuild b/net-p2p/go-ipfs-bin/go-ipfs-bin-0.4.2.ebuild
29 new file mode 100644
30 index 0000000..8a57ab4
31 --- /dev/null
32 +++ b/net-p2p/go-ipfs-bin/go-ipfs-bin-0.4.2.ebuild
33 @@ -0,0 +1,26 @@
34 +# Copyright 1999-2016 Gentoo Foundation
35 +# Distributed under the terms of the GNU General Public License v2
36 +# $Id$
37 +
38 +EAPI=6
39 +
40 +DESCRIPTION="go-ipfs is the main implementation of IPFS."
41 +HOMEPAGE="https://ipfs.io/"
42 +SRC_URI="amd64? ( https://dist.ipfs.io/go-ipfs/v${PV}/go-ipfs_v${PV}_linux-amd64.tar.gz )
43 + x86? ( https://dist.ipfs.io/go-ipfs/v${PV}/go-ipfs_v${PV}_linux-386.tar.gz )"
44 +# Also available arches:
45 +# arm? ( https://dist.ipfs.io/go-ipfs/v${PV}/go-ipfs_v${PV}_linux-arm.tar.gz )
46 +
47 +LICENSE="MIT"
48 +SLOT="0"
49 +KEYWORDS="-* ~x86 ~amd64"
50 +IUSE="+fuse"
51 +
52 +RDEPEND="fuse? ( sys-fs/fuse )"
53 +S="${WORKDIR}/go-ipfs"
54 +
55 +QA_PREBUILT="/usr/bin/ipfs"
56 +
57 +src_install() {
58 + dobin ipfs
59 +}