From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 518361382EE for ; Tue, 5 Jul 2016 18:24:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id ECA35E0B3C; Tue, 5 Jul 2016 18:24:41 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7F409E0B32 for ; Tue, 5 Jul 2016 18:24:41 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 81BB7340D11 for ; Tue, 5 Jul 2016 18:24:40 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 644132435 for ; Tue, 5 Jul 2016 18:24:37 +0000 (UTC) From: "Dirkjan Ochtman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Dirkjan Ochtman" Message-ID: <1467743065.027ae4da83c05f58104e401cc53b786b79d79cb4.djc@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-p2p/syncthing/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-p2p/syncthing/syncthing-0.13.7.ebuild X-VCS-Directories: net-p2p/syncthing/ X-VCS-Committer: djc X-VCS-Committer-Name: Dirkjan Ochtman X-VCS-Revision: 027ae4da83c05f58104e401cc53b786b79d79cb4 X-VCS-Branch: master Date: Tue, 5 Jul 2016 18:24:37 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 236a5dda-b84b-4f38-8e1d-59f73549be15 X-Archives-Hash: b92c9e116306ecc61fb4e46bc00250b9 commit: 027ae4da83c05f58104e401cc53b786b79d79cb4 Author: Louis Sautier gmail com> AuthorDate: Tue Jul 5 17:44:51 2016 +0000 Commit: Dirkjan Ochtman gentoo org> CommitDate: Tue Jul 5 18:24:25 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=027ae4da net-p2p/syncthing: remove old Package-Manager: portage-2.3.0 net-p2p/syncthing/syncthing-0.13.7.ebuild | 64 ------------------------------- 1 file changed, 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 79d5258..0000000 --- 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 -}