From da8f40491436c9b7f92ede111f57255902ef8743 Mon Sep 17 00:00:00 2001 From: Horea Christian Date: Wed, 10 Jun 2015 19:07:53 +0200 Subject: [PATCH] older snycthing ebuilds --- net-p2p/syncthing/files/conf.d/syncthing | 15 +++++ net-p2p/syncthing/syncthing-0.10.30.ebuild | 63 ++++++++++++++++++++ net-p2p/syncthing/syncthing-0.10.31.ebuild | 67 ++++++++++++++++++++++ net-p2p/syncthing/syncthing-0.11.1.ebuild | 67 ++++++++++++++++++++++ 4 files changed, 212 insertions(+) create mode 100644 net-p2p/syncthing/files/conf.d/syncthing create mode 100644 net-p2p/syncthing/syncthing-0.10.30.ebuild create mode 100644 net-p2p/syncthing/syncthing-0.10.31.ebuild create mode 100644 net-p2p/syncthing/syncthing-0.11.1.ebuild diff --git a/net-p2p/syncthing/files/conf.d/syncthing b/net-p2p/syncthing/files/conf.d/syncthing new file mode 100644 index 0000000..bedce1a --- /dev/null +++ b/net-p2p/syncthing/files/conf.d/syncthing @@ -0,0 +1,15 @@ +# Config file for /etc/init.d/syncthing + +SYNC_NAME="syncthing" +SYNC_PIDFILE="/var/run/${SYNC_NAME}.pid" + +# If you are going to run syncthing as a user, also uncomment the SYNC_HOME line +SYNC_USER="root" +SYNC_GROUP="root" +#SYNC_HOME="/home/${SYNC_USER}/.config/${SYNC_NAME}" + +# Make sure SYNC_HOME is set to something so we reduce DRY here and in the init script +SYNC_HOME="${SYNC_HOME:-/etc/${SYNC_NAME}}" + +# Any options you want you can set them here +SYNC_OPTS="--home=${SYNC_HOME}" diff --git a/net-p2p/syncthing/syncthing-0.10.30.ebuild b/net-p2p/syncthing/syncthing-0.10.30.ebuild new file mode 100644 index 0000000..7d50917 --- /dev/null +++ b/net-p2p/syncthing/syncthing-0.10.30.ebuild @@ -0,0 +1,63 @@ +# Copyright 2014-2015 Jonathan Vasquez +# Distributed under the terms of the GNU General Public License v2 + +EAPI=5 + +inherit user systemd + +GITHUB_USER="syncthing" +GITHUB_REPO="syncthing" +GITHUB_TAG="${PV}" + +NAME="syncthing" +DESCRIPTION="Open Source Continuous File Synchronization" +HOMEPAGE="http://syncthing.net/" + +SRC_URI="https://github.com/${GITHUB_USER}/${GITHUB_REPO}/archive/v${GITHUB_TAG}.tar.gz -> ${P}.tar.gz" + +RESTRICT="mirror" +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~x86 amd64" + +DEPEND=">=dev-lang/go-1.3.0" + +S="${WORKDIR}" + +configDir="~/.config/syncthing" +config="${configDir}/config.xml" + +src_install() { + # Create directory structure recommended by SyncThing Documentation + # Since Go is "very particular" about file locations. + local newBaseDir="src/github.com/${PN}" + local newWorkDir="${newBaseDir}/${PN}" + + mkdir -p "${newBaseDir}" + mv "${P}" "${newWorkDir}" + + cd "${newWorkDir}" + + # Build SyncThing ;D + go run build.go -version v${PV} -no-upgrade=true + + # Copy compiled binary over to image directory + dobin "bin/${PN}" + + # Install the OpenRC init/conf files + doinitd "${FILESDIR}/init.d/${NAME}" + doconfd "${FILESDIR}/conf.d/${NAME}" + + # Install the systemd unit file + local systemdServiceFile="etc/linux-systemd/system/${PN}@.service" + systemd_dounit "${systemdServiceFile}" +} + +pkg_postinst() { + elog "In order to be able to view the Web UI remotely (from another machine)," + elog "edit your ${config} and change the 127.0.0.1:8080 to 0.0.0.0:8080 in" + elog "the 'address' section. This file will only be generated once you start syncthing." + elog "" + elog "Modify the /etc/conf.d/${PN} file and set the user/group/ and syncthing home directory" + elog "before launching. Afterwards, you can start ${PN} by doing a: rc-config start ${PN}" +} diff --git a/net-p2p/syncthing/syncthing-0.10.31.ebuild b/net-p2p/syncthing/syncthing-0.10.31.ebuild new file mode 100644 index 0000000..21413a6 --- /dev/null +++ b/net-p2p/syncthing/syncthing-0.10.31.ebuild @@ -0,0 +1,67 @@ +# Copyright 2014-2015 Jonathan Vasquez +# Distributed under the terms of the GNU General Public License v2 + +EAPI=5 + +inherit user systemd + +GITHUB_USER="syncthing" +GITHUB_REPO="syncthing" +GITHUB_TAG="${PV}" + +NAME="syncthing" +DESCRIPTION="Open Source Continuous File Synchronization" +HOMEPAGE="http://syncthing.net/" + +SRC_URI="https://github.com/${GITHUB_USER}/${GITHUB_REPO}/archive/v${GITHUB_TAG}.tar.gz -> ${P}.tar.gz" + +RESTRICT="mirror" +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~x86 amd64" + +DEPEND=">=dev-lang/go-1.3.0" + +S="${WORKDIR}" + +configDir="~/.config/syncthing" +config="${configDir}/config.xml" + +src_install() { + # Create directory structure recommended by SyncThing Documentation + # Since Go is "very particular" about file locations. + local newBaseDir="src/github.com/${PN}" + local newWorkDir="${newBaseDir}/${PN}" + + mkdir -p "${newBaseDir}" + mv "${P}" "${newWorkDir}" + + cd "${newWorkDir}" + + # Build SyncThing ;D + go run build.go -version v${PV} -no-upgrade=true + + # Copy compiled binary over to image directory + dobin "bin/${PN}" + + # Install the OpenRC init/conf files + doinitd "${FILESDIR}/init.d/${NAME}" + doconfd "${FILESDIR}/conf.d/${NAME}" + + # Install the systemd unit file + local systemdServiceFile="etc/linux-systemd/system/${PN}@.service" + systemd_dounit "${systemdServiceFile}" +} + +pkg_postinst() { + elog "This is the last release for the 0.10.X branch. A breaking change was introduced with" + elog "0.11.X which will make 0.10 and 0.11 clients non-communicatable. If this is a new deployment," + elog "consider using 0.11 from the start." + elog "" + elog "In order to be able to view the Web UI remotely (from another machine)," + elog "edit your ${config} and change the 127.0.0.1:8080 to 0.0.0.0:8080 in" + elog "the 'address' section. This file will only be generated once you start syncthing." + elog "" + elog "Modify the /etc/conf.d/${PN} file and set the user/group/ and syncthing home directory" + elog "before launching. Afterwards, you can start ${PN} by doing a: rc-config start ${PN}" +} diff --git a/net-p2p/syncthing/syncthing-0.11.1.ebuild b/net-p2p/syncthing/syncthing-0.11.1.ebuild new file mode 100644 index 0000000..e15f53a --- /dev/null +++ b/net-p2p/syncthing/syncthing-0.11.1.ebuild @@ -0,0 +1,67 @@ +# Copyright 2014-2015 Jonathan Vasquez +# Distributed under the terms of the GNU General Public License v2 + +EAPI=5 + +inherit user systemd + +GITHUB_USER="syncthing" +GITHUB_REPO="syncthing" +GITHUB_TAG="${PV}" + +NAME="syncthing" +DESCRIPTION="Open Source Continuous File Synchronization" +HOMEPAGE="http://syncthing.net/" + +SRC_URI="https://github.com/${GITHUB_USER}/${GITHUB_REPO}/archive/v${GITHUB_TAG}.tar.gz -> ${P}.tar.gz" + +RESTRICT="mirror" +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~x86 ~amd64" + +DEPEND=">=dev-lang/go-1.3.0" + +S="${WORKDIR}" + +configDir="~/.config/syncthing" +config="${configDir}/config.xml" + +src_install() { + # Create directory structure recommended by SyncThing Documentation + # Since Go is "very particular" about file locations. + local newBaseDir="src/github.com/${PN}" + local newWorkDir="${newBaseDir}/${PN}" + + mkdir -p "${newBaseDir}" + mv "${P}" "${newWorkDir}" + + cd "${newWorkDir}" + + # Build SyncThing ;D + go run build.go -version v${PV} -no-upgrade=true + + # Copy compiled binary over to image directory + dobin "bin/${PN}" + + # Install the OpenRC init/conf files + doinitd "${FILESDIR}/init.d/${NAME}" + doconfd "${FILESDIR}/conf.d/${NAME}" + + # Install the systemd unit file + local systemdServiceFile="etc/linux-systemd/system/${PN}@.service" + systemd_dounit "${systemdServiceFile}" +} + +pkg_postinst() { + elog "This is a breaking change release (0.11.X). If you have other devices that are" + elog "running on 0.10.X, you will need to upgrade them as well since these versions" + elog "cannot communicate with each other." + elog "" + elog "In order to be able to view the Web UI remotely (from another machine)," + elog "edit your ${config} and change the 127.0.0.1:8080 to 0.0.0.0:8080 in" + elog "the 'address' section. This file will only be generated once you start syncthing." + elog "" + elog "Modify the /etc/conf.d/${PN} file and set the user/group/ and syncthing home directory" + elog "before launching. Afterwards, you can start ${PN} by doing a: rc-config start ${PN}" +}