From: "David Seifert" <soap@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/
Date: Fri, 26 Jul 2024 08:48:47 +0000 (UTC) [thread overview]
Message-ID: <1721983717.f48716cfd27c937b0015cb95ad73e2ed1f61a4bb.soap@gentoo> (raw)
commit: f48716cfd27c937b0015cb95ad73e2ed1f61a4bb
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Fri Jul 26 08:48:37 2024 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Fri Jul 26 08:48:37 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f48716cf
net-misc/rclone: drop 1.63.1, 1.66.0-r1
Signed-off-by: David Seifert <soap <AT> gentoo.org>
net-misc/rclone/Manifest | 4 --
net-misc/rclone/rclone-1.63.1.ebuild | 43 ---------------------
net-misc/rclone/rclone-1.66.0-r1.ebuild | 67 ---------------------------------
3 files changed, 114 deletions(-)
diff --git a/net-misc/rclone/Manifest b/net-misc/rclone/Manifest
index 36026f687440..29ddf91d5457 100644
--- a/net-misc/rclone/Manifest
+++ b/net-misc/rclone/Manifest
@@ -1,6 +1,2 @@
-DIST rclone-1.63.1-deps.tar.xz 298002884 BLAKE2B e9dc1dcd3240d4a649b26606109f4ceb9e4e03448da8d27a11c19ed0dc6df39569c3f4714194c3a62e3d80c7a22591ac392d4187df464a4cf203c6135438ec5b SHA512 fff9e6d8ec7721abfd6c95220163478cf1bb3c8fd551a4310641b1213c072ed853e3ca40fd4109ff642d621cc441434f93608af590bb1b07ac2854ddd1d54147
-DIST rclone-1.63.1.tar.gz 16294505 BLAKE2B ccb83d5c748f8b68ba7eb7f5910f9b3e8e503407855b4bdd10d5feafaaa96bbf113305cb90952d05922a0ccae6e8efe88737271f4a193cf7a38f79820439c007 SHA512 fff03146ae7de4b47b883576b67852f9ff0558137ecb966300bd357c706d4b71c20ad0f87d0028c90b570d9351024f4ae8ddcce13333df1cabd0e76e08b29063
-DIST rclone-1.66.0-deps.tar.xz 367625224 BLAKE2B 244dc6c77315d1e1038b5e784deb55ca597ce728df34b0619a62ebd40524547a8e12c90f85385bf8515eb69f5cb07d5db6dbcb0de2c7a259edb1d934ce1eb747 SHA512 b238069636da506826deb99ddab869789bf7bda58d4eb47e47101c5011dd35dfd9a39f481f1c874d57a3330fa8b969fed2b98bb1d13ec8e79495f55403cf6001
-DIST rclone-1.66.0.tar.gz 17066102 BLAKE2B 587208635c2154782a9f3285c7972a567625120140d1b43096b572d19ab74ae9c7e12b485d6a74d88f1ef4bbce9656bea8f21c67c641227756dd48856a4da9a7 SHA512 955ed1457ebe7e6ac2288484109ba263601e147f767ce71b70e14ddcf3f97659d90704de094e4e83c0820267e0f41b1950fc3db534bb3577bcf27f0a2401eb84
DIST rclone-1.67.0-deps.tar.xz 367523832 BLAKE2B 45e33614658aa619f0abe4cb48ae8eb82d39cf3f56ef9c9f0fcfbc14c2ba2868ff237ae0ab1f308bab31352e176209029604c18c22d180d68c0605a6a671a3c2 SHA512 2e4aba47f37ca67c7ba827d9c70bae858cb9633861c546e9cf19205a11109c52ea8e3e7b13f3073be5ab6405770b7c58bb00124393b712bd59fa25da6930987e
DIST rclone-1.67.0.tar.gz 17232236 BLAKE2B 8241234a970335bb67a5f51b11fdc79afe4a3894c1df2409d141cc8662fec669c1d273e7e67383291703cf66a4168a0ff3c3f8e28d569b0df340c0e7b4a4c324 SHA512 9d336c6a03ba7711f88fbd6ff019b4ce02825467b9656bba8811e9c27fe857ba5d64d863e1f5f3129cbcc89509891615d911794376c90775901a7de1b0741448
diff --git a/net-misc/rclone/rclone-1.63.1.ebuild b/net-misc/rclone/rclone-1.63.1.ebuild
deleted file mode 100644
index 9087a250f9f2..000000000000
--- a/net-misc/rclone/rclone-1.63.1.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2024 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}
-}
diff --git a/net-misc/rclone/rclone-1.66.0-r1.ebuild b/net-misc/rclone/rclone-1.66.0-r1.ebuild
deleted file mode 100644
index aea77db97b4b..000000000000
--- a/net-misc/rclone/rclone-1.66.0-r1.ebuild
+++ /dev/null
@@ -1,67 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit bash-completion-r1 check-reqs edo go-module
-
-DESCRIPTION="A program to sync files to and from various cloud storage providers"
-HOMEPAGE="https://rclone.org/
- https://github.com/rclone/rclone/"
-SRC_URI="
- https://github.com/rclone/rclone/archive/v${PV}.tar.gz
- -> ${P}.tar.gz
- https://dev.gentoo.org/~xgqt/distfiles/deps/${P}-deps.tar.xz
-"
-
-LICENSE="Apache-2.0 BSD BSD-2 ISC MIT MPL-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~riscv x86"
-
-RDEPEND="
- sys-fs/fuse:3
-"
-
-CHECKREQS_DISK_BUILD="2500M"
-
-pkg_setup() {
- check-reqs_pkg_setup
-}
-
-src_compile() {
- local go_ldflags="
- -X github.com/rclone/rclone/fs.Version=${PV}
- "
- local -a go_buildargs=(
- -ldflags "${go_ldflags}"
- -mod=readonly
- -o ./
- )
- ego build "${go_buildargs[@]}" .
-
- edob ./rclone genautocomplete bash "${PN}.bash"
- edob ./rclone genautocomplete zsh "${PN}.zsh"
-}
-
-src_test() {
- # Setting CI skips unreliable tests, see "fstest/testy/testy.go"
- # "TestAddPlugin" and "TestRemovePlugin" fail.
- local -x CI="true"
- local -x RCLONE_CONFIG="/not_found"
-
- edob go test -mod=readonly -v -run "!Test.*Plugin" ./...
-}
-
-src_install() {
- exeinto /usr/bin
- doexe "${PN}"
- dosym -r "/usr/bin/${PN}" /usr/bin/mount.rclone
- dosym -r "/usr/bin/${PN}" /usr/bin/rclonefs
-
- newbashcomp "${PN}.bash" "${PN}"
- insinto /usr/share/zsh/site-functions
- newins "${PN}.zsh" "_${PN}"
-
- doman "${PN}.1"
- einstalldocs
-}
next reply other threads:[~2024-07-26 8:48 UTC|newest]
Thread overview: 99+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-07-26 8:48 David Seifert [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-03-07 19:34 [gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/ Maciej Barć
2025-02-24 8:16 Arthur Zamarin
2025-02-23 16:09 Arthur Zamarin
2025-02-23 14:25 Arthur Zamarin
2025-02-18 19:21 Arthur Zamarin
2025-02-18 19:21 Arthur Zamarin
2025-01-22 16:20 Maciej Barć
2025-01-21 23:04 Maciej Barć
2024-12-28 17:38 Sam James
2024-12-28 15:59 Sam James
2024-12-13 18:02 Maciej Barć
2024-11-28 0:09 Jakov Smolić
2024-11-27 22:10 Maciej Barć
2024-11-23 20:15 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-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-07-04 16:45 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=1721983717.f48716cfd27c937b0015cb95ad73e2ed1f61a4bb.soap@gentoo \
--to=soap@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