* [gentoo-commits] repo/gentoo:master commit in: net-p2p/syncthing/files/, net-p2p/syncthing/
@ 2016-02-17 20:43 Dirkjan Ochtman
0 siblings, 0 replies; 6+ messages in thread
From: Dirkjan Ochtman @ 2016-02-17 20:43 UTC (permalink / raw
To: gentoo-commits
commit: c7c80deec9e3adf001a7a47dafada47afef3ff04
Author: Louis Sautier <sautier.louis <AT> gmail <DOT> com>
AuthorDate: Wed Feb 17 14:01:29 2016 +0000
Commit: Dirkjan Ochtman <djc <AT> gentoo <DOT> org>
CommitDate: Wed Feb 17 20:33:20 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7c80dee
net-p2p/syncthing: add init script, man, logrotate
Package-Manager: portage-2.2.27
net-p2p/syncthing/files/syncthing.confd | 24 ++++++++++++++++++++
net-p2p/syncthing/files/syncthing.initd | 34 +++++++++++++++++++++++++++++
net-p2p/syncthing/files/syncthing.logrotate | 9 ++++++++
net-p2p/syncthing/syncthing-0.12.19.ebuild | 16 ++++++++++++--
4 files changed, 81 insertions(+), 2 deletions(-)
diff --git a/net-p2p/syncthing/files/syncthing.confd b/net-p2p/syncthing/files/syncthing.confd
new file mode 100644
index 0000000..da3ac4d
--- /dev/null
+++ b/net-p2p/syncthing/files/syncthing.confd
@@ -0,0 +1,24 @@
+# /etc/conf.d/syncthing: config file for /etc/init.d/syncthing
+
+# User and group as which to run
+#SYNCTHING_USER="syncthing"
+#SYNCTHING_GROUP="syncthing"
+
+# Configuration directory
+#SYNCTHING_HOMEDIR="/var/lib/syncthing"
+
+# Log file location
+#SYNCTHING_LOGFILE="/var/log/syncthing/syncthing.log"
+
+# umask used to create files
+# The default allows group access
+#SYNCTHING_UMASK=007
+
+# I/O nice level of syncthing
+#SYNCTHING_IONICE="0"
+
+# Nice level of syncthing
+#SYNCTHING_NICE="0"
+
+# Extra options for syncthing
+#SYNCTHING_OPTS=""
diff --git a/net-p2p/syncthing/files/syncthing.initd b/net-p2p/syncthing/files/syncthing.initd
new file mode 100755
index 0000000..2acaf34
--- /dev/null
+++ b/net-p2p/syncthing/files/syncthing.initd
@@ -0,0 +1,34 @@
+#!/sbin/runscript
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+SYNCTHING_USER=${SYNCTHING_USER:-syncthing}
+SYNCTHING_GROUP=${SYNCTHING_GROUP:-syncthing}
+SYNCTHING_HOMEDIR=${SYNCTHING_HOMEDIR:-/var/lib/syncthing}
+SYNCTHING_LOGFILE=${SYNCTHING_LOGFILE:-/var/log/syncthing/syncthing.log}
+SYNCTHING_UMASK=${SYNCTHING_UMASK:-007}
+SYNCTHING_IONICE=${SYNCTHING_IONICE:-0}
+SYNCTHING_NICE=${SYNCTHING_NICE:-0}
+
+description="Syncthing is an open, trustworthy and decentralized cloud storage system"
+command="/usr/bin/syncthing"
+command_args="-no-browser -home=${SYNCTHING_HOMEDIR} ${SYNCTHING_OPTS}"
+pidfile="/run/syncthing.pid"
+start_stop_daemon_args="--background \
+ --user ${SYNCTHING_USER} \
+ --group ${SYNCTHING_GROUP} \
+ --umask ${SYNCTHING_UMASK} \
+ --make-pidfile \
+ --ionice ${SYNCTHING_IONICE} \
+ --nicelevel ${SYNCTHING_NICE} \
+ --stdout ${SYNCTHING_LOGFILE} \
+ --stderr ${SYNCTHING_LOGFILE}"
+
+depend() {
+ need localmount net
+}
+
+start_pre() {
+ checkpath -q -d -o ${SYNCTHING_USER}:${SYNCTHING_GROUP} ${SYNCTHING_HOMEDIR}
+ checkpath -q -f -o ${SYNCTHING_USER}:${SYNCTHING_GROUP} ${SYNCTHING_LOGFILE}
+}
diff --git a/net-p2p/syncthing/files/syncthing.logrotate b/net-p2p/syncthing/files/syncthing.logrotate
new file mode 100644
index 0000000..37c4320
--- /dev/null
+++ b/net-p2p/syncthing/files/syncthing.logrotate
@@ -0,0 +1,9 @@
+/var/log/syncthing/syncthing.log {
+ missingok
+ notifempty
+ sharedscripts
+ postrotate
+ kill -0 $(</run/syncthing.pid) && \
+ /etc/init.d/syncthing restart > /dev/null 2>&1 || true
+ endscript
+}
diff --git a/net-p2p/syncthing/syncthing-0.12.19.ebuild b/net-p2p/syncthing/syncthing-0.12.19.ebuild
index 0766431..5f22a11 100644
--- a/net-p2p/syncthing/syncthing-0.12.19.ebuild
+++ b/net-p2p/syncthing/syncthing-0.12.19.ebuild
@@ -7,7 +7,7 @@ EAPI=5
EGO_PN="github.com/syncthing/syncthing"
EGIT_COMMIT=v${PV}
-inherit golang-vcs-snapshot systemd
+inherit golang-vcs-snapshot systemd user
DESCRIPTION="Syncthing is an open, trustworthy and decentralized cloud storage system"
HOMEPAGE="http://syncthing.net"
@@ -21,6 +21,11 @@ IUSE=""
DEPEND=""
RDEPEND=""
+pkg_setup() {
+ enewgroup ${PN}
+ enewuser ${PN} -1 -1 /var/lib/${PN} ${PN}
+}
+
src_compile() {
export GOPATH="${S}:$(get_golibdir_gopath)"
cd src/${EGO_PN}
@@ -34,8 +39,15 @@ src_test() {
src_install() {
cd src/${EGO_PN}
+ doman man/*.[157] || die
dobin bin/*
- dodoc README.md AUTHORS CONTRIBUTING.md
+ dodoc README.md AUTHORS CONTRIBUTING.md
systemd_dounit "${S}"/src/${EGO_PN}/etc/linux-systemd/system/${PN}@.service
systemd_douserunit "${S}"/src/${EGO_PN}/etc/linux-systemd/user/${PN}.service
+ newconfd "${FILESDIR}/${PN}.confd" ${PN}
+ newinitd "${FILESDIR}/${PN}.initd" ${PN}
+ keepdir /var/{lib,log}/${PN}
+ fowners ${PN}:${PN} /var/{lib,log}/${PN}
+ insinto /etc/logrotate.d
+ newins "${FILESDIR}/${PN}.logrotate" ${PN}
}
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-p2p/syncthing/files/, net-p2p/syncthing/
@ 2016-06-24 20:05 Dirkjan Ochtman
0 siblings, 0 replies; 6+ messages in thread
From: Dirkjan Ochtman @ 2016-06-24 20:05 UTC (permalink / raw
To: gentoo-commits
commit: 7deebb7157b1b7713488676ad049926f6aaf7217
Author: Dirkjan Ochtman <djc <AT> gentoo <DOT> org>
AuthorDate: Fri Jun 24 20:04:51 2016 +0000
Commit: Dirkjan Ochtman <djc <AT> gentoo <DOT> org>
CommitDate: Fri Jun 24 20:04:51 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7deebb71
net-p2p/syncthing: add tools flag
Thanks to Alexey Korepanov for implementing this.
Package-Manager: portage-2.2.28
net-p2p/syncthing/files/relaysrv.systemd.patch | 13 +++
net-p2p/syncthing/files/syncthing-relaysrv.confd | 3 +
net-p2p/syncthing/files/syncthing-relaysrv.initd | 30 ++++++
.../syncthing/files/syncthing-relaysrv.logrotate | 6 ++
net-p2p/syncthing/files/syncthing.logrotate | 5 +-
net-p2p/syncthing/metadata.xml | 5 +
net-p2p/syncthing/syncthing-0.13.7-r1.ebuild | 108 +++++++++++++++++++++
7 files changed, 166 insertions(+), 4 deletions(-)
diff --git a/net-p2p/syncthing/files/relaysrv.systemd.patch b/net-p2p/syncthing/files/relaysrv.systemd.patch
new file mode 100644
index 0000000..2cff1dc
--- /dev/null
+++ b/net-p2p/syncthing/files/relaysrv.systemd.patch
@@ -0,0 +1,13 @@
+diff --git src/github.com/syncthing/syncthing/cmd/relaysrv/etc/linux-systemd/syncthing-relaysrv.service src/github.com/syncthing/syncthing/cmd/relaysrv/etc/linux-systemd/syncthing-relaysrv.service
+index b9d3173..7f8e2c0 100644
+--- src/github.com/syncthing/syncthing/cmd/relaysrv/etc/linux-systemd/syncthing-relaysrv.service
++++ src/github.com/syncthing/syncthing/cmd/relaysrv/etc/linux-systemd/syncthing-relaysrv.service
+@@ -5,7 +5,7 @@ After=network.target
+ [Service]
+ User=syncthing-relaysrv
+ Group=syncthing-relaysrv
+-ExecStart=/usr/bin/relaysrv
++ExecStart=/usr/libexec/syncthing/relaysrv
+ WorkingDirectory=/var/lib/syncthing-relaysrv
+
+ PrivateTmp=true
diff --git a/net-p2p/syncthing/files/syncthing-relaysrv.confd b/net-p2p/syncthing/files/syncthing-relaysrv.confd
new file mode 100644
index 0000000..2effc39
--- /dev/null
+++ b/net-p2p/syncthing/files/syncthing-relaysrv.confd
@@ -0,0 +1,3 @@
+# Options to pass to relaysrv
+# see relaysrv --help for more information
+SR_OPTS=
diff --git a/net-p2p/syncthing/files/syncthing-relaysrv.initd b/net-p2p/syncthing/files/syncthing-relaysrv.initd
new file mode 100644
index 0000000..860c5f3
--- /dev/null
+++ b/net-p2p/syncthing/files/syncthing-relaysrv.initd
@@ -0,0 +1,30 @@
+#!/sbin/openrc-run
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+SR_USER=syncthing-relaysrv
+SR_GROUP=syncthing-relaysrv
+SR_HOMEDIR=/var/lib/syncthing-relaysrv
+SR_LOGFILE=/var/log/syncthing/relaysrv.log
+
+
+description="Relay service for syncthing"
+command="/usr/libexec/syncthing/relaysrv"
+command_args="${SR_OPTS}"
+pidfile="/run/relaysrv.pid"
+start_stop_daemon_args="--background
+ --user ${SR_USER}
+ --group ${SR_GROUP}
+ --chdir \"${SR_HOMEDIR}\"
+ --make-pidfile
+ --stdout \"${SR_LOGFILE}\"
+ --stderr \"${SR_LOGFILE}\"
+ "
+
+depend() {
+ need net
+}
+
+start_pre() {
+ checkpath -q -d -o ${SR_USER}:${SR_GROUP} ${SR_HOMEDIR}
+ checkpath -q -f -o ${SR_USER}:${SR_GROUP} ${SR_LOGFILE}
+}
diff --git a/net-p2p/syncthing/files/syncthing-relaysrv.logrotate b/net-p2p/syncthing/files/syncthing-relaysrv.logrotate
new file mode 100644
index 0000000..f168cbf
--- /dev/null
+++ b/net-p2p/syncthing/files/syncthing-relaysrv.logrotate
@@ -0,0 +1,6 @@
+/var/log/syncthing/relaysrv.log {
+ missingok
+ notifempty
+ sharedscripts
+ copytruncate
+}
diff --git a/net-p2p/syncthing/files/syncthing.logrotate b/net-p2p/syncthing/files/syncthing.logrotate
index 37c4320..11310e3 100644
--- a/net-p2p/syncthing/files/syncthing.logrotate
+++ b/net-p2p/syncthing/files/syncthing.logrotate
@@ -2,8 +2,5 @@
missingok
notifempty
sharedscripts
- postrotate
- kill -0 $(</run/syncthing.pid) && \
- /etc/init.d/syncthing restart > /dev/null 2>&1 || true
- endscript
+ copytruncate
}
diff --git a/net-p2p/syncthing/metadata.xml b/net-p2p/syncthing/metadata.xml
index 78bfd30..df7f002 100644
--- a/net-p2p/syncthing/metadata.xml
+++ b/net-p2p/syncthing/metadata.xml
@@ -18,6 +18,11 @@
Syncthing replaces proprietary sync and cloud services with something open, trustworthy and decentralized.
Your data is your data alone and you deserve to choose where it is stored, if it is shared with some third party and how it's transmitted over the Internet.
</longdescription>
+ <use>
+ <flag name="tools">
+ Install discosrv, relaysrv and other tools to /usr/libexec/synsthing/.
+ </flag>
+ </use>
<upstream>
<remote-id type="github">syncthing/syncthing</remote-id>
<bugs-to>https://github.com/syncthing/syncthing/issues</bugs-to>
diff --git a/net-p2p/syncthing/syncthing-0.13.7-r1.ebuild b/net-p2p/syncthing/syncthing-0.13.7-r1.ebuild
new file mode 100644
index 0000000..fdc4011
--- /dev/null
+++ b/net-p2p/syncthing/syncthing-0.13.7-r1.ebuild
@@ -0,0 +1,108 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+EGO_PN="github.com/syncthing/syncthing"
+EGIT_COMMIT=v${PV}
+
+inherit golang-vcs-snapshot systemd user versionator
+
+DESCRIPTION="Open Source Continuous File Synchronization"
+HOMEPAGE="https://syncthing.net"
+SRC_URI="https://${EGO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MPL-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~arm"
+IUSE="tools"
+
+DEPEND=""
+RDEPEND=""
+
+DOCS="README.md AUTHORS CONTRIBUTING.md"
+
+pkg_setup() {
+ enewgroup ${PN}
+ enewuser ${PN} -1 -1 /var/lib/${PN} ${PN}
+
+ if use tools ; then
+ # separate user for relaysrv
+ enewgroup ${PN}-relaysrv
+ enewuser ${PN}-relaysrv -1 -1 /var/lib/${PN}-relaysrv ${PN}-relaysrv
+ fi
+}
+
+src_prepare() {
+ epatch "${FILESDIR}/relaysrv.systemd.patch"
+ eapply_user
+}
+
+src_compile() {
+ export GOPATH="${S}:$(get_golibdir_gopath)"
+ cd src/${EGO_PN}
+ # If we pass "build" to build.go, it builds only syncthing itself, and
+ # places the binary in the root folder. If we do not pass "build", all the
+ # tools are built, and all binaries are placed in folder ./bin.
+ ST_BUILD="build"
+ if use tools ; then
+ ST_BUILD=""
+ fi
+ go run build.go -version "v${PV}" -no-upgrade ${ST_BUILD} || die "build failed"
+}
+
+src_test() {
+ cd src/${EGO_PN}
+ go run build.go test || die "test failed"
+}
+
+src_install() {
+ cd src/${EGO_PN}
+ doman man/*.[157]
+
+ if use tools ; then
+ dobin bin/syncthing
+ exeinto /usr/libexec/syncthing
+ for exe in bin/* ; do
+ [ "${exe}" = "bin/syncthing" ] || doexe "${exe}"
+ done
+ else
+ dobin syncthing
+ fi
+
+ # openrc and systemd service files
+ systemd_dounit "${S}"/src/${EGO_PN}/etc/linux-systemd/system/${PN}@.service \
+ "${S}"/src/${EGO_PN}/etc/linux-systemd/system/${PN}-resume.service
+ systemd_douserunit "${S}"/src/${EGO_PN}/etc/linux-systemd/user/${PN}.service
+ newconfd "${FILESDIR}/${PN}.confd" ${PN}
+ newinitd "${FILESDIR}/${PN}.initd" ${PN}
+
+ keepdir /var/{lib,log}/${PN}
+ fowners ${PN}:${PN} /var/{lib,log}/${PN}
+ insinto /etc/logrotate.d
+ newins "${FILESDIR}/${PN}.logrotate" ${PN}
+
+ if use tools ; then
+ # openrc and systemd service files
+ systemd_dounit "${S}"/src/${EGO_PN}/cmd/relaysrv/etc/linux-systemd/${PN}-relaysrv.service
+ newconfd "${FILESDIR}/${PN}-relaysrv.confd" ${PN}-relaysrv
+ newinitd "${FILESDIR}/${PN}-relaysrv.initd" ${PN}-relaysrv
+
+ keepdir /var/lib/${PN}-relaysrv
+ fowners ${PN}-relaysrv:${PN}-relaysrv /var/{lib,log}/${PN}
+
+ insinto /etc/logrotate.d
+ newins "${FILESDIR}/syncthing-relaysrv.logrotate" syncthing-relaysrv
+ fi
+}
+
+pkg_postinst() {
+ if [[ $(get_version_component_range 2) -gt \
+ $(get_version_component_range 2 ${REPLACING_VERSIONS}) ]]; then
+ ewarn "Version ${PV} is not protocol-compatible with version" \
+ "0.$(($(get_version_component_range 2) - 1)).x or lower."
+ ewarn "Make sure all your devices are running at least version" \
+ "0.$(get_version_component_range 2).0."
+ fi
+}
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-p2p/syncthing/files/, net-p2p/syncthing/
@ 2022-01-18 16:40 Marek Szuba
0 siblings, 0 replies; 6+ messages in thread
From: Marek Szuba @ 2022-01-18 16:40 UTC (permalink / raw
To: gentoo-commits
commit: e921bbd70d0b628442f5ae1dc2d2abe0440b8cd2
Author: Marek Szuba <marecki <AT> gentoo <DOT> org>
AuthorDate: Tue Jan 18 15:52:56 2022 +0000
Commit: Marek Szuba <marecki <AT> gentoo <DOT> org>
CommitDate: Tue Jan 18 16:40:32 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e921bbd7
net-p2p/syncthing: drop 1.18.4
Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>
net-p2p/syncthing/Manifest | 1 -
net-p2p/syncthing/files/stdiscosrv.initd | 30 -
net-p2p/syncthing/files/stdiscosrv.service | 17 -
net-p2p/syncthing/files/strelaysrv.initd | 30 -
net-p2p/syncthing/files/syncthing.initd | 34 --
net-p2p/syncthing/syncthing-1.18.4.ebuild | 883 -----------------------------
6 files changed, 995 deletions(-)
diff --git a/net-p2p/syncthing/Manifest b/net-p2p/syncthing/Manifest
index 834d4526781d..2b4de885a223 100644
--- a/net-p2p/syncthing/Manifest
+++ b/net-p2p/syncthing/Manifest
@@ -776,6 +776,5 @@ DIST rsc.io%2Fquote%2Fv3%2F@v%2Fv3.1.0.mod 55 BLAKE2B f1f0ba35f0ffd200ed37c06b20
DIST rsc.io%2Fsampler%2F@v%2Fv1.3.0.mod 88 BLAKE2B c2ac3c9619e396db470c9951dfc11cdacccd56ae09b3b353015ee7e5fbb023df288dbf48d81b44c309241d1ea89a2e0ee42ee1d17e536fcfa531aaee0e651ab7 SHA512 2137507eb25fbae419605e0cd6bca4cfa584110eebc276cd759a4dcb6f97e52928e5b2d9b276e76bcabcec3bbfc2c42f97fa29f54695d27fb00f9423e1638863
DIST sourcegraph.com%2Fsourcegraph%2Fgo-diff%2F@v%2Fv0.5.0.mod 288 BLAKE2B e8f361d08bba5f5689a0e8b51dc17f11fe893c1fb3c0b671d323c6f66448d0c73d26b64586ce2236cc91f44839eba5ebf2a858b04aa85b5bde847c5956b0a519 SHA512 ef74bbbbb50cb01b861dc25c1a1ee276cebb64a383a31f4acf3f78db0e1b5fa907c6ecb9a88e4819d4aa7d5fccced97b574c12e147c36677a8d4e5f73b55d04c
DIST sourcegraph.com%2Fsqs%2Fpbtypes%2F@v%2Fv0.0.0-20180604144634-d3ebe8f20ae4.mod 35 BLAKE2B ff9ae0413ef6833c8d2f6ea3938e675256d2c44e38b31cee5223b7a1bcd3ef38515337ef388a155b171bc18d2f5153bef2ad0b0cf06b7c3d01145e5a13338aa7 SHA512 4316ef9aa90178d1f45938d1c81e6e0ab0618eeae3337bdf1bb2509d05c7b0e22e42fc2f86cc5d2a6fb1fdefc50ac68acc030e1d2cce8277314bbc2cc101c262
-DIST syncthing-1.18.4.tar.gz 6168557 BLAKE2B b1abb649f406ca010b956c0dfd8920b6d7d6297433a93a2d27d09f2fbcd0220a32f8237fde1d301199749af162f6f29dfb3caa177839841f155c79acec9b4799 SHA512 176ff8f40c0d6644b8f81583e09e9f8a411548772ffdbbd70fcca20371511a8faa4311d23c7bd3815f0205c00b9b7284846fce3183ffbca6bb9460e6aef7f0d8
DIST syncthing-1.18.5.tar.gz 6168905 BLAKE2B 4555351e6bad90cf3fde76971bc500f47f628ed1690f843d7404f47a20bcd4570c8aa7791ebe26c1abfe21550b18e1dc3a6354b98223589e27f8424ab5784bd4 SHA512 10968cdbc7357909bc34e2d82691c2a905c66ef5874eeb93e3b9c9a454df0122551feaf454b916e1ca3363a87f0699628a08f44ab1edecd8fb7d1fa78ef87af5
DIST syncthing-1.18.6.tar.gz 6168847 BLAKE2B 1f5c962bf78c0628eee07bdd2655810deedb7ba75148cffc4d612ed6032b5d6719af9fc09b8980e3326198967681b8741abde131f277b0098b48c0768288e565 SHA512 81bdb08b2297a53e155b39258fb07ac85f528ab67d8a456399684d396e86f2bdf9a26a531448e1227aa1aefbeefa76906a8d841b71617a4aaf2b70b3db63160a
diff --git a/net-p2p/syncthing/files/stdiscosrv.initd b/net-p2p/syncthing/files/stdiscosrv.initd
deleted file mode 100644
index 333b980897b3..000000000000
--- a/net-p2p/syncthing/files/stdiscosrv.initd
+++ /dev/null
@@ -1,30 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-SD_USER=stdiscosrv
-SD_GROUP=stdiscosrv
-SD_HOMEDIR=/var/lib/stdiscosrv
-SD_LOGFILE=/var/log/syncthing/stdiscosrv.log
-
-
-description="Discovery service for syncthing"
-command="/usr/libexec/syncthing/stdiscosrv"
-command_args="${SD_OPTS}"
-pidfile="/run/stdiscosrv.pid"
-start_stop_daemon_args="--background
- --user ${SD_USER}
- --group ${SD_GROUP}
- --chdir \"${SD_HOMEDIR}\"
- --make-pidfile
- --stdout \"${SD_LOGFILE}\"
- --stderr \"${SD_LOGFILE}\"
- "
-
-depend() {
- need net
-}
-
-start_pre() {
- checkpath -q -d -o ${SD_USER}:${SD_GROUP} ${SD_HOMEDIR}
- checkpath -q -f -o ${SD_USER}:${SD_GROUP} ${SD_LOGFILE}
-}
diff --git a/net-p2p/syncthing/files/stdiscosrv.service b/net-p2p/syncthing/files/stdiscosrv.service
deleted file mode 100644
index 4011c7d4c5bd..000000000000
--- a/net-p2p/syncthing/files/stdiscosrv.service
+++ /dev/null
@@ -1,17 +0,0 @@
-[Unit]
-Description=Syncthing discovery server
-After=network.target
-
-[Service]
-User=stdiscosrv
-Group=stdiscosrv
-ExecStart=/usr/libexec/syncthing/stdiscosrv
-WorkingDirectory=/var/lib/stdiscosrv
-
-PrivateTmp=true
-ProtectSystem=full
-ProtectHome=true
-NoNewPrivileges=true
-
-[Install]
-WantedBy=multi-user.target
diff --git a/net-p2p/syncthing/files/strelaysrv.initd b/net-p2p/syncthing/files/strelaysrv.initd
deleted file mode 100644
index 7eb77be26fda..000000000000
--- a/net-p2p/syncthing/files/strelaysrv.initd
+++ /dev/null
@@ -1,30 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-SR_USER=strelaysrv
-SR_GROUP=strelaysrv
-SR_HOMEDIR=/var/lib/strelaysrv
-SR_LOGFILE=/var/log/syncthing/strelaysrv.log
-
-
-description="Relay service for syncthing"
-command="/usr/libexec/syncthing/strelaysrv"
-command_args="${SR_OPTS}"
-pidfile="/run/strelaysrv.pid"
-start_stop_daemon_args="--background
- --user ${SR_USER}
- --group ${SR_GROUP}
- --chdir \"${SR_HOMEDIR}\"
- --make-pidfile
- --stdout \"${SR_LOGFILE}\"
- --stderr \"${SR_LOGFILE}\"
- "
-
-depend() {
- need net
-}
-
-start_pre() {
- checkpath -q -d -o ${SR_USER}:${SR_GROUP} ${SR_HOMEDIR}
- checkpath -q -f -o ${SR_USER}:${SR_GROUP} ${SR_LOGFILE}
-}
diff --git a/net-p2p/syncthing/files/syncthing.initd b/net-p2p/syncthing/files/syncthing.initd
deleted file mode 100644
index b64ebac03254..000000000000
--- a/net-p2p/syncthing/files/syncthing.initd
+++ /dev/null
@@ -1,34 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-SYNCTHING_USER=${SYNCTHING_USER:-syncthing}
-SYNCTHING_GROUP=${SYNCTHING_GROUP:-syncthing}
-SYNCTHING_HOMEDIR=${SYNCTHING_HOMEDIR:-/var/lib/syncthing/.config/syncthing}
-SYNCTHING_LOGFILE=${SYNCTHING_LOGFILE:-/var/log/syncthing/syncthing.log}
-SYNCTHING_UMASK=${SYNCTHING_UMASK:-007}
-SYNCTHING_IONICE=${SYNCTHING_IONICE:-0}
-SYNCTHING_NICE=${SYNCTHING_NICE:-0}
-
-description="Syncthing is an open, trustworthy and decentralized cloud storage system"
-command="/usr/bin/syncthing"
-command_args="-no-browser -home=${SYNCTHING_HOMEDIR} ${SYNCTHING_OPTS}"
-pidfile="/run/syncthing.pid"
-start_stop_daemon_args="--background \
- --user ${SYNCTHING_USER} \
- --group ${SYNCTHING_GROUP} \
- --umask ${SYNCTHING_UMASK} \
- --make-pidfile \
- --ionice ${SYNCTHING_IONICE} \
- --nicelevel ${SYNCTHING_NICE} \
- --stdout ${SYNCTHING_LOGFILE} \
- --stderr ${SYNCTHING_LOGFILE}"
-
-depend() {
- need localmount net
-}
-
-start_pre() {
- checkpath -q -d -o ${SYNCTHING_USER}:${SYNCTHING_GROUP} ${SYNCTHING_HOMEDIR}
- checkpath -q -f -o ${SYNCTHING_USER}:${SYNCTHING_GROUP} ${SYNCTHING_LOGFILE}
-}
diff --git a/net-p2p/syncthing/syncthing-1.18.4.ebuild b/net-p2p/syncthing/syncthing-1.18.4.ebuild
deleted file mode 100644
index 9bf4a1683420..000000000000
--- a/net-p2p/syncthing/syncthing-1.18.4.ebuild
+++ /dev/null
@@ -1,883 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit desktop go-module systemd xdg-utils
-
-EGO_SUM=(
- "cloud.google.com/go v0.26.0/go.mod"
- "cloud.google.com/go v0.31.0/go.mod"
- "cloud.google.com/go v0.34.0/go.mod"
- "cloud.google.com/go v0.37.0/go.mod"
- "cloud.google.com/go v0.38.0/go.mod"
- "cloud.google.com/go v0.44.1/go.mod"
- "cloud.google.com/go v0.44.2/go.mod"
- "cloud.google.com/go v0.45.1/go.mod"
- "cloud.google.com/go v0.46.3/go.mod"
- "cloud.google.com/go v0.50.0/go.mod"
- "cloud.google.com/go v0.52.0/go.mod"
- "cloud.google.com/go v0.53.0/go.mod"
- "cloud.google.com/go v0.54.0/go.mod"
- "cloud.google.com/go v0.56.0/go.mod"
- "cloud.google.com/go v0.57.0/go.mod"
- "cloud.google.com/go v0.62.0/go.mod"
- "cloud.google.com/go v0.65.0/go.mod"
- "cloud.google.com/go/bigquery v1.0.1/go.mod"
- "cloud.google.com/go/bigquery v1.3.0/go.mod"
- "cloud.google.com/go/bigquery v1.4.0/go.mod"
- "cloud.google.com/go/bigquery v1.5.0/go.mod"
- "cloud.google.com/go/bigquery v1.7.0/go.mod"
- "cloud.google.com/go/bigquery v1.8.0/go.mod"
- "cloud.google.com/go/datastore v1.0.0/go.mod"
- "cloud.google.com/go/datastore v1.1.0/go.mod"
- "cloud.google.com/go/pubsub v1.0.1/go.mod"
- "cloud.google.com/go/pubsub v1.1.0/go.mod"
- "cloud.google.com/go/pubsub v1.2.0/go.mod"
- "cloud.google.com/go/pubsub v1.3.1/go.mod"
- "cloud.google.com/go/storage v1.0.0/go.mod"
- "cloud.google.com/go/storage v1.5.0/go.mod"
- "cloud.google.com/go/storage v1.6.0/go.mod"
- "cloud.google.com/go/storage v1.8.0/go.mod"
- "cloud.google.com/go/storage v1.10.0/go.mod"
- "dmitri.shuralyov.com/app/changes v0.0.0-20180602232624-0a106ad413e3/go.mod"
- "dmitri.shuralyov.com/gpu/mtl v0.0.0-20190408044501-666a987793e9/go.mod"
- "dmitri.shuralyov.com/html/belt v0.0.0-20180602232347-f7d459c86be0/go.mod"
- "dmitri.shuralyov.com/service/change v0.0.0-20181023043359-a85b471d5412/go.mod"
- "dmitri.shuralyov.com/state v0.0.0-20180228185332-28bcc343414c/go.mod"
- "git.apache.org/thrift.git v0.0.0-20180902110319-2566ecd5d999/go.mod"
- "github.com/AudriusButkevicius/pfilter v0.0.10"
- "github.com/AudriusButkevicius/pfilter v0.0.10/go.mod"
- "github.com/AudriusButkevicius/recli v0.0.6"
- "github.com/AudriusButkevicius/recli v0.0.6/go.mod"
- "github.com/Azure/go-ntlmssp v0.0.0-20200615164410-66371956d46c"
- "github.com/Azure/go-ntlmssp v0.0.0-20200615164410-66371956d46c/go.mod"
- "github.com/BurntSushi/toml v0.3.1/go.mod"
- "github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod"
- "github.com/StackExchange/wmi v1.2.1"
- "github.com/StackExchange/wmi v1.2.1/go.mod"
- "github.com/alecthomas/kong v0.2.17"
- "github.com/alecthomas/kong v0.2.17/go.mod"
- "github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod"
- "github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751/go.mod"
- "github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod"
- "github.com/alecthomas/units v0.0.0-20190717042225-c3de453c63f4/go.mod"
- "github.com/alecthomas/units v0.0.0-20190924025748-f65c72e2690d/go.mod"
- "github.com/anmitsu/go-shlex v0.0.0-20161002113705-648efa622239/go.mod"
- "github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod"
- "github.com/beorn7/perks v1.0.0/go.mod"
- "github.com/beorn7/perks v1.0.1"
- "github.com/beorn7/perks v1.0.1/go.mod"
- "github.com/bkaradzic/go-lz4 v0.0.0-20160924222819-7224d8d8f27e"
- "github.com/bkaradzic/go-lz4 v0.0.0-20160924222819-7224d8d8f27e/go.mod"
- "github.com/bradfitz/go-smtpd v0.0.0-20170404230938-deb6d6237625/go.mod"
- "github.com/buger/jsonparser v0.0.0-20181115193947-bf1c66bbce23/go.mod"
- "github.com/calmh/xdr v1.1.0"
- "github.com/calmh/xdr v1.1.0/go.mod"
- "github.com/ccding/go-stun v0.1.3"
- "github.com/ccding/go-stun v0.1.3/go.mod"
- "github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod"
- "github.com/certifi/gocertifi v0.0.0-20210507211836-431795d63e8d"
- "github.com/certifi/gocertifi v0.0.0-20210507211836-431795d63e8d/go.mod"
- "github.com/cespare/xxhash/v2 v2.1.1/go.mod"
- "github.com/cespare/xxhash/v2 v2.1.2"
- "github.com/cespare/xxhash/v2 v2.1.2/go.mod"
- "github.com/cheekybits/genny v1.0.0"
- "github.com/cheekybits/genny v1.0.0/go.mod"
- "github.com/chmduquesne/rollinghash v0.0.0-20180912150627-a60f8e7142b5"
- "github.com/chmduquesne/rollinghash v0.0.0-20180912150627-a60f8e7142b5/go.mod"
- "github.com/chzyer/logex v1.1.10/go.mod"
- "github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e/go.mod"
- "github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1/go.mod"
- "github.com/client9/misspell v0.3.4/go.mod"
- "github.com/cncf/udpa/go v0.0.0-20191209042840-269d4d468f6f/go.mod"
- "github.com/coreos/go-systemd v0.0.0-20181012123002-c6f51f82210d/go.mod"
- "github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d/go.mod"
- "github.com/cpuguy83/go-md2man/v2 v2.0.1"
- "github.com/cpuguy83/go-md2man/v2 v2.0.1/go.mod"
- "github.com/d4l3k/messagediff v1.2.1"
- "github.com/d4l3k/messagediff v1.2.1/go.mod"
- "github.com/davecgh/go-spew v1.1.0/go.mod"
- "github.com/davecgh/go-spew v1.1.1"
- "github.com/davecgh/go-spew v1.1.1/go.mod"
- "github.com/dustin/go-humanize v1.0.0/go.mod"
- "github.com/envoyproxy/go-control-plane v0.9.0/go.mod"
- "github.com/envoyproxy/go-control-plane v0.9.1-0.20191026205805-5f8ba28d4473/go.mod"
- "github.com/envoyproxy/go-control-plane v0.9.4/go.mod"
- "github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod"
- "github.com/flynn-archive/go-shlex v0.0.0-20150515145356-3f9db97f8568"
- "github.com/flynn-archive/go-shlex v0.0.0-20150515145356-3f9db97f8568/go.mod"
- "github.com/flynn/go-shlex v0.0.0-20150515145356-3f9db97f8568/go.mod"
- "github.com/francoispqt/gojay v1.2.13/go.mod"
- "github.com/fsnotify/fsnotify v1.4.7/go.mod"
- "github.com/fsnotify/fsnotify v1.4.9/go.mod"
- "github.com/fsnotify/fsnotify v1.5.1"
- "github.com/fsnotify/fsnotify v1.5.1/go.mod"
- "github.com/getsentry/raven-go v0.2.0"
- "github.com/getsentry/raven-go v0.2.0/go.mod"
- "github.com/ghodss/yaml v1.0.0/go.mod"
- "github.com/gliderlabs/ssh v0.1.1/go.mod"
- "github.com/go-asn1-ber/asn1-ber v1.5.1/go.mod"
- "github.com/go-asn1-ber/asn1-ber v1.5.3"
- "github.com/go-asn1-ber/asn1-ber v1.5.3/go.mod"
- "github.com/go-errors/errors v1.0.1/go.mod"
- "github.com/go-gl/glfw v0.0.0-20190409004039-e6da0acd62b1/go.mod"
- "github.com/go-gl/glfw/v3.3/glfw v0.0.0-20191125211704-12ad95a8df72/go.mod"
- "github.com/go-gl/glfw/v3.3/glfw v0.0.0-20200222043503-6f7a984d4dc4/go.mod"
- "github.com/go-kit/kit v0.8.0/go.mod"
- "github.com/go-kit/kit v0.9.0/go.mod"
- "github.com/go-kit/log v0.1.0/go.mod"
- "github.com/go-ldap/ldap/v3 v3.4.1"
- "github.com/go-ldap/ldap/v3 v3.4.1/go.mod"
- "github.com/go-logfmt/logfmt v0.3.0/go.mod"
- "github.com/go-logfmt/logfmt v0.4.0/go.mod"
- "github.com/go-logfmt/logfmt v0.5.0/go.mod"
- "github.com/go-ole/go-ole v1.2.5/go.mod"
- "github.com/go-ole/go-ole v1.2.6-0.20210915003542-8b1f7f90f6b1"
- "github.com/go-ole/go-ole v1.2.6-0.20210915003542-8b1f7f90f6b1/go.mod"
- "github.com/go-stack/stack v1.8.0/go.mod"
- "github.com/go-task/slim-sprig v0.0.0-20210107165309-348f09dbbbc0"
- "github.com/go-task/slim-sprig v0.0.0-20210107165309-348f09dbbbc0/go.mod"
- "github.com/gobwas/glob v0.2.3"
- "github.com/gobwas/glob v0.2.3/go.mod"
- "github.com/gogo/protobuf v1.1.1/go.mod"
- "github.com/gogo/protobuf v1.3.2"
- "github.com/gogo/protobuf v1.3.2/go.mod"
- "github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod"
- "github.com/golang/groupcache v0.0.0-20190702054246-869f871628b6/go.mod"
- "github.com/golang/groupcache v0.0.0-20191227052852-215e87163ea7/go.mod"
- "github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e/go.mod"
- "github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da"
- "github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da/go.mod"
- "github.com/golang/lint v0.0.0-20180702182130-06c8688daad7/go.mod"
- "github.com/golang/mock v1.1.1/go.mod"
- "github.com/golang/mock v1.2.0/go.mod"
- "github.com/golang/mock v1.3.1/go.mod"
- "github.com/golang/mock v1.4.0/go.mod"
- "github.com/golang/mock v1.4.1/go.mod"
- "github.com/golang/mock v1.4.3/go.mod"
- "github.com/golang/mock v1.4.4/go.mod"
- "github.com/golang/mock v1.6.0"
- "github.com/golang/mock v1.6.0/go.mod"
- "github.com/golang/protobuf v1.2.0/go.mod"
- "github.com/golang/protobuf v1.3.1/go.mod"
- "github.com/golang/protobuf v1.3.2/go.mod"
- "github.com/golang/protobuf v1.3.3/go.mod"
- "github.com/golang/protobuf v1.3.4/go.mod"
- "github.com/golang/protobuf v1.3.5/go.mod"
- "github.com/golang/protobuf v1.4.0-rc.1/go.mod"
- "github.com/golang/protobuf v1.4.0-rc.1.0.20200221234624-67d41d38c208/go.mod"
- "github.com/golang/protobuf v1.4.0-rc.2/go.mod"
- "github.com/golang/protobuf v1.4.0-rc.4.0.20200313231945-b860323f09d0/go.mod"
- "github.com/golang/protobuf v1.4.0/go.mod"
- "github.com/golang/protobuf v1.4.1/go.mod"
- "github.com/golang/protobuf v1.4.2/go.mod"
- "github.com/golang/protobuf v1.4.3/go.mod"
- "github.com/golang/protobuf v1.5.0/go.mod"
- "github.com/golang/protobuf v1.5.2"
- "github.com/golang/protobuf v1.5.2/go.mod"
- "github.com/golang/snappy v0.0.1/go.mod"
- "github.com/golang/snappy v0.0.4"
- "github.com/golang/snappy v0.0.4/go.mod"
- "github.com/google/btree v0.0.0-20180813153112-4030bb1f1f0c/go.mod"
- "github.com/google/btree v1.0.0/go.mod"
- "github.com/google/go-cmp v0.2.0/go.mod"
- "github.com/google/go-cmp v0.3.0/go.mod"
- "github.com/google/go-cmp v0.3.1/go.mod"
- "github.com/google/go-cmp v0.4.0/go.mod"
- "github.com/google/go-cmp v0.4.1/go.mod"
- "github.com/google/go-cmp v0.5.0/go.mod"
- "github.com/google/go-cmp v0.5.1/go.mod"
- "github.com/google/go-cmp v0.5.4/go.mod"
- "github.com/google/go-cmp v0.5.5"
- "github.com/google/go-cmp v0.5.5/go.mod"
- "github.com/google/go-github v17.0.0+incompatible/go.mod"
- "github.com/google/go-querystring v1.0.0/go.mod"
- "github.com/google/gofuzz v1.0.0/go.mod"
- "github.com/google/martian v2.1.0+incompatible/go.mod"
- "github.com/google/martian/v3 v3.0.0/go.mod"
- "github.com/google/pprof v0.0.0-20181206194817-3ea8567a2e57/go.mod"
- "github.com/google/pprof v0.0.0-20190515194954-54271f7e092f/go.mod"
- "github.com/google/pprof v0.0.0-20191218002539-d4f498aebedc/go.mod"
- "github.com/google/pprof v0.0.0-20200212024743-f11f1df84d12/go.mod"
- "github.com/google/pprof v0.0.0-20200229191704-1ebb73c60ed3/go.mod"
- "github.com/google/pprof v0.0.0-20200430221834-fc25d7d30c6d/go.mod"
- "github.com/google/pprof v0.0.0-20200708004538-1a94d8640e99/go.mod"
- "github.com/google/renameio v0.1.0/go.mod"
- "github.com/googleapis/gax-go v2.0.0+incompatible/go.mod"
- "github.com/googleapis/gax-go/v2 v2.0.3/go.mod"
- "github.com/googleapis/gax-go/v2 v2.0.4/go.mod"
- "github.com/googleapis/gax-go/v2 v2.0.5/go.mod"
- "github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1/go.mod"
- "github.com/greatroar/blobloom v0.7.0"
- "github.com/greatroar/blobloom v0.7.0/go.mod"
- "github.com/gregjones/httpcache v0.0.0-20180305231024-9cad4c3443a7/go.mod"
- "github.com/grpc-ecosystem/grpc-gateway v1.5.0/go.mod"
- "github.com/hashicorp/golang-lru v0.5.0/go.mod"
- "github.com/hashicorp/golang-lru v0.5.1/go.mod"
- "github.com/hashicorp/golang-lru v0.5.4"
- "github.com/hashicorp/golang-lru v0.5.4/go.mod"
- "github.com/hpcloud/tail v1.0.0/go.mod"
- "github.com/ianlancetaylor/demangle v0.0.0-20181102032728-5e5cf60278f6/go.mod"
- "github.com/jackpal/gateway v1.0.7"
- "github.com/jackpal/gateway v1.0.7/go.mod"
- "github.com/jackpal/go-nat-pmp v1.0.2"
- "github.com/jackpal/go-nat-pmp v1.0.2/go.mod"
- "github.com/jellevandenhooff/dkim v0.0.0-20150330215556-f50fe3d243e1/go.mod"
- "github.com/jpillora/backoff v1.0.0/go.mod"
- "github.com/json-iterator/go v1.1.6/go.mod"
- "github.com/json-iterator/go v1.1.10/go.mod"
- "github.com/json-iterator/go v1.1.11/go.mod"
- "github.com/jstemmer/go-junit-report v0.0.0-20190106144839-af01ea7f8024/go.mod"
- "github.com/jstemmer/go-junit-report v0.9.1/go.mod"
- "github.com/julienschmidt/httprouter v1.2.0/go.mod"
- "github.com/julienschmidt/httprouter v1.3.0"
- "github.com/julienschmidt/httprouter v1.3.0/go.mod"
- "github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51"
- "github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51/go.mod"
- "github.com/kisielk/errcheck v1.5.0/go.mod"
- "github.com/kisielk/gotool v1.0.0/go.mod"
- "github.com/klauspost/cpuid/v2 v2.0.4/go.mod"
- "github.com/klauspost/cpuid/v2 v2.0.9"
- "github.com/klauspost/cpuid/v2 v2.0.9/go.mod"
- "github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod"
- "github.com/konsorten/go-windows-terminal-sequences v1.0.3/go.mod"
- "github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod"
- "github.com/kr/pretty v0.1.0/go.mod"
- "github.com/kr/pty v1.1.1/go.mod"
- "github.com/kr/pty v1.1.3/go.mod"
- "github.com/kr/text v0.1.0/go.mod"
- "github.com/lib/pq v1.10.3"
- "github.com/lib/pq v1.10.3/go.mod"
- "github.com/lucas-clemente/quic-go v0.22.0/go.mod"
- "github.com/lucas-clemente/quic-go v0.23.0"
- "github.com/lucas-clemente/quic-go v0.23.0/go.mod"
- "github.com/lunixbochs/vtclean v1.0.0/go.mod"
- "github.com/mailru/easyjson v0.0.0-20190312143242-1de009706dbe/go.mod"
- "github.com/marten-seemann/qpack v0.2.1/go.mod"
- "github.com/marten-seemann/qtls-go1-15 v0.1.4/go.mod"
- "github.com/marten-seemann/qtls-go1-15 v0.1.5/go.mod"
- "github.com/marten-seemann/qtls-go1-16 v0.1.4"
- "github.com/marten-seemann/qtls-go1-16 v0.1.4/go.mod"
- "github.com/marten-seemann/qtls-go1-17 v0.1.0-rc.1/go.mod"
- "github.com/marten-seemann/qtls-go1-17 v0.1.0"
- "github.com/marten-seemann/qtls-go1-17 v0.1.0/go.mod"
- "github.com/maruel/panicparse v1.6.1"
- "github.com/maruel/panicparse v1.6.1/go.mod"
- "github.com/maruel/panicparse/v2 v2.1.1/go.mod"
- "github.com/mattn/go-colorable v0.1.7/go.mod"
- "github.com/mattn/go-isatty v0.0.12/go.mod"
- "github.com/matttproud/golang_protobuf_extensions v1.0.1"
- "github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod"
- "github.com/maxbrunsfeld/counterfeiter/v6 v6.3.0"
- "github.com/maxbrunsfeld/counterfeiter/v6 v6.3.0/go.mod"
- "github.com/mgutz/ansi v0.0.0-20200706080929-d51e80ef957d/go.mod"
- "github.com/microcosm-cc/bluemonday v1.0.1/go.mod"
- "github.com/minio/sha256-simd v1.0.0"
- "github.com/minio/sha256-simd v1.0.0/go.mod"
- "github.com/miscreant/miscreant.go v0.0.0-20200214223636-26d376326b75"
- "github.com/miscreant/miscreant.go v0.0.0-20200214223636-26d376326b75/go.mod"
- "github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod"
- "github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod"
- "github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742/go.mod"
- "github.com/modern-go/reflect2 v1.0.1/go.mod"
- "github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223/go.mod"
- "github.com/mwitkow/go-conntrack v0.0.0-20190716064945-2f068394615f/go.mod"
- "github.com/neelance/astrewrite v0.0.0-20160511093645-99348263ae86/go.mod"
- "github.com/neelance/sourcemap v0.0.0-20151028013722-8c68805598ab/go.mod"
- "github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e/go.mod"
- "github.com/nxadm/tail v1.4.4/go.mod"
- "github.com/nxadm/tail v1.4.8"
- "github.com/nxadm/tail v1.4.8/go.mod"
- "github.com/onsi/ginkgo v1.6.0/go.mod"
- "github.com/onsi/ginkgo v1.12.1/go.mod"
- "github.com/onsi/ginkgo v1.14.0/go.mod"
- "github.com/onsi/ginkgo v1.16.2/go.mod"
- "github.com/onsi/ginkgo v1.16.4"
- "github.com/onsi/ginkgo v1.16.4/go.mod"
- "github.com/onsi/gomega v1.7.1/go.mod"
- "github.com/onsi/gomega v1.10.1/go.mod"
- "github.com/onsi/gomega v1.10.3/go.mod"
- "github.com/onsi/gomega v1.13.0"
- "github.com/onsi/gomega v1.13.0/go.mod"
- "github.com/openzipkin/zipkin-go v0.1.1/go.mod"
- "github.com/oschwald/geoip2-golang v1.5.0"
- "github.com/oschwald/geoip2-golang v1.5.0/go.mod"
- "github.com/oschwald/maxminddb-golang v1.8.0"
- "github.com/oschwald/maxminddb-golang v1.8.0/go.mod"
- "github.com/petermattis/goid v0.0.0-20180202154549-b0b1615b78e5"
- "github.com/petermattis/goid v0.0.0-20180202154549-b0b1615b78e5/go.mod"
- "github.com/pkg/errors v0.8.0/go.mod"
- "github.com/pkg/errors v0.8.1/go.mod"
- "github.com/pkg/errors v0.9.1"
- "github.com/pkg/errors v0.9.1/go.mod"
- "github.com/pmezard/go-difflib v1.0.0"
- "github.com/pmezard/go-difflib v1.0.0/go.mod"
- "github.com/prometheus/client_golang v0.8.0/go.mod"
- "github.com/prometheus/client_golang v0.9.1/go.mod"
- "github.com/prometheus/client_golang v1.0.0/go.mod"
- "github.com/prometheus/client_golang v1.7.1/go.mod"
- "github.com/prometheus/client_golang v1.11.0"
- "github.com/prometheus/client_golang v1.11.0/go.mod"
- "github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod"
- "github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod"
- "github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod"
- "github.com/prometheus/client_model v0.2.0"
- "github.com/prometheus/client_model v0.2.0/go.mod"
- "github.com/prometheus/common v0.0.0-20180801064454-c7de2306084e/go.mod"
- "github.com/prometheus/common v0.4.1/go.mod"
- "github.com/prometheus/common v0.10.0/go.mod"
- "github.com/prometheus/common v0.26.0/go.mod"
- "github.com/prometheus/common v0.30.0"
- "github.com/prometheus/common v0.30.0/go.mod"
- "github.com/prometheus/procfs v0.0.0-20180725123919-05ee40e3a273/go.mod"
- "github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod"
- "github.com/prometheus/procfs v0.0.2/go.mod"
- "github.com/prometheus/procfs v0.1.3/go.mod"
- "github.com/prometheus/procfs v0.6.0/go.mod"
- "github.com/prometheus/procfs v0.7.3"
- "github.com/prometheus/procfs v0.7.3/go.mod"
- "github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475"
- "github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475/go.mod"
- "github.com/rogpeppe/go-internal v1.3.0/go.mod"
- "github.com/russross/blackfriday v1.5.2"
- "github.com/russross/blackfriday v1.5.2/go.mod"
- "github.com/russross/blackfriday/v2 v2.0.1/go.mod"
- "github.com/russross/blackfriday/v2 v2.1.0"
- "github.com/russross/blackfriday/v2 v2.1.0/go.mod"
- "github.com/sasha-s/go-deadlock v0.3.1"
- "github.com/sasha-s/go-deadlock v0.3.1/go.mod"
- "github.com/sclevine/spec v1.4.0"
- "github.com/sclevine/spec v1.4.0/go.mod"
- "github.com/sergi/go-diff v1.0.0/go.mod"
- "github.com/shirou/gopsutil/v3 v3.21.8"
- "github.com/shirou/gopsutil/v3 v3.21.8/go.mod"
- "github.com/shurcooL/component v0.0.0-20170202220835-f88ec8f54cc4/go.mod"
- "github.com/shurcooL/events v0.0.0-20181021180414-410e4ca65f48/go.mod"
- "github.com/shurcooL/github_flavored_markdown v0.0.0-20181002035957-2122de532470/go.mod"
- "github.com/shurcooL/go v0.0.0-20180423040247-9e1955d9fb6e/go.mod"
- "github.com/shurcooL/go-goon v0.0.0-20170922171312-37c2f522c041/go.mod"
- "github.com/shurcooL/gofontwoff v0.0.0-20180329035133-29b52fc0a18d/go.mod"
- "github.com/shurcooL/gopherjslib v0.0.0-20160914041154-feb6d3990c2c/go.mod"
- "github.com/shurcooL/highlight_diff v0.0.0-20170515013008-09bb4053de1b/go.mod"
- "github.com/shurcooL/highlight_go v0.0.0-20181028180052-98c3abbbae20/go.mod"
- "github.com/shurcooL/home v0.0.0-20181020052607-80b7ffcb30f9/go.mod"
- "github.com/shurcooL/htmlg v0.0.0-20170918183704-d01228ac9e50/go.mod"
- "github.com/shurcooL/httperror v0.0.0-20170206035902-86b7830d14cc/go.mod"
- "github.com/shurcooL/httpfs v0.0.0-20171119174359-809beceb2371/go.mod"
- "github.com/shurcooL/httpgzip v0.0.0-20180522190206-b1c53ac65af9/go.mod"
- "github.com/shurcooL/issues v0.0.0-20181008053335-6292fdc1e191/go.mod"
- "github.com/shurcooL/issuesapp v0.0.0-20180602232740-048589ce2241/go.mod"
- "github.com/shurcooL/notifications v0.0.0-20181007000457-627ab5aea122/go.mod"
- "github.com/shurcooL/octicon v0.0.0-20181028054416-fa4f57f9efb2/go.mod"
- "github.com/shurcooL/reactions v0.0.0-20181006231557-f2e0b4ca5b82/go.mod"
- "github.com/shurcooL/sanitized_anchor_name v0.0.0-20170918181015-86672fcb3f95/go.mod"
- "github.com/shurcooL/sanitized_anchor_name v1.0.0/go.mod"
- "github.com/shurcooL/users v0.0.0-20180125191416-49c67e49c537/go.mod"
- "github.com/shurcooL/webdavfs v0.0.0-20170829043945-18c3829fa133/go.mod"
- "github.com/sirupsen/logrus v1.2.0/go.mod"
- "github.com/sirupsen/logrus v1.4.2/go.mod"
- "github.com/sirupsen/logrus v1.6.0/go.mod"
- "github.com/sourcegraph/annotate v0.0.0-20160123013949-f4cad6c6324d/go.mod"
- "github.com/sourcegraph/syntaxhighlight v0.0.0-20170531221838-bd320f5d308e/go.mod"
- "github.com/stretchr/objx v0.1.0/go.mod"
- "github.com/stretchr/objx v0.1.1/go.mod"
- "github.com/stretchr/testify v1.2.2/go.mod"
- "github.com/stretchr/testify v1.3.0/go.mod"
- "github.com/stretchr/testify v1.4.0/go.mod"
- "github.com/stretchr/testify v1.5.1/go.mod"
- "github.com/stretchr/testify v1.6.1/go.mod"
- "github.com/stretchr/testify v1.7.0"
- "github.com/stretchr/testify v1.7.0/go.mod"
- "github.com/syncthing/notify v0.0.0-20210616190510-c6b7342338d2"
- "github.com/syncthing/notify v0.0.0-20210616190510-c6b7342338d2/go.mod"
- "github.com/syndtr/goleveldb v1.0.1-0.20200815071216-d9e9293bd0f7"
- "github.com/syndtr/goleveldb v1.0.1-0.20200815071216-d9e9293bd0f7/go.mod"
- "github.com/tarm/serial v0.0.0-20180830185346-98f6abe2eb07/go.mod"
- "github.com/thejerf/suture/v4 v4.0.1"
- "github.com/thejerf/suture/v4 v4.0.1/go.mod"
- "github.com/tklauser/go-sysconf v0.3.9/go.mod"
- "github.com/tklauser/numcpus v0.3.0/go.mod"
- "github.com/urfave/cli v1.20.0/go.mod"
- "github.com/urfave/cli v1.22.5"
- "github.com/urfave/cli v1.22.5/go.mod"
- "github.com/viant/assertly v0.4.8/go.mod"
- "github.com/viant/toolbox v0.24.0/go.mod"
- "github.com/vitrun/qart v0.0.0-20160531060029-bf64b92db6b0"
- "github.com/vitrun/qart v0.0.0-20160531060029-bf64b92db6b0/go.mod"
- "github.com/yuin/goldmark v1.1.25/go.mod"
- "github.com/yuin/goldmark v1.1.27/go.mod"
- "github.com/yuin/goldmark v1.1.32/go.mod"
- "github.com/yuin/goldmark v1.2.1/go.mod"
- "github.com/yuin/goldmark v1.3.5/go.mod"
- "github.com/yuin/goldmark v1.4.0/go.mod"
- "go.opencensus.io v0.18.0/go.mod"
- "go.opencensus.io v0.21.0/go.mod"
- "go.opencensus.io v0.22.0/go.mod"
- "go.opencensus.io v0.22.2/go.mod"
- "go.opencensus.io v0.22.3/go.mod"
- "go.opencensus.io v0.22.4/go.mod"
- "go4.org v0.0.0-20180809161055-417644f6feb5/go.mod"
- "golang.org/x/build v0.0.0-20190111050920-041ab4dc3f9d/go.mod"
- "golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod"
- "golang.org/x/crypto v0.0.0-20181030102418-4d3f4d9ffa16/go.mod"
- "golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod"
- "golang.org/x/crypto v0.0.0-20190313024323-a1f597ede03a/go.mod"
- "golang.org/x/crypto v0.0.0-20190510104115-cbcb75029529/go.mod"
- "golang.org/x/crypto v0.0.0-20190605123033-f99c8df09eb5/go.mod"
- "golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod"
- "golang.org/x/crypto v0.0.0-20200221231518-2aa609cf4a9d/go.mod"
- "golang.org/x/crypto v0.0.0-20200604202706-70a84ac30bf9/go.mod"
- "golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod"
- "golang.org/x/crypto v0.0.0-20210711020723-a769d52b0f97/go.mod"
- "golang.org/x/crypto v0.0.0-20210921155107-089bfa567519"
- "golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod"
- "golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod"
- "golang.org/x/exp v0.0.0-20190306152737-a1d7652674e8/go.mod"
- "golang.org/x/exp v0.0.0-20190510132918-efd6b22b2522/go.mod"
- "golang.org/x/exp v0.0.0-20190829153037-c13cbed26979/go.mod"
- "golang.org/x/exp v0.0.0-20191030013958-a1ab85dbe136/go.mod"
- "golang.org/x/exp v0.0.0-20191129062945-2f5052295587/go.mod"
- "golang.org/x/exp v0.0.0-20191227195350-da58074b4299/go.mod"
- "golang.org/x/exp v0.0.0-20200119233911-0405dc783f0a/go.mod"
- "golang.org/x/exp v0.0.0-20200207192155-f17229e696bd/go.mod"
- "golang.org/x/exp v0.0.0-20200224162631-6cc2880d07d6/go.mod"
- "golang.org/x/image v0.0.0-20190227222117-0694c2d4d067/go.mod"
- "golang.org/x/image v0.0.0-20190802002840-cff245a6509b/go.mod"
- "golang.org/x/lint v0.0.0-20180702182130-06c8688daad7/go.mod"
- "golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod"
- "golang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod"
- "golang.org/x/lint v0.0.0-20190301231843-5614ed5bae6f/go.mod"
- "golang.org/x/lint v0.0.0-20190313153728-d0100b6bd8b3/go.mod"
- "golang.org/x/lint v0.0.0-20190409202823-959b441ac422/go.mod"
- "golang.org/x/lint v0.0.0-20190909230951-414d861bb4ac/go.mod"
- "golang.org/x/lint v0.0.0-20190930215403-16217165b5de/go.mod"
- "golang.org/x/lint v0.0.0-20191125180803-fdd1cda4f05f/go.mod"
- "golang.org/x/lint v0.0.0-20200130185559-910be7a94367/go.mod"
- "golang.org/x/lint v0.0.0-20200302205851-738671d3881b/go.mod"
- "golang.org/x/mobile v0.0.0-20190312151609-d3739f865fa6/go.mod"
- "golang.org/x/mobile v0.0.0-20190719004257-d2bd2a29d028/go.mod"
- "golang.org/x/mod v0.0.0-20190513183733-4bf6d317e70e/go.mod"
- "golang.org/x/mod v0.1.0/go.mod"
- "golang.org/x/mod v0.1.1-0.20191105210325-c90efee705ee/go.mod"
- "golang.org/x/mod v0.1.1-0.20191107180719-034126e5016b/go.mod"
- "golang.org/x/mod v0.2.0/go.mod"
- "golang.org/x/mod v0.3.0/go.mod"
- "golang.org/x/mod v0.4.2/go.mod"
- "golang.org/x/mod v0.5.1"
- "golang.org/x/mod v0.5.1/go.mod"
- "golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod"
- "golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod"
- "golang.org/x/net v0.0.0-20180906233101-161cd47e91fd/go.mod"
- "golang.org/x/net v0.0.0-20181029044818-c44066c5c816/go.mod"
- "golang.org/x/net v0.0.0-20181106065722-10aee1819953/go.mod"
- "golang.org/x/net v0.0.0-20181114220301-adae6a3d119a/go.mod"
- "golang.org/x/net v0.0.0-20190108225652-1e06a53dbb7e/go.mod"
- "golang.org/x/net v0.0.0-20190213061140-3a22650c66bd/go.mod"
- "golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod"
- "golang.org/x/net v0.0.0-20190313220215-9f648a60d977/go.mod"
- "golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod"
- "golang.org/x/net v0.0.0-20190501004415-9ce7a6920f09/go.mod"
- "golang.org/x/net v0.0.0-20190503192946-f4e77d36d62c/go.mod"
- "golang.org/x/net v0.0.0-20190603091049-60506f45cf65/go.mod"
- "golang.org/x/net v0.0.0-20190613194153-d28f0bde5980/go.mod"
- "golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod"
- "golang.org/x/net v0.0.0-20190628185345-da137c7871d7/go.mod"
- "golang.org/x/net v0.0.0-20190724013045-ca1201d0de80/go.mod"
- "golang.org/x/net v0.0.0-20191209160850-c0dbc17a3553/go.mod"
- "golang.org/x/net v0.0.0-20200114155413-6afb5195e5aa/go.mod"
- "golang.org/x/net v0.0.0-20200202094626-16171245cfb2/go.mod"
- "golang.org/x/net v0.0.0-20200222125558-5a598a2470a0/go.mod"
- "golang.org/x/net v0.0.0-20200226121028-0de0cce0169b/go.mod"
- "golang.org/x/net v0.0.0-20200301022130-244492dfa37a/go.mod"
- "golang.org/x/net v0.0.0-20200324143707-d3edc9973b7e/go.mod"
- "golang.org/x/net v0.0.0-20200501053045-e0ff5e5a1de5/go.mod"
- "golang.org/x/net v0.0.0-20200506145744-7e3656a0809f/go.mod"
- "golang.org/x/net v0.0.0-20200513185701-a91f0712d120/go.mod"
- "golang.org/x/net v0.0.0-20200520004742-59133d7f0dd7/go.mod"
- "golang.org/x/net v0.0.0-20200520182314-0ba52f642ac2/go.mod"
- "golang.org/x/net v0.0.0-20200625001655-4c5254603344/go.mod"
- "golang.org/x/net v0.0.0-20200707034311-ab3426394381/go.mod"
- "golang.org/x/net v0.0.0-20200813134508-3edf25e44fcc/go.mod"
- "golang.org/x/net v0.0.0-20200822124328-c89045814202/go.mod"
- "golang.org/x/net v0.0.0-20201006153459-a7d1128ccaa0/go.mod"
- "golang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod"
- "golang.org/x/net v0.0.0-20201026091529-146b70c837a4/go.mod"
- "golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod"
- "golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4/go.mod"
- "golang.org/x/net v0.0.0-20210428140749-89ef3d95e781/go.mod"
- "golang.org/x/net v0.0.0-20210525063256-abc453219eb5/go.mod"
- "golang.org/x/net v0.0.0-20210716203947-853a461950ff/go.mod"
- "golang.org/x/net v0.0.0-20210805182204-aaa1db679c0d/go.mod"
- "golang.org/x/net v0.0.0-20210924151903-3ad01bbaa167"
- "golang.org/x/net v0.0.0-20210924151903-3ad01bbaa167/go.mod"
- "golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod"
- "golang.org/x/oauth2 v0.0.0-20181017192945-9dcd33a902f4/go.mod"
- "golang.org/x/oauth2 v0.0.0-20181203162652-d668ce993890/go.mod"
- "golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod"
- "golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod"
- "golang.org/x/oauth2 v0.0.0-20191202225959-858c2ad4c8b6/go.mod"
- "golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d/go.mod"
- "golang.org/x/oauth2 v0.0.0-20210514164344-f6687ab2804c/go.mod"
- "golang.org/x/perf v0.0.0-20180704124530-6e6d33e29852/go.mod"
- "golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod"
- "golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod"
- "golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod"
- "golang.org/x/sync v0.0.0-20190227155943-e225da77a7e6/go.mod"
- "golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod"
- "golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod"
- "golang.org/x/sync v0.0.0-20200317015054-43a5402ce75a/go.mod"
- "golang.org/x/sync v0.0.0-20200625203802-6e8e738ad208/go.mod"
- "golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod"
- "golang.org/x/sync v0.0.0-20201207232520-09787c993a3a/go.mod"
- "golang.org/x/sync v0.0.0-20210220032951-036812b2e83c/go.mod"
- "golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod"
- "golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod"
- "golang.org/x/sys v0.0.0-20180909124046-d0be0721c37e/go.mod"
- "golang.org/x/sys v0.0.0-20180926160741-c2ed4eda69e7/go.mod"
- "golang.org/x/sys v0.0.0-20181029174526-d69651ed3497/go.mod"
- "golang.org/x/sys v0.0.0-20181116152217-5ac8a444bdc5/go.mod"
- "golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod"
- "golang.org/x/sys v0.0.0-20190312061237-fead79001313/go.mod"
- "golang.org/x/sys v0.0.0-20190316082340-a2f829d7f35f/go.mod"
- "golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod"
- "golang.org/x/sys v0.0.0-20190422165155-953cdadca894/go.mod"
- "golang.org/x/sys v0.0.0-20190502145724-3ef323f4f1fd/go.mod"
- "golang.org/x/sys v0.0.0-20190507160741-ecd444e8653b/go.mod"
- "golang.org/x/sys v0.0.0-20190606165138-5da285871e9c/go.mod"
- "golang.org/x/sys v0.0.0-20190624142023-c5567b49c5d0/go.mod"
- "golang.org/x/sys v0.0.0-20190726091711-fc99dfbffb4e/go.mod"
- "golang.org/x/sys v0.0.0-20190904154756-749cb33beabd/go.mod"
- "golang.org/x/sys v0.0.0-20190916202348-b4ddaad3f8a3/go.mod"
- "golang.org/x/sys v0.0.0-20191001151750-bb3f8db39f24/go.mod"
- "golang.org/x/sys v0.0.0-20191005200804-aed5e4c7ecf9/go.mod"
- "golang.org/x/sys v0.0.0-20191120155948-bd437916bb0e/go.mod"
- "golang.org/x/sys v0.0.0-20191204072324-ce4227a45e2e/go.mod"
- "golang.org/x/sys v0.0.0-20191224085550-c709ea063b76/go.mod"
- "golang.org/x/sys v0.0.0-20191228213918-04cbcbbfeed8/go.mod"
- "golang.org/x/sys v0.0.0-20200106162015-b016eb3dc98e/go.mod"
- "golang.org/x/sys v0.0.0-20200113162924-86b910548bc1/go.mod"
- "golang.org/x/sys v0.0.0-20200116001909-b77594299b42/go.mod"
- "golang.org/x/sys v0.0.0-20200122134326-e047566fdf82/go.mod"
- "golang.org/x/sys v0.0.0-20200202164722-d101bd2416d5/go.mod"
- "golang.org/x/sys v0.0.0-20200212091648-12a6c2dcc1e4/go.mod"
- "golang.org/x/sys v0.0.0-20200223170610-d5e6a3e2c0ae/go.mod"
- "golang.org/x/sys v0.0.0-20200302150141-5c8b2ff67527/go.mod"
- "golang.org/x/sys v0.0.0-20200323222414-85ca7c5b95cd/go.mod"
- "golang.org/x/sys v0.0.0-20200331124033-c3d80250170d/go.mod"
- "golang.org/x/sys v0.0.0-20200501052902-10377860bb8e/go.mod"
- "golang.org/x/sys v0.0.0-20200511232937-7e40ca221e25/go.mod"
- "golang.org/x/sys v0.0.0-20200515095857-1151b9dac4a9/go.mod"
- "golang.org/x/sys v0.0.0-20200519105757-fe76b779f299/go.mod"
- "golang.org/x/sys v0.0.0-20200523222454-059865788121/go.mod"
- "golang.org/x/sys v0.0.0-20200615200032-f1bc736245b1/go.mod"
- "golang.org/x/sys v0.0.0-20200625212154-ddb9806d33ae/go.mod"
- "golang.org/x/sys v0.0.0-20200724161237-0e2f3a69832c/go.mod"
- "golang.org/x/sys v0.0.0-20200803210538-64077c9b5642/go.mod"
- "golang.org/x/sys v0.0.0-20200814200057-3d37ad5750ed/go.mod"
- "golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod"
- "golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod"
- "golang.org/x/sys v0.0.0-20210112080510-489259a85091/go.mod"
- "golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c/go.mod"
- "golang.org/x/sys v0.0.0-20210330210617-4fbd30eecc44/go.mod"
- "golang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod"
- "golang.org/x/sys v0.0.0-20210510120138-977fb7262007/go.mod"
- "golang.org/x/sys v0.0.0-20210603081109-ebe580a85c40/go.mod"
- "golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod"
- "golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c/go.mod"
- "golang.org/x/sys v0.0.0-20210809222454-d867a43fc93e/go.mod"
- "golang.org/x/sys v0.0.0-20210816074244-15123e1e1f71/go.mod"
- "golang.org/x/sys v0.0.0-20210925032602-92d5a993a665"
- "golang.org/x/sys v0.0.0-20210925032602-92d5a993a665/go.mod"
- "golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod"
- "golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod"
- "golang.org/x/text v0.3.0/go.mod"
- "golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod"
- "golang.org/x/text v0.3.2/go.mod"
- "golang.org/x/text v0.3.3/go.mod"
- "golang.org/x/text v0.3.6/go.mod"
- "golang.org/x/text v0.3.7"
- "golang.org/x/text v0.3.7/go.mod"
- "golang.org/x/time v0.0.0-20180412165947-fbb02b2291d2/go.mod"
- "golang.org/x/time v0.0.0-20181108054448-85acf8d2951c/go.mod"
- "golang.org/x/time v0.0.0-20190308202827-9d24e82272b4/go.mod"
- "golang.org/x/time v0.0.0-20191024005414-555d28b269f0/go.mod"
- "golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac"
- "golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac/go.mod"
- "golang.org/x/tools v0.0.0-20180828015842-6cd1fcedba52/go.mod"
- "golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod"
- "golang.org/x/tools v0.0.0-20181030000716-a0a13e073c7b/go.mod"
- "golang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod"
- "golang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod"
- "golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod"
- "golang.org/x/tools v0.0.0-20190312151545-0bb0c0a6e846/go.mod"
- "golang.org/x/tools v0.0.0-20190312170243-e65039ee4138/go.mod"
- "golang.org/x/tools v0.0.0-20190425150028-36563e24a262/go.mod"
- "golang.org/x/tools v0.0.0-20190506145303-2d16b83fe98c/go.mod"
- "golang.org/x/tools v0.0.0-20190524140312-2c0ae7006135/go.mod"
- "golang.org/x/tools v0.0.0-20190606124116-d0a3d012864b/go.mod"
- "golang.org/x/tools v0.0.0-20190621195816-6e04913cbbac/go.mod"
- "golang.org/x/tools v0.0.0-20190628153133-6cdbf07be9d0/go.mod"
- "golang.org/x/tools v0.0.0-20190816200558-6889da9d5479/go.mod"
- "golang.org/x/tools v0.0.0-20190911174233-4f2ddba30aff/go.mod"
- "golang.org/x/tools v0.0.0-20191012152004-8de300cfc20a/go.mod"
- "golang.org/x/tools v0.0.0-20191113191852-77e3bb0ad9e7/go.mod"
- "golang.org/x/tools v0.0.0-20191115202509-3a792d9c32b2/go.mod"
- "golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod"
- "golang.org/x/tools v0.0.0-20191125144606-a911d9008d1f/go.mod"
- "golang.org/x/tools v0.0.0-20191130070609-6e064ea0cf2d/go.mod"
- "golang.org/x/tools v0.0.0-20191216173652-a0e659d51361/go.mod"
- "golang.org/x/tools v0.0.0-20191227053925-7b8e75db28f4/go.mod"
- "golang.org/x/tools v0.0.0-20200117161641-43d50277825c/go.mod"
- "golang.org/x/tools v0.0.0-20200122220014-bf1340f18c4a/go.mod"
- "golang.org/x/tools v0.0.0-20200130002326-2f3ba24bd6e7/go.mod"
- "golang.org/x/tools v0.0.0-20200204074204-1cc6d1ef6c74/go.mod"
- "golang.org/x/tools v0.0.0-20200207183749-b753a1ba74fa/go.mod"
- "golang.org/x/tools v0.0.0-20200212150539-ea181f53ac56/go.mod"
- "golang.org/x/tools v0.0.0-20200224181240-023911ca70b2/go.mod"
- "golang.org/x/tools v0.0.0-20200227222343-706bc42d1f0d/go.mod"
- "golang.org/x/tools v0.0.0-20200304193943-95d2e580d8eb/go.mod"
- "golang.org/x/tools v0.0.0-20200312045724-11d5b4c81c7d/go.mod"
- "golang.org/x/tools v0.0.0-20200331025713-a30bf2db82d4/go.mod"
- "golang.org/x/tools v0.0.0-20200501065659-ab2804fb9c9d/go.mod"
- "golang.org/x/tools v0.0.0-20200512131952-2bc93b1c0c88/go.mod"
- "golang.org/x/tools v0.0.0-20200515010526-7d3b6ebf133d/go.mod"
- "golang.org/x/tools v0.0.0-20200618134242-20370b0cb4b2/go.mod"
- "golang.org/x/tools v0.0.0-20200619180055-7c47624df98f/go.mod"
- "golang.org/x/tools v0.0.0-20200729194436-6467de6f59a7/go.mod"
- "golang.org/x/tools v0.0.0-20200804011535-6c149bb5ef0d/go.mod"
- "golang.org/x/tools v0.0.0-20200825202427-b303f430e36d/go.mod"
- "golang.org/x/tools v0.0.0-20201023174141-c8cfbd0f21e6/go.mod"
- "golang.org/x/tools v0.0.0-20201224043029-2b0845dc783e/go.mod"
- "golang.org/x/tools v0.0.0-20210106214847-113979e3529a/go.mod"
- "golang.org/x/tools v0.1.1/go.mod"
- "golang.org/x/tools v0.1.5/go.mod"
- "golang.org/x/tools v0.1.6"
- "golang.org/x/tools v0.1.6/go.mod"
- "golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod"
- "golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod"
- "golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod"
- "golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1"
- "golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod"
- "google.golang.org/api v0.0.0-20180910000450-7ca32eb868bf/go.mod"
- "google.golang.org/api v0.0.0-20181030000543-1d582fd0359e/go.mod"
- "google.golang.org/api v0.1.0/go.mod"
- "google.golang.org/api v0.4.0/go.mod"
- "google.golang.org/api v0.7.0/go.mod"
- "google.golang.org/api v0.8.0/go.mod"
- "google.golang.org/api v0.9.0/go.mod"
- "google.golang.org/api v0.13.0/go.mod"
- "google.golang.org/api v0.14.0/go.mod"
- "google.golang.org/api v0.15.0/go.mod"
- "google.golang.org/api v0.17.0/go.mod"
- "google.golang.org/api v0.18.0/go.mod"
- "google.golang.org/api v0.19.0/go.mod"
- "google.golang.org/api v0.20.0/go.mod"
- "google.golang.org/api v0.22.0/go.mod"
- "google.golang.org/api v0.24.0/go.mod"
- "google.golang.org/api v0.28.0/go.mod"
- "google.golang.org/api v0.29.0/go.mod"
- "google.golang.org/api v0.30.0/go.mod"
- "google.golang.org/appengine v1.1.0/go.mod"
- "google.golang.org/appengine v1.2.0/go.mod"
- "google.golang.org/appengine v1.3.0/go.mod"
- "google.golang.org/appengine v1.4.0/go.mod"
- "google.golang.org/appengine v1.5.0/go.mod"
- "google.golang.org/appengine v1.6.1/go.mod"
- "google.golang.org/appengine v1.6.5/go.mod"
- "google.golang.org/appengine v1.6.6/go.mod"
- "google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod"
- "google.golang.org/genproto v0.0.0-20180831171423-11092d34479b/go.mod"
- "google.golang.org/genproto v0.0.0-20181029155118-b69ba1387ce2/go.mod"
- "google.golang.org/genproto v0.0.0-20181202183823-bd91e49a0898/go.mod"
- "google.golang.org/genproto v0.0.0-20190306203927-b5d61aea6440/go.mod"
- "google.golang.org/genproto v0.0.0-20190307195333-5fe7a883aa19/go.mod"
- "google.golang.org/genproto v0.0.0-20190418145605-e7d98fc518a7/go.mod"
- "google.golang.org/genproto v0.0.0-20190425155659-357c62f0e4bb/go.mod"
- "google.golang.org/genproto v0.0.0-20190502173448-54afdca5d873/go.mod"
- "google.golang.org/genproto v0.0.0-20190801165951-fa694d86fc64/go.mod"
- "google.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55/go.mod"
- "google.golang.org/genproto v0.0.0-20190911173649-1774047e7e51/go.mod"
- "google.golang.org/genproto v0.0.0-20191108220845-16a3f7862a1a/go.mod"
- "google.golang.org/genproto v0.0.0-20191115194625-c23dd37a84c9/go.mod"
- "google.golang.org/genproto v0.0.0-20191216164720-4f79533eabd1/go.mod"
- "google.golang.org/genproto v0.0.0-20191230161307-f3c370f40bfb/go.mod"
- "google.golang.org/genproto v0.0.0-20200115191322-ca5a22157cba/go.mod"
- "google.golang.org/genproto v0.0.0-20200122232147-0452cf42e150/go.mod"
- "google.golang.org/genproto v0.0.0-20200204135345-fa8e72b47b90/go.mod"
- "google.golang.org/genproto v0.0.0-20200212174721-66ed5ce911ce/go.mod"
- "google.golang.org/genproto v0.0.0-20200224152610-e50cd9704f63/go.mod"
- "google.golang.org/genproto v0.0.0-20200228133532-8c2c7df3a383/go.mod"
- "google.golang.org/genproto v0.0.0-20200305110556-506484158171/go.mod"
- "google.golang.org/genproto v0.0.0-20200312145019-da6875a35672/go.mod"
- "google.golang.org/genproto v0.0.0-20200331122359-1ee6d9798940/go.mod"
- "google.golang.org/genproto v0.0.0-20200430143042-b979b6f78d84/go.mod"
- "google.golang.org/genproto v0.0.0-20200511104702-f5ebc3bea380/go.mod"
- "google.golang.org/genproto v0.0.0-20200515170657-fc4c6c6a6587/go.mod"
- "google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013/go.mod"
- "google.golang.org/genproto v0.0.0-20200618031413-b414f8b61790/go.mod"
- "google.golang.org/genproto v0.0.0-20200729003335-053ba62fc06f/go.mod"
- "google.golang.org/genproto v0.0.0-20200804131852-c06518451d9c/go.mod"
- "google.golang.org/genproto v0.0.0-20200825200019-8632dd797987/go.mod"
- "google.golang.org/grpc v1.14.0/go.mod"
- "google.golang.org/grpc v1.16.0/go.mod"
- "google.golang.org/grpc v1.17.0/go.mod"
- "google.golang.org/grpc v1.19.0/go.mod"
- "google.golang.org/grpc v1.20.1/go.mod"
- "google.golang.org/grpc v1.21.1/go.mod"
- "google.golang.org/grpc v1.23.0/go.mod"
- "google.golang.org/grpc v1.25.1/go.mod"
- "google.golang.org/grpc v1.26.0/go.mod"
- "google.golang.org/grpc v1.27.0/go.mod"
- "google.golang.org/grpc v1.27.1/go.mod"
- "google.golang.org/grpc v1.28.0/go.mod"
- "google.golang.org/grpc v1.29.1/go.mod"
- "google.golang.org/grpc v1.30.0/go.mod"
- "google.golang.org/grpc v1.31.0/go.mod"
- "google.golang.org/protobuf v0.0.0-20200109180630-ec00e32a8dfd/go.mod"
- "google.golang.org/protobuf v0.0.0-20200221191635-4d8936d0db64/go.mod"
- "google.golang.org/protobuf v0.0.0-20200228230310-ab0ca4ff8a60/go.mod"
- "google.golang.org/protobuf v1.20.1-0.20200309200217-e05f789c0967/go.mod"
- "google.golang.org/protobuf v1.21.0/go.mod"
- "google.golang.org/protobuf v1.22.0/go.mod"
- "google.golang.org/protobuf v1.23.0/go.mod"
- "google.golang.org/protobuf v1.23.1-0.20200526195155-81db48ad09cc/go.mod"
- "google.golang.org/protobuf v1.24.0/go.mod"
- "google.golang.org/protobuf v1.25.0/go.mod"
- "google.golang.org/protobuf v1.26.0-rc.1/go.mod"
- "google.golang.org/protobuf v1.26.0/go.mod"
- "google.golang.org/protobuf v1.27.1"
- "google.golang.org/protobuf v1.27.1/go.mod"
- "gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod"
- "gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod"
- "gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod"
- "gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod"
- "gopkg.in/check.v1 v1.0.0-20200902074654-038fdea0a05b/go.mod"
- "gopkg.in/errgo.v2 v2.1.0/go.mod"
- "gopkg.in/fsnotify.v1 v1.4.7/go.mod"
- "gopkg.in/inf.v0 v0.9.1/go.mod"
- "gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7"
- "gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7/go.mod"
- "gopkg.in/yaml.v2 v2.2.1/go.mod"
- "gopkg.in/yaml.v2 v2.2.2/go.mod"
- "gopkg.in/yaml.v2 v2.2.4/go.mod"
- "gopkg.in/yaml.v2 v2.2.5/go.mod"
- "gopkg.in/yaml.v2 v2.3.0/go.mod"
- "gopkg.in/yaml.v2 v2.4.0"
- "gopkg.in/yaml.v2 v2.4.0/go.mod"
- "gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod"
- "gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b"
- "gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b/go.mod"
- "grpc.go4.org v0.0.0-20170609214715-11d0a25b4919/go.mod"
- "honnef.co/go/tools v0.0.0-20180728063816-88497007e858/go.mod"
- "honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod"
- "honnef.co/go/tools v0.0.0-20190106161140-3f1c8253044a/go.mod"
- "honnef.co/go/tools v0.0.0-20190418001031-e561f6794a2a/go.mod"
- "honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc/go.mod"
- "honnef.co/go/tools v0.0.1-2019.2.3/go.mod"
- "honnef.co/go/tools v0.0.1-2020.1.3/go.mod"
- "honnef.co/go/tools v0.0.1-2020.1.4/go.mod"
- "rsc.io/binaryregexp v0.2.0/go.mod"
- "rsc.io/quote/v3 v3.1.0/go.mod"
- "rsc.io/sampler v1.3.0/go.mod"
- "sourcegraph.com/sourcegraph/go-diff v0.5.0/go.mod"
- "sourcegraph.com/sqs/pbtypes v0.0.0-20180604144634-d3ebe8f20ae4/go.mod"
-)
-
-go-module_set_globals
-
-DESCRIPTION="Open Source Continuous File Synchronization"
-HOMEPAGE="https://syncthing.net"
-SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz
- ${EGO_SUM_SRC_URI}"
-
-LICENSE="Apache-2.0 BSD BSD-2 CC0-1.0 ISC MIT MPL-2.0 Unlicense"
-SLOT="0"
-KEYWORDS="amd64 arm arm64 ppc64 x86"
-IUSE="selinux tools"
-
-RDEPEND="acct-group/syncthing
- acct-user/syncthing
- tools? ( acct-group/stdiscosrv
- acct-group/strelaysrv
- <acct-user/stdiscosrv-1
- <acct-user/strelaysrv-1 )
- selinux? ( sec-policy/selinux-syncthing )"
-
-DOCS=( README.md AUTHORS CONTRIBUTING.md )
-
-PATCHES=(
- "${FILESDIR}"/${PN}-1.3.4-TestIssue5063_timeout.patch
-)
-
-src_prepare() {
- # Bug #679280
- xdg_environment_reset
-
- default
- sed -i \
- 's|^ExecStart=.*|ExecStart=/usr/libexec/syncthing/strelaysrv|' \
- cmd/strelaysrv/etc/linux-systemd/strelaysrv.service \
- || die
-
- # We do not need this and it sometimes causes build failures
- rm -rf cmd/stupgrades
-}
-
-src_compile() {
- go run build.go -version "v${PV}" -no-upgrade install \
- $(usex tools "all" "") || die "build failed"
-}
-
-src_test() {
- go run build.go test || die "test failed"
-}
-
-src_install() {
- doman man/*.[157]
- einstalldocs
-
- dobin bin/syncthing
- domenu etc/linux-desktop/*.desktop
- if use tools ; then
- exeinto /usr/libexec/syncthing
- local exe
- for exe in bin/* ; do
- [[ "${exe}" == "bin/syncthing" ]] || doexe "${exe}"
- done
- fi
-
- # openrc and systemd service files
- systemd_dounit etc/linux-systemd/system/${PN}{@,-resume}.service
- systemd_douserunit etc/linux-systemd/user/${PN}.service
- newconfd "${FILESDIR}/${PN}.confd" ${PN}
- newinitd "${FILESDIR}/${PN}.initd" ${PN}
-
- keepdir /var/log/${PN}
- insinto /etc/logrotate.d
- newins "${FILESDIR}/${PN}.logrotate" ${PN}
-
- if use tools ; then
- # openrc and systemd service files
-
- systemd_dounit "${FILESDIR}/stdiscosrv.service"
- newconfd "${FILESDIR}/stdiscosrv.confd" stdiscosrv
- newinitd "${FILESDIR}/stdiscosrv.initd" stdiscosrv
-
- systemd_dounit cmd/strelaysrv/etc/linux-systemd/strelaysrv.service
- newconfd "${FILESDIR}/strelaysrv.confd" strelaysrv
- newinitd "${FILESDIR}/strelaysrv.initd" strelaysrv
-
- insinto /etc/logrotate.d
- newins "${FILESDIR}/stdiscosrv.logrotate" strelaysrv
- newins "${FILESDIR}/strelaysrv.logrotate" strelaysrv
- fi
-}
-
-pkg_postinst() {
- xdg_desktop_database_update
-}
-
-pkg_postrm() {
- xdg_desktop_database_update
-}
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-p2p/syncthing/files/, net-p2p/syncthing/
@ 2022-01-18 16:40 Marek Szuba
0 siblings, 0 replies; 6+ messages in thread
From: Marek Szuba @ 2022-01-18 16:40 UTC (permalink / raw
To: gentoo-commits
commit: 4c317ff343d33abac8337fc9e4175a5034264860
Author: Alexandra Parker <alex.iris.parker <AT> gmail <DOT> com>
AuthorDate: Thu Jan 13 18:48:39 2022 +0000
Commit: Marek Szuba <marecki <AT> gentoo <DOT> org>
CommitDate: Tue Jan 18 16:40:37 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c317ff3
net-p2p/syncthing: support cross compilation (take 2)
now with support for USE=tools
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Alexandra Parker <alex.iris.parker <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/23778
Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>
.../files/syncthing-1.18.6-build-out.patch | 30 ++++++++++++++++++++++
net-p2p/syncthing/syncthing-1.18.6.ebuild | 6 +++--
2 files changed, 34 insertions(+), 2 deletions(-)
diff --git a/net-p2p/syncthing/files/syncthing-1.18.6-build-out.patch b/net-p2p/syncthing/files/syncthing-1.18.6-build-out.patch
new file mode 100644
index 000000000000..20dc63dca2f5
--- /dev/null
+++ b/net-p2p/syncthing/files/syncthing-1.18.6-build-out.patch
@@ -0,0 +1,30 @@
+diff --git a/build.go b/build.go
+index c2e1059398..7888c834d2 100644
+--- a/build.go
++++ b/build.go
+@@ -47,6 +47,7 @@ var (
+ cc string
+ run string
+ benchRun string
++ buildOut string
+ debugBinary bool
+ coverage bool
+ long bool
+@@ -374,6 +375,7 @@ func parseFlags() {
+ flag.StringVar(&run, "run", "", "Specify which tests to run")
+ flag.StringVar(&benchRun, "bench", "", "Specify which benchmarks to run")
+ flag.BoolVar(&withNextGenGUI, "with-next-gen-gui", withNextGenGUI, "Also build 'newgui'")
++ flag.StringVar(&buildOut, "build-out", "", "Set the '-o' value for 'go build'")
+ flag.Parse()
+ }
+
+@@ -506,6 +508,9 @@ func build(target target, tags []string) {
+ }
+
+ args := []string{"build", "-v"}
++ if buildOut != "" {
++ args = append(args, "-o", buildOut)
++ }
+ args = appendParameters(args, tags, target.buildPkgs...)
+ runPrint(goCmd, args...)
+ }
diff --git a/net-p2p/syncthing/syncthing-1.18.6.ebuild b/net-p2p/syncthing/syncthing-1.18.6.ebuild
index 60872181cf9e..e7512849c254 100644
--- a/net-p2p/syncthing/syncthing-1.18.6.ebuild
+++ b/net-p2p/syncthing/syncthing-1.18.6.ebuild
@@ -807,6 +807,7 @@ DOCS=( README.md AUTHORS CONTRIBUTING.md )
PATCHES=(
"${FILESDIR}"/${PN}-1.3.4-TestIssue5063_timeout.patch
"${FILESDIR}"/${PN}-1.18.4-tool_users.patch
+ "${FILESDIR}"/${PN}-1.18.6-build-out.patch
)
src_prepare() {
@@ -828,8 +829,9 @@ src_prepare() {
}
src_compile() {
- go run build.go -version "v${PV}" -no-upgrade install \
- $(usex tools "all" "") || die "build failed"
+ GOARCH= go run build.go -version "v${PV}" -no-upgrade -build-out=bin/ \
+ ${GOARCH:+-goarch="${GOARCH}"} \
+ build $(usex tools "all" "") || die "build failed"
}
src_test() {
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-p2p/syncthing/files/, net-p2p/syncthing/
@ 2023-03-08 13:22 Marek Szuba
0 siblings, 0 replies; 6+ messages in thread
From: Marek Szuba @ 2023-03-08 13:22 UTC (permalink / raw
To: gentoo-commits
commit: 258b078422e2aad516119787da45a8c2d8c0aa78
Author: Marek Szuba <marecki <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 8 11:32:23 2023 +0000
Commit: Marek Szuba <marecki <AT> gentoo <DOT> org>
CommitDate: Wed Mar 8 13:22:31 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=258b0784
net-p2p/syncthing: add 1.23.2, drop 1.23.0
Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>
net-p2p/syncthing/Manifest | 4 ++--
.../files/syncthing-1.23.2-tests_race.patch | 25 ++++++++++++++++++++++
...thing-1.23.0.ebuild => syncthing-1.23.2.ebuild} | 2 +-
3 files changed, 28 insertions(+), 3 deletions(-)
diff --git a/net-p2p/syncthing/Manifest b/net-p2p/syncthing/Manifest
index 7da9131d05eb..e57788d6ba60 100644
--- a/net-p2p/syncthing/Manifest
+++ b/net-p2p/syncthing/Manifest
@@ -2,5 +2,5 @@ DIST syncthing-1.21.0-deps.tar.xz 96707392 BLAKE2B 3cbf6d98758a453f16717ec974cb1
DIST syncthing-1.21.0.tar.gz 6319691 BLAKE2B 390a06ff41ed1b023941d958d8112f9c503c296cc47a5bb6d6baa55d81f6cbd431c725cc6493b041a96734e56c9a267c6a3b4c564b67ab320cd7f9d46e173320 SHA512 ad613da2c3aaa4792703e69dde0ab3ace3a92f20b968a2d7c02d6ec3b6ce2d53a6c3d6b64c41c58ca8296bf722e689cd8ca34c05fd0dd32d8005d31b5f860d58
DIST syncthing-1.22.2-deps.tar.xz 101162440 BLAKE2B 74e846b191ca7aefdaca4784d2c4c3ed3d412695820dff2280c13c8c2c498a746b54210ca3bbc310fbd8693c8dedbab5bf51078ff01e345bd0ced54559b76106 SHA512 b9e23e1d50bc27ffab1e66f08a67b910fa3c869e514f68c17cae73d717f4a0452b93ad7d0a6ec475f4e1055a6d4d85bcd8e7f85692a6088baa96e2af710739c0
DIST syncthing-1.22.2.tar.gz 6339424 BLAKE2B 69a6350a5166af8cd670090b440fb9b932a6d1169fc649588277d90aff305604302bc368b61f542252b06b5212c1c094f720e39c1be6f8375fc7e8f8d2f7bdef SHA512 5b724beb139ec2701222cf77c540cb3f4525db3b1102ccc9ac55829dda668e7fe4b962c7263fbe6bc4efa813d0e783486a7b329f903ded1cef47be585c1e8787
-DIST syncthing-1.23.0-deps.tar.xz 101340488 BLAKE2B 00dc20c5b2aee91bb84a9014ac7ff38828aa8faa396a3567dbb3469409f22566a36bf50a6dc20ddd38803e3f0a1d7229a1e685328cc4a6e4285a808f29f14eb8 SHA512 2fcdc7dd29c75d2f1ee0e385f2d1728021acd32e06f7e48013ba54615b4793ae033e1f05e607925618b095388bb48b78f14561e5866a285a9e7e7659c26caff1
-DIST syncthing-1.23.0.tar.gz 6342650 BLAKE2B 165b7bceb88a5ba8443b1393c50b28c6c4dbc7cdd74383ff7718d5594050703e2f6bd66c41c00cd7bf35fe54ff85c9837fb9f59c578eb71acb588b078faa074d SHA512 b0122923ad3ed4cc50aafe89bb94e13b44998483db0b1df795e05ff17bcbc029a17ed3af187b615154cf88d4c964cb5bdb84e25b6f5548ccf29545b6d2a1cd4f
+DIST syncthing-1.23.2-deps.tar.xz 101786324 BLAKE2B 5ab47ce288ece8ef53a14f3769650ba945c4b0cb8c314964694690c4d6b34c4161ccd256deae1a29bd97f0441610810dbb9af6dd9b90786c709a03adb1a6f511 SHA512 94fb5031ce471af2ed462d83bdfff8c290df8e83917e09c5571ef1e585fe3a9c4d4b4119b529b5af974be58b7e92c1e07c17fe9810d0d9c011323f344f37f83e
+DIST syncthing-1.23.2.tar.gz 6529048 BLAKE2B cda30a17000c5cf59b90d68148c0b375c36145e3d497409c49060cddcee794951bd72e8d0f97be7b66cb5c595c2d7232b64b06df2d9a37a48e02d614367cf8c0 SHA512 3f182aad9714d299205a0379d32121adb018d5d7fb31f199a108f1a6b7822452e1b10a27c05516d232004469a1f20f086465fbbc163f10ed9375273a8b90ff9d
diff --git a/net-p2p/syncthing/files/syncthing-1.23.2-tests_race.patch b/net-p2p/syncthing/files/syncthing-1.23.2-tests_race.patch
new file mode 100644
index 000000000000..8d9e6819d101
--- /dev/null
+++ b/net-p2p/syncthing/files/syncthing-1.23.2-tests_race.patch
@@ -0,0 +1,25 @@
+--- a/build.go
++++ b/build.go
+@@ -32,8 +32,6 @@
+ "strings"
+ "text/template"
+ "time"
+-
+- buildpkg "github.com/syncthing/syncthing/lib/build"
+ )
+
+ var (
+@@ -409,13 +409,6 @@
+ }
+ args = append(args, "-timeout", timeout)
+
+- if runtime.GOARCH == "amd64" {
+- switch runtime.GOOS {
+- case buildpkg.Darwin, buildpkg.Linux, buildpkg.FreeBSD: // , "windows": # See https://github.com/golang/go/issues/27089
+- args = append(args, "-race")
+- }
+- }
+-
+ if coverage {
+ args = append(args, "-covermode", "atomic", "-coverprofile", "coverage.txt", "-coverpkg", strings.Join(pkgs, ","))
+ }
diff --git a/net-p2p/syncthing/syncthing-1.23.0.ebuild b/net-p2p/syncthing/syncthing-1.23.2.ebuild
similarity index 98%
rename from net-p2p/syncthing/syncthing-1.23.0.ebuild
rename to net-p2p/syncthing/syncthing-1.23.2.ebuild
index 9284130b9c50..b0131fe7f83f 100644
--- a/net-p2p/syncthing/syncthing-1.23.0.ebuild
+++ b/net-p2p/syncthing/syncthing-1.23.2.ebuild
@@ -20,13 +20,13 @@ RDEPEND="acct-group/syncthing
tools? ( >=acct-user/stdiscosrv-1
>=acct-user/strelaysrv-1 )
selinux? ( sec-policy/selinux-syncthing )"
-BDEPEND="<dev-lang/go-1.20"
DOCS=( README.md AUTHORS CONTRIBUTING.md )
PATCHES=(
"${FILESDIR}"/${PN}-1.3.4-TestIssue5063_timeout.patch
"${FILESDIR}"/${PN}-1.18.4-tool_users.patch
+ "${FILESDIR}"/${PN}-1.23.2-tests_race.patch
)
src_prepare() {
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-p2p/syncthing/files/, net-p2p/syncthing/
@ 2024-03-23 17:12 Marek Szuba
0 siblings, 0 replies; 6+ messages in thread
From: Marek Szuba @ 2024-03-23 17:12 UTC (permalink / raw
To: gentoo-commits
commit: cdd08394168c0219a13d51cf2f12b991c07509bc
Author: Marek Szuba <marecki <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 23 17:10:42 2024 +0000
Commit: Marek Szuba <marecki <AT> gentoo <DOT> org>
CommitDate: Sat Mar 23 17:12:26 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cdd08394
net-p2p/syncthing: add 1.27.4
Closes: https://bugs.gentoo.org/927343
Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>
net-p2p/syncthing/Manifest | 1 +
.../files/syncthing-1.27.4-tests_race.patch | 24 +++++
net-p2p/syncthing/syncthing-1.27.4.ebuild | 113 +++++++++++++++++++++
3 files changed, 138 insertions(+)
diff --git a/net-p2p/syncthing/Manifest b/net-p2p/syncthing/Manifest
index 6eccaa287843..be04ced4cd13 100644
--- a/net-p2p/syncthing/Manifest
+++ b/net-p2p/syncthing/Manifest
@@ -1 +1,2 @@
DIST syncthing-1.27.2.tar.gz 14967954 BLAKE2B 8f033e18679f7accc3d461566da88fa45b2e1c8dc1b1b5ace2732e3987d82e8d458c42dc3571f7d1199cf35667be72fcf81b65efa9cd2dac65297bc86b03e284 SHA512 6b6bd57268b32b5db2377cf813229de978e26de606ac3bf2b515ddb35fd8131fafdb88abbfac1cb7d0f443224538cca7a6eba64f4bd737135f5a1c98e76439f9
+DIST syncthing-1.27.4.tar.gz 15085218 BLAKE2B 25a87551f9c1af2b30076fb439a93a26335c63290f1192d2bc040d526fc9b3c2948103db84dd5fcb16d67810b228e23aa3f1e6f9e9a79dbdb75b983ff4376064 SHA512 fc28ca066adeccd10281a6ccd50c336942bfbbdaedd954028cc2ee40c09ad85ef0a7fcfe733d3045d6979dd22cddd2fa5979d605440ebe3d2fd90c7f911c3c73
diff --git a/net-p2p/syncthing/files/syncthing-1.27.4-tests_race.patch b/net-p2p/syncthing/files/syncthing-1.27.4-tests_race.patch
new file mode 100644
index 000000000000..1c83a03ec00f
--- /dev/null
+++ b/net-p2p/syncthing/files/syncthing-1.27.4-tests_race.patch
@@ -0,0 +1,24 @@
+--- a/build.go
++++ b/build.go
+@@ -34,7 +34,6 @@
+ "time"
+
+ _ "github.com/syncthing/syncthing/lib/automaxprocs"
+- buildpkg "github.com/syncthing/syncthing/lib/build"
+ )
+
+ var (
+@@ -416,13 +415,6 @@
+ }
+ args = append(args, "-timeout", timeout)
+
+- if runtime.GOARCH == "amd64" {
+- switch runtime.GOOS {
+- case buildpkg.Darwin, buildpkg.Linux, buildpkg.FreeBSD: // , "windows": # See https://github.com/golang/go/issues/27089
+- args = append(args, "-race")
+- }
+- }
+-
+ if coverage {
+ args = append(args, "-covermode", "atomic", "-coverprofile", "coverage.txt", "-coverpkg", strings.Join(pkgs, ","))
+ }
diff --git a/net-p2p/syncthing/syncthing-1.27.4.ebuild b/net-p2p/syncthing/syncthing-1.27.4.ebuild
new file mode 100644
index 000000000000..b3b0c4165490
--- /dev/null
+++ b/net-p2p/syncthing/syncthing-1.27.4.ebuild
@@ -0,0 +1,113 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit desktop go-module systemd xdg-utils
+
+DESCRIPTION="Open Source Continuous File Synchronization"
+HOMEPAGE="https://syncthing.net"
+SRC_URI="https://github.com/${PN}/${PN}/releases/download/v${PV}/${PN}-source-v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="Apache-2.0 BSD BSD-2 CC0-1.0 ISC MIT MPL-2.0 Unlicense"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~x86"
+IUSE="selinux tools"
+
+RDEPEND="acct-group/syncthing
+ acct-user/syncthing
+ tools? ( >=acct-user/stdiscosrv-1
+ >=acct-user/strelaysrv-1 )
+ selinux? ( sec-policy/selinux-syncthing )"
+BDEPEND=">=dev-lang/go-1.20.0"
+
+DOCS=( README.md AUTHORS CONTRIBUTING.md )
+
+PATCHES=(
+ "${FILESDIR}"/${PN}-1.3.4-TestIssue5063_timeout.patch
+ "${FILESDIR}"/${PN}-1.18.4-tool_users.patch
+ "${FILESDIR}"/${PN}-1.27.4-tests_race.patch
+)
+
+S="${WORKDIR}"/${PN}
+
+src_prepare() {
+ # Bug #679280
+ xdg_environment_reset
+
+ default
+ sed -i \
+ 's|^ExecStart=.*|ExecStart=/usr/libexec/syncthing/stdiscosrv|' \
+ cmd/stdiscosrv/etc/linux-systemd/stdiscosrv.service \
+ || die
+ sed -i \
+ 's|^ExecStart=.*|ExecStart=/usr/libexec/syncthing/strelaysrv|' \
+ cmd/strelaysrv/etc/linux-systemd/strelaysrv.service \
+ || die
+}
+
+src_compile() {
+ GOARCH= go run build.go -version "v${PV}" -no-upgrade -build-out=bin/ \
+ ${GOARCH:+-goarch="${GOARCH}"} \
+ build $(usex tools "all" "") || die "build failed"
+}
+
+src_test() {
+ go run build.go test || die "test failed"
+}
+
+src_install() {
+ local icon_size
+
+ doman man/*.[157]
+ einstalldocs
+
+ dobin bin/syncthing
+
+ domenu etc/linux-desktop/*.desktop
+ for icon_size in 32 64 128 256 512; do
+ newicon -s ${icon_size} assets/logo-${icon_size}.png ${PN}.png
+ done
+ newicon -s scalable assets/logo-only.svg ${PN}.svg
+
+ if use tools; then
+ exeinto /usr/libexec/syncthing
+ local exe
+ for exe in bin/* ; do
+ [[ "${exe}" == "bin/syncthing" ]] || doexe "${exe}"
+ done
+ fi
+
+ systemd_dounit etc/linux-systemd/system/${PN}{@,-resume}.service
+ systemd_douserunit etc/linux-systemd/user/${PN}.service
+ newconfd "${FILESDIR}"/${PN}.confd ${PN}
+ newinitd "${FILESDIR}"/${PN}.initd-r2 ${PN}
+
+ keepdir /var/log/${PN}
+ insinto /etc/logrotate.d
+ newins "${FILESDIR}"/${PN}.logrotate ${PN}
+
+ if use tools; then
+ systemd_dounit cmd/stdiscosrv/etc/linux-systemd/stdiscosrv.service
+ newconfd "${FILESDIR}"/stdiscosrv.confd stdiscosrv
+ newinitd "${FILESDIR}"/stdiscosrv.initd-r1 stdiscosrv
+
+ systemd_dounit cmd/strelaysrv/etc/linux-systemd/strelaysrv.service
+ newconfd "${FILESDIR}"/strelaysrv.confd strelaysrv
+ newinitd "${FILESDIR}"/strelaysrv.initd-r1 strelaysrv
+
+ insinto /etc/logrotate.d
+ newins "${FILESDIR}"/stdiscosrv.logrotate strelaysrv
+ newins "${FILESDIR}"/strelaysrv.logrotate strelaysrv
+ fi
+}
+
+pkg_postinst() {
+ xdg_desktop_database_update
+ xdg_icon_cache_update
+}
+
+pkg_postrm() {
+ xdg_desktop_database_update
+ xdg_icon_cache_update
+}
^ permalink raw reply related [flat|nested] 6+ messages in thread
end of thread, other threads:[~2024-03-23 17:12 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-02-17 20:43 [gentoo-commits] repo/gentoo:master commit in: net-p2p/syncthing/files/, net-p2p/syncthing/ Dirkjan Ochtman
-- strict thread matches above, loose matches on Subject: below --
2016-06-24 20:05 Dirkjan Ochtman
2022-01-18 16:40 Marek Szuba
2022-01-18 16:40 Marek Szuba
2023-03-08 13:22 Marek Szuba
2024-03-23 17:12 Marek Szuba
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox