Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/
Date: Sat, 28 Oct 2017 09:10:37
Message-Id: 1509181761.b4fe2dc03afff446c7f8304075c5205962fdc32f.monsieurp@gentoo
1 commit: b4fe2dc03afff446c7f8304075c5205962fdc32f
2 Author: Piotr Staroszczyk <piotr.staroszczyk <AT> get24 <DOT> org>
3 AuthorDate: Wed Oct 11 22:49:01 2017 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 28 09:09:21 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4fe2dc0
7
8 net-misc/rclone: version bump to 1.38.
9
10 Closes: https://github.com/gentoo/gentoo/pull/5923
11
12 net-misc/rclone/Manifest | 1 +
13 net-misc/rclone/rclone-1.38.ebuild | 29 +++++++++++++++++++++++++++++
14 2 files changed, 30 insertions(+)
15
16 diff --git a/net-misc/rclone/Manifest b/net-misc/rclone/Manifest
17 index 42d2994cec5..43a6c9b7d38 100644
18 --- a/net-misc/rclone/Manifest
19 +++ b/net-misc/rclone/Manifest
20 @@ -1,2 +1,3 @@
21 DIST rclone-1.36.tar.gz 14013564 SHA256 a573b70e3aeb355b943dddd6ae9375386fc21bf12dfba601d8d7280f97c4c884 SHA512 589b5e2370244b5609d1ec8245f9f5f5cf58d6a2d507768db2cfc5a5b882f7d277d797fd0068b904538f3700e1751df03a21697d5295c83a2bf01a78d0ac6b13 WHIRLPOOL aa75c6c32cdcebd79ecf79abd03b4dc0205517808eb232a9655e8ae3da327cd62ad7183f4e0b0f6b7b52649c0c5058fdc2b57bc7b31b7dffb05e8a1508307d5c
22 DIST rclone-1.37.tar.gz 37684683 SHA256 a74e284d2368f6fb8e4ac654a31b9b1328ac6078acd3446c9a892cd4bcbe8660 SHA512 683c88c04aa3d6f7057937c431bc56b20c9218c3a01f8baa4fb63ed716a0a3397855c1a9bf485041354bc6696f54f670b5cd9945c0465b4dc65595a9f606427b WHIRLPOOL c43709f66f0de6e66f073e34e4896707db0b91cf556cc225bdc22b7195c92e5777fbf7dc6983d57bcb11cab825ec7c222e0f75c6e52949a68fe5a7b4e43da1ff
23 +DIST rclone-1.38.tar.gz 36890082 SHA256 d4806a55b64ab54923b55b230f2b2679406d5de995884433d3d60516bb8ebcc0 SHA512 8dba3af1d576aac2b4b230eb6cb3072f0178e420f017dd715744ae2d8061f830b8079b7cc1cc09e7395ab3639b600b47768300d5f9da80a2f9626c26002a604e WHIRLPOOL 4b5ed7e1eea99dda55f05ad4dfc7922db1733eecd2f4b4df5f3cd50928209842222632b9735e27c6c6aad56d111160086f08bd681461efcc665cb501399cd1f4
24
25 diff --git a/net-misc/rclone/rclone-1.38.ebuild b/net-misc/rclone/rclone-1.38.ebuild
26 new file mode 100644
27 index 00000000000..ab1b0c69b3d
28 --- /dev/null
29 +++ b/net-misc/rclone/rclone-1.38.ebuild
30 @@ -0,0 +1,29 @@
31 +# Copyright 1999-2017 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=6
35 +
36 +inherit golang-build
37 +
38 +EGO_PN="github.com/ncw/${PN}"
39 +
40 +if [[ ${PV} == *9999* ]]; then
41 + inherit golang-vcs
42 +else
43 + KEYWORDS="~amd64 ~arm ~x86"
44 + EGIT_COMMIT="v${PV}"
45 + SRC_URI="https://${EGO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
46 + inherit golang-vcs-snapshot
47 +fi
48 +
49 +DESCRIPTION="A program to sync files to and from various cloud storage providers"
50 +HOMEPAGE="https://rclone.org/"
51 +
52 +LICENSE="MIT"
53 +SLOT="0"
54 +
55 +src_install() {
56 + dobin ${PN}
57 + doman src/${EGO_PN}/${PN}.1
58 + dodoc src/${EGO_PN}/README.md
59 +}