Gentoo Archives: gentoo-commits

From: Conrad Kostecki <conikost@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/
Date: Thu, 25 Jun 2020 20:22:26
Message-Id: 1593116536.91102e85aa1bc0466866ff1d902fe97b14c815da.conikost@gentoo
1 commit: 91102e85aa1bc0466866ff1d902fe97b14c815da
2 Author: Alexander Kurakin <kuraga333 <AT> mail <DOT> ru>
3 AuthorDate: Tue Jun 9 16:54:47 2020 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Thu Jun 25 20:22:16 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=91102e85
7
8 net-misc/rclone: drop old
9
10 Closes: https://github.com/gentoo/gentoo/pull/16142
11 Signed-off-by: Alexander Kurakin <kuraga333 <AT> mail.ru>
12 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
13
14 net-misc/rclone/Manifest | 1 -
15 net-misc/rclone/rclone-1.50.0.ebuild | 39 ------------------------------------
16 2 files changed, 40 deletions(-)
17
18 diff --git a/net-misc/rclone/Manifest b/net-misc/rclone/Manifest
19 index bd02dbddbb5..54d68761a9b 100644
20 --- a/net-misc/rclone/Manifest
21 +++ b/net-misc/rclone/Manifest
22 @@ -1,3 +1,2 @@
23 -DIST rclone-1.50.0.tar.gz 18566931 BLAKE2B cfaf983ae972606b8ccc56ba505aec65bd7e6427f0b16f7e6187b079116b47eb3d297a99b505782c2bb5b64a5c8bf4e5b7beaee9dad5718ec952033ceca0945c SHA512 df805dc711ecf60b869ec957d224676643bcb6eac756470d2194338b9cc34e2a657d286d4a4308c743847fc11aa821b106888eb6ab9f04677bc70747c73fc5c1
24 DIST rclone-1.51.0.tar.gz 18835242 BLAKE2B 5798a844c893e111e73ae409adcb06fd4291df3c0319bf983f2336ada45a60df253e750397bead55278cbb497c541a63498f695ce03af7b6cc1056f022ad2748 SHA512 b0881e09b75093abe4d31e95425a90513aed4a16d9e2dbf79023c9dc68875b90a1332204879530c450a16ab9cac475d967f7657d6f810a1e0f0d84b88d7de916
25 DIST rclone-1.52.1.tar.gz 20029046 BLAKE2B 0dc7deebf1d362c1b7ad466991c3fc481c62d4c5803e5fa768dbe09adecfc79c2af9dcc19e7621542b464325b03be1390eff54d165c8c899c48adfac63b6cd7a SHA512 bbd305074071986cf6fb8146c634e35c28e1ea8ce2ce95507c55b95cb19eb3b1453dfb11e365bef5948978328d91df44b936b866c49db26149a17f5ca451ba15
26
27 diff --git a/net-misc/rclone/rclone-1.50.0.ebuild b/net-misc/rclone/rclone-1.50.0.ebuild
28 deleted file mode 100644
29 index 4166391f5fa..00000000000
30 --- a/net-misc/rclone/rclone-1.50.0.ebuild
31 +++ /dev/null
32 @@ -1,39 +0,0 @@
33 -# Copyright 1999-2020 Gentoo Authors
34 -# Distributed under the terms of the GNU General Public License v2
35 -
36 -EAPI=7
37 -
38 -inherit golang-build bash-completion-r1
39 -EGO_PN="github.com/rclone/${PN}"
40 -
41 -if [[ ${PV} == *9999* ]]; then
42 - inherit golang-vcs
43 -else
44 - KEYWORDS="amd64 ~arm x86"
45 - EGIT_COMMIT="v${PV}"
46 - SRC_URI="https://${EGO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
47 - inherit golang-vcs-snapshot
48 -fi
49 -
50 -DESCRIPTION="A program to sync files to and from various cloud storage providers"
51 -HOMEPAGE="https://rclone.org/"
52 -
53 -LICENSE="MIT"
54 -SLOT="0"
55 -IUSE=""
56 -
57 -DEPEND=""
58 -RDEPEND="${DEPEND}"
59 -
60 -src_install() {
61 - dobin ${PN}
62 - doman src/${EGO_PN}/${PN}.1
63 - dodoc src/${EGO_PN}/README.md
64 -
65 - ./rclone genautocomplete bash ${PN}.bash || die
66 - newbashcomp ${PN}.bash ${PN}
67 -
68 - ./rclone genautocomplete zsh ${PN}.zsh || die
69 - insinto /usr/share/zsh/site-functions
70 - newins ${PN}.zsh _${PN}
71 -}