Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-p2p/syncthing/
Date: Wed, 08 Mar 2017 09:18:50
Message-Id: 1488964679.89934ddb2050964cc772bef4f58f09dbf74c5856.soap@gentoo
1 commit: 89934ddb2050964cc772bef4f58f09dbf74c5856
2 Author: Louis Sautier <sautier.louis <AT> gmail <DOT> com>
3 AuthorDate: Tue Mar 7 23:59:12 2017 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Wed Mar 8 09:17:59 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89934ddb
7
8 net-p2p/syncthing: bump to 0.14.24
9
10 Package-Manager: Portage-2.3.4, Repoman-2.3.2
11 Closes: https://github.com/gentoo/gentoo/pull/4153
12
13 net-p2p/syncthing/Manifest | 1 +
14 net-p2p/syncthing/syncthing-0.14.24.ebuild | 114 +++++++++++++++++++++++++++++
15 2 files changed, 115 insertions(+)
16
17 diff --git a/net-p2p/syncthing/Manifest b/net-p2p/syncthing/Manifest
18 index c6391833110..dab62ec18eb 100644
19 --- a/net-p2p/syncthing/Manifest
20 +++ b/net-p2p/syncthing/Manifest
21 @@ -1,2 +1,3 @@
22 DIST syncthing-0.14.21.tar.gz 6771897 SHA256 b46e67e16f64631b956b6724afd229876a1fee95c12dae4ae211d2623e35fdf6 SHA512 f1fe3c3fd56e1832341e74213dfbbe82ae731bdad49053a9c8d36eac8fd74a77189f1dc524cd61978092a06d355930082307bbd0aab57705c8e69f5aaf34b598 WHIRLPOOL edb9f409fa9e11501b46d3da9f22390c2a6e86f8227d35a786b9e2ce036cb54040466e810c41ce95a3e6019c30d7fea75b65528fb58c1d588a665e3374b66597
23 DIST syncthing-0.14.23.tar.gz 6783975 SHA256 bf8a13f27329c85a3fddef87a3dc90d40b6de3a233738b1d05127bc378aacd60 SHA512 36a1d0f1ec6642056a6ff43b90af417eff09d6f9c7358fb1d80c3f0470d9c686d8644e4491c94f95a644ee26b6b4df4ecc27d519c7d4cc39539061f6dc5b181c WHIRLPOOL cae76bc2f41bb7c3a3df3fdf2af702a42e4f25f8dc2f03c0b90bd51f0205f29354a2b4744d7d54e8e11f15509c695ae9693b37d35b4e7d03087f71faf8d90ff8
24 +DIST syncthing-0.14.24.tar.gz 6781504 SHA256 6538536d4c1c17dc20e1f1253f7a393ea7cf2f993d27b41e74d98af5963c2fc3 SHA512 164bb2ec8a85b5d10c9b4a08dfc3a94ff1b479069f272471067dea82ac6bb1616ea21fd2576bf5464c144be1bff61a89c24f04fe18c20c4c982acd26c0cc5ca3 WHIRLPOOL 56233ac875be1f633eae73337a88175391cae7d25a2a46d1715dd3b4397054863cdc1fc4a92dbdf1253dfecedaa8bf5d370428b78699ca6ce9d160a53148440a
25
26 diff --git a/net-p2p/syncthing/syncthing-0.14.24.ebuild b/net-p2p/syncthing/syncthing-0.14.24.ebuild
27 new file mode 100644
28 index 00000000000..6a552aa9568
29 --- /dev/null
30 +++ b/net-p2p/syncthing/syncthing-0.14.24.ebuild
31 @@ -0,0 +1,114 @@
32 +# Copyright 1999-2017 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=6
36 +
37 +EGO_PN="github.com/${PN}/${PN}"
38 +
39 +inherit golang-vcs-snapshot systemd user versionator
40 +
41 +DESCRIPTION="Open Source Continuous File Synchronization"
42 +HOMEPAGE="https://syncthing.net"
43 +SRC_URI="https://${EGO_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
44 +
45 +LICENSE="MPL-2.0"
46 +SLOT="0"
47 +KEYWORDS="~amd64 ~x86 ~arm"
48 +IUSE="tools"
49 +
50 +DOCS=( README.md AUTHORS CONTRIBUTING.md )
51 +
52 +pkg_setup() {
53 + enewgroup ${PN}
54 + enewuser ${PN} -1 -1 /var/lib/${PN} ${PN}
55 +
56 + if use tools ; then
57 + # separate user for the relay server
58 + enewgroup strelaysrv
59 + enewuser strelaysrv -1 -1 /var/lib/strelaysrv strelaysrv
60 + # and his home folder
61 + keepdir /var/lib/strelaysrv
62 + fowners strelaysrv:strelaysrv /var/lib/strelaysrv
63 + fi
64 +}
65 +
66 +src_prepare() {
67 + default
68 + sed -i \
69 + 's|^ExecStart=.*|ExecStart=/usr/libexec/syncthing/strelaysrv|' \
70 + src/${EGO_PN}/cmd/strelaysrv/etc/linux-systemd/strelaysrv.service \
71 + || die
72 +}
73 +
74 +src_compile() {
75 + export GOPATH="${S}:$(get_golibdir_gopath)"
76 + cd src/${EGO_PN} || die
77 + go run build.go -version "v${PV}" -no-upgrade install \
78 + $(usex tools "all" "") || die "build failed"
79 +}
80 +
81 +src_test() {
82 + cd src/${EGO_PN} || die
83 + go run build.go test || die "test failed"
84 +}
85 +
86 +src_install() {
87 + pushd src/${EGO_PN} >& /dev/null || die
88 + doman man/*.[157]
89 + einstalldocs
90 +
91 + dobin bin/syncthing
92 + if use tools ; then
93 + exeinto /usr/libexec/syncthing
94 + local exe
95 + for exe in bin/* ; do
96 + [[ "${exe}" == "bin/syncthing" ]] || doexe "${exe}"
97 + done
98 + fi
99 + popd >& /dev/null || die
100 +
101 + # openrc and systemd service files
102 + systemd_dounit src/${EGO_PN}/etc/linux-systemd/system/${PN}{@,-resume}.service
103 + systemd_douserunit src/${EGO_PN}/etc/linux-systemd/user/${PN}.service
104 + newconfd "${FILESDIR}/${PN}.confd" ${PN}
105 + newinitd "${FILESDIR}/${PN}.initd" ${PN}
106 +
107 + keepdir /var/{lib,log}/${PN}
108 + fowners ${PN}:${PN} /var/{lib,log}/${PN}
109 + insinto /etc/logrotate.d
110 + newins "${FILESDIR}/${PN}.logrotate" ${PN}
111 +
112 + if use tools ; then
113 + # openrc and systemd service files
114 + systemd_dounit src/${EGO_PN}/cmd/strelaysrv/etc/linux-systemd/strelaysrv.service
115 + newconfd "${FILESDIR}/strelaysrv.confd" strelaysrv
116 + newinitd "${FILESDIR}/strelaysrv.initd" strelaysrv
117 +
118 + insinto /etc/logrotate.d
119 + newins "${FILESDIR}/strelaysrv.logrotate" strelaysrv
120 + fi
121 +}
122 +
123 +pkg_postinst() {
124 + local v
125 + for v in ${REPLACING_VERSIONS}; do
126 + if [[ $(get_version_component_range 2) -gt \
127 + $(get_version_component_range 2 ${v}) ]]; then
128 + ewarn "Version ${PV} is not protocol-compatible with version" \
129 + "0.$(($(get_version_component_range 2) - 1)).x or lower."
130 + ewarn "Make sure all your devices are running at least version" \
131 + "0.$(get_version_component_range 2).0."
132 + fi
133 + done
134 +
135 + # check if user syncthing-relaysrv exists
136 + # if yes, warn that it has been moved to strelaysrv
137 + if [[ -n "$(egetent passwd syncthing-relaysrv 2>/dev/null)" ]]; then
138 + ewarn
139 + ewarn "The user and group for the relay server have been changed"
140 + ewarn "from syncthing-relaysrv to strelaysrv"
141 + ewarn "The old user and group are not deleted automatically. Delete them by running:"
142 + ewarn " userdel -r syncthing-relaysrv"
143 + ewarn " groupdel syncthing-relaysrv"
144 + fi
145 +}