Gentoo Archives: gentoo-commits

From: Ian Delaney <idella4@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-p2p/syncthing/
Date: Mon, 07 Mar 2016 08:07:26
Message-Id: 1457338014.eb6c9fb9e5adb1721725d1da98576b6fd4ff6ef4.idella4@gentoo
1 commit: eb6c9fb9e5adb1721725d1da98576b6fd4ff6ef4
2 Author: Louis Sautier <sautier.louis <AT> gmail <DOT> com>
3 AuthorDate: Mon Mar 7 00:38:00 2016 +0000
4 Commit: Ian Delaney <idella4 <AT> gentoo <DOT> org>
5 CommitDate: Mon Mar 7 08:06:54 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb6c9fb9
7
8 net-p2p/syncthing: remove old
9
10 Package-Manager: portage-2.2.27
11
12 net-p2p/syncthing/Manifest | 1 -
13 net-p2p/syncthing/syncthing-0.12.18.ebuild | 42 ------------------------------
14 2 files changed, 43 deletions(-)
15
16 diff --git a/net-p2p/syncthing/Manifest b/net-p2p/syncthing/Manifest
17 index c0f809e..f8712fb 100644
18 --- a/net-p2p/syncthing/Manifest
19 +++ b/net-p2p/syncthing/Manifest
20 @@ -1,3 +1,2 @@
21 -DIST syncthing-0.12.18.tar.gz 4046127 SHA256 e0d1af4f29c9e2325507a7daf4bf97098c87c321a7e075125b66ddaa34b37eb4 SHA512 2f2351a983b3d384e9fe65c87d67b81f20fc20b7b43b8d2fab882131bd4e4119f0cf099571d617f22f0125c43224c653e93329392204f3e0ff6c6a3bba7d8263 WHIRLPOOL cfe491241e9ef4ebd19042a3cc3188771cf64d67c0faa29feda7da5980f86a38c1e284938074271e25bbfb881eca1ca56f237bf81a61be4d836287cbfab27eb2
22 DIST syncthing-0.12.19.tar.gz 4047476 SHA256 5a7035029974fe0fb496d9f8af880a50bcc8499ff5eef7ee4ef48f08df37820e SHA512 89d2b34c5bb9772bcaad84caa03794cdcfeade8fef0b8abaeea6a1cccdc09167a690aa8b1dfadac81d9ac0e8a07c9be112af7f2e56f12f589b906c518c49a686 WHIRLPOOL c0589a5e6a4f090dee9f79bb199c901b3f0e75cf0f92c12851a9713cdf7e813c8a5564ce475000529d2a5edafb9861d1b820858cb6fa3bb5bf082ff5586da9b3
23 DIST syncthing-0.12.20.tar.gz 4047350 SHA256 89dc46ebbe8b114467abe0171fd03a76408a9cf4fe44308db2b6d60eee233006 SHA512 1df45f4f778b1f2784f0787695bf5f94796747bc103d032b07e4cdb1108211a5debcfb5a10c0284bee43f896e011e29264e49216216570efe563822efce4907c WHIRLPOOL 8614a87d4b03737dc69e966933314925efa4f2ccd9966af4d44930244a87d2819397c059cec2af2544161c9ab0df41ce7e578d156c4ca0cb911975e10a230aad
24
25 diff --git a/net-p2p/syncthing/syncthing-0.12.18.ebuild b/net-p2p/syncthing/syncthing-0.12.18.ebuild
26 deleted file mode 100644
27 index 1aef4d5..0000000
28 --- a/net-p2p/syncthing/syncthing-0.12.18.ebuild
29 +++ /dev/null
30 @@ -1,42 +0,0 @@
31 -# Copyright 1999-2016 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -# $Id$
34 -
35 -EAPI=5
36 -
37 -EGO_PN="github.com/syncthing/syncthing"
38 -EGIT_COMMIT=v${PV}
39 -
40 -inherit golang-vcs-snapshot systemd
41 -
42 -DESCRIPTION="Syncthing is an open, trustworthy and decentralized cloud storage system"
43 -HOMEPAGE="http://syncthing.net"
44 -SRC_URI="https://${EGO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
45 -
46 -LICENSE="MIT"
47 -SLOT="0"
48 -KEYWORDS="~amd64"
49 -IUSE=""
50 -
51 -DEPEND=""
52 -RDEPEND=""
53 -
54 -src_compile() {
55 - export GOPATH="${S}:$(get_golibdir_gopath)"
56 - cd src/${EGO_PN}
57 - go run build.go -version "v${PV}" -no-upgrade || die "build failed"
58 -}
59 -
60 -#go test: -race is only supported on amd64 platforms
61 -#src_test() {
62 -# cd src/${EGO_PN}
63 -# go run build.go test || die "test failed"
64 -#}
65 -
66 -src_install() {
67 - cd src/${EGO_PN}
68 - dobin bin/*
69 - dodoc README.md AUTHORS CONTRIBUTING.md
70 - systemd_dounit "${S}"/src/${EGO_PN}/etc/linux-systemd/system/${PN}@.service
71 - systemd_douserunit "${S}"/src/${EGO_PN}/etc/linux-systemd/user/${PN}.service
72 -}