net-p2p/syncthing: initial version in the portage tree
authorDirkjan Ochtman <djc@gentoo.org>
Sun, 7 Feb 2016 18:09:55 +0000 (19:09 +0100)
committerDirkjan Ochtman <djc@gentoo.org>
Sun, 7 Feb 2016 18:11:11 +0000 (19:11 +0100)
Package-Manager: portage-2.2.26

net-p2p/syncthing/Manifest [new file with mode: 0644]
net-p2p/syncthing/metadata.xml [new file with mode: 0644]
net-p2p/syncthing/syncthing-0.12.17.ebuild [new file with mode: 0644]

diff --git a/net-p2p/syncthing/Manifest b/net-p2p/syncthing/Manifest
new file mode 100644 (file)
index 0000000..2e98805
--- /dev/null
@@ -0,0 +1 @@
+DIST syncthing-0.12.17.tar.gz 4046320 SHA256 e9ac76e28423ac9d01c29b560ea6c4c61e881dd706676eb07d66aa5993310c60 SHA512 9c0e3bc0e23d2ec8ef9c888dc66cdc1aeac07bbffd03d4eae00539215cf0798db83da2b607b6570880bc941a8eac0b07c9b0257ad16546ebf63056a37807186b WHIRLPOOL 055a799cf5d544c11167fa11c1304a3a2978557578052a1392efa19ad363182a310401e3024317a7101859fa83647e79e6cc3559c12e79371a1135a22708d810
diff --git a/net-p2p/syncthing/metadata.xml b/net-p2p/syncthing/metadata.xml
new file mode 100644 (file)
index 0000000..eee05c3
--- /dev/null
@@ -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>
diff --git a/net-p2p/syncthing/syncthing-0.12.17.ebuild b/net-p2p/syncthing/syncthing-0.12.17.ebuild
new file mode 100644 (file)
index 0000000..605263a
--- /dev/null
@@ -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
+}