mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
net-p2p/syncthing: initial version in the portage tree
Package-Manager: portage-2.2.26
This commit is contained in:
1
net-p2p/syncthing/Manifest
Normal file
1
net-p2p/syncthing/Manifest
Normal file
@@ -0,0 +1 @@
|
||||
DIST syncthing-0.12.17.tar.gz 4046320 SHA256 e9ac76e28423ac9d01c29b560ea6c4c61e881dd706676eb07d66aa5993310c60 SHA512 9c0e3bc0e23d2ec8ef9c888dc66cdc1aeac07bbffd03d4eae00539215cf0798db83da2b607b6570880bc941a8eac0b07c9b0257ad16546ebf63056a37807186b WHIRLPOOL 055a799cf5d544c11167fa11c1304a3a2978557578052a1392efa19ad363182a310401e3024317a7101859fa83647e79e6cc3559c12e79371a1135a22708d810
|
||||
11
net-p2p/syncthing/metadata.xml
Normal file
11
net-p2p/syncthing/metadata.xml
Normal 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>
|
||||
40
net-p2p/syncthing/syncthing-0.12.17.ebuild
Normal file
40
net-p2p/syncthing/syncthing-0.12.17.ebuild
Normal 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
|
||||
}
|
||||
Reference in New Issue
Block a user