diff options
author | Piotr Staroszczyk <piotr.staroszczyk@get24.org> | 2018-02-06 14:13:27 +0100 |
---|---|---|
committer | Jason Zaman <perfinion@gentoo.org> | 2018-02-17 00:09:15 +0800 |
commit | 8087bcd32e0904a70a052650e1bcce0e2358601d (patch) | |
tree | 5643d19be7bebec207c9cf58c5b0782d51baf14d /net-misc | |
parent | www-client/chromium: remove old (diff) | |
download | gentoo-8087bcd32e0904a70a052650e1bcce0e2358601d.tar.gz gentoo-8087bcd32e0904a70a052650e1bcce0e2358601d.tar.bz2 gentoo-8087bcd32e0904a70a052650e1bcce0e2358601d.zip |
net-misc/rclone: version bump to 1.39
Closes: https://github.com/gentoo/gentoo/pull/7090
Diffstat (limited to 'net-misc')
-rw-r--r-- | net-misc/rclone/Manifest | 1 | ||||
-rw-r--r-- | net-misc/rclone/rclone-1.39.ebuild | 29 |
2 files changed, 30 insertions, 0 deletions
diff --git a/net-misc/rclone/Manifest b/net-misc/rclone/Manifest index b5241b93e5b7..f0ec277592cf 100644 --- a/net-misc/rclone/Manifest +++ b/net-misc/rclone/Manifest @@ -1,3 +1,4 @@ DIST rclone-1.36.tar.gz 14013564 BLAKE2B 0ca9d15e3df937d6b91b48069154baba7f923d803c94f9aa5f6b19429d59b2a6224a2e25979e57f699fda6cda7a11c5c02ec7af4494407d01c4a09981329c665 SHA512 589b5e2370244b5609d1ec8245f9f5f5cf58d6a2d507768db2cfc5a5b882f7d277d797fd0068b904538f3700e1751df03a21697d5295c83a2bf01a78d0ac6b13 DIST rclone-1.37.tar.gz 37684683 BLAKE2B a01f40c5aff8eaeef8d133af2a51b6ff8adb80a5b133b64b3201fefbad322789952d85a872c8da99ea81af1165e4e6b0e66253f7cdaaa0f148c5ae89c18b3c62 SHA512 683c88c04aa3d6f7057937c431bc56b20c9218c3a01f8baa4fb63ed716a0a3397855c1a9bf485041354bc6696f54f670b5cd9945c0465b4dc65595a9f606427b DIST rclone-1.38.tar.gz 36890082 BLAKE2B d2633bd3c49130b367a83d056c20f39504cb92aadb8b16f7a66ccfc3993f7b7c85879dedf1e2ef340c08177863207f738f8c6442528af8d8d3140de12c8ff157 SHA512 8dba3af1d576aac2b4b230eb6cb3072f0178e420f017dd715744ae2d8061f830b8079b7cc1cc09e7395ab3639b600b47768300d5f9da80a2f9626c26002a604e +DIST rclone-1.39.tar.gz 38015559 BLAKE2B 534bd0be87e7c8291bfe3acdaff12e9acfddeb42f08067d413184a688b5c0cdfcde78abff3551d81cd2e692a020386116f03842c8390852b2137c2f8342e43f2 SHA512 6e5e5f5e06510f36185d165986cbd3ed994d3cbf97055b4dea37c78af932f89ab8c89249006b829aad38ba43c77ff46f254ba56bcfbae7deca1ebcea555ad884 diff --git a/net-misc/rclone/rclone-1.39.ebuild b/net-misc/rclone/rclone-1.39.ebuild new file mode 100644 index 000000000000..ab1b0c69b3d5 --- /dev/null +++ b/net-misc/rclone/rclone-1.39.ebuild @@ -0,0 +1,29 @@ +# 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" + +src_install() { + dobin ${PN} + doman src/${EGO_PN}/${PN}.1 + dodoc src/${EGO_PN}/README.md +} |