diff options
author | Sam Jorna <wraeth@gentoo.org> | 2016-05-19 20:03:49 +1000 |
---|---|---|
committer | Sam Jorna <wraeth@gentoo.org> | 2016-05-19 20:04:26 +1000 |
commit | 08a3e7653ec7b7dc612a55d15053ccb888f0e441 (patch) | |
tree | dfd4fafd0acae37465fe75a13a4e239784911217 | |
parent | 315d142001391ed24476359699a5b8c7f0203fc5 (diff) | |
download | gentoo-08a3e7653ec7b7dc612a55d15053ccb888f0e441.tar.gz gentoo-08a3e7653ec7b7dc612a55d15053ccb888f0e441.tar.xz |
net-p2p/go-ipfs-bin: new package
IPFS is a decentralized torrent-like networking system with transparent
file adding/downloading. Ebuild submitted by new proxied maintainer
through bug.
Gentoo-bug: 579768
Package-Manager: portage-2.3.0_rc1
-rw-r--r-- | net-p2p/go-ipfs-bin/Manifest | 2 | ||||
-rw-r--r-- | net-p2p/go-ipfs-bin/go-ipfs-bin-0.4.1.ebuild | 26 | ||||
-rw-r--r-- | net-p2p/go-ipfs-bin/metadata.xml | 20 |
3 files changed, 48 insertions, 0 deletions
diff --git a/net-p2p/go-ipfs-bin/Manifest b/net-p2p/go-ipfs-bin/Manifest new file mode 100644 index 00000000000..62b245ecbe7 --- /dev/null +++ b/net-p2p/go-ipfs-bin/Manifest @@ -0,0 +1,2 @@ +DIST go-ipfs_v0.4.1_linux-386.tar.gz 6653590 SHA256 fcac752999975327d9309f6370b06dc5c23516019ed06fb0e41a601c620ecc1a SHA512 34ffe88359a12efd3f951b967cc03a7e279270d95b8e00958cfe08c07c0669cbfbf8d01ed68f69be86e39caa20b82893ac17bf868ce56de4c486ac80bed0ab59 WHIRLPOOL 80c5f6b921df53969c5d0b7d0045bfe766bab15d2221ae21c1bec8f87f1bdc9988f53bbb70968afe9ce0b01c8d0f1394299c7c9d51539f8c82387bd8c6461454 +DIST go-ipfs_v0.4.1_linux-amd64.tar.gz 7112859 SHA256 145b32f49e971eeb1545dc36321ae52e7b4ae4362b5b8aca6e4f6ab407aa5498 SHA512 1bee2c5b744d0727b95c1151da1d3e02c0c4b1c439e8d813de740571c667f83ee6e535fb66ba74714355c5edff5bd9b19425429c65cc50eaeee813f6479e0d5e WHIRLPOOL 58f666faa7793d5a2e7ca2430e58d6e2363769cc90015ed2be0e5f37544449ac617842f45ad588a8fb6dacafb9e0299f4cf25313b4ac89dba2eb78d295f9db25 diff --git a/net-p2p/go-ipfs-bin/go-ipfs-bin-0.4.1.ebuild b/net-p2p/go-ipfs-bin/go-ipfs-bin-0.4.1.ebuild new file mode 100644 index 00000000000..dc4a233b346 --- /dev/null +++ b/net-p2p/go-ipfs-bin/go-ipfs-bin-0.4.1.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +DESCRIPTION="go-ipfs is the main implementation of IPFS." +HOMEPAGE="https://ipfs.io/" +SRC_URI="https://dist.ipfs.io/go-ipfs/v${PV}/go-ipfs_v${PV}_linux-amd64.tar.gz + x86? ( https://dist.ipfs.io/go-ipfs/v${PV}/go-ipfs_v${PV}_linux-386.tar.gz )" +# Also available arches: +# arm? ( https://dist.ipfs.io/go-ipfs/v${PV}/go-ipfs_v${PV}_linux-arm.tar.gz ) + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~x86 ~amd64" +IUSE="+fuse" + +RDEPEND="fuse? ( sys-fs/fuse )" +S="${WORKDIR}/go-ipfs" + +QA_PREBUILT="/usr/bin/ipfs" + +src_install() { + dobin ipfs +} diff --git a/net-p2p/go-ipfs-bin/metadata.xml b/net-p2p/go-ipfs-bin/metadata.xml new file mode 100644 index 00000000000..71d33769930 --- /dev/null +++ b/net-p2p/go-ipfs-bin/metadata.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person"> + <email>baccenfutter@c-base.org</email> + <name>Brian Wiborg</name> + <description>Proxied maintainer - set to assignee on bugs</description> + </maintainer> + <maintainer type="project"> + <email>proxy-maint@gentoo.org</email> + <name>Proxy Maintainers</name> + </maintainer> + <use> + <flag name="fuse">Enable runtime support for <pkg>sys-fs/fuse</pkg></flag> + </use> + <longdescription lang="en"> + IPFS is a decentralized torrent-like networking system with transparent + file adding/downloading. + </longdescription> +</pkgmetadata> |