diff options
author | Louis Sautier <sautier.louis@gmail.com> | 2016-07-05 19:44:51 +0200 |
---|---|---|
committer | Dirkjan Ochtman <djc@gentoo.org> | 2016-07-05 20:24:25 +0200 |
commit | 027ae4da83c05f58104e401cc53b786b79d79cb4 (patch) | |
tree | 019e891dea5649288db6bc4995451627c8afb407 /net-p2p | |
parent | net-p2p/syncthing: bump to 0.13.10 (diff) | |
download | gentoo-027ae4da83c05f58104e401cc53b786b79d79cb4.tar.gz gentoo-027ae4da83c05f58104e401cc53b786b79d79cb4.tar.bz2 gentoo-027ae4da83c05f58104e401cc53b786b79d79cb4.zip |
net-p2p/syncthing: remove old
Package-Manager: portage-2.3.0
Diffstat (limited to 'net-p2p')
-rw-r--r-- | net-p2p/syncthing/syncthing-0.13.7.ebuild | 64 |
1 files changed, 0 insertions, 64 deletions
diff --git a/net-p2p/syncthing/syncthing-0.13.7.ebuild b/net-p2p/syncthing/syncthing-0.13.7.ebuild deleted file mode 100644 index 79d5258238b5..000000000000 --- a/net-p2p/syncthing/syncthing-0.13.7.ebuild +++ /dev/null @@ -1,64 +0,0 @@ -# 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="" - -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} - go run build.go -version "v${PV}" -no-upgrade || 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] - dobin bin/* - dodoc README.md AUTHORS CONTRIBUTING.md - 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} -} - -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 -} |