public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Piotr Karbowski" <slashbeast@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/
Date: Tue,  4 Jul 2023 16:45:05 +0000 (UTC)	[thread overview]
Message-ID: <1688489103.81faf9e931799435d880bce6497fd8103ecfe1b2.slashbeast@gentoo> (raw)

commit:     81faf9e931799435d880bce6497fd8103ecfe1b2
Author:     Piotr Karbowski <slashbeast <AT> gentoo <DOT> org>
AuthorDate: Tue Jul  4 16:44:42 2023 +0000
Commit:     Piotr Karbowski <slashbeast <AT> gentoo <DOT> org>
CommitDate: Tue Jul  4 16:45:03 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=81faf9e9

net-misc/rclone: 1.63.0 version bump.

Signed-off-by: Piotr Karbowski <slashbeast <AT> gentoo.org>

 net-misc/rclone/Manifest             |  2 ++
 net-misc/rclone/rclone-1.63.0.ebuild | 43 ++++++++++++++++++++++++++++++++++++
 2 files changed, 45 insertions(+)

diff --git a/net-misc/rclone/Manifest b/net-misc/rclone/Manifest
index 48b7ac987a83..625c5037afdd 100644
--- a/net-misc/rclone/Manifest
+++ b/net-misc/rclone/Manifest
@@ -2,3 +2,5 @@ DIST rclone-1.61.1-deps.tar.xz 286458984 BLAKE2B 5129b10d67c0b8dbc03d5f3250667fd
 DIST rclone-1.61.1.tar.gz 16112718 BLAKE2B cb68fedf03812451d9c8ded88bfc073c8177948b1e932acf99d22b23d3d11b1f52027e2afe88472ba6c88637a8e58e2955b67575ed7356b7b0900d6c7a7bb65c SHA512 739b976a4538586670b797c92f9cbd416c3589444a611926b5edd074e8249dfcff9d95e8053459aa42c4cbe90009a9ba1c3abb9be8e8718db6276fdc39386273
 DIST rclone-1.62.2-deps.tar.xz 294265336 BLAKE2B 7f44b9972ab902ea53beb2cb6475dc4bbc1ca3b7254d1177a8d49107d6ce90724b0bb37567aecbd9421151ca0f7e7eaa01e6b4ed0d995264ddfc944cae98220e SHA512 2e1a6b864094b364745402b857036ebdea4dd83dddee6f18e3e40fbb0e740bae4d460b6f592d9ee50632fa73d6447f8dee0748a73a738a6dce263a20a1eae975
 DIST rclone-1.62.2.tar.gz 16172767 BLAKE2B 29dd755a25adb3b332b45a662dd6ae1280c38a940e76cc6e3c5ccd38620b43b0b9f0a4598d752583ddff7e2c860416e4e36b6cdfc00cf81f03437ac13e88aba3 SHA512 c29b666ab5573e80f9e61955e987cf3834306bfebce209775f5838a0844e26b5c5ec41d64b8a8444745a99fd8e9c104b18631aeffb438e89839f996221b1c8ca
+DIST rclone-1.63.0-deps.tar.xz 297987608 BLAKE2B cfda8663ca32b36f5e56db74a724bded03473d4626a55111cf6e06c70b9d8a1678e371eb129cfa5ab4c09df67a22a6887e1681c099e4459f83521c6ad424e4e7 SHA512 604339abaead46ea4332c3eb8459575a6e26b5440f8743a17a5ae95954adf7f8f17039aea555b5e5534211d5091fd345646a6b43e1deba4fb4fb2576fb783881
+DIST rclone-1.63.0.tar.gz 16291884 BLAKE2B 540755808dd73fac061c481e2ea4f1ee241bcd55ccabda9b05343f2074f1672868c4246baff42471ecc7000455fe2c2a04c93578faa994aa0323e0033681bb38 SHA512 5f4590a5244d4eb1a51fc15a4ebef70941af94db8790d3ea1bd56b91f399f580b2cd1cc168c5d5e1fd9ee4bc4a3a4a908c8720aead8f8c24bcee3eacc6423ef3

diff --git a/net-misc/rclone/rclone-1.63.0.ebuild b/net-misc/rclone/rclone-1.63.0.ebuild
new file mode 100644
index 000000000000..715bda67b36e
--- /dev/null
+++ b/net-misc/rclone/rclone-1.63.0.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+inherit bash-completion-r1 go-module
+
+KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86"
+SRC_URI="
+	https://github.com/rclone/rclone/archive/v${PV}.tar.gz -> ${P}.tar.gz
+	https://dev.gentoo.org/~slashbeast/distfiles/${PN}/${P}-deps.tar.xz
+"
+
+DESCRIPTION="A program to sync files to and from various cloud storage providers"
+HOMEPAGE="https://rclone.org/"
+
+LICENSE="Apache-2.0 BSD BSD-2 ISC MIT MPL-2.0"
+SLOT="0"
+IUSE=""
+
+RDEPEND="sys-fs/fuse:3"
+
+src_compile() {
+	go build -mod=readonly . || die "compile failed"
+}
+
+src_test() {
+	# Setting CI skips unreliable tests, see fstest/testy/testy.go
+	# TestAddPlugin and TestRemovePlugin fail
+	RCLONE_CONFIG="/notfound" CI="true" go test -mod=readonly -v -run "!Test.*Plugin" ./... || die "test failed"
+}
+
+src_install() {
+	dobin ${PN}
+	doman ${PN}.1
+	dodoc README.md
+
+	./rclone genautocomplete bash ${PN}.bash || die
+	newbashcomp ${PN}.bash ${PN}
+
+	./rclone genautocomplete zsh ${PN}.zsh || die
+	insinto /usr/share/zsh/site-functions
+	newins ${PN}.zsh _${PN}
+}


             reply	other threads:[~2023-07-04 16:45 UTC|newest]

Thread overview: 86+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-07-04 16:45 Piotr Karbowski [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-11-23 20:15 [gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/ Arthur Zamarin
2024-09-28 15:00 Maciej Barć
2024-09-11 23:30 Maciej Barć
2024-09-11 23:30 Maciej Barć
2024-07-26  8:48 David Seifert
2024-07-21 19:48 Arthur Zamarin
2024-07-21 19:48 Arthur Zamarin
2024-06-25 22:03 Sam James
2024-06-25 22:03 Sam James
2024-06-15 22:23 Maciej Barć
2024-06-15 22:23 Maciej Barć
2024-06-15 22:23 Maciej Barć
2024-05-18  3:19 Sam James
2024-05-18  3:19 Sam James
2024-05-15 16:24 Maciej Barć
2024-05-15 14:39 Jason Zaman
2024-05-15 14:39 Jason Zaman
2023-08-09 18:14 Piotr Karbowski
2023-07-23 16:40 Piotr Karbowski
2023-07-23 16:40 Piotr Karbowski
2023-05-02 15:32 Arthur Zamarin
2023-05-02 15:21 Arthur Zamarin
2023-03-22  1:20 Sam James
2023-03-20 21:31 Piotr Karbowski
2023-03-19 22:57 Piotr Karbowski
2023-03-19 22:57 Piotr Karbowski
2023-03-19 22:57 Piotr Karbowski
2023-03-06 13:04 Arthur Zamarin
2023-03-06 13:04 Arthur Zamarin
2023-01-07 23:04 Sam James
2023-01-07 23:04 Sam James
2023-01-07 19:59 Piotr Karbowski
2022-12-09 22:32 Sam James
2022-12-09 22:04 Arthur Zamarin
2022-11-19 15:54 Piotr Karbowski
2022-11-19 15:54 Piotr Karbowski
2022-11-06  8:05 Agostino Sarubbo
2022-11-06  5:52 Sam James
2022-11-03  2:03 Yixun Lan
2022-10-23 14:15 Piotr Karbowski
2022-09-20 18:47 Piotr Karbowski
2022-07-10 15:00 Piotr Karbowski
2022-07-10 15:00 Piotr Karbowski
2022-07-10 12:16 Sam James
2022-07-10 12:16 Sam James
2022-07-10  9:39 Piotr Karbowski
2022-05-02 20:39 Piotr Karbowski
2021-12-24 23:12 Jason Zaman
2021-01-02  7:21 Jason Zaman
2021-01-02  7:21 Jason Zaman
2021-01-02  7:21 Jason Zaman
2020-09-07  9:33 Jason Zaman
2020-09-07  9:33 Jason Zaman
2020-09-07  9:33 Jason Zaman
2020-09-07  9:33 Jason Zaman
2020-06-25 20:22 Conrad Kostecki
2020-06-20 20:31 Thomas Deutschmann
2020-06-09 13:53 Agostino Sarubbo
2020-06-09 13:45 Agostino Sarubbo
2020-06-06 19:31 Mart Raudsepp
2020-02-29  7:13 Jason Zaman
2020-02-16 13:35 Jason Zaman
2020-02-16 13:35 Jason Zaman
2020-02-16 13:35 Jason Zaman
2020-01-24 19:49 Jason Zaman
2019-10-18 12:55 Jason Zaman
2019-08-07  7:58 Jason Zaman
2019-04-29 14:24 Jason Zaman
2019-04-29 14:24 Jason Zaman
2019-04-29 14:24 Jason Zaman
2019-01-02 15:55 Jason Zaman
2019-01-02 15:55 Jason Zaman
2019-01-02 15:55 Jason Zaman
2018-11-27 14:01 Jason Zaman
2018-09-24  5:21 Jason Zaman
2018-09-24  5:21 Jason Zaman
2018-07-31  7:45 Jason Zaman
2018-07-31  7:45 Jason Zaman
2018-04-06 10:32 Jason Zaman
2018-03-18  2:38 Jason Zaman
2018-02-16 16:12 Jason Zaman
2018-02-16 16:12 Jason Zaman
2017-10-28  9:10 Patrice Clement
2017-07-30 11:09 David Seifert
2017-05-26 19:33 Jason Zaman

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1688489103.81faf9e931799435d880bce6497fd8103ecfe1b2.slashbeast@gentoo \
    --to=slashbeast@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox