net-p2p/syncthing: initial version in the portage tree

Package-Manager: portage-2.2.26
This commit is contained in:
Dirkjan Ochtman
2016-02-07 19:09:55 +01:00
parent 0cbbf13c21
commit 964575f8fa
3 changed files with 52 additions and 0 deletions

View File

@@ -0,0 +1 @@
DIST syncthing-0.12.17.tar.gz 4046320 SHA256 e9ac76e28423ac9d01c29b560ea6c4c61e881dd706676eb07d66aa5993310c60 SHA512 9c0e3bc0e23d2ec8ef9c888dc66cdc1aeac07bbffd03d4eae00539215cf0798db83da2b607b6570880bc941a8eac0b07c9b0257ad16546ebf63056a37807186b WHIRLPOOL 055a799cf5d544c11167fa11c1304a3a2978557578052a1392efa19ad363182a310401e3024317a7101859fa83647e79e6cc3559c12e79371a1135a22708d810

View File

@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>djc@gentoo.org</email>
<name>Dirkjan Ochtman</name>
</maintainer>
<upstream>
<remote-id type="github">syncthing/syncthing</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -0,0 +1,40 @@
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
EGO_PN="github.com/syncthing/syncthing"
EGIT_COMMIT=v${PV}
inherit golang-vcs-snapshot
DESCRIPTION="Syncthing is an open, trustworthy and decentralized cloud storage system"
HOMEPAGE="http://syncthing.net"
SRC_URI="https://${EGO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
DEPEND=""
RDEPEND=""
src_compile() {
export GOPATH="${S}:$(get_golibdir_gopath)"
cd src/${EGO_PN}
go run build.go || die "build failed"
}
#go test: -race is only supported on amd64 platforms
#src_test() {
# cd src/${EGO_PN}
# go run build.go test || die "test failed"
#}
src_install() {
cd src/${EGO_PN}
dobin bin/*
dodoc README.md AUTHORS CONTRIBUTING.md
}