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 B141C139694 for ; Fri, 26 May 2017 19:33:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9F1C021C210; Fri, 26 May 2017 19:33:05 +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 6C20321C210 for ; Fri, 26 May 2017 19:33:05 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id BCC1A341698 for ; Fri, 26 May 2017 19:33:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2B68A845 for ; Fri, 26 May 2017 19:33:02 +0000 (UTC) From: "Jason Zaman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jason Zaman" Message-ID: <1495827140.7edde5465da4ee83092bed63e95f8bd29f133550.perfinion@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/rclone/Manifest net-misc/rclone/metadata.xml net-misc/rclone/rclone-1.36.ebuild net-misc/rclone/rclone-9999.ebuild X-VCS-Directories: net-misc/rclone/ X-VCS-Committer: perfinion X-VCS-Committer-Name: Jason Zaman X-VCS-Revision: 7edde5465da4ee83092bed63e95f8bd29f133550 X-VCS-Branch: master Date: Fri, 26 May 2017 19:33:02 +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: e84dfa63-719c-403d-ae58-138b87c8fbc7 X-Archives-Hash: 52bd2d5941267edafa595322c9419ac2 commit: 7edde5465da4ee83092bed63e95f8bd29f133550 Author: Jason Zaman gentoo org> AuthorDate: Fri May 26 19:31:49 2017 +0000 Commit: Jason Zaman gentoo org> CommitDate: Fri May 26 19:32:20 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7edde546 net-misc/rclone: New package Ebuild from Jack Coulter and Chris Pritchard Gentoo-Bug: https://bugs.gentoo.org/609510 Package-Manager: Portage-2.3.5, Repoman-2.3.1 net-misc/rclone/Manifest | 1 + net-misc/rclone/metadata.xml | 8 ++++++++ net-misc/rclone/rclone-1.36.ebuild | 31 +++++++++++++++++++++++++++++++ net-misc/rclone/rclone-9999.ebuild | 31 +++++++++++++++++++++++++++++++ 4 files changed, 71 insertions(+) diff --git a/net-misc/rclone/Manifest b/net-misc/rclone/Manifest new file mode 100644 index 00000000000..71ff95857b6 --- /dev/null +++ b/net-misc/rclone/Manifest @@ -0,0 +1 @@ +DIST rclone-1.36.tar.gz 14013564 SHA256 a573b70e3aeb355b943dddd6ae9375386fc21bf12dfba601d8d7280f97c4c884 SHA512 589b5e2370244b5609d1ec8245f9f5f5cf58d6a2d507768db2cfc5a5b882f7d277d797fd0068b904538f3700e1751df03a21697d5295c83a2bf01a78d0ac6b13 WHIRLPOOL aa75c6c32cdcebd79ecf79abd03b4dc0205517808eb232a9655e8ae3da327cd62ad7183f4e0b0f6b7b52649c0c5058fdc2b57bc7b31b7dffb05e8a1508307d5c diff --git a/net-misc/rclone/metadata.xml b/net-misc/rclone/metadata.xml new file mode 100644 index 00000000000..76f45cdee0f --- /dev/null +++ b/net-misc/rclone/metadata.xml @@ -0,0 +1,8 @@ + + + + + perfinion@gentoo.org + Jason Zaman + + diff --git a/net-misc/rclone/rclone-1.36.ebuild b/net-misc/rclone/rclone-1.36.ebuild new file mode 100644 index 00000000000..0c936bdca50 --- /dev/null +++ b/net-misc/rclone/rclone-1.36.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit golang-build +EGO_PN="github.com/ncw/${PN}" + +if [[ ${PV} == *9999* ]]; then + inherit golang-vcs +else + KEYWORDS="~amd64 ~arm ~x86" + EGIT_COMMIT="v${PV}" + SRC_URI="https://${EGO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz" + inherit golang-vcs-snapshot +fi + +DESCRIPTION="A program to sync files to and from various cloud storage providers" +HOMEPAGE="https://rclone.org/" + +LICENSE="MIT" +SLOT="0" +IUSE="" + +DEPEND="" +RDEPEND="${DEPEND}" + +src_install() { + dobin ${PN} + doman src/${EGO_PN}/${PN}.1 + dodoc src/${EGO_PN}/README.md +} diff --git a/net-misc/rclone/rclone-9999.ebuild b/net-misc/rclone/rclone-9999.ebuild new file mode 100644 index 00000000000..0c936bdca50 --- /dev/null +++ b/net-misc/rclone/rclone-9999.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit golang-build +EGO_PN="github.com/ncw/${PN}" + +if [[ ${PV} == *9999* ]]; then + inherit golang-vcs +else + KEYWORDS="~amd64 ~arm ~x86" + EGIT_COMMIT="v${PV}" + SRC_URI="https://${EGO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz" + inherit golang-vcs-snapshot +fi + +DESCRIPTION="A program to sync files to and from various cloud storage providers" +HOMEPAGE="https://rclone.org/" + +LICENSE="MIT" +SLOT="0" +IUSE="" + +DEPEND="" +RDEPEND="${DEPEND}" + +src_install() { + dobin ${PN} + doman src/${EGO_PN}/${PN}.1 + dodoc src/${EGO_PN}/README.md +}