go-ipfs: update to 0.4.1.
This commit is contained in:
parent
ae05f8dc33
commit
4ccf9b0101
2 changed files with 23 additions and 7 deletions
6
srcpkgs/go-ipfs/INSTALL.msg
Normal file
6
srcpkgs/go-ipfs/INSTALL.msg
Normal file
|
@ -0,0 +1,6 @@
|
|||
Please note that go-ipfs 0.4.0 introduces a change that breaks compatibility
|
||||
with earlier versions at the networking layer. Thus, it will be unable to
|
||||
communicate with peers running versions of go-ipfs older than 0.4.0.
|
||||
If you are upgrading from version 0.3.x, you should install
|
||||
the fs-repo-migrations package and run the fs-repo-migrations tool
|
||||
to upgrade your IPFS filesystem repository.
|
|
@ -1,7 +1,9 @@
|
|||
# Template file for 'go-ipfs'
|
||||
pkgname=go-ipfs
|
||||
version=0.3.11
|
||||
revision=3
|
||||
version=0.4.1
|
||||
revision=1
|
||||
create_wrksrc=yes
|
||||
build_wrksrc=${pkgname}-${version}
|
||||
build_style=go
|
||||
go_import_path="github.com/ipfs/${pkgname}"
|
||||
go_package="${go_import_path}/cmd/ipfs"
|
||||
|
@ -9,16 +11,24 @@ short_desc="Global versioned P2P merkle DAG file system"
|
|||
maintainer="Christopher Brannon <chris@the-brannons.com>"
|
||||
license="MIT"
|
||||
homepage="https://ipfs.io"
|
||||
distfiles="https://${go_import_path}/archive/v${version}.tar.gz"
|
||||
checksum=1806fea22ccee0c8005fffdd6391531c8df44f23571b3e9539f6fa3a0d4efb01
|
||||
broken=yes
|
||||
distfiles="https://${go_import_path}/archive/v${version}.tar.gz
|
||||
http://the-brannons.com/ipfs-gx-deps-20160427.tar.xz"
|
||||
checksum="b6bcab4d9da11339523cd178165c24f7784abda9dd820a8f3490c78da67be786
|
||||
3c6d99f4847eba3d3956d1b2f2eb07e7e0fe108d6711f5353bbf3aaf059e4dde"
|
||||
|
||||
do_build() {
|
||||
GO15VENDOREXPERIMENT=0 go get -x ${go_package}
|
||||
local path="${GOPATH}/src/${go_import_path}"
|
||||
mkdir -p "$(dirname ${path})"
|
||||
ln -fs $PWD "${path}"
|
||||
ln -s "${wrksrc}/ipfs-gx-deps-20160427/src/gx" "${GOPATH}/src"
|
||||
cd cmd/ipfs
|
||||
go build
|
||||
}
|
||||
|
||||
post_install() {
|
||||
do_install() {
|
||||
vbin cmd/ipfs/ipfs
|
||||
vinstall misc/completion/ipfs-completion.bash 644 usr/share/bash-completion/completions ipfs
|
||||
vlicense LICENSE
|
||||
vdoc README.md
|
||||
vdoc CHANGELOG.md
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue