[gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/
commit: b6670df3e31c869bb86bf418f0d3e6bb7156f612 Author: Maciej Barć gentoo org> AuthorDate: Sat Sep 28 13:44:36 2024 + Commit: Maciej Barć gentoo org> CommitDate: Sat Sep 28 15:00:40 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b6670df3 net-misc/rclone: bump to 1.68.1 Signed-off-by: Maciej Barć gentoo.org> net-misc/rclone/Manifest | 1 + net-misc/rclone/rclone-1.68.1.ebuild | 67 2 files changed, 68 insertions(+) diff --git a/net-misc/rclone/Manifest b/net-misc/rclone/Manifest index a118c36f5a7e..749c83780aa9 100644 --- a/net-misc/rclone/Manifest +++ b/net-misc/rclone/Manifest @@ -2,3 +2,4 @@ DIST rclone-1.67.0-deps.tar.xz 367523832 BLAKE2B 45e33614658aa619f0abe4cb48ae8eb DIST rclone-1.67.0.tar.gz 17232236 BLAKE2B 8241234a970335bb67a5f51b11fdc79afe4a3894c1df2409d141cc8662fec669c1d273e7e67383291703cf66a4168a0ff3c3f8e28d569b0df340c0e7b4a4c324 SHA512 9d336c6a03ba7711f88fbd6ff019b4ce02825467b9656bba8811e9c27fe857ba5d64d863e1f5f3129cbcc89509891615d911794376c90775901a7de1b0741448 DIST rclone-1.68.0-deps.tar.xz 313382892 BLAKE2B 5dbf928d1a9ee4eccd796c5d083da1fefc115af9b087072708fa5a9e98a5bc74f824e922c1cad8f132c2549d4c335877c4fa78f8842a1732972bbe862b0bba28 SHA512 e32a8489ab822648f26b47e58ef7a7a1f3776ee08b585a642a21e02b31095ddef22b068e97cf21545e6a806b467d4d5e79eab4ae31da9ccf238d7735ca6dc35f DIST rclone-1.68.0.tar.gz 17441116 BLAKE2B 445cd8607950b25cf973350a62d884c3b786eadd6e781d36a1886e085871accc6743672f993f6da8a15a1af7e0146110ff931fe169d6f8a4586cf772e6e17fc9 SHA512 899255f6a22c53b7ab5b59c0f3532bc64b9b3b2691e7202a97fea5047cc8cdf042c2e235cdac67c8cf18e3d68ca2b2ca1eb4d871bffcba8c97514c7ef8db0e13 +DIST rclone-1.68.1.tar.gz 17452992 BLAKE2B 34e16868cc84b80becd4403ceae925c3c20d0989383c563b58a46190fec983f1949572643843509a060afefa4808c3b8865335681529203a91c3bb5201d9888d SHA512 8f98e569c0959dfa407621d35acb552e6a5f5b409d2f1d89efd116d746f2a6a742e0bebf8f298ba189d7f187fc4c79d285e7db28e52d5d9e7517d5e0a6aa7fc9 diff --git a/net-misc/rclone/rclone-1.68.1.ebuild b/net-misc/rclone/rclone-1.68.1.ebuild new file mode 100644 index ..4e1b0243c823 --- /dev/null +++ b/net-misc/rclone/rclone-1.68.1.ebuild @@ -0,0 +1,67 @@ +# 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/${PN}-1.68.0-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 +}
[gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/
commit: 9773fa2acce9a1489c395bff547ecfea76e581db Author: Maciej Barć gentoo org> AuthorDate: Wed Sep 11 22:46:21 2024 + Commit: Maciej Barć gentoo org> CommitDate: Wed Sep 11 23:30:55 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9773fa2a net-misc/rclone: metadata - fix bugs-to Signed-off-by: Maciej Barć gentoo.org> net-misc/rclone/metadata.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net-misc/rclone/metadata.xml b/net-misc/rclone/metadata.xml index 77f51273cdf6..08aec66404f8 100644 --- a/net-misc/rclone/metadata.xml +++ b/net-misc/rclone/metadata.xml @@ -10,7 +10,7 @@ Maciej Barć - https://gitlab.com/rclone/rclone/-/issues/ + https://github.com/rclone/rclone/issues/ rclone/rclone
[gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/
commit: ceda76bde393b815f4ce0c351644ed8a532e4c05 Author: Maciej Barć gentoo org> AuthorDate: Wed Sep 11 21:45:23 2024 + Commit: Maciej Barć gentoo org> CommitDate: Wed Sep 11 23:30:53 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ceda76bd net-misc/rclone: bump to 1.68.0 Signed-off-by: Maciej Barć gentoo.org> net-misc/rclone/Manifest | 2 ++ net-misc/rclone/rclone-1.68.0.ebuild | 67 2 files changed, 69 insertions(+) diff --git a/net-misc/rclone/Manifest b/net-misc/rclone/Manifest index 29ddf91d5457..a118c36f5a7e 100644 --- a/net-misc/rclone/Manifest +++ b/net-misc/rclone/Manifest @@ -1,2 +1,4 @@ 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 +DIST rclone-1.68.0-deps.tar.xz 313382892 BLAKE2B 5dbf928d1a9ee4eccd796c5d083da1fefc115af9b087072708fa5a9e98a5bc74f824e922c1cad8f132c2549d4c335877c4fa78f8842a1732972bbe862b0bba28 SHA512 e32a8489ab822648f26b47e58ef7a7a1f3776ee08b585a642a21e02b31095ddef22b068e97cf21545e6a806b467d4d5e79eab4ae31da9ccf238d7735ca6dc35f +DIST rclone-1.68.0.tar.gz 17441116 BLAKE2B 445cd8607950b25cf973350a62d884c3b786eadd6e781d36a1886e085871accc6743672f993f6da8a15a1af7e0146110ff931fe169d6f8a4586cf772e6e17fc9 SHA512 899255f6a22c53b7ab5b59c0f3532bc64b9b3b2691e7202a97fea5047cc8cdf042c2e235cdac67c8cf18e3d68ca2b2ca1eb4d871bffcba8c97514c7ef8db0e13 diff --git a/net-misc/rclone/rclone-1.68.0.ebuild b/net-misc/rclone/rclone-1.68.0.ebuild new file mode 100644 index ..b59ebe324c66 --- /dev/null +++ b/net-misc/rclone/rclone-1.68.0.ebuild @@ -0,0 +1,67 @@ +# 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 +}
[gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/
commit: f48716cfd27c937b0015cb95ad73e2ed1f61a4bb Author: David Seifert gentoo org> AuthorDate: Fri Jul 26 08:48:37 2024 + Commit: David Seifert gentoo org> CommitDate: Fri Jul 26 08:48:37 2024 + 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 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 fff03146ae7de4b47b883576b67852f9ff0558137ecb966300bd357c706d4b71c20ad0f87d0028c90b570d9351024f4ae8ddcce1df1cabd0e76e08b29063 -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.. --- 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.. --- 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=" -
[gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/
commit: 7d6f4ab08409b69390eea7f78a35ba4ba8af7d12 Author: Arthur Zamarin gentoo org> AuthorDate: Sun Jul 21 19:48:37 2024 + Commit: Arthur Zamarin gentoo org> CommitDate: Sun Jul 21 19:48:37 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d6f4ab0 net-misc/rclone: Stabilize 1.67.0 amd64, #936464 Signed-off-by: Arthur Zamarin gentoo.org> net-misc/rclone/rclone-1.67.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net-misc/rclone/rclone-1.67.0.ebuild b/net-misc/rclone/rclone-1.67.0.ebuild index 5b509729465d..aea77db97b4b 100644 --- a/net-misc/rclone/rclone-1.67.0.ebuild +++ b/net-misc/rclone/rclone-1.67.0.ebuild @@ -16,7 +16,7 @@ SRC_URI=" LICENSE="Apache-2.0 BSD BSD-2 ISC MIT MPL-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~riscv x86" +KEYWORDS="amd64 ~arm ~arm64 ~riscv x86" RDEPEND=" sys-fs/fuse:3
[gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/
commit: d88dca2390c40a797dad6f432e168a86c4711178 Author: Arthur Zamarin gentoo org> AuthorDate: Sun Jul 21 19:48:37 2024 + Commit: Arthur Zamarin gentoo org> CommitDate: Sun Jul 21 19:48:37 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d88dca23 net-misc/rclone: Stabilize 1.67.0 x86, #936464 Signed-off-by: Arthur Zamarin gentoo.org> net-misc/rclone/rclone-1.67.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net-misc/rclone/rclone-1.67.0.ebuild b/net-misc/rclone/rclone-1.67.0.ebuild index b59ebe324c66..5b509729465d 100644 --- a/net-misc/rclone/rclone-1.67.0.ebuild +++ b/net-misc/rclone/rclone-1.67.0.ebuild @@ -16,7 +16,7 @@ SRC_URI=" LICENSE="Apache-2.0 BSD BSD-2 ISC MIT MPL-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~riscv x86" RDEPEND=" sys-fs/fuse:3
[gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/
commit: 38f73c8d8292ef3b5bfa3d90f0eefec8cbd5337d Author: Sam James gentoo org> AuthorDate: Tue Jun 25 22:01:23 2024 + Commit: Sam James gentoo org> CommitDate: Tue Jun 25 22:01:23 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=38f73c8d net-misc/rclone: Stabilize 1.66.0-r1 x86, #934914 Signed-off-by: Sam James gentoo.org> net-misc/rclone/rclone-1.66.0-r1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net-misc/rclone/rclone-1.66.0-r1.ebuild b/net-misc/rclone/rclone-1.66.0-r1.ebuild index 7e7f40ef31c4..aea77db97b4b 100644 --- a/net-misc/rclone/rclone-1.66.0-r1.ebuild +++ b/net-misc/rclone/rclone-1.66.0-r1.ebuild @@ -16,7 +16,7 @@ SRC_URI=" LICENSE="Apache-2.0 BSD BSD-2 ISC MIT MPL-2.0" SLOT="0" -KEYWORDS="amd64 ~arm ~arm64 ~riscv ~x86" +KEYWORDS="amd64 ~arm ~arm64 ~riscv x86" RDEPEND=" sys-fs/fuse:3
[gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/
commit: dde9dd9af6a332fd4656ea2c97c28183eb53b3f5 Author: Sam James gentoo org> AuthorDate: Tue Jun 25 22:01:21 2024 + Commit: Sam James gentoo org> CommitDate: Tue Jun 25 22:01:21 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dde9dd9a net-misc/rclone: Stabilize 1.66.0-r1 amd64, #934914 Signed-off-by: Sam James gentoo.org> net-misc/rclone/rclone-1.66.0-r1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net-misc/rclone/rclone-1.66.0-r1.ebuild b/net-misc/rclone/rclone-1.66.0-r1.ebuild index b59ebe324c66..7e7f40ef31c4 100644 --- a/net-misc/rclone/rclone-1.66.0-r1.ebuild +++ b/net-misc/rclone/rclone-1.66.0-r1.ebuild @@ -16,7 +16,7 @@ SRC_URI=" LICENSE="Apache-2.0 BSD BSD-2 ISC MIT MPL-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86" +KEYWORDS="amd64 ~arm ~arm64 ~riscv ~x86" RDEPEND=" sys-fs/fuse:3
[gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/
commit: 29d70a16440d9376dc984851d796359de0910d0e Author: Maciej Barć gentoo org> AuthorDate: Sat Jun 15 18:46:01 2024 + Commit: Maciej Barć gentoo org> CommitDate: Sat Jun 15 22:23:26 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=29d70a16 net-misc/rclone: drop old 1.63.0 Signed-off-by: Maciej Barć gentoo.org> net-misc/rclone/Manifest | 2 -- net-misc/rclone/rclone-1.63.0.ebuild | 43 2 files changed, 45 deletions(-) diff --git a/net-misc/rclone/Manifest b/net-misc/rclone/Manifest index 7e43e04b66a3..63e6aa56cae2 100644 --- a/net-misc/rclone/Manifest +++ b/net-misc/rclone/Manifest @@ -1,5 +1,3 @@ -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 DIST rclone-1.63.1-deps.tar.xz 298002884 BLAKE2B e9dc1dcd3240d4a649b26606109f4ceb9e4e03448da8d27a11c19ed0dc6df39569c3f4714194c3a62e3d80c7a22591ac392d4187df464a4cf203c6135438ec5b SHA512 fff9e6d8ec7721abfd6c95220163478cf1bb3c8fd551a4310641b1213c072ed853e3ca40fd4109ff642d621cc441434f93608af590bb1b07ac2854ddd1d54147 DIST rclone-1.63.1.tar.gz 16294505 BLAKE2B ccb83d5c748f8b68ba7eb7f5910f9b3e8e503407855b4bdd10d5feafaaa96bbf113305cb90952d05922a0ccae6e8efe88737271f4a193cf7a38f79820439c007 SHA512 fff03146ae7de4b47b883576b67852f9ff0558137ecb966300bd357c706d4b71c20ad0f87d0028c90b570d9351024f4ae8ddcce1df1cabd0e76e08b29063 DIST rclone-1.66.0-deps.tar.xz 367625224 BLAKE2B 244dc6c77315d1e1038b5e784deb55ca597ce728df34b0619a62ebd40524547a8e12c90f85385bf8515eb69f5cb07d5db6dbcb0de2c7a259edb1d934ce1eb747 SHA512 b238069636da506826deb99ddab869789bf7bda58d4eb47e47101c5011dd35dfd9a39f481f1c874d57a3330fa8b969fed2b98bb1d13ec8e79495f55403cf6001 diff --git a/net-misc/rclone/rclone-1.63.0.ebuild b/net-misc/rclone/rclone-1.63.0.ebuild deleted file mode 100644 index 715bda67b36e.. --- a/net-misc/rclone/rclone-1.63.0.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# 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} -}
[gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/
commit: af88db80669873873be70d15ea0669b2c54cbdc0 Author: Maciej Barć gentoo org> AuthorDate: Sat Jun 15 21:32:02 2024 + Commit: Maciej Barć gentoo org> CommitDate: Sat Jun 15 22:23:27 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af88db80 net-misc/rclone: bump to 1.67.0 Signed-off-by: Maciej Barć gentoo.org> net-misc/rclone/Manifest | 2 ++ net-misc/rclone/rclone-1.67.0.ebuild | 67 2 files changed, 69 insertions(+) diff --git a/net-misc/rclone/Manifest b/net-misc/rclone/Manifest index 63e6aa56cae2..36026f687440 100644 --- a/net-misc/rclone/Manifest +++ b/net-misc/rclone/Manifest @@ -2,3 +2,5 @@ DIST rclone-1.63.1-deps.tar.xz 298002884 BLAKE2B e9dc1dcd3240d4a649b26606109f4ce DIST rclone-1.63.1.tar.gz 16294505 BLAKE2B ccb83d5c748f8b68ba7eb7f5910f9b3e8e503407855b4bdd10d5feafaaa96bbf113305cb90952d05922a0ccae6e8efe88737271f4a193cf7a38f79820439c007 SHA512 fff03146ae7de4b47b883576b67852f9ff0558137ecb966300bd357c706d4b71c20ad0f87d0028c90b570d9351024f4ae8ddcce1df1cabd0e76e08b29063 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.67.0.ebuild b/net-misc/rclone/rclone-1.67.0.ebuild new file mode 100644 index ..b59ebe324c66 --- /dev/null +++ b/net-misc/rclone/rclone-1.67.0.ebuild @@ -0,0 +1,67 @@ +# 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 +}
[gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/
commit: c170a1fcd1aa4486edd7642bbc21f4c847c591a5 Author: Maciej Barć gentoo org> AuthorDate: Sat Jun 15 18:45:44 2024 + Commit: Maciej Barć gentoo org> CommitDate: Sat Jun 15 22:23:26 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c170a1fc net-misc/rclone: drop old 1.62.2-r1 Signed-off-by: Maciej Barć gentoo.org> net-misc/rclone/Manifest| 2 -- net-misc/rclone/rclone-1.62.2-r1.ebuild | 43 - 2 files changed, 45 deletions(-) diff --git a/net-misc/rclone/Manifest b/net-misc/rclone/Manifest index d920dc4e4452..7e43e04b66a3 100644 --- a/net-misc/rclone/Manifest +++ b/net-misc/rclone/Manifest @@ -1,5 +1,3 @@ -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 DIST rclone-1.63.1-deps.tar.xz 298002884 BLAKE2B e9dc1dcd3240d4a649b26606109f4ceb9e4e03448da8d27a11c19ed0dc6df39569c3f4714194c3a62e3d80c7a22591ac392d4187df464a4cf203c6135438ec5b SHA512 fff9e6d8ec7721abfd6c95220163478cf1bb3c8fd551a4310641b1213c072ed853e3ca40fd4109ff642d621cc441434f93608af590bb1b07ac2854ddd1d54147 diff --git a/net-misc/rclone/rclone-1.62.2-r1.ebuild b/net-misc/rclone/rclone-1.62.2-r1.ebuild deleted file mode 100644 index fad2bbf730a5.. --- a/net-misc/rclone/rclone-1.62.2-r1.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# 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} -}
[gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/
commit: 14e56aef8b6f0038cb02a2fb5079e1cc204efc11 Author: Sam James gentoo org> AuthorDate: Sat May 18 03:19:08 2024 + Commit: Sam James gentoo org> CommitDate: Sat May 18 03:19:08 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=14e56aef net-misc/rclone: Stabilize 1.63.1 amd64, #932115 Signed-off-by: Sam James gentoo.org> net-misc/rclone/rclone-1.63.1.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/net-misc/rclone/rclone-1.63.1.ebuild b/net-misc/rclone/rclone-1.63.1.ebuild index 715bda67b36e..bc6a6e03d710 100644 --- a/net-misc/rclone/rclone-1.63.1.ebuild +++ b/net-misc/rclone/rclone-1.63.1.ebuild @@ -1,10 +1,10 @@ -# Copyright 1999-2023 Gentoo Authors +# 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" +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
[gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/
commit: 39f5c4e91cc348d867c796067b0a627d6030b482 Author: Sam James gentoo org> AuthorDate: Sat May 18 03:19:09 2024 + Commit: Sam James gentoo org> CommitDate: Sat May 18 03:19:09 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=39f5c4e9 net-misc/rclone: Stabilize 1.63.1 x86, #932115 Signed-off-by: Sam James gentoo.org> net-misc/rclone/rclone-1.63.1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net-misc/rclone/rclone-1.63.1.ebuild b/net-misc/rclone/rclone-1.63.1.ebuild index bc6a6e03d710..9087a250f9f2 100644 --- a/net-misc/rclone/rclone-1.63.1.ebuild +++ b/net-misc/rclone/rclone-1.63.1.ebuild @@ -4,7 +4,7 @@ EAPI=8 inherit bash-completion-r1 go-module -KEYWORDS="amd64 ~arm ~arm64 ~riscv ~x86" +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
[gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/
commit: 348ae7332bb7683ab5e64bddabaa936aef15 Author: Maciej Barć gentoo org> AuthorDate: Wed May 15 16:22:11 2024 + Commit: Maciej Barć gentoo org> CommitDate: Wed May 15 16:23:19 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=348ae744 net-misc/rclone: add mount helper symlink See also: https://rclone.org/commands/rclone_mount/#rclone-as-unix-mount-helper Closes: https://bugs.gentoo.org/919808 Signed-off-by: Maciej Barć gentoo.org> net-misc/rclone/{rclone-1.66.0.ebuild => rclone-1.66.0-r1.ebuild} | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/net-misc/rclone/rclone-1.66.0.ebuild b/net-misc/rclone/rclone-1.66.0-r1.ebuild similarity index 93% rename from net-misc/rclone/rclone-1.66.0.ebuild rename to net-misc/rclone/rclone-1.66.0-r1.ebuild index 87da0231b062..b59ebe324c66 100644 --- a/net-misc/rclone/rclone-1.66.0.ebuild +++ b/net-misc/rclone/rclone-1.66.0-r1.ebuild @@ -55,11 +55,13 @@ src_test() { src_install() { exeinto /usr/bin doexe "${PN}" - doman "${PN}.1" + 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 }
[gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/
commit: ca3e2c711957b6764efdf7fe7c7342ce97a2da65 Author: Maciej Barć gentoo org> AuthorDate: Tue May 14 12:14:36 2024 + Commit: Jason Zaman gentoo org> CommitDate: Wed May 15 14:37:33 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca3e2c71 net-misc/rclone: bump to 1.66.0 Signed-off-by: Maciej Barć gentoo.org> Signed-off-by: Jason Zaman gentoo.org> net-misc/rclone/Manifest | 2 ++ net-misc/rclone/rclone-1.66.0.ebuild | 65 2 files changed, 67 insertions(+) diff --git a/net-misc/rclone/Manifest b/net-misc/rclone/Manifest index e9e8b85e7266..d920dc4e4452 100644 --- a/net-misc/rclone/Manifest +++ b/net-misc/rclone/Manifest @@ -4,3 +4,5 @@ DIST rclone-1.63.0-deps.tar.xz 297987608 BLAKE2B cfda8663ca32b36f5e56db74a724bde DIST rclone-1.63.0.tar.gz 16291884 BLAKE2B 540755808dd73fac061c481e2ea4f1ee241bcd55ccabda9b05343f2074f1672868c4246baff42471ecc7000455fe2c2a04c93578faa994aa0323e0033681bb38 SHA512 5f4590a5244d4eb1a51fc15a4ebef70941af94db8790d3ea1bd56b91f399f580b2cd1cc168c5d5e1fd9ee4bc4a3a4a908c8720aead8f8c24bcee3eacc6423ef3 DIST rclone-1.63.1-deps.tar.xz 298002884 BLAKE2B e9dc1dcd3240d4a649b26606109f4ceb9e4e03448da8d27a11c19ed0dc6df39569c3f4714194c3a62e3d80c7a22591ac392d4187df464a4cf203c6135438ec5b SHA512 fff9e6d8ec7721abfd6c95220163478cf1bb3c8fd551a4310641b1213c072ed853e3ca40fd4109ff642d621cc441434f93608af590bb1b07ac2854ddd1d54147 DIST rclone-1.63.1.tar.gz 16294505 BLAKE2B ccb83d5c748f8b68ba7eb7f5910f9b3e8e503407855b4bdd10d5feafaaa96bbf113305cb90952d05922a0ccae6e8efe88737271f4a193cf7a38f79820439c007 SHA512 fff03146ae7de4b47b883576b67852f9ff0558137ecb966300bd357c706d4b71c20ad0f87d0028c90b570d9351024f4ae8ddcce1df1cabd0e76e08b29063 +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 diff --git a/net-misc/rclone/rclone-1.66.0.ebuild b/net-misc/rclone/rclone-1.66.0.ebuild new file mode 100644 index ..87da0231b062 --- /dev/null +++ b/net-misc/rclone/rclone-1.66.0.ebuild @@ -0,0 +1,65 @@ +# 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}" + doman "${PN}.1" + + newbashcomp "${PN}.bash" "${PN}" + insinto /usr/share/zsh/site-functions + newins "${PN}.zsh" "_${PN}" + + einstalldocs +}
[gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/
commit: 8d8fe1eab6d6a7dcfefa6dd4a5d7a0c6e4c1fba7 Author: Maciej Barć gentoo org> AuthorDate: Tue May 14 12:16:25 2024 + Commit: Jason Zaman gentoo org> CommitDate: Wed May 15 14:37:32 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d8fe1ea net-misc/rclone: metadata - add myself as co-maintainer, add bugs-to Signed-off-by: Maciej Barć gentoo.org> Signed-off-by: Jason Zaman gentoo.org> net-misc/rclone/metadata.xml | 5 + 1 file changed, 5 insertions(+) diff --git a/net-misc/rclone/metadata.xml b/net-misc/rclone/metadata.xml index 92b54863ba1f..77f51273cdf6 100644 --- a/net-misc/rclone/metadata.xml +++ b/net-misc/rclone/metadata.xml @@ -5,7 +5,12 @@ perfin...@gentoo.org Jason Zaman + + x...@gentoo.org + Maciej Barć + + https://gitlab.com/rclone/rclone/-/issues/ rclone/rclone
[gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/
commit: e0127ee4cb40d38e36d2c7316c3beb7843d09805 Author: Piotr Karbowski gentoo org> AuthorDate: Wed Aug 9 18:07:58 2023 + Commit: Piotr Karbowski gentoo org> CommitDate: Wed Aug 9 18:14:22 2023 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0127ee4 net-misc/rclone: drop myself as maintainer. Signed-off-by: Piotr Karbowski gentoo.org> net-misc/rclone/metadata.xml | 4 1 file changed, 4 deletions(-) diff --git a/net-misc/rclone/metadata.xml b/net-misc/rclone/metadata.xml index 7707dffb70af..92b54863ba1f 100644 --- a/net-misc/rclone/metadata.xml +++ b/net-misc/rclone/metadata.xml @@ -5,10 +5,6 @@ perfin...@gentoo.org Jason Zaman - - slashbe...@gentoo.org - Piotr Karbowski - rclone/rclone
[gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/
commit: 82c34c68fd9215141bfff700301c18fe9eee1927 Author: Piotr Karbowski gentoo org> AuthorDate: Sun Jul 23 16:38:12 2023 + Commit: Piotr Karbowski gentoo org> CommitDate: Sun Jul 23 16:40:46 2023 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=82c34c68 net-misc/rclone: drop old. Signed-off-by: Piotr Karbowski gentoo.org> net-misc/rclone/Manifest | 2 -- net-misc/rclone/rclone-1.61.1.ebuild | 41 2 files changed, 43 deletions(-) diff --git a/net-misc/rclone/Manifest b/net-misc/rclone/Manifest index 625c5037afdd..b0762d7cc16b 100644 --- a/net-misc/rclone/Manifest +++ b/net-misc/rclone/Manifest @@ -1,5 +1,3 @@ -DIST rclone-1.61.1-deps.tar.xz 286458984 BLAKE2B 5129b10d67c0b8dbc03d5f3250667fd7836234720e6ef171a46f364cecb9f81c33dbba46077e1d48380b3c04f95a6482111636efa81134682379e678b4cd SHA512 0502424d66a9c029b95a34a15e60567f06f9cef35a2e9fd6a459b99a4b45a0a55dc7efc6f430dc71542d532f614e3b3fbc320ea56e4852e75de2434ef21a -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 diff --git a/net-misc/rclone/rclone-1.61.1.ebuild b/net-misc/rclone/rclone-1.61.1.ebuild deleted file mode 100644 index 435e4e0b19b7.. --- a/net-misc/rclone/rclone-1.61.1.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# 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="" - -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} -}
[gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/
commit: 3c0843737f4ded7da35ea4ea54dda6906b3622f6 Author: Piotr Karbowski gentoo org> AuthorDate: Sun Jul 23 16:40:26 2023 + Commit: Piotr Karbowski gentoo org> CommitDate: Sun Jul 23 16:40:46 2023 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3c084373 net-misc/rclone: 1.63.1 version bump Signed-off-by: Piotr Karbowski gentoo.org> net-misc/rclone/Manifest | 2 ++ net-misc/rclone/rclone-1.63.1.ebuild | 43 2 files changed, 45 insertions(+) diff --git a/net-misc/rclone/Manifest b/net-misc/rclone/Manifest index b0762d7cc16b..e9e8b85e7266 100644 --- a/net-misc/rclone/Manifest +++ b/net-misc/rclone/Manifest @@ -2,3 +2,5 @@ DIST rclone-1.62.2-deps.tar.xz 294265336 BLAKE2B 7f44b9972ab902ea53beb2cb6475dc4 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 +DIST rclone-1.63.1-deps.tar.xz 298002884 BLAKE2B e9dc1dcd3240d4a649b26606109f4ceb9e4e03448da8d27a11c19ed0dc6df39569c3f4714194c3a62e3d80c7a22591ac392d4187df464a4cf203c6135438ec5b SHA512 fff9e6d8ec7721abfd6c95220163478cf1bb3c8fd551a4310641b1213c072ed853e3ca40fd4109ff642d621cc441434f93608af590bb1b07ac2854ddd1d54147 +DIST rclone-1.63.1.tar.gz 16294505 BLAKE2B ccb83d5c748f8b68ba7eb7f5910f9b3e8e503407855b4bdd10d5feafaaa96bbf113305cb90952d05922a0ccae6e8efe88737271f4a193cf7a38f79820439c007 SHA512 fff03146ae7de4b47b883576b67852f9ff0558137ecb966300bd357c706d4b71c20ad0f87d0028c90b570d9351024f4ae8ddcce1df1cabd0e76e08b29063 diff --git a/net-misc/rclone/rclone-1.63.1.ebuild b/net-misc/rclone/rclone-1.63.1.ebuild new file mode 100644 index ..715bda67b36e --- /dev/null +++ b/net-misc/rclone/rclone-1.63.1.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} +}
[gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/
commit: 81faf9e931799435d880bce6497fd8103ecfe1b2 Author: Piotr Karbowski gentoo org> AuthorDate: Tue Jul 4 16:44:42 2023 + Commit: Piotr Karbowski gentoo org> CommitDate: Tue Jul 4 16:45:03 2023 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=81faf9e9 net-misc/rclone: 1.63.0 version bump. Signed-off-by: Piotr Karbowski 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 ..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} +}
[gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/
commit: ade145109c03c51b557982ae50f2a776305b2f12 Author: Arthur Zamarin gentoo org> AuthorDate: Tue May 2 15:32:11 2023 + Commit: Arthur Zamarin gentoo org> CommitDate: Tue May 2 15:32:11 2023 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ade14510 net-misc/rclone: Stabilize 1.62.2-r1 x86, #905461 Signed-off-by: Arthur Zamarin gentoo.org> net-misc/rclone/rclone-1.62.2-r1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net-misc/rclone/rclone-1.62.2-r1.ebuild b/net-misc/rclone/rclone-1.62.2-r1.ebuild index d83b8040e2af..fad2bbf730a5 100644 --- a/net-misc/rclone/rclone-1.62.2-r1.ebuild +++ b/net-misc/rclone/rclone-1.62.2-r1.ebuild @@ -4,7 +4,7 @@ EAPI=8 inherit bash-completion-r1 go-module -KEYWORDS="amd64 ~arm ~arm64 ~riscv ~x86" +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
[gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/
commit: 70bc8a7da4538635a3854ebf04b3316cd1d0b04d Author: Arthur Zamarin gentoo org> AuthorDate: Tue May 2 15:20:33 2023 + Commit: Arthur Zamarin gentoo org> CommitDate: Tue May 2 15:20:33 2023 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=70bc8a7d net-misc/rclone: Stabilize 1.62.2-r1 amd64, #905461 Signed-off-by: Arthur Zamarin gentoo.org> net-misc/rclone/rclone-1.62.2-r1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net-misc/rclone/rclone-1.62.2-r1.ebuild b/net-misc/rclone/rclone-1.62.2-r1.ebuild index 715bda67b36e..d83b8040e2af 100644 --- a/net-misc/rclone/rclone-1.62.2-r1.ebuild +++ b/net-misc/rclone/rclone-1.62.2-r1.ebuild @@ -4,7 +4,7 @@ EAPI=8 inherit bash-completion-r1 go-module -KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86" +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
[gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/
commit: f96f714e20613a5f255f9cd6e5251eb686719b28 Author: jinqiang zhang 0x0 ee> AuthorDate: Tue Mar 21 10:26:46 2023 + Commit: Sam James gentoo org> CommitDate: Wed Mar 22 01:17:25 2023 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f96f714e net-misc/rclone: 1.62.2 add fuse3 RDEPEND Closes: https://bugs.gentoo.org/902507 Signed-off-by: jinqiang zhang 0x0.ee> Closes: https://github.com/gentoo/gentoo/pull/30280 Signed-off-by: Sam James gentoo.org> net-misc/rclone/{rclone-1.62.2.ebuild => rclone-1.62.2-r1.ebuild} | 2 ++ 1 file changed, 2 insertions(+) diff --git a/net-misc/rclone/rclone-1.62.2.ebuild b/net-misc/rclone/rclone-1.62.2-r1.ebuild similarity index 97% rename from net-misc/rclone/rclone-1.62.2.ebuild rename to net-misc/rclone/rclone-1.62.2-r1.ebuild index 649ec2384a36..715bda67b36e 100644 --- a/net-misc/rclone/rclone-1.62.2.ebuild +++ b/net-misc/rclone/rclone-1.62.2-r1.ebuild @@ -17,6 +17,8 @@ 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" }
[gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/
commit: 1da60edb1670de5decef0a71d8f881baafc1b431 Author: Piotr Karbowski gentoo org> AuthorDate: Mon Mar 20 21:28:49 2023 + Commit: Piotr Karbowski gentoo org> CommitDate: Mon Mar 20 21:31:31 2023 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1da60edb net-misc/rclone: 1.62.2 version bump. Signed-off-by: Piotr Karbowski gentoo.org> net-misc/rclone/Manifest | 4 ++-- net-misc/rclone/{rclone-1.62.0.ebuild => rclone-1.62.2.ebuild} | 0 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/net-misc/rclone/Manifest b/net-misc/rclone/Manifest index 5cc731ae1f27..48b7ac987a83 100644 --- a/net-misc/rclone/Manifest +++ b/net-misc/rclone/Manifest @@ -1,4 +1,4 @@ DIST rclone-1.61.1-deps.tar.xz 286458984 BLAKE2B 5129b10d67c0b8dbc03d5f3250667fd7836234720e6ef171a46f364cecb9f81c33dbba46077e1d48380b3c04f95a6482111636efa81134682379e678b4cd SHA512 0502424d66a9c029b95a34a15e60567f06f9cef35a2e9fd6a459b99a4b45a0a55dc7efc6f430dc71542d532f614e3b3fbc320ea56e4852e75de2434ef21a DIST rclone-1.61.1.tar.gz 16112718 BLAKE2B cb68fedf03812451d9c8ded88bfc073c8177948b1e932acf99d22b23d3d11b1f52027e2afe88472ba6c88637a8e58e2955b67575ed7356b7b0900d6c7a7bb65c SHA512 739b976a4538586670b797c92f9cbd416c3589444a611926b5edd074e8249dfcff9d95e8053459aa42c4cbe90009a9ba1c3abb9be8e8718db6276fdc39386273 -DIST rclone-1.62.0-deps.tar.xz 294254004 BLAKE2B 8d41d7a784280ea82f86225283a3813db5d78c9982f019522b05d06610dfe8a84ffe282cca99814aad92759b60fde27f8340a2f34c151bdb519e94eeaff894d7 SHA512 ebb9636c2a1fac47b243f00e4b434b231d988d37650eb4add794ab1c2b3d4d66e2524c330f7d184ad45b7a9079a565745bda9c79ad7120ac7d868cc71942acb4 -DIST rclone-1.62.0.tar.gz 16170956 BLAKE2B f067252b1f06531dc969c0073eb299d5ffba4a1c89a99094cc8a3b6eb4c63866d1d28b72bac2c95323f8f644268fa802ccf43256fece46a31aaffb065f3a7a49 SHA512 3ab3bd07f1f83c19b9a9783df496c15273bd7bc192eac309683456589af8d179add8ee1cd334dbecbbae9ce8c9bfd84e905547e23c4d66452c96ca6a6d075755 +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 diff --git a/net-misc/rclone/rclone-1.62.0.ebuild b/net-misc/rclone/rclone-1.62.2.ebuild similarity index 100% rename from net-misc/rclone/rclone-1.62.0.ebuild rename to net-misc/rclone/rclone-1.62.2.ebuild
[gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/
commit: 2b81ed1ed4fac88741330d4ae54faf1980405b32 Author: Piotr Karbowski gentoo org> AuthorDate: Sun Mar 19 22:05:52 2023 + Commit: Piotr Karbowski gentoo org> CommitDate: Sun Mar 19 22:57:35 2023 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b81ed1e net-misc/rclone: drop old. Signed-off-by: Piotr Karbowski gentoo.org> net-misc/rclone/Manifest | 6 -- net-misc/rclone/rclone-1.59.2.ebuild | 41 net-misc/rclone/rclone-1.60.0.ebuild | 41 net-misc/rclone/rclone-1.60.1.ebuild | 41 4 files changed, 129 deletions(-) diff --git a/net-misc/rclone/Manifest b/net-misc/rclone/Manifest index b910f9f85957..e9e4c4ba9084 100644 --- a/net-misc/rclone/Manifest +++ b/net-misc/rclone/Manifest @@ -1,8 +1,2 @@ -DIST rclone-1.59.2-deps.tar.xz 295715984 BLAKE2B c2ff3beb776f8697ef44421c2adb7a7997fcb1343b54c5218a4b7615f05406f5310f248048814a3f6c81a4e83d8f7400603263476ef6fce0f9d14464b358cd07 SHA512 9c3c60d08422d632ac42fc92d2a8d5c075c115600fbace376f18cda5609eea261297d648da6558a93c3afea8131f877682175ae7ff8e0d2549776263bb9ec40b -DIST rclone-1.59.2.tar.gz 15946730 BLAKE2B e05ce4b1c37af29499ae1b6a8d18a198fe43dcf788f3d1e3d027a871533c87783ed3ddc94c7c2772a94e3bc19c2540f4bb82aa79780f119c4c54833ad171671f SHA512 5741e1e1b4d2d0dc0f80baf2f7c318cdda995c2f15b7b9e0dd1c9be7372ab21cedba377c40adcc0edd0482aec7c2a27e0144a6edb957840b9422a8bbff922342 -DIST rclone-1.60.0-deps.tar.xz 260508436 BLAKE2B 5e4170601d76b4e221762ecac21a8c6a00635c6fd7958f993e4132ca703a8d91773d42523513be917feab7ae16a1babe3bd9c8142937604e724d36f7386bd8d8 SHA512 460a3f722324f0dc04408ab76a4e3be96b85d420921e7a8acc52eeebe4f6b11598c6b313946104d7ccb8cfa6c9071886f82ca7b7b863d11d5e520e68e500e7ac -DIST rclone-1.60.0.tar.gz 16018631 BLAKE2B e40f6a7e9954bc55232c126eb3095b2938761be170422d8ce63b76bf2c20d9c887a7c9d0b050ea094e125584c7ae6aad12f8d4a7fb3a85f9fb67e77bd9d0fb7b SHA512 f24958e5e99f1b4812952434921e6a0f21fd2a46c41d5c2e714cd5d686edf0fb2f60cbe6c79674c7e0fcd11de7b5fa2b86ef2eae62ec776dd9bbb567c908919d -DIST rclone-1.60.1-deps.tar.xz 260510372 BLAKE2B 74b5998a8d6ff1d78eaf86bab38d90eee1abdc92d4e560d15ef4449663b2b0b4a243522fb1b74e1329e15372133cbd32be5437ad68cc6aab3e82efd6840ea362 SHA512 08b3970c4694c3c4ca3637e3221c2a54c4305d0f4b091c4e2b258b7d07f548bca1424eaa50c6fe5e2685761c4976e59caa0b5997a65d1b4e30a0644e1d030fe4 -DIST rclone-1.60.1.tar.gz 16026540 BLAKE2B bdc666de0d242847596719a9dd6823683a5c100fc9bcacf611d956d50823fb9e3874fc1216de244b7004f52875cee6f8739ecaf2d2d2f61cd231e824d71cd2ad SHA512 ba4e4a3a57ae639665ca22576a4c8ed6d8818aa903a7d4211bf2cfbb0fb81a95162521806b7174a042bb684262786dfee4c204d6080d33e59bd9705dc9d8db9c DIST rclone-1.61.1-deps.tar.xz 286458984 BLAKE2B 5129b10d67c0b8dbc03d5f3250667fd7836234720e6ef171a46f364cecb9f81c33dbba46077e1d48380b3c04f95a6482111636efa81134682379e678b4cd SHA512 0502424d66a9c029b95a34a15e60567f06f9cef35a2e9fd6a459b99a4b45a0a55dc7efc6f430dc71542d532f614e3b3fbc320ea56e4852e75de2434ef21a DIST rclone-1.61.1.tar.gz 16112718 BLAKE2B cb68fedf03812451d9c8ded88bfc073c8177948b1e932acf99d22b23d3d11b1f52027e2afe88472ba6c88637a8e58e2955b67575ed7356b7b0900d6c7a7bb65c SHA512 739b976a4538586670b797c92f9cbd416c3589444a611926b5edd074e8249dfcff9d95e8053459aa42c4cbe90009a9ba1c3abb9be8e8718db6276fdc39386273 diff --git a/net-misc/rclone/rclone-1.59.2.ebuild b/net-misc/rclone/rclone-1.59.2.ebuild deleted file mode 100644 index bf443a98d757.. --- a/net-misc/rclone/rclone-1.59.2.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 1999-2022 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 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="" - -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.60.0.ebuild b/net-misc/rclone/rclone-1.60.0.ebuild deleted file mode 100644 index d049a7636781.. --- a/net-misc/rclone/rclon
[gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/
commit: 9d0cf936edc8bdaa4fc781045da056ccf5d97313 Author: Piotr Karbowski gentoo org> AuthorDate: Sun Mar 19 22:57:20 2023 + Commit: Piotr Karbowski gentoo org> CommitDate: Sun Mar 19 22:57:35 2023 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d0cf936 net-misc/rclone: 1.62.0 version bump. Signed-off-by: Piotr Karbowski gentoo.org> net-misc/rclone/Manifest | 2 ++ net-misc/rclone/rclone-1.62.0.ebuild | 41 2 files changed, 43 insertions(+) diff --git a/net-misc/rclone/Manifest b/net-misc/rclone/Manifest index e9e4c4ba9084..5cc731ae1f27 100644 --- a/net-misc/rclone/Manifest +++ b/net-misc/rclone/Manifest @@ -1,2 +1,4 @@ DIST rclone-1.61.1-deps.tar.xz 286458984 BLAKE2B 5129b10d67c0b8dbc03d5f3250667fd7836234720e6ef171a46f364cecb9f81c33dbba46077e1d48380b3c04f95a6482111636efa81134682379e678b4cd SHA512 0502424d66a9c029b95a34a15e60567f06f9cef35a2e9fd6a459b99a4b45a0a55dc7efc6f430dc71542d532f614e3b3fbc320ea56e4852e75de2434ef21a DIST rclone-1.61.1.tar.gz 16112718 BLAKE2B cb68fedf03812451d9c8ded88bfc073c8177948b1e932acf99d22b23d3d11b1f52027e2afe88472ba6c88637a8e58e2955b67575ed7356b7b0900d6c7a7bb65c SHA512 739b976a4538586670b797c92f9cbd416c3589444a611926b5edd074e8249dfcff9d95e8053459aa42c4cbe90009a9ba1c3abb9be8e8718db6276fdc39386273 +DIST rclone-1.62.0-deps.tar.xz 294254004 BLAKE2B 8d41d7a784280ea82f86225283a3813db5d78c9982f019522b05d06610dfe8a84ffe282cca99814aad92759b60fde27f8340a2f34c151bdb519e94eeaff894d7 SHA512 ebb9636c2a1fac47b243f00e4b434b231d988d37650eb4add794ab1c2b3d4d66e2524c330f7d184ad45b7a9079a565745bda9c79ad7120ac7d868cc71942acb4 +DIST rclone-1.62.0.tar.gz 16170956 BLAKE2B f067252b1f06531dc969c0073eb299d5ffba4a1c89a99094cc8a3b6eb4c63866d1d28b72bac2c95323f8f644268fa802ccf43256fece46a31aaffb065f3a7a49 SHA512 3ab3bd07f1f83c19b9a9783df496c15273bd7bc192eac309683456589af8d179add8ee1cd334dbecbbae9ce8c9bfd84e905547e23c4d66452c96ca6a6d075755 diff --git a/net-misc/rclone/rclone-1.62.0.ebuild b/net-misc/rclone/rclone-1.62.0.ebuild new file mode 100644 index ..649ec2384a36 --- /dev/null +++ b/net-misc/rclone/rclone-1.62.0.ebuild @@ -0,0 +1,41 @@ +# 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="" + +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} +}
[gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/
commit: 1e595e943056ebb0a66e3c8744d86d0e27ac4823 Author: Piotr Karbowski gentoo org> AuthorDate: Sun Mar 19 22:05:11 2023 + Commit: Piotr Karbowski gentoo org> CommitDate: Sun Mar 19 22:57:35 2023 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e595e94 net-misc/rclone: metadata.xml bump with remote-id. Signed-off-by: Piotr Karbowski gentoo.org> net-misc/rclone/metadata.xml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/net-misc/rclone/metadata.xml b/net-misc/rclone/metadata.xml index de4f6ee3f2e3..7707dffb70af 100644 --- a/net-misc/rclone/metadata.xml +++ b/net-misc/rclone/metadata.xml @@ -9,4 +9,7 @@ slashbe...@gentoo.org Piotr Karbowski + + rclone/rclone +
[gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/
commit: 5e69540dbb1be6d034595aea8e801d685a3d801e Author: Arthur Zamarin gentoo org> AuthorDate: Mon Mar 6 13:03:37 2023 + Commit: Arthur Zamarin gentoo org> CommitDate: Mon Mar 6 13:03:37 2023 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e69540d net-misc/rclone: Stabilize 1.61.1 amd64, #899674 Signed-off-by: Arthur Zamarin gentoo.org> net-misc/rclone/rclone-1.61.1.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/net-misc/rclone/rclone-1.61.1.ebuild b/net-misc/rclone/rclone-1.61.1.ebuild index 585af0e639a7..94162b5d2717 100644 --- a/net-misc/rclone/rclone-1.61.1.ebuild +++ b/net-misc/rclone/rclone-1.61.1.ebuild @@ -1,10 +1,10 @@ -# Copyright 1999-2022 Gentoo Authors +# 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" +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
[gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/
commit: 2c828303e0651cb1af71161ee2ade17947183c4f Author: Arthur Zamarin gentoo org> AuthorDate: Mon Mar 6 13:03:38 2023 + Commit: Arthur Zamarin gentoo org> CommitDate: Mon Mar 6 13:03:38 2023 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c828303 net-misc/rclone: Stabilize 1.61.1 x86, #899674 Signed-off-by: Arthur Zamarin gentoo.org> net-misc/rclone/rclone-1.61.1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net-misc/rclone/rclone-1.61.1.ebuild b/net-misc/rclone/rclone-1.61.1.ebuild index 94162b5d2717..435e4e0b19b7 100644 --- a/net-misc/rclone/rclone-1.61.1.ebuild +++ b/net-misc/rclone/rclone-1.61.1.ebuild @@ -4,7 +4,7 @@ EAPI=8 inherit bash-completion-r1 go-module -KEYWORDS="amd64 ~arm ~arm64 ~riscv ~x86" +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
[gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/
commit: d8712dcb4a83f13de19347069ab95277314fce96 Author: Sam James gentoo org> AuthorDate: Sat Jan 7 23:03:52 2023 + Commit: Sam James gentoo org> CommitDate: Sat Jan 7 23:03:52 2023 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8712dcb net-misc/rclone: Stabilize 1.60.1 amd64, #890160 Signed-off-by: Sam James gentoo.org> net-misc/rclone/rclone-1.60.1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net-misc/rclone/rclone-1.60.1.ebuild b/net-misc/rclone/rclone-1.60.1.ebuild index 9fe5acd9d311..435e4e0b19b7 100644 --- a/net-misc/rclone/rclone-1.60.1.ebuild +++ b/net-misc/rclone/rclone-1.60.1.ebuild @@ -4,7 +4,7 @@ EAPI=8 inherit bash-completion-r1 go-module -KEYWORDS="~amd64 ~arm ~arm64 ~riscv x86" +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
[gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/
commit: f594ce767d3251b6d5a23f038699782c78c6916b Author: Sam James gentoo org> AuthorDate: Sat Jan 7 23:03:51 2023 + Commit: Sam James gentoo org> CommitDate: Sat Jan 7 23:03:51 2023 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f594ce76 net-misc/rclone: Stabilize 1.60.1 x86, #890160 Signed-off-by: Sam James gentoo.org> net-misc/rclone/rclone-1.60.1.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/net-misc/rclone/rclone-1.60.1.ebuild b/net-misc/rclone/rclone-1.60.1.ebuild index 585af0e639a7..9fe5acd9d311 100644 --- a/net-misc/rclone/rclone-1.60.1.ebuild +++ b/net-misc/rclone/rclone-1.60.1.ebuild @@ -1,10 +1,10 @@ -# Copyright 1999-2022 Gentoo Authors +# 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" +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
[gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/
commit: 435bf8e0890d0a5e5dc3ba8aecd6be4d2dac19cd Author: Piotr Karbowski gentoo org> AuthorDate: Sat Jan 7 19:15:19 2023 + Commit: Piotr Karbowski gentoo org> CommitDate: Sat Jan 7 19:59:48 2023 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=435bf8e0 net-misc/rclone: 1.61.1 version bump. Closes: https://bugs.gentoo.org/888914 Signed-off-by: Piotr Karbowski gentoo.org> net-misc/rclone/Manifest | 2 ++ net-misc/rclone/rclone-1.61.1.ebuild | 41 2 files changed, 43 insertions(+) diff --git a/net-misc/rclone/Manifest b/net-misc/rclone/Manifest index 19d062c2ebe1..b910f9f85957 100644 --- a/net-misc/rclone/Manifest +++ b/net-misc/rclone/Manifest @@ -4,3 +4,5 @@ DIST rclone-1.60.0-deps.tar.xz 260508436 BLAKE2B 5e4170601d76b4e221762ecac21a8c6 DIST rclone-1.60.0.tar.gz 16018631 BLAKE2B e40f6a7e9954bc55232c126eb3095b2938761be170422d8ce63b76bf2c20d9c887a7c9d0b050ea094e125584c7ae6aad12f8d4a7fb3a85f9fb67e77bd9d0fb7b SHA512 f24958e5e99f1b4812952434921e6a0f21fd2a46c41d5c2e714cd5d686edf0fb2f60cbe6c79674c7e0fcd11de7b5fa2b86ef2eae62ec776dd9bbb567c908919d DIST rclone-1.60.1-deps.tar.xz 260510372 BLAKE2B 74b5998a8d6ff1d78eaf86bab38d90eee1abdc92d4e560d15ef4449663b2b0b4a243522fb1b74e1329e15372133cbd32be5437ad68cc6aab3e82efd6840ea362 SHA512 08b3970c4694c3c4ca3637e3221c2a54c4305d0f4b091c4e2b258b7d07f548bca1424eaa50c6fe5e2685761c4976e59caa0b5997a65d1b4e30a0644e1d030fe4 DIST rclone-1.60.1.tar.gz 16026540 BLAKE2B bdc666de0d242847596719a9dd6823683a5c100fc9bcacf611d956d50823fb9e3874fc1216de244b7004f52875cee6f8739ecaf2d2d2f61cd231e824d71cd2ad SHA512 ba4e4a3a57ae639665ca22576a4c8ed6d8818aa903a7d4211bf2cfbb0fb81a95162521806b7174a042bb684262786dfee4c204d6080d33e59bd9705dc9d8db9c +DIST rclone-1.61.1-deps.tar.xz 286458984 BLAKE2B 5129b10d67c0b8dbc03d5f3250667fd7836234720e6ef171a46f364cecb9f81c33dbba46077e1d48380b3c04f95a6482111636efa81134682379e678b4cd SHA512 0502424d66a9c029b95a34a15e60567f06f9cef35a2e9fd6a459b99a4b45a0a55dc7efc6f430dc71542d532f614e3b3fbc320ea56e4852e75de2434ef21a +DIST rclone-1.61.1.tar.gz 16112718 BLAKE2B cb68fedf03812451d9c8ded88bfc073c8177948b1e932acf99d22b23d3d11b1f52027e2afe88472ba6c88637a8e58e2955b67575ed7356b7b0900d6c7a7bb65c SHA512 739b976a4538586670b797c92f9cbd416c3589444a611926b5edd074e8249dfcff9d95e8053459aa42c4cbe90009a9ba1c3abb9be8e8718db6276fdc39386273 diff --git a/net-misc/rclone/rclone-1.61.1.ebuild b/net-misc/rclone/rclone-1.61.1.ebuild new file mode 100644 index ..585af0e639a7 --- /dev/null +++ b/net-misc/rclone/rclone-1.61.1.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2022 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="" + +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} +}
[gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/
commit: e06012a4361e9f7e17709ce1bf9454a818dfffa2 Author: Sam James gentoo org> AuthorDate: Fri Dec 9 22:31:54 2022 + Commit: Sam James gentoo org> CommitDate: Fri Dec 9 22:31:54 2022 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e06012a4 net-misc/rclone: Stabilize 1.60.0 amd64, #885079 Signed-off-by: Sam James gentoo.org> net-misc/rclone/rclone-1.60.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net-misc/rclone/rclone-1.60.0.ebuild b/net-misc/rclone/rclone-1.60.0.ebuild index cec0b914471e..d049a7636781 100644 --- a/net-misc/rclone/rclone-1.60.0.ebuild +++ b/net-misc/rclone/rclone-1.60.0.ebuild @@ -4,7 +4,7 @@ EAPI=8 inherit bash-completion-r1 go-module -KEYWORDS="~amd64 ~arm ~arm64 ~riscv x86" +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
[gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/
commit: 923ab0408da9e0d0095f6ab81efcb911d62db44f Author: Arthur Zamarin gentoo org> AuthorDate: Fri Dec 9 22:04:51 2022 + Commit: Arthur Zamarin gentoo org> CommitDate: Fri Dec 9 22:04:51 2022 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=923ab040 net-misc/rclone: Stabilize 1.60.0 x86, #885079 Signed-off-by: Arthur Zamarin gentoo.org> net-misc/rclone/rclone-1.60.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net-misc/rclone/rclone-1.60.0.ebuild b/net-misc/rclone/rclone-1.60.0.ebuild index 585af0e639a7..cec0b914471e 100644 --- a/net-misc/rclone/rclone-1.60.0.ebuild +++ b/net-misc/rclone/rclone-1.60.0.ebuild @@ -4,7 +4,7 @@ EAPI=8 inherit bash-completion-r1 go-module -KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86" +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
[gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/
commit: 38ded96221c91a3f3a7b78d83d1adbafbc0bedb6 Author: Piotr Karbowski gentoo org> AuthorDate: Sat Nov 19 15:51:14 2022 + Commit: Piotr Karbowski gentoo org> CommitDate: Sat Nov 19 15:51:14 2022 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=38ded962 net-misc/rclone: 1.60.1 version bump. Signed-off-by: Piotr Karbowski gentoo.org> net-misc/rclone/Manifest | 2 ++ net-misc/rclone/rclone-1.60.1.ebuild | 41 2 files changed, 43 insertions(+) diff --git a/net-misc/rclone/Manifest b/net-misc/rclone/Manifest index 03c48e45a529..47274cb1df60 100644 --- a/net-misc/rclone/Manifest +++ b/net-misc/rclone/Manifest @@ -6,3 +6,5 @@ DIST rclone-1.59.2-deps.tar.xz 295715984 BLAKE2B c2ff3beb776f8697ef44421c2adb7a7 DIST rclone-1.59.2.tar.gz 15946730 BLAKE2B e05ce4b1c37af29499ae1b6a8d18a198fe43dcf788f3d1e3d027a871533c87783ed3ddc94c7c2772a94e3bc19c2540f4bb82aa79780f119c4c54833ad171671f SHA512 5741e1e1b4d2d0dc0f80baf2f7c318cdda995c2f15b7b9e0dd1c9be7372ab21cedba377c40adcc0edd0482aec7c2a27e0144a6edb957840b9422a8bbff922342 DIST rclone-1.60.0-deps.tar.xz 260508436 BLAKE2B 5e4170601d76b4e221762ecac21a8c6a00635c6fd7958f993e4132ca703a8d91773d42523513be917feab7ae16a1babe3bd9c8142937604e724d36f7386bd8d8 SHA512 460a3f722324f0dc04408ab76a4e3be96b85d420921e7a8acc52eeebe4f6b11598c6b313946104d7ccb8cfa6c9071886f82ca7b7b863d11d5e520e68e500e7ac DIST rclone-1.60.0.tar.gz 16018631 BLAKE2B e40f6a7e9954bc55232c126eb3095b2938761be170422d8ce63b76bf2c20d9c887a7c9d0b050ea094e125584c7ae6aad12f8d4a7fb3a85f9fb67e77bd9d0fb7b SHA512 f24958e5e99f1b4812952434921e6a0f21fd2a46c41d5c2e714cd5d686edf0fb2f60cbe6c79674c7e0fcd11de7b5fa2b86ef2eae62ec776dd9bbb567c908919d +DIST rclone-1.60.1-deps.tar.xz 260510372 BLAKE2B 74b5998a8d6ff1d78eaf86bab38d90eee1abdc92d4e560d15ef4449663b2b0b4a243522fb1b74e1329e15372133cbd32be5437ad68cc6aab3e82efd6840ea362 SHA512 08b3970c4694c3c4ca3637e3221c2a54c4305d0f4b091c4e2b258b7d07f548bca1424eaa50c6fe5e2685761c4976e59caa0b5997a65d1b4e30a0644e1d030fe4 +DIST rclone-1.60.1.tar.gz 16026540 BLAKE2B bdc666de0d242847596719a9dd6823683a5c100fc9bcacf611d956d50823fb9e3874fc1216de244b7004f52875cee6f8739ecaf2d2d2f61cd231e824d71cd2ad SHA512 ba4e4a3a57ae639665ca22576a4c8ed6d8818aa903a7d4211bf2cfbb0fb81a95162521806b7174a042bb684262786dfee4c204d6080d33e59bd9705dc9d8db9c diff --git a/net-misc/rclone/rclone-1.60.1.ebuild b/net-misc/rclone/rclone-1.60.1.ebuild new file mode 100644 index ..585af0e639a7 --- /dev/null +++ b/net-misc/rclone/rclone-1.60.1.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2022 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="" + +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} +}
[gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/
commit: ff689166cf1fceeaba4c8df5740fd5d810300323 Author: Piotr Karbowski gentoo org> AuthorDate: Sat Nov 19 15:52:37 2022 + Commit: Piotr Karbowski gentoo org> CommitDate: Sat Nov 19 15:52:37 2022 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff689166 net-misc/rclone: drop old. Signed-off-by: Piotr Karbowski gentoo.org> net-misc/rclone/Manifest | 4 net-misc/rclone/rclone-1.58.1.ebuild | 41 net-misc/rclone/rclone-1.59.0.ebuild | 41 3 files changed, 86 deletions(-) diff --git a/net-misc/rclone/Manifest b/net-misc/rclone/Manifest index 47274cb1df60..19d062c2ebe1 100644 --- a/net-misc/rclone/Manifest +++ b/net-misc/rclone/Manifest @@ -1,7 +1,3 @@ -DIST rclone-1.58.1-deps.tar.xz 201798856 BLAKE2B e739b038953292e78161a40c3bd2753e4172b1e330109a4ad0aa5a10255a165c2ae1a4cbd191aeff3bee98c2b2ffd5c9f142bd290ef41fe0ab560baf43cb9702 SHA512 f40f00da9da7b6535ee1de2a120e047522e50e9341bf30ca8f0b01559621ed7474a59d925a88393600a90120818233eaa45ee44727b12336a7d48f3e2dfe550b -DIST rclone-1.58.1.tar.gz 15696598 BLAKE2B 601d60c5a1facc18bd6c157bf017ff8c0793fe4ca0bd8e8b719ad457882829919b18085c54a606c8880b60199c50b4a8f8fb7e73ca2c200efa899b8bcb7e0b63 SHA512 104ff2e743374ad3d0f3c517e34ac068d6439445732bc3ce4ffe8fbc13e7d2b4285518e8037c5600589425e001c26e334c7e31d12f9a476af958cb47097c4e00 -DIST rclone-1.59.0-deps.tar.xz 301036992 BLAKE2B f5acc3d1ec96e27a96343712595974827ebdb2a10c4d45bbd323228a47a097f9fdc71d439b0881dbee75a6406015ba5fcaccb616482333dd4c5df1cc32d84bc2 SHA512 41a3edbaeb6da5252f4eeb04cf3eb0ec1882de32c2ae55a659db6a841446ab756197b20878fc9a7053d687ce05b42ea45c30207cdbb16d8ba8a98256ea38 -DIST rclone-1.59.0.tar.gz 15940750 BLAKE2B d6923e766e78a88714b9ebbc146947421e5c9f327b2a6ea8f173d203e3cc952439408622bdc07a98ceb473131d338ca8246614e808e26085f829c971eccd32fe SHA512 a6cb27687b5d4ca6f2a3597b16d6b00d212bbe0bc8542c399c597bc52d827254d41fa0aa67457677cc4ae53d5b264aef09aaa74d80d5a84e4efe9d40f3042b61 DIST rclone-1.59.2-deps.tar.xz 295715984 BLAKE2B c2ff3beb776f8697ef44421c2adb7a7997fcb1343b54c5218a4b7615f05406f5310f248048814a3f6c81a4e83d8f7400603263476ef6fce0f9d14464b358cd07 SHA512 9c3c60d08422d632ac42fc92d2a8d5c075c115600fbace376f18cda5609eea261297d648da6558a93c3afea8131f877682175ae7ff8e0d2549776263bb9ec40b DIST rclone-1.59.2.tar.gz 15946730 BLAKE2B e05ce4b1c37af29499ae1b6a8d18a198fe43dcf788f3d1e3d027a871533c87783ed3ddc94c7c2772a94e3bc19c2540f4bb82aa79780f119c4c54833ad171671f SHA512 5741e1e1b4d2d0dc0f80baf2f7c318cdda995c2f15b7b9e0dd1c9be7372ab21cedba377c40adcc0edd0482aec7c2a27e0144a6edb957840b9422a8bbff922342 DIST rclone-1.60.0-deps.tar.xz 260508436 BLAKE2B 5e4170601d76b4e221762ecac21a8c6a00635c6fd7958f993e4132ca703a8d91773d42523513be917feab7ae16a1babe3bd9c8142937604e724d36f7386bd8d8 SHA512 460a3f722324f0dc04408ab76a4e3be96b85d420921e7a8acc52eeebe4f6b11598c6b313946104d7ccb8cfa6c9071886f82ca7b7b863d11d5e520e68e500e7ac diff --git a/net-misc/rclone/rclone-1.58.1.ebuild b/net-misc/rclone/rclone-1.58.1.ebuild deleted file mode 100644 index bf443a98d757.. --- a/net-misc/rclone/rclone-1.58.1.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 1999-2022 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 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="" - -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.59.0.ebuild b/net-misc/rclone/rclone-1.59.0.ebuild deleted file mode 100644 index 7c77180a06c2.. --- a/net-misc/rclone/rclone-1.59.0.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 1999-2022 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 ~x86" -SRC_URI=" - https://github.com/rclone/rclone/archive/v${PV}.tar.gz -> ${P}.tar.gz - https://dev.gentoo.org/~slashbeast/distfiles/${PN}/${P}-dep
[gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/
commit: 519d99eb6f9a4becd018131bbe7d085a8adde831 Author: Agostino Sarubbo gentoo org> AuthorDate: Sun Nov 6 08:04:19 2022 + Commit: Agostino Sarubbo gentoo org> CommitDate: Sun Nov 6 08:04:19 2022 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=519d99eb net-misc/rclone: Stabilize 1.59.2 x86, #879939 Signed-off-by: Agostino Sarubbo gentoo.org> net-misc/rclone/rclone-1.59.2.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net-misc/rclone/rclone-1.59.2.ebuild b/net-misc/rclone/rclone-1.59.2.ebuild index 677e479c67a0..bf443a98d757 100644 --- a/net-misc/rclone/rclone-1.59.2.ebuild +++ b/net-misc/rclone/rclone-1.59.2.ebuild @@ -4,7 +4,7 @@ EAPI=8 inherit bash-completion-r1 go-module -KEYWORDS="amd64 ~arm ~arm64 ~x86" +KEYWORDS="amd64 ~arm ~arm64 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
[gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/
commit: ed87215a26fe52be5ba5907cb26504596c718635 Author: Sam James gentoo org> AuthorDate: Sun Nov 6 05:51:54 2022 + Commit: Sam James gentoo org> CommitDate: Sun Nov 6 05:51:54 2022 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ed87215a net-misc/rclone: Stabilize 1.59.2 amd64, #879939 Signed-off-by: Sam James gentoo.org> net-misc/rclone/rclone-1.59.2.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net-misc/rclone/rclone-1.59.2.ebuild b/net-misc/rclone/rclone-1.59.2.ebuild index 7c77180a06c2..677e479c67a0 100644 --- a/net-misc/rclone/rclone-1.59.2.ebuild +++ b/net-misc/rclone/rclone-1.59.2.ebuild @@ -4,7 +4,7 @@ EAPI=8 inherit bash-completion-r1 go-module -KEYWORDS="~amd64 ~arm ~arm64 ~x86" +KEYWORDS="amd64 ~arm ~arm64 ~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
[gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/
commit: e05ede6fd29590f583b969e97740e245788dfb9c Author: Xin Yang icloud com> AuthorDate: Wed Nov 2 06:55:43 2022 + Commit: Yixun Lan gentoo org> CommitDate: Thu Nov 3 02:03:20 2022 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e05ede6f net-misc/rclone: keyword riscv 1.60.0, #879117 Closes: https://github.com/gentoo/gentoo/pull/28096 Signed-off-by: Xin Yang icloud.com> Signed-off-by: Yixun Lan gentoo.org> net-misc/rclone/rclone-1.60.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net-misc/rclone/rclone-1.60.0.ebuild b/net-misc/rclone/rclone-1.60.0.ebuild index 7c77180a06c2..585af0e639a7 100644 --- a/net-misc/rclone/rclone-1.60.0.ebuild +++ b/net-misc/rclone/rclone-1.60.0.ebuild @@ -4,7 +4,7 @@ EAPI=8 inherit bash-completion-r1 go-module -KEYWORDS="~amd64 ~arm ~arm64 ~x86" +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
[gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/
commit: bac17fb35c46f326042fcf99cbea00a141b2142c Author: Piotr Karbowski gentoo org> AuthorDate: Sun Oct 23 14:14:58 2022 + Commit: Piotr Karbowski gentoo org> CommitDate: Sun Oct 23 14:15:23 2022 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bac17fb3 net-misc/rclone: 1.60.0 version bump. Signed-off-by: Piotr Karbowski gentoo.org> net-misc/rclone/Manifest | 2 ++ net-misc/rclone/rclone-1.60.0.ebuild | 41 2 files changed, 43 insertions(+) diff --git a/net-misc/rclone/Manifest b/net-misc/rclone/Manifest index 67dc9b47a31d..03c48e45a529 100644 --- a/net-misc/rclone/Manifest +++ b/net-misc/rclone/Manifest @@ -4,3 +4,5 @@ DIST rclone-1.59.0-deps.tar.xz 301036992 BLAKE2B f5acc3d1ec96e27a963437125959748 DIST rclone-1.59.0.tar.gz 15940750 BLAKE2B d6923e766e78a88714b9ebbc146947421e5c9f327b2a6ea8f173d203e3cc952439408622bdc07a98ceb473131d338ca8246614e808e26085f829c971eccd32fe SHA512 a6cb27687b5d4ca6f2a3597b16d6b00d212bbe0bc8542c399c597bc52d827254d41fa0aa67457677cc4ae53d5b264aef09aaa74d80d5a84e4efe9d40f3042b61 DIST rclone-1.59.2-deps.tar.xz 295715984 BLAKE2B c2ff3beb776f8697ef44421c2adb7a7997fcb1343b54c5218a4b7615f05406f5310f248048814a3f6c81a4e83d8f7400603263476ef6fce0f9d14464b358cd07 SHA512 9c3c60d08422d632ac42fc92d2a8d5c075c115600fbace376f18cda5609eea261297d648da6558a93c3afea8131f877682175ae7ff8e0d2549776263bb9ec40b DIST rclone-1.59.2.tar.gz 15946730 BLAKE2B e05ce4b1c37af29499ae1b6a8d18a198fe43dcf788f3d1e3d027a871533c87783ed3ddc94c7c2772a94e3bc19c2540f4bb82aa79780f119c4c54833ad171671f SHA512 5741e1e1b4d2d0dc0f80baf2f7c318cdda995c2f15b7b9e0dd1c9be7372ab21cedba377c40adcc0edd0482aec7c2a27e0144a6edb957840b9422a8bbff922342 +DIST rclone-1.60.0-deps.tar.xz 260508436 BLAKE2B 5e4170601d76b4e221762ecac21a8c6a00635c6fd7958f993e4132ca703a8d91773d42523513be917feab7ae16a1babe3bd9c8142937604e724d36f7386bd8d8 SHA512 460a3f722324f0dc04408ab76a4e3be96b85d420921e7a8acc52eeebe4f6b11598c6b313946104d7ccb8cfa6c9071886f82ca7b7b863d11d5e520e68e500e7ac +DIST rclone-1.60.0.tar.gz 16018631 BLAKE2B e40f6a7e9954bc55232c126eb3095b2938761be170422d8ce63b76bf2c20d9c887a7c9d0b050ea094e125584c7ae6aad12f8d4a7fb3a85f9fb67e77bd9d0fb7b SHA512 f24958e5e99f1b4812952434921e6a0f21fd2a46c41d5c2e714cd5d686edf0fb2f60cbe6c79674c7e0fcd11de7b5fa2b86ef2eae62ec776dd9bbb567c908919d diff --git a/net-misc/rclone/rclone-1.60.0.ebuild b/net-misc/rclone/rclone-1.60.0.ebuild new file mode 100644 index ..7c77180a06c2 --- /dev/null +++ b/net-misc/rclone/rclone-1.60.0.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2022 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 ~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="" + +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} +}
[gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/
commit: bcf21d2d4806c7da6b2019f960e43f1670691a12 Author: Piotr Karbowski gentoo org> AuthorDate: Tue Sep 20 18:47:12 2022 + Commit: Piotr Karbowski gentoo org> CommitDate: Tue Sep 20 18:47:53 2022 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bcf21d2d net-misc/rclone: 1.59.2 version bump. Closes: https://bugs.gentoo.org/871930 Signed-off-by: Piotr Karbowski gentoo.org> net-misc/rclone/Manifest | 2 ++ net-misc/rclone/rclone-1.59.2.ebuild | 41 2 files changed, 43 insertions(+) diff --git a/net-misc/rclone/Manifest b/net-misc/rclone/Manifest index 058b84dc5fbb..67dc9b47a31d 100644 --- a/net-misc/rclone/Manifest +++ b/net-misc/rclone/Manifest @@ -2,3 +2,5 @@ DIST rclone-1.58.1-deps.tar.xz 201798856 BLAKE2B e739b038953292e78161a40c3bd2753 DIST rclone-1.58.1.tar.gz 15696598 BLAKE2B 601d60c5a1facc18bd6c157bf017ff8c0793fe4ca0bd8e8b719ad457882829919b18085c54a606c8880b60199c50b4a8f8fb7e73ca2c200efa899b8bcb7e0b63 SHA512 104ff2e743374ad3d0f3c517e34ac068d6439445732bc3ce4ffe8fbc13e7d2b4285518e8037c5600589425e001c26e334c7e31d12f9a476af958cb47097c4e00 DIST rclone-1.59.0-deps.tar.xz 301036992 BLAKE2B f5acc3d1ec96e27a96343712595974827ebdb2a10c4d45bbd323228a47a097f9fdc71d439b0881dbee75a6406015ba5fcaccb616482333dd4c5df1cc32d84bc2 SHA512 41a3edbaeb6da5252f4eeb04cf3eb0ec1882de32c2ae55a659db6a841446ab756197b20878fc9a7053d687ce05b42ea45c30207cdbb16d8ba8a98256ea38 DIST rclone-1.59.0.tar.gz 15940750 BLAKE2B d6923e766e78a88714b9ebbc146947421e5c9f327b2a6ea8f173d203e3cc952439408622bdc07a98ceb473131d338ca8246614e808e26085f829c971eccd32fe SHA512 a6cb27687b5d4ca6f2a3597b16d6b00d212bbe0bc8542c399c597bc52d827254d41fa0aa67457677cc4ae53d5b264aef09aaa74d80d5a84e4efe9d40f3042b61 +DIST rclone-1.59.2-deps.tar.xz 295715984 BLAKE2B c2ff3beb776f8697ef44421c2adb7a7997fcb1343b54c5218a4b7615f05406f5310f248048814a3f6c81a4e83d8f7400603263476ef6fce0f9d14464b358cd07 SHA512 9c3c60d08422d632ac42fc92d2a8d5c075c115600fbace376f18cda5609eea261297d648da6558a93c3afea8131f877682175ae7ff8e0d2549776263bb9ec40b +DIST rclone-1.59.2.tar.gz 15946730 BLAKE2B e05ce4b1c37af29499ae1b6a8d18a198fe43dcf788f3d1e3d027a871533c87783ed3ddc94c7c2772a94e3bc19c2540f4bb82aa79780f119c4c54833ad171671f SHA512 5741e1e1b4d2d0dc0f80baf2f7c318cdda995c2f15b7b9e0dd1c9be7372ab21cedba377c40adcc0edd0482aec7c2a27e0144a6edb957840b9422a8bbff922342 diff --git a/net-misc/rclone/rclone-1.59.2.ebuild b/net-misc/rclone/rclone-1.59.2.ebuild new file mode 100644 index ..7c77180a06c2 --- /dev/null +++ b/net-misc/rclone/rclone-1.59.2.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2022 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 ~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="" + +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} +}
[gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/
commit: 45b5da32f4e1b42eb6ff770c5b7cea5671ec3c56 Author: Piotr Karbowski gentoo org> AuthorDate: Sun Jul 10 14:58:57 2022 + Commit: Piotr Karbowski gentoo org> CommitDate: Sun Jul 10 15:00:41 2022 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=45b5da32 net-misc/rclone: drop live ebuild. The ebuild is not in a good shape, the master does not build in current state making it of litte value not worth the cost of maintenance. Signed-off-by: Piotr Karbowski gentoo.org> net-misc/rclone/rclone-.ebuild | 835 - 1 file changed, 835 deletions(-) diff --git a/net-misc/rclone/rclone-.ebuild b/net-misc/rclone/rclone-.ebuild deleted file mode 100644 index 1066e69c03e7.. --- a/net-misc/rclone/rclone-.ebuild +++ /dev/null @@ -1,835 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -inherit bash-completion-r1 go-module - -if [[ ${PV} == * ]]; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/rclone/rclone.git"; -else - -EGO_SUM=( - "bazil.org/fuse v0.0.0-20200407214033-5883e5a4b512" - "bazil.org/fuse v0.0.0-20200407214033-5883e5a4b512/go.mod" - "cloud.google.com/go v0.26.0/go.mod" - "cloud.google.com/go v0.34.0/go.mod" - "cloud.google.com/go v0.38.0/go.mod" - "cloud.google.com/go v0.44.1/go.mod" - "cloud.google.com/go v0.44.2/go.mod" - "cloud.google.com/go v0.45.1/go.mod" - "cloud.google.com/go v0.46.3/go.mod" - "cloud.google.com/go v0.50.0/go.mod" - "cloud.google.com/go v0.52.0/go.mod" - "cloud.google.com/go v0.53.0/go.mod" - "cloud.google.com/go v0.54.0/go.mod" - "cloud.google.com/go v0.56.0" - "cloud.google.com/go v0.56.0/go.mod" - "cloud.google.com/go v0.57.0/go.mod" - "cloud.google.com/go v0.59.0" - "cloud.google.com/go v0.59.0/go.mod" - "cloud.google.com/go/bigquery v1.0.1/go.mod" - "cloud.google.com/go/bigquery v1.3.0/go.mod" - "cloud.google.com/go/bigquery v1.4.0/go.mod" - "cloud.google.com/go/bigquery v1.5.0/go.mod" - "cloud.google.com/go/bigquery v1.7.0/go.mod" - "cloud.google.com/go/bigquery v1.8.0/go.mod" - "cloud.google.com/go/datastore v1.0.0/go.mod" - "cloud.google.com/go/datastore v1.1.0/go.mod" - "cloud.google.com/go/pubsub v1.0.1/go.mod" - "cloud.google.com/go/pubsub v1.1.0/go.mod" - "cloud.google.com/go/pubsub v1.2.0/go.mod" - "cloud.google.com/go/pubsub v1.3.1/go.mod" - "cloud.google.com/go/storage v1.0.0/go.mod" - "cloud.google.com/go/storage v1.5.0/go.mod" - "cloud.google.com/go/storage v1.6.0/go.mod" - "cloud.google.com/go/storage v1.8.0/go.mod" - "dmitri.shuralyov.com/gpu/mtl v0.0.0-20190408044501-666a987793e9/go.mod" - "github.com/Azure/azure-pipeline-go v0.2.2" - "github.com/Azure/azure-pipeline-go v0.2.2/go.mod" - "github.com/Azure/azure-storage-blob-go v0.10.0" - "github.com/Azure/azure-storage-blob-go v0.10.0/go.mod" - "github.com/Azure/go-autorest/autorest v0.9.0" - "github.com/Azure/go-autorest/autorest v0.9.0/go.mod" - "github.com/Azure/go-autorest/autorest/adal v0.5.0/go.mod" - "github.com/Azure/go-autorest/autorest/adal v0.8.3" - "github.com/Azure/go-autorest/autorest/adal v0.8.3/go.mod" - "github.com/Azure/go-autorest/autorest/date v0.1.0/go.mod" - "github.com/Azure/go-autorest/autorest/date v0.2.0" - "github.com/Azure/go-autorest/autorest/date v0.2.0/go.mod" - "github.com/Azure/go-autorest/autorest/mocks v0.1.0/go.mod" - "github.com/Azure/go-autorest/autorest/mocks v0.2.0/go.mod" - "github.com/Azure/go-autorest/autorest/mocks v0.3.0" - "github.com/Azure/go-autorest/autorest/mocks v0.3.0/go.mod" - "github.com/Azure/go-autorest/logger v0.1.0" - "github.com/Azure/go-autorest/logger v0.1.0/go.mod" - "github.com/Azure/go-autorest/tracing v0.5.0" - "github.com/Azure/go-autorest/tracing v0.5.0/go.mod" - "github.com/BurntSushi/toml v0.3.1" - "github.com/BurntSushi/toml v0.3.1/go.mod" - "github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod" - "github.com/OneOfOne/xxhash v1.2.2/go.mod" - "github.com/RoaringBitmap/roaring v0.4.7/go.mod" - "github.com/Unknwon/goconfig v0.0.0-20191126170842-860a72fb44fd" - "github.com/Unknwon/goconfig v0.0.0-20191126170842-860a72fb44fd/go.mod" - "github.com/a8m/tree v0.0.0-20181222104329-6a0b80129de4" - "github.com/a8m/tree v0.0.0-20181222104329-6a0b80129de4/go.mod" - "github.com/aalpar/deheap v0.0.0-20200318053559-9a0c2883bd56" - "github.com/aalpar/deheap v0.0.0-20200318053559-9a0c2883bd56/go.mod" - "github.com/abbot/go-http-auth v0.4.0" - "github.com/abbot/go-http-auth v0.4.0/go.mod" - "github.com/aead/siphash v1.0.1/go.mod" -
[gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/
commit: 6eeb3f3ba4c85deed952fd9c19df8495ec76bbf2 Author: Sam James gentoo org> AuthorDate: Sun Jul 10 12:16:33 2022 + Commit: Sam James gentoo org> CommitDate: Sun Jul 10 12:16:33 2022 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6eeb3f3b net-misc/rclone: Stabilize 1.58.1 x86, #857240 Signed-off-by: Sam James gentoo.org> net-misc/rclone/rclone-1.58.1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net-misc/rclone/rclone-1.58.1.ebuild b/net-misc/rclone/rclone-1.58.1.ebuild index 677e479c67a0..bf443a98d757 100644 --- a/net-misc/rclone/rclone-1.58.1.ebuild +++ b/net-misc/rclone/rclone-1.58.1.ebuild @@ -4,7 +4,7 @@ EAPI=8 inherit bash-completion-r1 go-module -KEYWORDS="amd64 ~arm ~arm64 ~x86" +KEYWORDS="amd64 ~arm ~arm64 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
[gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/
commit: 41aff6455f6227caf76b5e3bbf0a93111816b926 Author: Sam James gentoo org> AuthorDate: Sun Jul 10 12:15:55 2022 + Commit: Sam James gentoo org> CommitDate: Sun Jul 10 12:15:55 2022 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41aff645 net-misc/rclone: Stabilize 1.58.1 amd64, #857240 Signed-off-by: Sam James gentoo.org> net-misc/rclone/rclone-1.58.1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net-misc/rclone/rclone-1.58.1.ebuild b/net-misc/rclone/rclone-1.58.1.ebuild index 7c77180a06c2..677e479c67a0 100644 --- a/net-misc/rclone/rclone-1.58.1.ebuild +++ b/net-misc/rclone/rclone-1.58.1.ebuild @@ -4,7 +4,7 @@ EAPI=8 inherit bash-completion-r1 go-module -KEYWORDS="~amd64 ~arm ~arm64 ~x86" +KEYWORDS="amd64 ~arm ~arm64 ~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
[gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/
commit: dbac8fa5229d99b4ffd95d3f121a22f781aefbf4 Author: Piotr Karbowski gentoo org> AuthorDate: Sun Jul 10 09:38:46 2022 + Commit: Piotr Karbowski gentoo org> CommitDate: Sun Jul 10 09:39:10 2022 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dbac8fa5 net-misc/rclone: 1.59.0 version bump. Signed-off-by: Piotr Karbowski gentoo.org> net-misc/rclone/Manifest | 2 ++ net-misc/rclone/rclone-1.59.0.ebuild | 41 2 files changed, 43 insertions(+) diff --git a/net-misc/rclone/Manifest b/net-misc/rclone/Manifest index 670419f6730b..10ef957f586d 100644 --- a/net-misc/rclone/Manifest +++ b/net-misc/rclone/Manifest @@ -1401,6 +1401,8 @@ DIST rclone-1.53.3.tar.gz 14714224 BLAKE2B 0669bd046484867febe6ae201153540c40ce2 DIST rclone-1.57.0.tar.gz 15443082 BLAKE2B 35b930d1a2234d3887e046f676850e88c07b2fcddaec3d1f44be52cebe2f79cf76bfb2ecce1081e4f3448be505d0e5eddd98f6481c43c4512cab6f160b50261c SHA512 d0428263b8ee1779f96176574dc17adb73668d56b9dcf6894a0aae4db2990148d785226defa520143df788d4401e1f297faa5c5c645d3c8503c796c06a1d3229 DIST rclone-1.58.1-deps.tar.xz 201798856 BLAKE2B e739b038953292e78161a40c3bd2753e4172b1e330109a4ad0aa5a10255a165c2ae1a4cbd191aeff3bee98c2b2ffd5c9f142bd290ef41fe0ab560baf43cb9702 SHA512 f40f00da9da7b6535ee1de2a120e047522e50e9341bf30ca8f0b01559621ed7474a59d925a88393600a90120818233eaa45ee44727b12336a7d48f3e2dfe550b DIST rclone-1.58.1.tar.gz 15696598 BLAKE2B 601d60c5a1facc18bd6c157bf017ff8c0793fe4ca0bd8e8b719ad457882829919b18085c54a606c8880b60199c50b4a8f8fb7e73ca2c200efa899b8bcb7e0b63 SHA512 104ff2e743374ad3d0f3c517e34ac068d6439445732bc3ce4ffe8fbc13e7d2b4285518e8037c5600589425e001c26e334c7e31d12f9a476af958cb47097c4e00 +DIST rclone-1.59.0-deps.tar.xz 301036992 BLAKE2B f5acc3d1ec96e27a96343712595974827ebdb2a10c4d45bbd323228a47a097f9fdc71d439b0881dbee75a6406015ba5fcaccb616482333dd4c5df1cc32d84bc2 SHA512 41a3edbaeb6da5252f4eeb04cf3eb0ec1882de32c2ae55a659db6a841446ab756197b20878fc9a7053d687ce05b42ea45c30207cdbb16d8ba8a98256ea38 +DIST rclone-1.59.0.tar.gz 15940750 BLAKE2B d6923e766e78a88714b9ebbc146947421e5c9f327b2a6ea8f173d203e3cc952439408622bdc07a98ceb473131d338ca8246614e808e26085f829c971eccd32fe SHA512 a6cb27687b5d4ca6f2a3597b16d6b00d212bbe0bc8542c399c597bc52d827254d41fa0aa67457677cc4ae53d5b264aef09aaa74d80d5a84e4efe9d40f3042b61 DIST rsc.io%2Fbinaryregexp%2F@v%2Fv0.2.0.mod 36 BLAKE2B 61110bed2b9e99e0250cf6e8b842257202c89b3462edf9368b73cab29f9dbd4dcc66c3e290a1d6329b7d62321eecc52082a8c4c0797eac743a29a8a00910a93f SHA512 db50ff677b0bdccbc1a1ad3df7c5cc76f2fcccf3ab99d08d1c2868440eb9b893fe89452f4286f7d42f2f16abf0f4acda67fe86e174dcfa730a743aafcc166774 DIST rsc.io%2Fquote%2Fv3%2F@v%2Fv3.1.0.mod 55 BLAKE2B f1f0ba35f0ffd200ed37c06b2025c1fd436e3fd857bd525b9295c0cbcade7e1f037e3f566124a7ef428384d50525426f0d40468c967e39bac6057174710e2566 SHA512 e6357ddd7d09692c60e59e6cb80469ade8284052cdd3ea520ec4dbcb42c1cabe045c599e43cce94bec022bd82e87a554ecac42f8c917cf2ff44daff9c1a147d5 DIST rsc.io%2Fsampler%2F@v%2Fv1.3.0.mod 88 BLAKE2B c2ac3c9619e396db470c9951dfc11cdacccd56ae09b3b353015ee7e5fbb023df288dbf48d81b44c309241d1ea89a2e0ee42ee1d17e536fcfa531aaee0e651ab7 SHA512 2137507eb25fbae419605e0cd6bca4cfa584110eebc276cd759a4dcb6f97e52928e5b2d9b276e76bcabcec3bbfc2c42f97fa29f54695d27fb00f9423e1638863 diff --git a/net-misc/rclone/rclone-1.59.0.ebuild b/net-misc/rclone/rclone-1.59.0.ebuild new file mode 100644 index ..7c77180a06c2 --- /dev/null +++ b/net-misc/rclone/rclone-1.59.0.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2022 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 ~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="" + +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} +}
[gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/
commit: f90926b8333bb955ccb65bed6ad57b79392c21ef Author: Piotr Karbowski gentoo org> AuthorDate: Mon May 2 20:39:16 2022 + Commit: Piotr Karbowski gentoo org> CommitDate: Mon May 2 20:39:16 2022 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f90926b8 net-misc/rclone: 1.58.1 bump; join as maintainer. Signed-off-by: Piotr Karbowski gentoo.org> net-misc/rclone/Manifest | 2 ++ net-misc/rclone/metadata.xml | 4 net-misc/rclone/rclone-1.58.1.ebuild | 41 3 files changed, 47 insertions(+) diff --git a/net-misc/rclone/Manifest b/net-misc/rclone/Manifest index 744d807f6dda..670419f6730b 100644 --- a/net-misc/rclone/Manifest +++ b/net-misc/rclone/Manifest @@ -1399,6 +1399,8 @@ DIST honnef.co%2Fgo%2Ftools%2F@v%2Fv0.0.1-2020.1.4.mod 300 BLAKE2B 3aa707c72ce7e DIST honnef.co%2Fgo%2Ftools%2F@v%2Fv0.0.1-2020.1.4.zip 561290 BLAKE2B 2bdf9fb92ee838f5a9112bc5e3ace3e1cdc7a4dd5b3940c94b36abdbd6def28f9629a49e9ec901a32b76c944cc82af19f0f99f281b15ce666ebf153d062bc052 SHA512 9d01facc2b973a45604ac010f0bf0ec6aa3121966eaea6d7e1ac15869a8f5892077c3bbf0cbc21517890e24379848b8def33bf7dee7b1152ce232dd996ad017f DIST rclone-1.53.3.tar.gz 14714224 BLAKE2B 0669bd046484867febe6ae201153540c40ce213d5a25eab84e84c97e577012a19423c89a1bc88ac0450ab58279fdd41e746fba266c96618bd0c19983cba3a205 SHA512 17d0ccf1165bc9d36e2aae5729dded2ccc6ecddd8a9902f1ca6b2bb26628afa99f58da5521ec5a1ebb27e8ea04cb736f88279603eeaeb0740cfe633cbe9de083 DIST rclone-1.57.0.tar.gz 15443082 BLAKE2B 35b930d1a2234d3887e046f676850e88c07b2fcddaec3d1f44be52cebe2f79cf76bfb2ecce1081e4f3448be505d0e5eddd98f6481c43c4512cab6f160b50261c SHA512 d0428263b8ee1779f96176574dc17adb73668d56b9dcf6894a0aae4db2990148d785226defa520143df788d4401e1f297faa5c5c645d3c8503c796c06a1d3229 +DIST rclone-1.58.1-deps.tar.xz 201798856 BLAKE2B e739b038953292e78161a40c3bd2753e4172b1e330109a4ad0aa5a10255a165c2ae1a4cbd191aeff3bee98c2b2ffd5c9f142bd290ef41fe0ab560baf43cb9702 SHA512 f40f00da9da7b6535ee1de2a120e047522e50e9341bf30ca8f0b01559621ed7474a59d925a88393600a90120818233eaa45ee44727b12336a7d48f3e2dfe550b +DIST rclone-1.58.1.tar.gz 15696598 BLAKE2B 601d60c5a1facc18bd6c157bf017ff8c0793fe4ca0bd8e8b719ad457882829919b18085c54a606c8880b60199c50b4a8f8fb7e73ca2c200efa899b8bcb7e0b63 SHA512 104ff2e743374ad3d0f3c517e34ac068d6439445732bc3ce4ffe8fbc13e7d2b4285518e8037c5600589425e001c26e334c7e31d12f9a476af958cb47097c4e00 DIST rsc.io%2Fbinaryregexp%2F@v%2Fv0.2.0.mod 36 BLAKE2B 61110bed2b9e99e0250cf6e8b842257202c89b3462edf9368b73cab29f9dbd4dcc66c3e290a1d6329b7d62321eecc52082a8c4c0797eac743a29a8a00910a93f SHA512 db50ff677b0bdccbc1a1ad3df7c5cc76f2fcccf3ab99d08d1c2868440eb9b893fe89452f4286f7d42f2f16abf0f4acda67fe86e174dcfa730a743aafcc166774 DIST rsc.io%2Fquote%2Fv3%2F@v%2Fv3.1.0.mod 55 BLAKE2B f1f0ba35f0ffd200ed37c06b2025c1fd436e3fd857bd525b9295c0cbcade7e1f037e3f566124a7ef428384d50525426f0d40468c967e39bac6057174710e2566 SHA512 e6357ddd7d09692c60e59e6cb80469ade8284052cdd3ea520ec4dbcb42c1cabe045c599e43cce94bec022bd82e87a554ecac42f8c917cf2ff44daff9c1a147d5 DIST rsc.io%2Fsampler%2F@v%2Fv1.3.0.mod 88 BLAKE2B c2ac3c9619e396db470c9951dfc11cdacccd56ae09b3b353015ee7e5fbb023df288dbf48d81b44c309241d1ea89a2e0ee42ee1d17e536fcfa531aaee0e651ab7 SHA512 2137507eb25fbae419605e0cd6bca4cfa584110eebc276cd759a4dcb6f97e52928e5b2d9b276e76bcabcec3bbfc2c42f97fa29f54695d27fb00f9423e1638863 diff --git a/net-misc/rclone/metadata.xml b/net-misc/rclone/metadata.xml index e85252a96df1..de4f6ee3f2e3 100644 --- a/net-misc/rclone/metadata.xml +++ b/net-misc/rclone/metadata.xml @@ -5,4 +5,8 @@ perfin...@gentoo.org Jason Zaman + + slashbe...@gentoo.org + Piotr Karbowski + diff --git a/net-misc/rclone/rclone-1.58.1.ebuild b/net-misc/rclone/rclone-1.58.1.ebuild new file mode 100644 index ..7c77180a06c2 --- /dev/null +++ b/net-misc/rclone/rclone-1.58.1.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2022 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 ~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="" + +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 + +
[gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/
commit: 8958293c56dd55924d79042def525a597153fcd6 Author: Jason Zaman gentoo org> AuthorDate: Sat Jan 2 07:09:09 2021 + Commit: Jason Zaman gentoo org> CommitDate: Sat Jan 2 07:19:33 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8958293c net-misc/rclone: Stable 1.53.3 for security fix Bug: https://bugs.gentoo.org/755638 Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Jason Zaman gentoo.org> net-misc/rclone/rclone-1.53.3.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net-misc/rclone/rclone-1.53.3.ebuild b/net-misc/rclone/rclone-1.53.3.ebuild index e03fdea8d98..454851f221e 100644 --- a/net-misc/rclone/rclone-1.53.3.ebuild +++ b/net-misc/rclone/rclone-1.53.3.ebuild @@ -796,7 +796,7 @@ EGO_SUM=( ) go-module_set_globals - KEYWORDS="~amd64 ~arm ~arm64 ~x86" + KEYWORDS="amd64 ~arm ~arm64 x86" SRC_URI="https://github.com/rclone/rclone/archive/v${PV}.tar.gz -> ${P}.tar.gz ${EGO_SUM_SRC_URI}" fi
[gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/
commit: 0096c84f139b209ea27c3832e20724fff35b3bd9 Author: Jason Zaman gentoo org> AuthorDate: Sat Jan 2 07:11:28 2021 + Commit: Jason Zaman gentoo org> CommitDate: Sat Jan 2 07:19:34 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0096c84f net-misc/rclone: drop old Bug: https://bugs.gentoo.org/755638 Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Jason Zaman gentoo.org> net-misc/rclone/Manifest | 2 - net-misc/rclone/rclone-1.52.2.ebuild | 36 -- net-misc/rclone/rclone-1.53.0.ebuild | 835 --- 3 files changed, 873 deletions(-) diff --git a/net-misc/rclone/Manifest b/net-misc/rclone/Manifest index d1e941af528..b88762fa99e 100644 --- a/net-misc/rclone/Manifest +++ b/net-misc/rclone/Manifest @@ -772,8 +772,6 @@ DIST honnef.co%2Fgo%2Ftools%2F@v%2Fv0.0.1-2019.2.3.mod 300 BLAKE2B 3e3f5a2be0918 DIST honnef.co%2Fgo%2Ftools%2F@v%2Fv0.0.1-2020.1.3.mod 300 BLAKE2B 3aa707c72ce7e402cc1765fed30253eb87e9e87aecc8096130e973623f53ded2a7572ca3d464e4db9de524cd651b3aa8fbc9fa0ef6bdc4eb9670b4d8652f4dfc SHA512 d814675e448688f6a506397bedb262fb2583c913ec1f8ca9ffc11206bdcd7e1f4ee3c561aee366eb2cdaede8c522a6f58f116236f3033bc7e91ec139bdd140f9 DIST honnef.co%2Fgo%2Ftools%2F@v%2Fv0.0.1-2020.1.4.mod 300 BLAKE2B 3aa707c72ce7e402cc1765fed30253eb87e9e87aecc8096130e973623f53ded2a7572ca3d464e4db9de524cd651b3aa8fbc9fa0ef6bdc4eb9670b4d8652f4dfc SHA512 d814675e448688f6a506397bedb262fb2583c913ec1f8ca9ffc11206bdcd7e1f4ee3c561aee366eb2cdaede8c522a6f58f116236f3033bc7e91ec139bdd140f9 DIST honnef.co%2Fgo%2Ftools%2F@v%2Fv0.0.1-2020.1.4.zip 561290 BLAKE2B 2bdf9fb92ee838f5a9112bc5e3ace3e1cdc7a4dd5b3940c94b36abdbd6def28f9629a49e9ec901a32b76c944cc82af19f0f99f281b15ce666ebf153d062bc052 SHA512 9d01facc2b973a45604ac010f0bf0ec6aa3121966eaea6d7e1ac15869a8f5892077c3bbf0cbc21517890e24379848b8def33bf7dee7b1152ce232dd996ad017f -DIST rclone-1.52.2.tar.gz 19515310 BLAKE2B 50ba7085d8994f7faf9e723d5a14ef5db0ce1dfdf9ab11394c26e9c8bb20dd62f0a20cd7925f3fc5b870a4eadb7ea7323dea1d0793a51b7c58b10e37676e3581 SHA512 f49f0dcf8bfa105b01b35921daa655a6c1161f6505e2299f027a4059d196adcc673038b1718320e6f0b8bb053fad8d2de7714f66fa245dd90ea0a791e848a418 -DIST rclone-1.53.0.tar.gz 14698622 BLAKE2B cd7fe439f8d657f49feaeb7552fd2efda375a5bb2666d610a678ace6e5a0ecca1d27c8c325ebd935e4fdd7500e6f7baec0e1c70cff0ace411644376c77874e1c SHA512 8313f56d8e597aa08dd322356c21eb1716bf8d969e2e0e8c6054881db1a703c6c4e6c619b4f7f3a5ca12266c003412130868e271ee6eff952a25e4e4ac40ee59 DIST rclone-1.53.3.tar.gz 14714224 BLAKE2B 0669bd046484867febe6ae201153540c40ce213d5a25eab84e84c97e577012a19423c89a1bc88ac0450ab58279fdd41e746fba266c96618bd0c19983cba3a205 SHA512 17d0ccf1165bc9d36e2aae5729dded2ccc6ecddd8a9902f1ca6b2bb26628afa99f58da5521ec5a1ebb27e8ea04cb736f88279603eeaeb0740cfe633cbe9de083 DIST rsc.io%2Fbinaryregexp%2F@v%2Fv0.2.0.mod 36 BLAKE2B 61110bed2b9e99e0250cf6e8b842257202c89b3462edf9368b73cab29f9dbd4dcc66c3e290a1d6329b7d62321eecc52082a8c4c0797eac743a29a8a00910a93f SHA512 db50ff677b0bdccbc1a1ad3df7c5cc76f2fcccf3ab99d08d1c2868440eb9b893fe89452f4286f7d42f2f16abf0f4acda67fe86e174dcfa730a743aafcc166774 DIST rsc.io%2Fquote%2Fv3%2F@v%2Fv3.1.0.mod 55 BLAKE2B f1f0ba35f0ffd200ed37c06b2025c1fd436e3fd857bd525b9295c0cbcade7e1f037e3f566124a7ef428384d50525426f0d40468c967e39bac6057174710e2566 SHA512 e6357ddd7d09692c60e59e6cb80469ade8284052cdd3ea520ec4dbcb42c1cabe045c599e43cce94bec022bd82e87a554ecac42f8c917cf2ff44daff9c1a147d5 diff --git a/net-misc/rclone/rclone-1.52.2.ebuild b/net-misc/rclone/rclone-1.52.2.ebuild deleted file mode 100644 index 9617d4c91b1..000 --- a/net-misc/rclone/rclone-1.52.2.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -inherit bash-completion-r1 go-module - -if [[ ${PV} == ** ]]; then - inherit git-r3 -else - KEYWORDS="amd64 ~arm ~arm64 x86" - SRC_URI="https://github.com/rclone/rclone/archive/v${PV}.tar.gz -> ${P}.tar.gz" -fi - -DESCRIPTION="A program to sync files to and from various cloud storage providers" -HOMEPAGE="https://rclone.org/"; - -LICENSE="MIT" -SLOT="0" -IUSE="" - -src_compile() { - go build -mod=vendor . || die "compile 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.53.0.ebuild b/net-misc/rclone/rclone-1.53.0.ebuild deleted file mode 100644 index 1066e69c03e..000 --- a/net-misc/rclone/rclone-1.53.0.ebuild +++ /dev/null @@ -1,835 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -inherit bash-comple
[gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/
commit: 13c182a7472d3b271f61411f2c4cc2947a0721ee Author: Jason Zaman gentoo org> AuthorDate: Sat Jan 2 07:06:21 2021 + Commit: Jason Zaman gentoo org> CommitDate: Sat Jan 2 07:19:32 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=13c182a7 net-misc/rclone: bump 1.53.3 Closes: https://bugs.gentoo.org/759451 Bug: https://bugs.gentoo.org/755638 Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Jason Zaman gentoo.org> net-misc/rclone/Manifest | 1 + net-misc/rclone/rclone-1.53.3.ebuild | 835 +++ 2 files changed, 836 insertions(+) diff --git a/net-misc/rclone/Manifest b/net-misc/rclone/Manifest index e10ea17e6ce..d1e941af528 100644 --- a/net-misc/rclone/Manifest +++ b/net-misc/rclone/Manifest @@ -774,6 +774,7 @@ DIST honnef.co%2Fgo%2Ftools%2F@v%2Fv0.0.1-2020.1.4.mod 300 BLAKE2B 3aa707c72ce7e DIST honnef.co%2Fgo%2Ftools%2F@v%2Fv0.0.1-2020.1.4.zip 561290 BLAKE2B 2bdf9fb92ee838f5a9112bc5e3ace3e1cdc7a4dd5b3940c94b36abdbd6def28f9629a49e9ec901a32b76c944cc82af19f0f99f281b15ce666ebf153d062bc052 SHA512 9d01facc2b973a45604ac010f0bf0ec6aa3121966eaea6d7e1ac15869a8f5892077c3bbf0cbc21517890e24379848b8def33bf7dee7b1152ce232dd996ad017f DIST rclone-1.52.2.tar.gz 19515310 BLAKE2B 50ba7085d8994f7faf9e723d5a14ef5db0ce1dfdf9ab11394c26e9c8bb20dd62f0a20cd7925f3fc5b870a4eadb7ea7323dea1d0793a51b7c58b10e37676e3581 SHA512 f49f0dcf8bfa105b01b35921daa655a6c1161f6505e2299f027a4059d196adcc673038b1718320e6f0b8bb053fad8d2de7714f66fa245dd90ea0a791e848a418 DIST rclone-1.53.0.tar.gz 14698622 BLAKE2B cd7fe439f8d657f49feaeb7552fd2efda375a5bb2666d610a678ace6e5a0ecca1d27c8c325ebd935e4fdd7500e6f7baec0e1c70cff0ace411644376c77874e1c SHA512 8313f56d8e597aa08dd322356c21eb1716bf8d969e2e0e8c6054881db1a703c6c4e6c619b4f7f3a5ca12266c003412130868e271ee6eff952a25e4e4ac40ee59 +DIST rclone-1.53.3.tar.gz 14714224 BLAKE2B 0669bd046484867febe6ae201153540c40ce213d5a25eab84e84c97e577012a19423c89a1bc88ac0450ab58279fdd41e746fba266c96618bd0c19983cba3a205 SHA512 17d0ccf1165bc9d36e2aae5729dded2ccc6ecddd8a9902f1ca6b2bb26628afa99f58da5521ec5a1ebb27e8ea04cb736f88279603eeaeb0740cfe633cbe9de083 DIST rsc.io%2Fbinaryregexp%2F@v%2Fv0.2.0.mod 36 BLAKE2B 61110bed2b9e99e0250cf6e8b842257202c89b3462edf9368b73cab29f9dbd4dcc66c3e290a1d6329b7d62321eecc52082a8c4c0797eac743a29a8a00910a93f SHA512 db50ff677b0bdccbc1a1ad3df7c5cc76f2fcccf3ab99d08d1c2868440eb9b893fe89452f4286f7d42f2f16abf0f4acda67fe86e174dcfa730a743aafcc166774 DIST rsc.io%2Fquote%2Fv3%2F@v%2Fv3.1.0.mod 55 BLAKE2B f1f0ba35f0ffd200ed37c06b2025c1fd436e3fd857bd525b9295c0cbcade7e1f037e3f566124a7ef428384d50525426f0d40468c967e39bac6057174710e2566 SHA512 e6357ddd7d09692c60e59e6cb80469ade8284052cdd3ea520ec4dbcb42c1cabe045c599e43cce94bec022bd82e87a554ecac42f8c917cf2ff44daff9c1a147d5 DIST rsc.io%2Fsampler%2F@v%2Fv1.3.0.mod 88 BLAKE2B c2ac3c9619e396db470c9951dfc11cdacccd56ae09b3b353015ee7e5fbb023df288dbf48d81b44c309241d1ea89a2e0ee42ee1d17e536fcfa531aaee0e651ab7 SHA512 2137507eb25fbae419605e0cd6bca4cfa584110eebc276cd759a4dcb6f97e52928e5b2d9b276e76bcabcec3bbfc2c42f97fa29f54695d27fb00f9423e1638863 diff --git a/net-misc/rclone/rclone-1.53.3.ebuild b/net-misc/rclone/rclone-1.53.3.ebuild new file mode 100644 index 000..e03fdea8d98 --- /dev/null +++ b/net-misc/rclone/rclone-1.53.3.ebuild @@ -0,0 +1,835 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +inherit bash-completion-r1 go-module + +if [[ ${PV} == * ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/rclone/rclone.git"; +else + +EGO_SUM=( + "bazil.org/fuse v0.0.0-20200407214033-5883e5a4b512" + "bazil.org/fuse v0.0.0-20200407214033-5883e5a4b512/go.mod" + "cloud.google.com/go v0.26.0/go.mod" + "cloud.google.com/go v0.34.0/go.mod" + "cloud.google.com/go v0.38.0/go.mod" + "cloud.google.com/go v0.44.1/go.mod" + "cloud.google.com/go v0.44.2/go.mod" + "cloud.google.com/go v0.45.1/go.mod" + "cloud.google.com/go v0.46.3/go.mod" + "cloud.google.com/go v0.50.0/go.mod" + "cloud.google.com/go v0.52.0/go.mod" + "cloud.google.com/go v0.53.0/go.mod" + "cloud.google.com/go v0.54.0/go.mod" + "cloud.google.com/go v0.56.0" + "cloud.google.com/go v0.56.0/go.mod" + "cloud.google.com/go v0.57.0/go.mod" + "cloud.google.com/go v0.59.0" + "cloud.google.com/go v0.59.0/go.mod" + "cloud.google.com/go/bigquery v1.0.1/go.mod" + "cloud.google.com/go/bigquery v1.3.0/go.mod" + "cloud.google.com/go/bigquery v1.4.0/go.mod" + "cloud.google.com/go/bigquery v1.5.0/go.mod" + "cloud.google.com/go/bigquery v1.7.0/go.mod" + "cloud.google.com/go/bigquery v1.8.0/go.mod" + "cloud.google.com/go/datastore v1.0.0/go.mod" + "cloud.google.com/go/datastore v1.1.0/go.mod" + "cloud.google.com/go/pubsub v1.0.1/go.mod" + "cloud.google.co
[gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/
commit: ef73a40c32ee2f335a49f057a3a08f7514327db9 Author: Alexander Kurakin mail ru> AuthorDate: Sun Jul 12 08:57:55 2020 + Commit: Jason Zaman gentoo org> CommitDate: Mon Sep 7 09:32:40 2020 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef73a40c net-misc/rclone: bump 1.52.2 Closes: https://bugs.gentoo.org/732318 Signed-off-by: Alexander Kurakin mail.ru> Signed-off-by: Jason Zaman gentoo.org> net-misc/rclone/Manifest | 1 + net-misc/rclone/rclone-1.52.2.ebuild | 36 2 files changed, 37 insertions(+) diff --git a/net-misc/rclone/Manifest b/net-misc/rclone/Manifest index 54d68761a9b..481e7f93879 100644 --- a/net-misc/rclone/Manifest +++ b/net-misc/rclone/Manifest @@ -1,2 +1,3 @@ DIST rclone-1.51.0.tar.gz 18835242 BLAKE2B 5798a844c893e111e73ae409adcb06fd4291df3c0319bf983f2336ada45a60df253e750397bead55278cbb497c541a63498f695ce03af7b6cc1056f022ad2748 SHA512 b0881e09b75093abe4d31e95425a90513aed4a16d9e2dbf79023c9dc68875b90a1332204879530c450a16ab9cac475d967f7657d6f810a1e0f0d84b88d7de916 DIST rclone-1.52.1.tar.gz 20029046 BLAKE2B 0dc7deebf1d362c1b7ad466991c3fc481c62d4c5803e5fa768dbe09adecfc79c2af9dcc19e7621542b464325b03be1390eff54d165c8c899c48adfac63b6cd7a SHA512 bbd305074071986cf6fb8146c634e35c28e1ea8ce2ce95507c55b95cb19eb3b1453dfb11e365bef5948978328d91df44b936b866c49db26149a17f5ca451ba15 +DIST rclone-1.52.2.tar.gz 19515310 BLAKE2B 50ba7085d8994f7faf9e723d5a14ef5db0ce1dfdf9ab11394c26e9c8bb20dd62f0a20cd7925f3fc5b870a4eadb7ea7323dea1d0793a51b7c58b10e37676e3581 SHA512 f49f0dcf8bfa105b01b35921daa655a6c1161f6505e2299f027a4059d196adcc673038b1718320e6f0b8bb053fad8d2de7714f66fa245dd90ea0a791e848a418 diff --git a/net-misc/rclone/rclone-1.52.2.ebuild b/net-misc/rclone/rclone-1.52.2.ebuild new file mode 100644 index 000..18755cd5a7e --- /dev/null +++ b/net-misc/rclone/rclone-1.52.2.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +inherit bash-completion-r1 go-module + +if [[ ${PV} == ** ]]; then + inherit git-r3 +else + KEYWORDS="~amd64 ~arm ~arm64 ~x86" + SRC_URI="https://github.com/rclone/rclone/archive/v${PV}.tar.gz -> ${P}.tar.gz" +fi + +DESCRIPTION="A program to sync files to and from various cloud storage providers" +HOMEPAGE="https://rclone.org/"; + +LICENSE="MIT" +SLOT="0" +IUSE="" + +src_compile() { + go build -mod=vendor . || die "compile 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} +}
[gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/
commit: 346c9d55988e1ebe799cd6cbd69eafbaa4cb1241 Author: Jason Zaman gentoo org> AuthorDate: Mon Sep 7 06:08:19 2020 + Commit: Jason Zaman gentoo org> CommitDate: Mon Sep 7 09:32:44 2020 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=346c9d55 net-misc/rclone: drop old Package-Manager: Portage-2.3.103, Repoman-2.3.23 Signed-off-by: Jason Zaman gentoo.org> net-misc/rclone/Manifest | 2 -- net-misc/rclone/rclone-1.51.0.ebuild | 39 net-misc/rclone/rclone-1.52.1.ebuild | 36 - 3 files changed, 77 deletions(-) diff --git a/net-misc/rclone/Manifest b/net-misc/rclone/Manifest index 481e7f93879..30588d8e2a5 100644 --- a/net-misc/rclone/Manifest +++ b/net-misc/rclone/Manifest @@ -1,3 +1 @@ -DIST rclone-1.51.0.tar.gz 18835242 BLAKE2B 5798a844c893e111e73ae409adcb06fd4291df3c0319bf983f2336ada45a60df253e750397bead55278cbb497c541a63498f695ce03af7b6cc1056f022ad2748 SHA512 b0881e09b75093abe4d31e95425a90513aed4a16d9e2dbf79023c9dc68875b90a1332204879530c450a16ab9cac475d967f7657d6f810a1e0f0d84b88d7de916 -DIST rclone-1.52.1.tar.gz 20029046 BLAKE2B 0dc7deebf1d362c1b7ad466991c3fc481c62d4c5803e5fa768dbe09adecfc79c2af9dcc19e7621542b464325b03be1390eff54d165c8c899c48adfac63b6cd7a SHA512 bbd305074071986cf6fb8146c634e35c28e1ea8ce2ce95507c55b95cb19eb3b1453dfb11e365bef5948978328d91df44b936b866c49db26149a17f5ca451ba15 DIST rclone-1.52.2.tar.gz 19515310 BLAKE2B 50ba7085d8994f7faf9e723d5a14ef5db0ce1dfdf9ab11394c26e9c8bb20dd62f0a20cd7925f3fc5b870a4eadb7ea7323dea1d0793a51b7c58b10e37676e3581 SHA512 f49f0dcf8bfa105b01b35921daa655a6c1161f6505e2299f027a4059d196adcc673038b1718320e6f0b8bb053fad8d2de7714f66fa245dd90ea0a791e848a418 diff --git a/net-misc/rclone/rclone-1.51.0.ebuild b/net-misc/rclone/rclone-1.51.0.ebuild deleted file mode 100644 index 380576cdebc..000 --- a/net-misc/rclone/rclone-1.51.0.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit golang-build bash-completion-r1 -EGO_PN="github.com/rclone/${PN}" - -if [[ ${PV} == ** ]]; then - inherit golang-vcs -else - KEYWORDS="amd64 ~arm ~arm64 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" -IUSE="" - -DEPEND="" -RDEPEND="${DEPEND}" - -src_install() { - dobin ${PN} - doman src/${EGO_PN}/${PN}.1 - dodoc src/${EGO_PN}/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.52.1.ebuild b/net-misc/rclone/rclone-1.52.1.ebuild deleted file mode 100644 index 9617d4c91b1..000 --- a/net-misc/rclone/rclone-1.52.1.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -inherit bash-completion-r1 go-module - -if [[ ${PV} == ** ]]; then - inherit git-r3 -else - KEYWORDS="amd64 ~arm ~arm64 x86" - SRC_URI="https://github.com/rclone/rclone/archive/v${PV}.tar.gz -> ${P}.tar.gz" -fi - -DESCRIPTION="A program to sync files to and from various cloud storage providers" -HOMEPAGE="https://rclone.org/"; - -LICENSE="MIT" -SLOT="0" -IUSE="" - -src_compile() { - go build -mod=vendor . || die "compile 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} -}
[gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/
commit: a68b125f0f6014b80b45a21691592ab79743d091 Author: Jason Zaman gentoo org> AuthorDate: Mon Sep 7 06:00:40 2020 + Commit: Jason Zaman gentoo org> CommitDate: Mon Sep 7 09:32:42 2020 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a68b125f net-misc/rclone: stable 1.52.2 Package-Manager: Portage-2.3.103, Repoman-2.3.23 Signed-off-by: Jason Zaman gentoo.org> net-misc/rclone/rclone-1.52.2.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net-misc/rclone/rclone-1.52.2.ebuild b/net-misc/rclone/rclone-1.52.2.ebuild index 18755cd5a7e..9617d4c91b1 100644 --- a/net-misc/rclone/rclone-1.52.2.ebuild +++ b/net-misc/rclone/rclone-1.52.2.ebuild @@ -7,7 +7,7 @@ inherit bash-completion-r1 go-module if [[ ${PV} == ** ]]; then inherit git-r3 else - KEYWORDS="~amd64 ~arm ~arm64 ~x86" + KEYWORDS="amd64 ~arm ~arm64 x86" SRC_URI="https://github.com/rclone/rclone/archive/v${PV}.tar.gz -> ${P}.tar.gz" fi
[gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/
commit: 91102e85aa1bc0466866ff1d902fe97b14c815da Author: Alexander Kurakin mail ru> AuthorDate: Tue Jun 9 16:54:47 2020 + Commit: Conrad Kostecki gentoo org> CommitDate: Thu Jun 25 20:22:16 2020 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=91102e85 net-misc/rclone: drop old Closes: https://github.com/gentoo/gentoo/pull/16142 Signed-off-by: Alexander Kurakin mail.ru> Signed-off-by: Conrad Kostecki gentoo.org> net-misc/rclone/Manifest | 1 - net-misc/rclone/rclone-1.50.0.ebuild | 39 2 files changed, 40 deletions(-) diff --git a/net-misc/rclone/Manifest b/net-misc/rclone/Manifest index bd02dbddbb5..54d68761a9b 100644 --- a/net-misc/rclone/Manifest +++ b/net-misc/rclone/Manifest @@ -1,3 +1,2 @@ -DIST rclone-1.50.0.tar.gz 18566931 BLAKE2B cfaf983ae972606b8ccc56ba505aec65bd7e6427f0b16f7e6187b079116b47eb3d297a99b505782c2bb5b64a5c8bf4e5b7beaee9dad5718ec952033ceca0945c SHA512 df805dc711ecf60b869ec957d224676643bcb6eac756470d2194338b9cc34e2a657d286d4a4308c743847fc11aa821b106888eb6ab9f04677bc70747c73fc5c1 DIST rclone-1.51.0.tar.gz 18835242 BLAKE2B 5798a844c893e111e73ae409adcb06fd4291df3c0319bf983f2336ada45a60df253e750397bead55278cbb497c541a63498f695ce03af7b6cc1056f022ad2748 SHA512 b0881e09b75093abe4d31e95425a90513aed4a16d9e2dbf79023c9dc68875b90a1332204879530c450a16ab9cac475d967f7657d6f810a1e0f0d84b88d7de916 DIST rclone-1.52.1.tar.gz 20029046 BLAKE2B 0dc7deebf1d362c1b7ad466991c3fc481c62d4c5803e5fa768dbe09adecfc79c2af9dcc19e7621542b464325b03be1390eff54d165c8c899c48adfac63b6cd7a SHA512 bbd305074071986cf6fb8146c634e35c28e1ea8ce2ce95507c55b95cb19eb3b1453dfb11e365bef5948978328d91df44b936b866c49db26149a17f5ca451ba15 diff --git a/net-misc/rclone/rclone-1.50.0.ebuild b/net-misc/rclone/rclone-1.50.0.ebuild deleted file mode 100644 index 4166391f5fa..000 --- a/net-misc/rclone/rclone-1.50.0.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit golang-build bash-completion-r1 -EGO_PN="github.com/rclone/${PN}" - -if [[ ${PV} == ** ]]; 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" -IUSE="" - -DEPEND="" -RDEPEND="${DEPEND}" - -src_install() { - dobin ${PN} - doman src/${EGO_PN}/${PN}.1 - dodoc src/${EGO_PN}/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} -}
[gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/
commit: 051425d0b42155f08e3c5b20185e57fb0a6d8613 Author: Alexander Kurakin mail ru> AuthorDate: Mon Jun 15 11:59:55 2020 + Commit: Thomas Deutschmann gentoo org> CommitDate: Sat Jun 20 20:30:50 2020 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=051425d0 net-misc/rclone-1.52.1 version bump Closes: https://bugs.gentoo.org/728356 Signed-off-by: Alexander Kurakin mail.ru> Closes: https://github.com/gentoo/gentoo/pull/16250 Signed-off-by: Thomas Deutschmann gentoo.org> net-misc/rclone/Manifest | 1 + net-misc/rclone/rclone-1.52.1.ebuild | 39 2 files changed, 40 insertions(+) diff --git a/net-misc/rclone/Manifest b/net-misc/rclone/Manifest index 0d1de908f84..bd02dbddbb5 100644 --- a/net-misc/rclone/Manifest +++ b/net-misc/rclone/Manifest @@ -1,2 +1,3 @@ DIST rclone-1.50.0.tar.gz 18566931 BLAKE2B cfaf983ae972606b8ccc56ba505aec65bd7e6427f0b16f7e6187b079116b47eb3d297a99b505782c2bb5b64a5c8bf4e5b7beaee9dad5718ec952033ceca0945c SHA512 df805dc711ecf60b869ec957d224676643bcb6eac756470d2194338b9cc34e2a657d286d4a4308c743847fc11aa821b106888eb6ab9f04677bc70747c73fc5c1 DIST rclone-1.51.0.tar.gz 18835242 BLAKE2B 5798a844c893e111e73ae409adcb06fd4291df3c0319bf983f2336ada45a60df253e750397bead55278cbb497c541a63498f695ce03af7b6cc1056f022ad2748 SHA512 b0881e09b75093abe4d31e95425a90513aed4a16d9e2dbf79023c9dc68875b90a1332204879530c450a16ab9cac475d967f7657d6f810a1e0f0d84b88d7de916 +DIST rclone-1.52.1.tar.gz 20029046 BLAKE2B 0dc7deebf1d362c1b7ad466991c3fc481c62d4c5803e5fa768dbe09adecfc79c2af9dcc19e7621542b464325b03be1390eff54d165c8c899c48adfac63b6cd7a SHA512 bbd305074071986cf6fb8146c634e35c28e1ea8ce2ce95507c55b95cb19eb3b1453dfb11e365bef5948978328d91df44b936b866c49db26149a17f5ca451ba15 diff --git a/net-misc/rclone/rclone-1.52.1.ebuild b/net-misc/rclone/rclone-1.52.1.ebuild new file mode 100644 index 000..380576cdebc --- /dev/null +++ b/net-misc/rclone/rclone-1.52.1.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit golang-build bash-completion-r1 +EGO_PN="github.com/rclone/${PN}" + +if [[ ${PV} == ** ]]; then + inherit golang-vcs +else + KEYWORDS="amd64 ~arm ~arm64 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" +IUSE="" + +DEPEND="" +RDEPEND="${DEPEND}" + +src_install() { + dobin ${PN} + doman src/${EGO_PN}/${PN}.1 + dodoc src/${EGO_PN}/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} +}
[gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/
commit: 6c783be8cd3fa067d0860128cee858b02f9ae2f6 Author: Agostino Sarubbo gentoo org> AuthorDate: Tue Jun 9 13:53:09 2020 + Commit: Agostino Sarubbo gentoo org> CommitDate: Tue Jun 9 13:53:09 2020 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c783be8 net-misc/rclone: x86 stable wrt bug #722728 Package-Manager: Portage-2.3.99, Repoman-2.3.22 RepoMan-Options: --include-arches="x86" Signed-off-by: Agostino Sarubbo gentoo.org> net-misc/rclone/rclone-1.51.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net-misc/rclone/rclone-1.51.0.ebuild b/net-misc/rclone/rclone-1.51.0.ebuild index 5726d35b3b2..380576cdebc 100644 --- a/net-misc/rclone/rclone-1.51.0.ebuild +++ b/net-misc/rclone/rclone-1.51.0.ebuild @@ -9,7 +9,7 @@ EGO_PN="github.com/rclone/${PN}" if [[ ${PV} == ** ]]; then inherit golang-vcs else - KEYWORDS="amd64 ~arm ~arm64 ~x86" + KEYWORDS="amd64 ~arm ~arm64 x86" EGIT_COMMIT="v${PV}" SRC_URI="https://${EGO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz" inherit golang-vcs-snapshot
[gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/
commit: 8cb1726cf32c10e4924741318b1c2aa3d09c25c3 Author: Agostino Sarubbo gentoo org> AuthorDate: Tue Jun 9 13:45:04 2020 + Commit: Agostino Sarubbo gentoo org> CommitDate: Tue Jun 9 13:45:04 2020 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8cb1726c net-misc/rclone: amd64 stable wrt bug #722728 Package-Manager: Portage-2.3.99, Repoman-2.3.22 RepoMan-Options: --include-arches="amd64" Signed-off-by: Agostino Sarubbo gentoo.org> net-misc/rclone/rclone-1.51.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net-misc/rclone/rclone-1.51.0.ebuild b/net-misc/rclone/rclone-1.51.0.ebuild index f5858bce5dc..5726d35b3b2 100644 --- a/net-misc/rclone/rclone-1.51.0.ebuild +++ b/net-misc/rclone/rclone-1.51.0.ebuild @@ -9,7 +9,7 @@ EGO_PN="github.com/rclone/${PN}" if [[ ${PV} == ** ]]; then inherit golang-vcs else - KEYWORDS="~amd64 ~arm ~arm64 ~x86" + KEYWORDS="amd64 ~arm ~arm64 ~x86" EGIT_COMMIT="v${PV}" SRC_URI="https://${EGO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz" inherit golang-vcs-snapshot
[gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/
commit: 6f015f6d725307f556e9dc1ae7414e923ac93923 Author: Sam James (sam_c) cmpct info> AuthorDate: Sat Jun 6 17:50:28 2020 + Commit: Mart Raudsepp gentoo org> CommitDate: Sat Jun 6 19:30:48 2020 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f015f6d net-misc/rclone: arm64 keyworded (bug #727328) Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Sam James (sam_c) cmpct.info> Signed-off-by: Mart Raudsepp gentoo.org> net-misc/rclone/rclone-1.51.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net-misc/rclone/rclone-1.51.0.ebuild b/net-misc/rclone/rclone-1.51.0.ebuild index d8704bb0840..f5858bce5dc 100644 --- a/net-misc/rclone/rclone-1.51.0.ebuild +++ b/net-misc/rclone/rclone-1.51.0.ebuild @@ -9,7 +9,7 @@ EGO_PN="github.com/rclone/${PN}" if [[ ${PV} == ** ]]; then inherit golang-vcs else - KEYWORDS="~amd64 ~arm ~x86" + KEYWORDS="~amd64 ~arm ~arm64 ~x86" EGIT_COMMIT="v${PV}" SRC_URI="https://${EGO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz" inherit golang-vcs-snapshot
[gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/
commit: 956acf1eb0b19b765bc4f2c1df7630dc49a49ba6 Author: Alexander Kurakin mail ru> AuthorDate: Fri Feb 21 10:48:40 2020 + Commit: Jason Zaman gentoo org> CommitDate: Sat Feb 29 07:12:35 2020 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=956acf1e net-misc/rclone: drop old Signed-off-by: Alexander Kurakin mail.ru> Signed-off-by: Jason Zaman gentoo.org> net-misc/rclone/Manifest | 4 net-misc/rclone/rclone-1.45.ebuild | 38 --- net-misc/rclone/rclone-1.47.0.ebuild | 38 --- net-misc/rclone/rclone-1.49.1.ebuild | 38 --- net-misc/rclone/rclone-1.50.2.ebuild | 39 5 files changed, 157 deletions(-) diff --git a/net-misc/rclone/Manifest b/net-misc/rclone/Manifest index dbb5de4c317..0d1de908f84 100644 --- a/net-misc/rclone/Manifest +++ b/net-misc/rclone/Manifest @@ -1,6 +1,2 @@ -DIST rclone-1.45.tar.gz 16494131 BLAKE2B 17ca4182af4efe23a367fc38226dc7fe146da55fea47a5f76773f1dcc3d3b629cca7964ffe41aa1e4dbd2fe36bd80545f336d2823a25ebb6b3effc768d4b46d2 SHA512 348dbd6a069f736219b7f925b6aa5234a4d70724ee5bfdb56067241063be36c44a091a37acb3285627803fa013329a6ef804aab4c0070ddaf322c5324b9e2a5a -DIST rclone-1.47.0.tar.gz 17282254 BLAKE2B 57c4f3576427778db0fdc523d8b95b33db5cebfb0081d927abc8925eeaf90c0d2079f1d9572e81faac41e98cfee3028f39c9aed89e6db17188efb3541e3daa6a SHA512 90e68021f589bfad95989b45d91c47da63066e9bc60040052e866d1c7e420bc2784335cc5dbab0e4372c4f8686acb0a65853877c41081c8406eddada42550125 -DIST rclone-1.49.1.tar.gz 18196519 BLAKE2B 22a2f5984f65a64972c40fa845f0b4e5a8d52840ee9dc35463605e3eea399ab01a3b36f1f25a07d5c583829684863b8cbeaf82282e9b59ca994a8fa1d9558ebf SHA512 05b864932fdec7d1bc7185a4e2d33b7bd06b840399f100b1f58806e2ab6f752e4b7cb0f2691cfa92785f45b2f587aebaf7c9e5ab256c2d9b63c262d90ea1e3ac DIST rclone-1.50.0.tar.gz 18566931 BLAKE2B cfaf983ae972606b8ccc56ba505aec65bd7e6427f0b16f7e6187b079116b47eb3d297a99b505782c2bb5b64a5c8bf4e5b7beaee9dad5718ec952033ceca0945c SHA512 df805dc711ecf60b869ec957d224676643bcb6eac756470d2194338b9cc34e2a657d286d4a4308c743847fc11aa821b106888eb6ab9f04677bc70747c73fc5c1 -DIST rclone-1.50.2.tar.gz 18556334 BLAKE2B 4d8f3634928f49a5eae35de4be0cc73339fc35cbd4412b7fd03a2dbf4e45f50524153cd520251d0dd1bca52102511536c7bba0dff207a420e6d84c0ff48827b5 SHA512 30c0088f521132522a5813cf8eb3bdf704c2fefe391ecde3abd3f94969864d7872f095f0f431018b08bdc07f2e867d164311930c5fb51c06bc9581e9067205b2 DIST rclone-1.51.0.tar.gz 18835242 BLAKE2B 5798a844c893e111e73ae409adcb06fd4291df3c0319bf983f2336ada45a60df253e750397bead55278cbb497c541a63498f695ce03af7b6cc1056f022ad2748 SHA512 b0881e09b75093abe4d31e95425a90513aed4a16d9e2dbf79023c9dc68875b90a1332204879530c450a16ab9cac475d967f7657d6f810a1e0f0d84b88d7de916 diff --git a/net-misc/rclone/rclone-1.45.ebuild b/net-misc/rclone/rclone-1.45.ebuild deleted file mode 100644 index e7c1175ae16..000 --- a/net-misc/rclone/rclone-1.45.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -inherit golang-build bash-completion-r1 -EGO_PN="github.com/ncw/${PN}" - -if [[ ${PV} == ** ]]; 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" -IUSE="" - -DEPEND="" -RDEPEND="${DEPEND}" - -src_install() { - dobin ${PN} - doman src/${EGO_PN}/${PN}.1 - dodoc src/${EGO_PN}/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.47.0.ebuild b/net-misc/rclone/rclone-1.47.0.ebuild deleted file mode 100644 index e7c1175ae16..000 --- a/net-misc/rclone/rclone-1.47.0.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -inherit golang-build bash-completion-r1 -EGO_PN="github.com/ncw/${PN}" - -if [[ ${PV} == ** ]]; 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" -IUSE="" - -DEPEND="" -RDEPEND="${DEPEND}" - -src_install() { - dobin ${PN} - doman src/${EGO_PN}/${PN}.1 - dodoc src/${EGO_PN}/REA
[gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/
commit: 09da98dc67ab8c18c70c4f3ec5ffcceeb64d6207 Author: Jason Zaman gentoo org> AuthorDate: Sun Feb 16 13:14:32 2020 + Commit: Jason Zaman gentoo org> CommitDate: Sun Feb 16 13:34:18 2020 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09da98dc net-misc/rclone: stable amd64 x86 Package-Manager: Portage-2.3.84, Repoman-2.3.20 Signed-off-by: Jason Zaman gentoo.org> net-misc/rclone/rclone-1.49.1.ebuild | 4 ++-- net-misc/rclone/rclone-1.50.0.ebuild | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/net-misc/rclone/rclone-1.49.1.ebuild b/net-misc/rclone/rclone-1.49.1.ebuild index 8c2e6519357..a19394f61d0 100644 --- a/net-misc/rclone/rclone-1.49.1.ebuild +++ b/net-misc/rclone/rclone-1.49.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -8,7 +8,7 @@ EGO_PN="github.com/rclone/${PN}" if [[ ${PV} == ** ]]; then inherit golang-vcs else - KEYWORDS="~amd64 ~arm ~x86" + 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 diff --git a/net-misc/rclone/rclone-1.50.0.ebuild b/net-misc/rclone/rclone-1.50.0.ebuild index d8704bb0840..4166391f5fa 100644 --- a/net-misc/rclone/rclone-1.50.0.ebuild +++ b/net-misc/rclone/rclone-1.50.0.ebuild @@ -9,7 +9,7 @@ EGO_PN="github.com/rclone/${PN}" if [[ ${PV} == ** ]]; then inherit golang-vcs else - KEYWORDS="~amd64 ~arm ~x86" + 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
[gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/
commit: 0b5b790d309af6fff824a4e7c12805d0eddaae3e Author: Alexander Kurakin mail ru> AuthorDate: Mon Feb 3 19:39:42 2020 + Commit: Jason Zaman gentoo org> CommitDate: Sun Feb 16 13:34:08 2020 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b5b790d net-misc/rclone-1.51.0 version bump Closes: https://github.com/gentoo/gentoo/pull/14542 Closes: https://bugs.gentoo.org/708084 Signed-off-by: Alexander Kurakin mail.ru> Signed-off-by: Jason Zaman gentoo.org> net-misc/rclone/Manifest | 1 + net-misc/rclone/rclone-1.51.0.ebuild | 39 2 files changed, 40 insertions(+) diff --git a/net-misc/rclone/Manifest b/net-misc/rclone/Manifest index 3fd95c152ea..dbb5de4c317 100644 --- a/net-misc/rclone/Manifest +++ b/net-misc/rclone/Manifest @@ -3,3 +3,4 @@ DIST rclone-1.47.0.tar.gz 17282254 BLAKE2B 57c4f3576427778db0fdc523d8b95b33db5ce DIST rclone-1.49.1.tar.gz 18196519 BLAKE2B 22a2f5984f65a64972c40fa845f0b4e5a8d52840ee9dc35463605e3eea399ab01a3b36f1f25a07d5c583829684863b8cbeaf82282e9b59ca994a8fa1d9558ebf SHA512 05b864932fdec7d1bc7185a4e2d33b7bd06b840399f100b1f58806e2ab6f752e4b7cb0f2691cfa92785f45b2f587aebaf7c9e5ab256c2d9b63c262d90ea1e3ac DIST rclone-1.50.0.tar.gz 18566931 BLAKE2B cfaf983ae972606b8ccc56ba505aec65bd7e6427f0b16f7e6187b079116b47eb3d297a99b505782c2bb5b64a5c8bf4e5b7beaee9dad5718ec952033ceca0945c SHA512 df805dc711ecf60b869ec957d224676643bcb6eac756470d2194338b9cc34e2a657d286d4a4308c743847fc11aa821b106888eb6ab9f04677bc70747c73fc5c1 DIST rclone-1.50.2.tar.gz 18556334 BLAKE2B 4d8f3634928f49a5eae35de4be0cc73339fc35cbd4412b7fd03a2dbf4e45f50524153cd520251d0dd1bca52102511536c7bba0dff207a420e6d84c0ff48827b5 SHA512 30c0088f521132522a5813cf8eb3bdf704c2fefe391ecde3abd3f94969864d7872f095f0f431018b08bdc07f2e867d164311930c5fb51c06bc9581e9067205b2 +DIST rclone-1.51.0.tar.gz 18835242 BLAKE2B 5798a844c893e111e73ae409adcb06fd4291df3c0319bf983f2336ada45a60df253e750397bead55278cbb497c541a63498f695ce03af7b6cc1056f022ad2748 SHA512 b0881e09b75093abe4d31e95425a90513aed4a16d9e2dbf79023c9dc68875b90a1332204879530c450a16ab9cac475d967f7657d6f810a1e0f0d84b88d7de916 diff --git a/net-misc/rclone/rclone-1.51.0.ebuild b/net-misc/rclone/rclone-1.51.0.ebuild new file mode 100644 index 000..d8704bb0840 --- /dev/null +++ b/net-misc/rclone/rclone-1.51.0.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit golang-build bash-completion-r1 +EGO_PN="github.com/rclone/${PN}" + +if [[ ${PV} == ** ]]; 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" +IUSE="" + +DEPEND="" +RDEPEND="${DEPEND}" + +src_install() { + dobin ${PN} + doman src/${EGO_PN}/${PN}.1 + dodoc src/${EGO_PN}/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} +}
[gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/
commit: 5e123286902645db74bb627dd9e2b3051cde5217 Author: Alexander Kurakin mail ru> AuthorDate: Fri Jan 24 20:32:01 2020 + Commit: Jason Zaman gentoo org> CommitDate: Sun Feb 16 13:34:05 2020 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e123286 net-misc/rclone-1.50.2 version bump Closes: https://github.com/gentoo/gentoo/pull/14433 Closes: https://bugs.gentoo.org/706262 Signed-off-by: Alexander Kurakin mail.ru> Signed-off-by: Jason Zaman gentoo.org> net-misc/rclone/Manifest | 1 + net-misc/rclone/rclone-1.50.2.ebuild | 39 2 files changed, 40 insertions(+) diff --git a/net-misc/rclone/Manifest b/net-misc/rclone/Manifest index c25d0f3fb74..3fd95c152ea 100644 --- a/net-misc/rclone/Manifest +++ b/net-misc/rclone/Manifest @@ -2,3 +2,4 @@ DIST rclone-1.45.tar.gz 16494131 BLAKE2B 17ca4182af4efe23a367fc38226dc7fe146da55 DIST rclone-1.47.0.tar.gz 17282254 BLAKE2B 57c4f3576427778db0fdc523d8b95b33db5cebfb0081d927abc8925eeaf90c0d2079f1d9572e81faac41e98cfee3028f39c9aed89e6db17188efb3541e3daa6a SHA512 90e68021f589bfad95989b45d91c47da63066e9bc60040052e866d1c7e420bc2784335cc5dbab0e4372c4f8686acb0a65853877c41081c8406eddada42550125 DIST rclone-1.49.1.tar.gz 18196519 BLAKE2B 22a2f5984f65a64972c40fa845f0b4e5a8d52840ee9dc35463605e3eea399ab01a3b36f1f25a07d5c583829684863b8cbeaf82282e9b59ca994a8fa1d9558ebf SHA512 05b864932fdec7d1bc7185a4e2d33b7bd06b840399f100b1f58806e2ab6f752e4b7cb0f2691cfa92785f45b2f587aebaf7c9e5ab256c2d9b63c262d90ea1e3ac DIST rclone-1.50.0.tar.gz 18566931 BLAKE2B cfaf983ae972606b8ccc56ba505aec65bd7e6427f0b16f7e6187b079116b47eb3d297a99b505782c2bb5b64a5c8bf4e5b7beaee9dad5718ec952033ceca0945c SHA512 df805dc711ecf60b869ec957d224676643bcb6eac756470d2194338b9cc34e2a657d286d4a4308c743847fc11aa821b106888eb6ab9f04677bc70747c73fc5c1 +DIST rclone-1.50.2.tar.gz 18556334 BLAKE2B 4d8f3634928f49a5eae35de4be0cc73339fc35cbd4412b7fd03a2dbf4e45f50524153cd520251d0dd1bca52102511536c7bba0dff207a420e6d84c0ff48827b5 SHA512 30c0088f521132522a5813cf8eb3bdf704c2fefe391ecde3abd3f94969864d7872f095f0f431018b08bdc07f2e867d164311930c5fb51c06bc9581e9067205b2 diff --git a/net-misc/rclone/rclone-1.50.2.ebuild b/net-misc/rclone/rclone-1.50.2.ebuild new file mode 100644 index 000..d8704bb0840 --- /dev/null +++ b/net-misc/rclone/rclone-1.50.2.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit golang-build bash-completion-r1 +EGO_PN="github.com/rclone/${PN}" + +if [[ ${PV} == ** ]]; 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" +IUSE="" + +DEPEND="" +RDEPEND="${DEPEND}" + +src_install() { + dobin ${PN} + doman src/${EGO_PN}/${PN}.1 + dodoc src/${EGO_PN}/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} +}
[gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/
commit: 1fc059708c69d941499c103f7ed78ac1f6e01cb5 Author: Alexander Kurakin mail ru> AuthorDate: Tue Oct 29 15:59:25 2019 + Commit: Jason Zaman gentoo org> CommitDate: Fri Jan 24 19:49:11 2020 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1fc05970 net-misc/rclone-1.50.0 version bump Signed-off-by: Alexander Kurakin mail.ru> Closes: https://bugs.gentoo.org/698854 Signed-off-by: Jason Zaman gentoo.org> net-misc/rclone/Manifest | 1 + net-misc/rclone/{rclone-.ebuild => rclone-1.50.0.ebuild} | 3 ++- net-misc/rclone/rclone-.ebuild | 3 ++- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/net-misc/rclone/Manifest b/net-misc/rclone/Manifest index c1c2696e274..c25d0f3fb74 100644 --- a/net-misc/rclone/Manifest +++ b/net-misc/rclone/Manifest @@ -1,3 +1,4 @@ DIST rclone-1.45.tar.gz 16494131 BLAKE2B 17ca4182af4efe23a367fc38226dc7fe146da55fea47a5f76773f1dcc3d3b629cca7964ffe41aa1e4dbd2fe36bd80545f336d2823a25ebb6b3effc768d4b46d2 SHA512 348dbd6a069f736219b7f925b6aa5234a4d70724ee5bfdb56067241063be36c44a091a37acb3285627803fa013329a6ef804aab4c0070ddaf322c5324b9e2a5a DIST rclone-1.47.0.tar.gz 17282254 BLAKE2B 57c4f3576427778db0fdc523d8b95b33db5cebfb0081d927abc8925eeaf90c0d2079f1d9572e81faac41e98cfee3028f39c9aed89e6db17188efb3541e3daa6a SHA512 90e68021f589bfad95989b45d91c47da63066e9bc60040052e866d1c7e420bc2784335cc5dbab0e4372c4f8686acb0a65853877c41081c8406eddada42550125 DIST rclone-1.49.1.tar.gz 18196519 BLAKE2B 22a2f5984f65a64972c40fa845f0b4e5a8d52840ee9dc35463605e3eea399ab01a3b36f1f25a07d5c583829684863b8cbeaf82282e9b59ca994a8fa1d9558ebf SHA512 05b864932fdec7d1bc7185a4e2d33b7bd06b840399f100b1f58806e2ab6f752e4b7cb0f2691cfa92785f45b2f587aebaf7c9e5ab256c2d9b63c262d90ea1e3ac +DIST rclone-1.50.0.tar.gz 18566931 BLAKE2B cfaf983ae972606b8ccc56ba505aec65bd7e6427f0b16f7e6187b079116b47eb3d297a99b505782c2bb5b64a5c8bf4e5b7beaee9dad5718ec952033ceca0945c SHA512 df805dc711ecf60b869ec957d224676643bcb6eac756470d2194338b9cc34e2a657d286d4a4308c743847fc11aa821b106888eb6ab9f04677bc70747c73fc5c1 diff --git a/net-misc/rclone/rclone-.ebuild b/net-misc/rclone/rclone-1.50.0.ebuild similarity index 99% copy from net-misc/rclone/rclone-.ebuild copy to net-misc/rclone/rclone-1.50.0.ebuild index 8c2e6519357..8bec0f18176 100644 --- a/net-misc/rclone/rclone-.ebuild +++ b/net-misc/rclone/rclone-1.50.0.ebuild @@ -1,7 +1,8 @@ # Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 + inherit golang-build bash-completion-r1 EGO_PN="github.com/rclone/${PN}" diff --git a/net-misc/rclone/rclone-.ebuild b/net-misc/rclone/rclone-.ebuild index 8c2e6519357..8bec0f18176 100644 --- a/net-misc/rclone/rclone-.ebuild +++ b/net-misc/rclone/rclone-.ebuild @@ -1,7 +1,8 @@ # Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 + inherit golang-build bash-completion-r1 EGO_PN="github.com/rclone/${PN}"
[gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/
commit: 0058cac06ae7c8f08fda45673f71aaa83eca9788 Author: Jason Zaman gentoo org> AuthorDate: Fri Oct 18 12:39:01 2019 + Commit: Jason Zaman gentoo org> CommitDate: Fri Oct 18 12:54:12 2019 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0058cac0 net-misc/rclone: bump 1.49.1 Closes: https://bugs.gentoo.org/688328 Package-Manager: Portage-2.3.76, Repoman-2.3.16 Signed-off-by: Jason Zaman gentoo.org> net-misc/rclone/Manifest | 1 + net-misc/rclone/{rclone-.ebuild => rclone-1.49.1.ebuild} | 2 +- net-misc/rclone/rclone-.ebuild | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/net-misc/rclone/Manifest b/net-misc/rclone/Manifest index 732f6d5507c..c1c2696e274 100644 --- a/net-misc/rclone/Manifest +++ b/net-misc/rclone/Manifest @@ -1,2 +1,3 @@ DIST rclone-1.45.tar.gz 16494131 BLAKE2B 17ca4182af4efe23a367fc38226dc7fe146da55fea47a5f76773f1dcc3d3b629cca7964ffe41aa1e4dbd2fe36bd80545f336d2823a25ebb6b3effc768d4b46d2 SHA512 348dbd6a069f736219b7f925b6aa5234a4d70724ee5bfdb56067241063be36c44a091a37acb3285627803fa013329a6ef804aab4c0070ddaf322c5324b9e2a5a DIST rclone-1.47.0.tar.gz 17282254 BLAKE2B 57c4f3576427778db0fdc523d8b95b33db5cebfb0081d927abc8925eeaf90c0d2079f1d9572e81faac41e98cfee3028f39c9aed89e6db17188efb3541e3daa6a SHA512 90e68021f589bfad95989b45d91c47da63066e9bc60040052e866d1c7e420bc2784335cc5dbab0e4372c4f8686acb0a65853877c41081c8406eddada42550125 +DIST rclone-1.49.1.tar.gz 18196519 BLAKE2B 22a2f5984f65a64972c40fa845f0b4e5a8d52840ee9dc35463605e3eea399ab01a3b36f1f25a07d5c583829684863b8cbeaf82282e9b59ca994a8fa1d9558ebf SHA512 05b864932fdec7d1bc7185a4e2d33b7bd06b840399f100b1f58806e2ab6f752e4b7cb0f2691cfa92785f45b2f587aebaf7c9e5ab256c2d9b63c262d90ea1e3ac diff --git a/net-misc/rclone/rclone-.ebuild b/net-misc/rclone/rclone-1.49.1.ebuild similarity index 96% copy from net-misc/rclone/rclone-.ebuild copy to net-misc/rclone/rclone-1.49.1.ebuild index e1f64b65bde..8c2e6519357 100644 --- a/net-misc/rclone/rclone-.ebuild +++ b/net-misc/rclone/rclone-1.49.1.ebuild @@ -3,7 +3,7 @@ EAPI=6 inherit golang-build bash-completion-r1 -EGO_PN="github.com/ncw/${PN}" +EGO_PN="github.com/rclone/${PN}" if [[ ${PV} == ** ]]; then inherit golang-vcs diff --git a/net-misc/rclone/rclone-.ebuild b/net-misc/rclone/rclone-.ebuild index e1f64b65bde..8c2e6519357 100644 --- a/net-misc/rclone/rclone-.ebuild +++ b/net-misc/rclone/rclone-.ebuild @@ -3,7 +3,7 @@ EAPI=6 inherit golang-build bash-completion-r1 -EGO_PN="github.com/ncw/${PN}" +EGO_PN="github.com/rclone/${PN}" if [[ ${PV} == ** ]]; then inherit golang-vcs
[gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/
commit: 3c9be41c7ea0bb3ba469a4bd49f1039642914a90 Author: Jason Zaman gentoo org> AuthorDate: Wed Aug 7 07:44:34 2019 + Commit: Jason Zaman gentoo org> CommitDate: Wed Aug 7 07:57:26 2019 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3c9be41c net-misc/rclone: stable 1.47.0 Package-Manager: Portage-2.3.69, Repoman-2.3.16 Signed-off-by: Jason Zaman gentoo.org> net-misc/rclone/rclone-1.47.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net-misc/rclone/rclone-1.47.0.ebuild b/net-misc/rclone/rclone-1.47.0.ebuild index e1f64b65bde..e7c1175ae16 100644 --- a/net-misc/rclone/rclone-1.47.0.ebuild +++ b/net-misc/rclone/rclone-1.47.0.ebuild @@ -8,7 +8,7 @@ EGO_PN="github.com/ncw/${PN}" if [[ ${PV} == ** ]]; then inherit golang-vcs else - KEYWORDS="~amd64 ~arm ~x86" + 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
[gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/
commit: 68abf0f587d240bba6ee2b96d0368ee4dea2dfef Author: Jason Zaman gentoo org> AuthorDate: Mon Apr 29 13:45:38 2019 + Commit: Jason Zaman gentoo org> CommitDate: Mon Apr 29 14:22:48 2019 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=68abf0f5 net-misc/rclone: stable 1.45 on amd64 x86 Signed-off-by: Jason Zaman gentoo.org> Package-Manager: Portage-2.3.62, Repoman-2.3.11 net-misc/rclone/rclone-1.45.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net-misc/rclone/rclone-1.45.ebuild b/net-misc/rclone/rclone-1.45.ebuild index e1f64b65bde..e7c1175ae16 100644 --- a/net-misc/rclone/rclone-1.45.ebuild +++ b/net-misc/rclone/rclone-1.45.ebuild @@ -8,7 +8,7 @@ EGO_PN="github.com/ncw/${PN}" if [[ ${PV} == ** ]]; then inherit golang-vcs else - KEYWORDS="~amd64 ~arm ~x86" + 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
[gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/
commit: 94ad140cdd9c8e9f81b64579f53170bfc7ebf174 Author: Jason Zaman gentoo org> AuthorDate: Mon Apr 29 13:44:36 2019 + Commit: Jason Zaman gentoo org> CommitDate: Mon Apr 29 14:22:46 2019 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=94ad140c net-misc/rclone: bump 1.47.0 Closes: https://bugs.gentoo.org/678408 Signed-off-by: Jason Zaman gentoo.org> Package-Manager: Portage-2.3.62, Repoman-2.3.11 net-misc/rclone/Manifest | 1 + net-misc/rclone/rclone-1.47.0.ebuild | 38 2 files changed, 39 insertions(+) diff --git a/net-misc/rclone/Manifest b/net-misc/rclone/Manifest index a99aefe71e3..0e009c2cb9d 100644 --- a/net-misc/rclone/Manifest +++ b/net-misc/rclone/Manifest @@ -1,2 +1,3 @@ DIST rclone-1.44.tar.gz 16362501 BLAKE2B 28b4e444b83f361ae641eb7b09e150d46eaac09dd777e247e38f3e708a18e8e58d6a1c40829aba1c44c6c37e733dced2eae069a9b6e725adf0785b7c9959e47b SHA512 1207316ed12646a4ec5f9795d5cca1de9d2fa333f60a8b6dd157462813e2e6ad9ebf85d3d20b9b881d11dcd9ac162b5a674a53ff2af15a452afcfc04f7b34f5b DIST rclone-1.45.tar.gz 16494131 BLAKE2B 17ca4182af4efe23a367fc38226dc7fe146da55fea47a5f76773f1dcc3d3b629cca7964ffe41aa1e4dbd2fe36bd80545f336d2823a25ebb6b3effc768d4b46d2 SHA512 348dbd6a069f736219b7f925b6aa5234a4d70724ee5bfdb56067241063be36c44a091a37acb3285627803fa013329a6ef804aab4c0070ddaf322c5324b9e2a5a +DIST rclone-1.47.0.tar.gz 17282254 BLAKE2B 57c4f3576427778db0fdc523d8b95b33db5cebfb0081d927abc8925eeaf90c0d2079f1d9572e81faac41e98cfee3028f39c9aed89e6db17188efb3541e3daa6a SHA512 90e68021f589bfad95989b45d91c47da63066e9bc60040052e866d1c7e420bc2784335cc5dbab0e4372c4f8686acb0a65853877c41081c8406eddada42550125 diff --git a/net-misc/rclone/rclone-1.47.0.ebuild b/net-misc/rclone/rclone-1.47.0.ebuild new file mode 100644 index 000..e1f64b65bde --- /dev/null +++ b/net-misc/rclone/rclone-1.47.0.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit golang-build bash-completion-r1 +EGO_PN="github.com/ncw/${PN}" + +if [[ ${PV} == ** ]]; 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" +IUSE="" + +DEPEND="" +RDEPEND="${DEPEND}" + +src_install() { + dobin ${PN} + doman src/${EGO_PN}/${PN}.1 + dodoc src/${EGO_PN}/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} +}
[gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/
commit: 1b4647760ebd1ca768350608b4a869c457d89979 Author: Jason Zaman gentoo org> AuthorDate: Mon Apr 29 13:46:14 2019 + Commit: Jason Zaman gentoo org> CommitDate: Mon Apr 29 14:22:50 2019 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b464776 net-misc/rclone: drop old Signed-off-by: Jason Zaman gentoo.org> Package-Manager: Portage-2.3.62, Repoman-2.3.11 net-misc/rclone/Manifest | 1 - net-misc/rclone/rclone-1.44.ebuild | 38 -- 2 files changed, 39 deletions(-) diff --git a/net-misc/rclone/Manifest b/net-misc/rclone/Manifest index 0e009c2cb9d..732f6d5507c 100644 --- a/net-misc/rclone/Manifest +++ b/net-misc/rclone/Manifest @@ -1,3 +1,2 @@ -DIST rclone-1.44.tar.gz 16362501 BLAKE2B 28b4e444b83f361ae641eb7b09e150d46eaac09dd777e247e38f3e708a18e8e58d6a1c40829aba1c44c6c37e733dced2eae069a9b6e725adf0785b7c9959e47b SHA512 1207316ed12646a4ec5f9795d5cca1de9d2fa333f60a8b6dd157462813e2e6ad9ebf85d3d20b9b881d11dcd9ac162b5a674a53ff2af15a452afcfc04f7b34f5b DIST rclone-1.45.tar.gz 16494131 BLAKE2B 17ca4182af4efe23a367fc38226dc7fe146da55fea47a5f76773f1dcc3d3b629cca7964ffe41aa1e4dbd2fe36bd80545f336d2823a25ebb6b3effc768d4b46d2 SHA512 348dbd6a069f736219b7f925b6aa5234a4d70724ee5bfdb56067241063be36c44a091a37acb3285627803fa013329a6ef804aab4c0070ddaf322c5324b9e2a5a DIST rclone-1.47.0.tar.gz 17282254 BLAKE2B 57c4f3576427778db0fdc523d8b95b33db5cebfb0081d927abc8925eeaf90c0d2079f1d9572e81faac41e98cfee3028f39c9aed89e6db17188efb3541e3daa6a SHA512 90e68021f589bfad95989b45d91c47da63066e9bc60040052e866d1c7e420bc2784335cc5dbab0e4372c4f8686acb0a65853877c41081c8406eddada42550125 diff --git a/net-misc/rclone/rclone-1.44.ebuild b/net-misc/rclone/rclone-1.44.ebuild deleted file mode 100644 index e7c1175ae16..000 --- a/net-misc/rclone/rclone-1.44.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -inherit golang-build bash-completion-r1 -EGO_PN="github.com/ncw/${PN}" - -if [[ ${PV} == ** ]]; 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" -IUSE="" - -DEPEND="" -RDEPEND="${DEPEND}" - -src_install() { - dobin ${PN} - doman src/${EGO_PN}/${PN}.1 - dodoc src/${EGO_PN}/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} -}
[gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/
commit: b2046379d0f2ff61d62b83c4b41e1ca31b61c207 Author: Jason Zaman gentoo org> AuthorDate: Wed Jan 2 15:18:49 2019 + Commit: Jason Zaman gentoo org> CommitDate: Wed Jan 2 15:53:45 2019 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b2046379 net-misc/rclone: drop old Signed-off-by: Jason Zaman gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 net-misc/rclone/Manifest | 2 -- net-misc/rclone/rclone-1.42.ebuild | 38 net-misc/rclone/rclone-1.43.1.ebuild | 38 net-misc/rclone/rclone-.ebuild | 2 +- 4 files changed, 1 insertion(+), 79 deletions(-) diff --git a/net-misc/rclone/Manifest b/net-misc/rclone/Manifest index 852fac7d31c..a99aefe71e3 100644 --- a/net-misc/rclone/Manifest +++ b/net-misc/rclone/Manifest @@ -1,4 +1,2 @@ -DIST rclone-1.42.tar.gz 52702474 BLAKE2B 35def37dfb44a9fccabf0f6c3d0106da58bd1468a0c73e8b0a911e9bad48c6da58d303726544c76464230714af68d1727336eb9a4858337b346630f5df147a08 SHA512 69fadc1bc661e6278e461a16b49fb473bf2e35ceb85704c2b92e252422d372fb9d188cf9cb58d55b6d6c8267c599ea0d8a79fb4edb4a7bc0bac61de3eae1 -DIST rclone-1.43.1.tar.gz 15965941 BLAKE2B 5bf0ac08ca75abfdf6bbcd8f5725b0ab3aa543c7dac043feaf301a6c0a23090c61086e3c16e674bbc2c29d7dff7fc19e7759c70e5990afb2ddd72e5610295cba SHA512 7da3b285a8ed401de95ec0b8bea21ca3db0313eb2012874b10fb65c4441311ba4b24b7dd3ea68a7bce17206ac065f091d2f6ef6a9662fe0111b9f00ff58e6c17 DIST rclone-1.44.tar.gz 16362501 BLAKE2B 28b4e444b83f361ae641eb7b09e150d46eaac09dd777e247e38f3e708a18e8e58d6a1c40829aba1c44c6c37e733dced2eae069a9b6e725adf0785b7c9959e47b SHA512 1207316ed12646a4ec5f9795d5cca1de9d2fa333f60a8b6dd157462813e2e6ad9ebf85d3d20b9b881d11dcd9ac162b5a674a53ff2af15a452afcfc04f7b34f5b DIST rclone-1.45.tar.gz 16494131 BLAKE2B 17ca4182af4efe23a367fc38226dc7fe146da55fea47a5f76773f1dcc3d3b629cca7964ffe41aa1e4dbd2fe36bd80545f336d2823a25ebb6b3effc768d4b46d2 SHA512 348dbd6a069f736219b7f925b6aa5234a4d70724ee5bfdb56067241063be36c44a091a37acb3285627803fa013329a6ef804aab4c0070ddaf322c5324b9e2a5a diff --git a/net-misc/rclone/rclone-1.42.ebuild b/net-misc/rclone/rclone-1.42.ebuild deleted file mode 100644 index 2c530609ee7..000 --- a/net-misc/rclone/rclone-1.42.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -inherit golang-build bash-completion-r1 -EGO_PN="github.com/ncw/${PN}" - -if [[ ${PV} == ** ]]; 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" -IUSE="" - -DEPEND="" -RDEPEND="${DEPEND}" - -src_install() { - dobin ${PN} - doman src/${EGO_PN}/${PN}.1 - dodoc src/${EGO_PN}/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.43.1.ebuild b/net-misc/rclone/rclone-1.43.1.ebuild deleted file mode 100644 index 2c530609ee7..000 --- a/net-misc/rclone/rclone-1.43.1.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -inherit golang-build bash-completion-r1 -EGO_PN="github.com/ncw/${PN}" - -if [[ ${PV} == ** ]]; 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" -IUSE="" - -DEPEND="" -RDEPEND="${DEPEND}" - -src_install() { - dobin ${PN} - doman src/${EGO_PN}/${PN}.1 - dodoc src/${EGO_PN}/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-.ebuild b/net-misc/rclone/rclone-.ebuild index 2c530609ee7..e1f64b65bde 100644 --- a/net-misc/rclone/rclone-.ebuild +++ b/net-misc/rclone/rclone-.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6
[gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/
commit: 7fa2aaa9a6b47b7913b39b35e96799fd0ac7eb21 Author: Jason Zaman gentoo org> AuthorDate: Wed Jan 2 15:53:12 2019 + Commit: Jason Zaman gentoo org> CommitDate: Wed Jan 2 15:53:47 2019 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7fa2aaa9 net-misc/rclone: stable 1.44 Signed-off-by: Jason Zaman gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 net-misc/rclone/rclone-1.44.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/net-misc/rclone/rclone-1.44.ebuild b/net-misc/rclone/rclone-1.44.ebuild index 2c530609ee7..e7c1175ae16 100644 --- a/net-misc/rclone/rclone-1.44.ebuild +++ b/net-misc/rclone/rclone-1.44.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -8,7 +8,7 @@ EGO_PN="github.com/ncw/${PN}" if [[ ${PV} == ** ]]; then inherit golang-vcs else - KEYWORDS="~amd64 ~arm ~x86" + 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
[gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/
commit: 85db17b1f801939bd48a2cab14ddf52ca9f04bf3 Author: Alexander Kurakin mail ru> AuthorDate: Mon Dec 3 12:01:45 2018 + Commit: Jason Zaman gentoo org> CommitDate: Wed Jan 2 15:53:43 2019 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85db17b1 net-misc/rclone: bump 1.45 Closes: https://github.com/gentoo/gentoo/pull/10548 Signed-off-by: Alexander Kurakin mail.ru> Signed-off-by: Jason Zaman gentoo.org> net-misc/rclone/Manifest | 1 + net-misc/rclone/rclone-1.45.ebuild | 38 ++ 2 files changed, 39 insertions(+) diff --git a/net-misc/rclone/Manifest b/net-misc/rclone/Manifest index f2e61cde30d..852fac7d31c 100644 --- a/net-misc/rclone/Manifest +++ b/net-misc/rclone/Manifest @@ -1,3 +1,4 @@ DIST rclone-1.42.tar.gz 52702474 BLAKE2B 35def37dfb44a9fccabf0f6c3d0106da58bd1468a0c73e8b0a911e9bad48c6da58d303726544c76464230714af68d1727336eb9a4858337b346630f5df147a08 SHA512 69fadc1bc661e6278e461a16b49fb473bf2e35ceb85704c2b92e252422d372fb9d188cf9cb58d55b6d6c8267c599ea0d8a79fb4edb4a7bc0bac61de3eae1 DIST rclone-1.43.1.tar.gz 15965941 BLAKE2B 5bf0ac08ca75abfdf6bbcd8f5725b0ab3aa543c7dac043feaf301a6c0a23090c61086e3c16e674bbc2c29d7dff7fc19e7759c70e5990afb2ddd72e5610295cba SHA512 7da3b285a8ed401de95ec0b8bea21ca3db0313eb2012874b10fb65c4441311ba4b24b7dd3ea68a7bce17206ac065f091d2f6ef6a9662fe0111b9f00ff58e6c17 DIST rclone-1.44.tar.gz 16362501 BLAKE2B 28b4e444b83f361ae641eb7b09e150d46eaac09dd777e247e38f3e708a18e8e58d6a1c40829aba1c44c6c37e733dced2eae069a9b6e725adf0785b7c9959e47b SHA512 1207316ed12646a4ec5f9795d5cca1de9d2fa333f60a8b6dd157462813e2e6ad9ebf85d3d20b9b881d11dcd9ac162b5a674a53ff2af15a452afcfc04f7b34f5b +DIST rclone-1.45.tar.gz 16494131 BLAKE2B 17ca4182af4efe23a367fc38226dc7fe146da55fea47a5f76773f1dcc3d3b629cca7964ffe41aa1e4dbd2fe36bd80545f336d2823a25ebb6b3effc768d4b46d2 SHA512 348dbd6a069f736219b7f925b6aa5234a4d70724ee5bfdb56067241063be36c44a091a37acb3285627803fa013329a6ef804aab4c0070ddaf322c5324b9e2a5a diff --git a/net-misc/rclone/rclone-1.45.ebuild b/net-misc/rclone/rclone-1.45.ebuild new file mode 100644 index 000..e1f64b65bde --- /dev/null +++ b/net-misc/rclone/rclone-1.45.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit golang-build bash-completion-r1 +EGO_PN="github.com/ncw/${PN}" + +if [[ ${PV} == ** ]]; 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" +IUSE="" + +DEPEND="" +RDEPEND="${DEPEND}" + +src_install() { + dobin ${PN} + doman src/${EGO_PN}/${PN}.1 + dodoc src/${EGO_PN}/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} +}
[gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/
commit: 7f05571e6d244c3cbdbb74ed29587b17ced48753 Author: Alexander Kurakin mail ru> AuthorDate: Mon Oct 22 22:08:27 2018 + Commit: Jason Zaman gentoo org> CommitDate: Tue Nov 27 13:58:38 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f05571e net-misc/rclone: bump 1.44 Closes: https://github.com/gentoo/gentoo/pull/10233 Signed-off-by: Alexander Kurakin mail.ru> Signed-off-by: Jason Zaman gentoo.org> net-misc/rclone/Manifest | 1 + net-misc/rclone/rclone-1.44.ebuild | 38 ++ 2 files changed, 39 insertions(+) diff --git a/net-misc/rclone/Manifest b/net-misc/rclone/Manifest index f1da7fb95ac..f2e61cde30d 100644 --- a/net-misc/rclone/Manifest +++ b/net-misc/rclone/Manifest @@ -1,2 +1,3 @@ DIST rclone-1.42.tar.gz 52702474 BLAKE2B 35def37dfb44a9fccabf0f6c3d0106da58bd1468a0c73e8b0a911e9bad48c6da58d303726544c76464230714af68d1727336eb9a4858337b346630f5df147a08 SHA512 69fadc1bc661e6278e461a16b49fb473bf2e35ceb85704c2b92e252422d372fb9d188cf9cb58d55b6d6c8267c599ea0d8a79fb4edb4a7bc0bac61de3eae1 DIST rclone-1.43.1.tar.gz 15965941 BLAKE2B 5bf0ac08ca75abfdf6bbcd8f5725b0ab3aa543c7dac043feaf301a6c0a23090c61086e3c16e674bbc2c29d7dff7fc19e7759c70e5990afb2ddd72e5610295cba SHA512 7da3b285a8ed401de95ec0b8bea21ca3db0313eb2012874b10fb65c4441311ba4b24b7dd3ea68a7bce17206ac065f091d2f6ef6a9662fe0111b9f00ff58e6c17 +DIST rclone-1.44.tar.gz 16362501 BLAKE2B 28b4e444b83f361ae641eb7b09e150d46eaac09dd777e247e38f3e708a18e8e58d6a1c40829aba1c44c6c37e733dced2eae069a9b6e725adf0785b7c9959e47b SHA512 1207316ed12646a4ec5f9795d5cca1de9d2fa333f60a8b6dd157462813e2e6ad9ebf85d3d20b9b881d11dcd9ac162b5a674a53ff2af15a452afcfc04f7b34f5b diff --git a/net-misc/rclone/rclone-1.44.ebuild b/net-misc/rclone/rclone-1.44.ebuild new file mode 100644 index 000..2c530609ee7 --- /dev/null +++ b/net-misc/rclone/rclone-1.44.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit golang-build bash-completion-r1 +EGO_PN="github.com/ncw/${PN}" + +if [[ ${PV} == ** ]]; 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" +IUSE="" + +DEPEND="" +RDEPEND="${DEPEND}" + +src_install() { + dobin ${PN} + doman src/${EGO_PN}/${PN}.1 + dodoc src/${EGO_PN}/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} +}
[gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/
commit: b05c20ff2125e7e1ef873f6cc711ba2545567ff1 Author: Jason Zaman gentoo org> AuthorDate: Mon Sep 24 05:17:34 2018 + Commit: Jason Zaman gentoo org> CommitDate: Mon Sep 24 05:18:01 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b05c20ff net-misc/rclone: drop old Package-Manager: Portage-2.3.49, Repoman-2.3.10 net-misc/rclone/Manifest | 3 --- net-misc/rclone/rclone-1.39.ebuild | 38 -- net-misc/rclone/rclone-1.40.ebuild | 38 -- net-misc/rclone/rclone-1.41.ebuild | 38 -- 4 files changed, 117 deletions(-) diff --git a/net-misc/rclone/Manifest b/net-misc/rclone/Manifest index 6d7f27189fb..f1da7fb95ac 100644 --- a/net-misc/rclone/Manifest +++ b/net-misc/rclone/Manifest @@ -1,5 +1,2 @@ -DIST rclone-1.39.tar.gz 38015559 BLAKE2B 534bd0be87e7c8291bfe3acdaff12e9acfddeb42f08067d413184a688b5c0cdfcde78abff3551d81cd2e692a020386116f03842c8390852b2137c2f8342e43f2 SHA512 6e5e5f5e06510f36185d165986cbd3ed994d3cbf97055b4dea37c78af932f89ab8c89249006b829aad38ba43c77ff46f254ba56bcfbae7deca1ebcea555ad884 -DIST rclone-1.40.tar.gz 46067393 BLAKE2B 56bc172965f7f601c8f5c9c72a03ca44b1b41cf280497f7473d318b6667f00df4dac2d104f6fe7daf1529ebedd4d6f4ca5899944e82d68b8fd1b66226264e82f SHA512 ce46393097122f2ae9669310767487218f74ee8fab607cb6355df33329325fe626d17b36565b7864e6b4ca1de75714e29356d7abeb3cc42038d3ab0677408973 -DIST rclone-1.41.tar.gz 48197335 BLAKE2B b2b48f74cebd5f7f772b0e0c58ba23a1f9a4981df8821da0c773d1dd1a6b713b51b075500e5f70086d481d080dbc2029ffb56455416d72d93b0b624c0569790f SHA512 efce2827a659d83c2fce74c50e6d4182dc5916ba8e47a335f2719cce5c3eb4a9622ee0f53c5923af1ed84b340b6dd7ac00bcf48dbb3de53644dc3f2298523112 DIST rclone-1.42.tar.gz 52702474 BLAKE2B 35def37dfb44a9fccabf0f6c3d0106da58bd1468a0c73e8b0a911e9bad48c6da58d303726544c76464230714af68d1727336eb9a4858337b346630f5df147a08 SHA512 69fadc1bc661e6278e461a16b49fb473bf2e35ceb85704c2b92e252422d372fb9d188cf9cb58d55b6d6c8267c599ea0d8a79fb4edb4a7bc0bac61de3eae1 DIST rclone-1.43.1.tar.gz 15965941 BLAKE2B 5bf0ac08ca75abfdf6bbcd8f5725b0ab3aa543c7dac043feaf301a6c0a23090c61086e3c16e674bbc2c29d7dff7fc19e7759c70e5990afb2ddd72e5610295cba SHA512 7da3b285a8ed401de95ec0b8bea21ca3db0313eb2012874b10fb65c4441311ba4b24b7dd3ea68a7bce17206ac065f091d2f6ef6a9662fe0111b9f00ff58e6c17 diff --git a/net-misc/rclone/rclone-1.39.ebuild b/net-misc/rclone/rclone-1.39.ebuild deleted file mode 100644 index 2c530609ee7..000 --- a/net-misc/rclone/rclone-1.39.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -inherit golang-build bash-completion-r1 -EGO_PN="github.com/ncw/${PN}" - -if [[ ${PV} == ** ]]; 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" -IUSE="" - -DEPEND="" -RDEPEND="${DEPEND}" - -src_install() { - dobin ${PN} - doman src/${EGO_PN}/${PN}.1 - dodoc src/${EGO_PN}/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.40.ebuild b/net-misc/rclone/rclone-1.40.ebuild deleted file mode 100644 index 2c530609ee7..000 --- a/net-misc/rclone/rclone-1.40.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -inherit golang-build bash-completion-r1 -EGO_PN="github.com/ncw/${PN}" - -if [[ ${PV} == ** ]]; 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" -IUSE="" - -DEPEND="" -RDEPEND="${DEPEND}" - -src_install() { - dobin ${PN} - doman src/${EGO_PN}/${PN}.1 - dodoc src/${EGO_PN}/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.41.ebuild b/net-misc/rclone/rclone-1.41.ebuild deleted file mode 100644 index 2c530609ee7..000 --- a/net-misc/rclone/rclone-1.41.ebuild +++ /dev/
[gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/
commit: beb8ec18803436db3b4199c97159493cf52334d5 Author: Jason Zaman gentoo org> AuthorDate: Mon Sep 24 05:16:37 2018 + Commit: Jason Zaman gentoo org> CommitDate: Mon Sep 24 05:17:59 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=beb8ec18 net-misc/rclone: bump 1.43.1 Closes: https://bugs.gentoo.org/665472 Package-Manager: Portage-2.3.49, Repoman-2.3.10 net-misc/rclone/Manifest | 1 + net-misc/rclone/rclone-1.43.1.ebuild | 38 2 files changed, 39 insertions(+) diff --git a/net-misc/rclone/Manifest b/net-misc/rclone/Manifest index 1d3e0d5b581..6d7f27189fb 100644 --- a/net-misc/rclone/Manifest +++ b/net-misc/rclone/Manifest @@ -2,3 +2,4 @@ DIST rclone-1.39.tar.gz 38015559 BLAKE2B 534bd0be87e7c8291bfe3acdaff12e9acfddeb4 DIST rclone-1.40.tar.gz 46067393 BLAKE2B 56bc172965f7f601c8f5c9c72a03ca44b1b41cf280497f7473d318b6667f00df4dac2d104f6fe7daf1529ebedd4d6f4ca5899944e82d68b8fd1b66226264e82f SHA512 ce46393097122f2ae9669310767487218f74ee8fab607cb6355df33329325fe626d17b36565b7864e6b4ca1de75714e29356d7abeb3cc42038d3ab0677408973 DIST rclone-1.41.tar.gz 48197335 BLAKE2B b2b48f74cebd5f7f772b0e0c58ba23a1f9a4981df8821da0c773d1dd1a6b713b51b075500e5f70086d481d080dbc2029ffb56455416d72d93b0b624c0569790f SHA512 efce2827a659d83c2fce74c50e6d4182dc5916ba8e47a335f2719cce5c3eb4a9622ee0f53c5923af1ed84b340b6dd7ac00bcf48dbb3de53644dc3f2298523112 DIST rclone-1.42.tar.gz 52702474 BLAKE2B 35def37dfb44a9fccabf0f6c3d0106da58bd1468a0c73e8b0a911e9bad48c6da58d303726544c76464230714af68d1727336eb9a4858337b346630f5df147a08 SHA512 69fadc1bc661e6278e461a16b49fb473bf2e35ceb85704c2b92e252422d372fb9d188cf9cb58d55b6d6c8267c599ea0d8a79fb4edb4a7bc0bac61de3eae1 +DIST rclone-1.43.1.tar.gz 15965941 BLAKE2B 5bf0ac08ca75abfdf6bbcd8f5725b0ab3aa543c7dac043feaf301a6c0a23090c61086e3c16e674bbc2c29d7dff7fc19e7759c70e5990afb2ddd72e5610295cba SHA512 7da3b285a8ed401de95ec0b8bea21ca3db0313eb2012874b10fb65c4441311ba4b24b7dd3ea68a7bce17206ac065f091d2f6ef6a9662fe0111b9f00ff58e6c17 diff --git a/net-misc/rclone/rclone-1.43.1.ebuild b/net-misc/rclone/rclone-1.43.1.ebuild new file mode 100644 index 000..2c530609ee7 --- /dev/null +++ b/net-misc/rclone/rclone-1.43.1.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit golang-build bash-completion-r1 +EGO_PN="github.com/ncw/${PN}" + +if [[ ${PV} == ** ]]; 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" +IUSE="" + +DEPEND="" +RDEPEND="${DEPEND}" + +src_install() { + dobin ${PN} + doman src/${EGO_PN}/${PN}.1 + dodoc src/${EGO_PN}/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} +}
[gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/
commit: dd6337520a14da9ed215569f8498940844d4903a Author: Alexander Kurakin mail ru> AuthorDate: Sun Jul 22 10:41:12 2018 + Commit: Jason Zaman gentoo org> CommitDate: Tue Jul 31 07:44:06 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd633752 net-misc/rclone: version bump to 1.42 net-misc/rclone/Manifest | 1 + net-misc/rclone/rclone-1.42.ebuild | 38 ++ 2 files changed, 39 insertions(+) diff --git a/net-misc/rclone/Manifest b/net-misc/rclone/Manifest index b9c2d7915b1..1d3e0d5b581 100644 --- a/net-misc/rclone/Manifest +++ b/net-misc/rclone/Manifest @@ -1,3 +1,4 @@ DIST rclone-1.39.tar.gz 38015559 BLAKE2B 534bd0be87e7c8291bfe3acdaff12e9acfddeb42f08067d413184a688b5c0cdfcde78abff3551d81cd2e692a020386116f03842c8390852b2137c2f8342e43f2 SHA512 6e5e5f5e06510f36185d165986cbd3ed994d3cbf97055b4dea37c78af932f89ab8c89249006b829aad38ba43c77ff46f254ba56bcfbae7deca1ebcea555ad884 DIST rclone-1.40.tar.gz 46067393 BLAKE2B 56bc172965f7f601c8f5c9c72a03ca44b1b41cf280497f7473d318b6667f00df4dac2d104f6fe7daf1529ebedd4d6f4ca5899944e82d68b8fd1b66226264e82f SHA512 ce46393097122f2ae9669310767487218f74ee8fab607cb6355df33329325fe626d17b36565b7864e6b4ca1de75714e29356d7abeb3cc42038d3ab0677408973 DIST rclone-1.41.tar.gz 48197335 BLAKE2B b2b48f74cebd5f7f772b0e0c58ba23a1f9a4981df8821da0c773d1dd1a6b713b51b075500e5f70086d481d080dbc2029ffb56455416d72d93b0b624c0569790f SHA512 efce2827a659d83c2fce74c50e6d4182dc5916ba8e47a335f2719cce5c3eb4a9622ee0f53c5923af1ed84b340b6dd7ac00bcf48dbb3de53644dc3f2298523112 +DIST rclone-1.42.tar.gz 52702474 BLAKE2B 35def37dfb44a9fccabf0f6c3d0106da58bd1468a0c73e8b0a911e9bad48c6da58d303726544c76464230714af68d1727336eb9a4858337b346630f5df147a08 SHA512 69fadc1bc661e6278e461a16b49fb473bf2e35ceb85704c2b92e252422d372fb9d188cf9cb58d55b6d6c8267c599ea0d8a79fb4edb4a7bc0bac61de3eae1 diff --git a/net-misc/rclone/rclone-1.42.ebuild b/net-misc/rclone/rclone-1.42.ebuild new file mode 100644 index 000..2c530609ee7 --- /dev/null +++ b/net-misc/rclone/rclone-1.42.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit golang-build bash-completion-r1 +EGO_PN="github.com/ncw/${PN}" + +if [[ ${PV} == ** ]]; 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" +IUSE="" + +DEPEND="" +RDEPEND="${DEPEND}" + +src_install() { + dobin ${PN} + doman src/${EGO_PN}/${PN}.1 + dodoc src/${EGO_PN}/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} +}
[gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/
commit: c8f5a5038fdbf67751f1e79b43e687ef79352432 Author: Alexander Kurakin mail ru> AuthorDate: Sun Jul 22 10:40:26 2018 + Commit: Jason Zaman gentoo org> CommitDate: Tue Jul 31 07:44:03 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8f5a503 net-misc/rclone: version bump to 1.41 net-misc/rclone/Manifest | 1 + net-misc/rclone/rclone-1.41.ebuild | 38 ++ 2 files changed, 39 insertions(+) diff --git a/net-misc/rclone/Manifest b/net-misc/rclone/Manifest index 700825a1b23..b9c2d7915b1 100644 --- a/net-misc/rclone/Manifest +++ b/net-misc/rclone/Manifest @@ -1,2 +1,3 @@ DIST rclone-1.39.tar.gz 38015559 BLAKE2B 534bd0be87e7c8291bfe3acdaff12e9acfddeb42f08067d413184a688b5c0cdfcde78abff3551d81cd2e692a020386116f03842c8390852b2137c2f8342e43f2 SHA512 6e5e5f5e06510f36185d165986cbd3ed994d3cbf97055b4dea37c78af932f89ab8c89249006b829aad38ba43c77ff46f254ba56bcfbae7deca1ebcea555ad884 DIST rclone-1.40.tar.gz 46067393 BLAKE2B 56bc172965f7f601c8f5c9c72a03ca44b1b41cf280497f7473d318b6667f00df4dac2d104f6fe7daf1529ebedd4d6f4ca5899944e82d68b8fd1b66226264e82f SHA512 ce46393097122f2ae9669310767487218f74ee8fab607cb6355df33329325fe626d17b36565b7864e6b4ca1de75714e29356d7abeb3cc42038d3ab0677408973 +DIST rclone-1.41.tar.gz 48197335 BLAKE2B b2b48f74cebd5f7f772b0e0c58ba23a1f9a4981df8821da0c773d1dd1a6b713b51b075500e5f70086d481d080dbc2029ffb56455416d72d93b0b624c0569790f SHA512 efce2827a659d83c2fce74c50e6d4182dc5916ba8e47a335f2719cce5c3eb4a9622ee0f53c5923af1ed84b340b6dd7ac00bcf48dbb3de53644dc3f2298523112 diff --git a/net-misc/rclone/rclone-1.41.ebuild b/net-misc/rclone/rclone-1.41.ebuild new file mode 100644 index 000..2c530609ee7 --- /dev/null +++ b/net-misc/rclone/rclone-1.41.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit golang-build bash-completion-r1 +EGO_PN="github.com/ncw/${PN}" + +if [[ ${PV} == ** ]]; 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" +IUSE="" + +DEPEND="" +RDEPEND="${DEPEND}" + +src_install() { + dobin ${PN} + doman src/${EGO_PN}/${PN}.1 + dodoc src/${EGO_PN}/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} +}
[gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/
commit: c7229aad96391791be76367163545ae110970e77 Author: Piotr Staroszczyk get24 org> AuthorDate: Tue Apr 3 20:58:14 2018 + Commit: Jason Zaman gentoo org> CommitDate: Fri Apr 6 10:31:30 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7229aad net-misc/rclone: version bump to 1.40 net-misc/rclone/Manifest | 1 + net-misc/rclone/rclone-1.40.ebuild | 38 ++ 2 files changed, 39 insertions(+) diff --git a/net-misc/rclone/Manifest b/net-misc/rclone/Manifest index 598544ecb61..700825a1b23 100644 --- a/net-misc/rclone/Manifest +++ b/net-misc/rclone/Manifest @@ -1 +1,2 @@ DIST rclone-1.39.tar.gz 38015559 BLAKE2B 534bd0be87e7c8291bfe3acdaff12e9acfddeb42f08067d413184a688b5c0cdfcde78abff3551d81cd2e692a020386116f03842c8390852b2137c2f8342e43f2 SHA512 6e5e5f5e06510f36185d165986cbd3ed994d3cbf97055b4dea37c78af932f89ab8c89249006b829aad38ba43c77ff46f254ba56bcfbae7deca1ebcea555ad884 +DIST rclone-1.40.tar.gz 46067393 BLAKE2B 56bc172965f7f601c8f5c9c72a03ca44b1b41cf280497f7473d318b6667f00df4dac2d104f6fe7daf1529ebedd4d6f4ca5899944e82d68b8fd1b66226264e82f SHA512 ce46393097122f2ae9669310767487218f74ee8fab607cb6355df33329325fe626d17b36565b7864e6b4ca1de75714e29356d7abeb3cc42038d3ab0677408973 diff --git a/net-misc/rclone/rclone-1.40.ebuild b/net-misc/rclone/rclone-1.40.ebuild new file mode 100644 index 000..2c530609ee7 --- /dev/null +++ b/net-misc/rclone/rclone-1.40.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit golang-build bash-completion-r1 +EGO_PN="github.com/ncw/${PN}" + +if [[ ${PV} == ** ]]; 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" +IUSE="" + +DEPEND="" +RDEPEND="${DEPEND}" + +src_install() { + dobin ${PN} + doman src/${EGO_PN}/${PN}.1 + dodoc src/${EGO_PN}/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} +}
[gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/
commit: 83a37b26ab6136b35baa1f1867c8766ae8e8c023 Author: Jason Zaman gentoo org> AuthorDate: Sun Mar 18 02:00:17 2018 + Commit: Jason Zaman gentoo org> CommitDate: Sun Mar 18 02:00:39 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=83a37b26 net-misc/rclone: Add bash & zfs autocompletion Closes: https://bugs.gentoo.org/650726 Package-Manager: Portage-2.3.24, Repoman-2.3.6 net-misc/rclone/rclone-1.39.ebuild | 17 + net-misc/rclone/rclone-.ebuild | 11 +-- 2 files changed, 22 insertions(+), 6 deletions(-) diff --git a/net-misc/rclone/rclone-1.39.ebuild b/net-misc/rclone/rclone-1.39.ebuild index ab1b0c69b3d..2c530609ee7 100644 --- a/net-misc/rclone/rclone-1.39.ebuild +++ b/net-misc/rclone/rclone-1.39.ebuild @@ -1,10 +1,8 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 - -inherit golang-build - +inherit golang-build bash-completion-r1 EGO_PN="github.com/ncw/${PN}" if [[ ${PV} == ** ]]; then @@ -21,9 +19,20 @@ HOMEPAGE="https://rclone.org/"; LICENSE="MIT" SLOT="0" +IUSE="" + +DEPEND="" +RDEPEND="${DEPEND}" src_install() { dobin ${PN} doman src/${EGO_PN}/${PN}.1 dodoc src/${EGO_PN}/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-.ebuild b/net-misc/rclone/rclone-.ebuild index 0c936bdca50..2c530609ee7 100644 --- a/net-misc/rclone/rclone-.ebuild +++ b/net-misc/rclone/rclone-.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 -inherit golang-build +inherit golang-build bash-completion-r1 EGO_PN="github.com/ncw/${PN}" if [[ ${PV} == ** ]]; then @@ -28,4 +28,11 @@ src_install() { dobin ${PN} doman src/${EGO_PN}/${PN}.1 dodoc src/${EGO_PN}/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} }
[gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/
commit: 8087bcd32e0904a70a052650e1bcce0e2358601d Author: Piotr Staroszczyk get24 org> AuthorDate: Tue Feb 6 13:13:27 2018 + Commit: Jason Zaman gentoo org> CommitDate: Fri Feb 16 16:09:15 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8087bcd3 net-misc/rclone: version bump to 1.39 Closes: https://github.com/gentoo/gentoo/pull/7090 net-misc/rclone/Manifest | 1 + net-misc/rclone/rclone-1.39.ebuild | 29 + 2 files changed, 30 insertions(+) diff --git a/net-misc/rclone/Manifest b/net-misc/rclone/Manifest index b5241b93e5b..f0ec277592c 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 000..ab1b0c69b3d --- /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} == ** ]]; 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 +}
[gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/
commit: cf703915f0f7111d6f46efc503ee422cff7d717e Author: Jason Zaman gentoo org> AuthorDate: Fri Feb 16 16:11:19 2018 + Commit: Jason Zaman gentoo org> CommitDate: Fri Feb 16 16:11:19 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf703915 net-misc/rclone: drop old Package-Manager: Portage-2.3.19, Repoman-2.3.6 net-misc/rclone/Manifest | 3 --- net-misc/rclone/rclone-1.36.ebuild | 31 --- net-misc/rclone/rclone-1.37.ebuild | 31 --- net-misc/rclone/rclone-1.38.ebuild | 29 - 4 files changed, 94 deletions(-) diff --git a/net-misc/rclone/Manifest b/net-misc/rclone/Manifest index f0ec277592c..598544ecb61 100644 --- a/net-misc/rclone/Manifest +++ b/net-misc/rclone/Manifest @@ -1,4 +1 @@ -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.36.ebuild b/net-misc/rclone/rclone-1.36.ebuild deleted file mode 100644 index 0c936bdca50..000 --- a/net-misc/rclone/rclone-1.36.ebuild +++ /dev/null @@ -1,31 +0,0 @@ -# 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} == ** ]]; 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" -IUSE="" - -DEPEND="" -RDEPEND="${DEPEND}" - -src_install() { - dobin ${PN} - doman src/${EGO_PN}/${PN}.1 - dodoc src/${EGO_PN}/README.md -} diff --git a/net-misc/rclone/rclone-1.37.ebuild b/net-misc/rclone/rclone-1.37.ebuild deleted file mode 100644 index 0c936bdca50..000 --- a/net-misc/rclone/rclone-1.37.ebuild +++ /dev/null @@ -1,31 +0,0 @@ -# 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} == ** ]]; 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" -IUSE="" - -DEPEND="" -RDEPEND="${DEPEND}" - -src_install() { - dobin ${PN} - doman src/${EGO_PN}/${PN}.1 - dodoc src/${EGO_PN}/README.md -} diff --git a/net-misc/rclone/rclone-1.38.ebuild b/net-misc/rclone/rclone-1.38.ebuild deleted file mode 100644 index ab1b0c69b3d..000 --- a/net-misc/rclone/rclone-1.38.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# 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} == ** ]]; 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 -}
[gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/
commit: b4fe2dc03afff446c7f8304075c5205962fdc32f Author: Piotr Staroszczyk get24 org> AuthorDate: Wed Oct 11 22:49:01 2017 + Commit: Patrice Clement gentoo org> CommitDate: Sat Oct 28 09:09:21 2017 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4fe2dc0 net-misc/rclone: version bump to 1.38. Closes: https://github.com/gentoo/gentoo/pull/5923 net-misc/rclone/Manifest | 1 + net-misc/rclone/rclone-1.38.ebuild | 29 + 2 files changed, 30 insertions(+) diff --git a/net-misc/rclone/Manifest b/net-misc/rclone/Manifest index 42d2994cec5..43a6c9b7d38 100644 --- a/net-misc/rclone/Manifest +++ b/net-misc/rclone/Manifest @@ -1,2 +1,3 @@ DIST rclone-1.36.tar.gz 14013564 SHA256 a573b70e3aeb355b9436ae9375386fc21bf12dfba601d8d7280f97c4c884 SHA512 589b5e2370244b5609d1ec8245f9f5f5cf58d6a2d507768db2cfc5a5b882f7d277d797fd0068b904538f3700e1751df03a21697d5295c83a2bf01a78d0ac6b13 WHIRLPOOL aa75c6c32cdcebd79ecf79abd03b4dc0205517808eb232a9655e8ae3da327cd62ad7183f4e0b0f6b7b52649c0c5058fdc2b57bc7b31b7dffb05e8a1508307d5c DIST rclone-1.37.tar.gz 37684683 SHA256 a74e284d2368f6fb8e4ac654a31b9b1328ac6078acd3446c9a892cd4bcbe8660 SHA512 683c88c04aa3d6f7057937c431bc56b20c9218c3a01f8baa4fb63ed716a0a3397855c1a9bf485041354bc6696f54f670b5cd9945c0465b4dc65595a9f606427b WHIRLPOOL c43709f66f0de6e66f073e34e4896707db0b91cf556cc225bdc22b7195c92e5777fbf7dc6983d57bcb11cab825ec7c222e0f75c6e52949a68fe5a7b4e43da1ff +DIST rclone-1.38.tar.gz 36890082 SHA256 d4806a55b64ab54923b55b230f2b2679406d5de995884433d3d60516bb8ebcc0 SHA512 8dba3af1d576aac2b4b230eb6cb3072f0178e420f017dd715744ae2d8061f830b8079b7cc1cc09e7395ab3639b600b47768300d5f9da80a2f9626c26002a604e WHIRLPOOL 4b5ed7e1eea99dda55f05ad4dfc7922db1733eecd2f4b4df5f3cd5092820984632b9735e27c6c6aad56d60086f08bd681461efcc665cb501399cd1f4 diff --git a/net-misc/rclone/rclone-1.38.ebuild b/net-misc/rclone/rclone-1.38.ebuild new file mode 100644 index 000..ab1b0c69b3d --- /dev/null +++ b/net-misc/rclone/rclone-1.38.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} == ** ]]; 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 +}
[gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/
commit: fb3a873f8eceff5a088bcbc0ddbdba256501422f Author: Piotr Staroszczyk get24 org> AuthorDate: Mon Jul 24 08:25:14 2017 + Commit: David Seifert gentoo org> CommitDate: Sun Jul 30 11:08:53 2017 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb3a873f net-misc/rclone: version bump to 1.37 Closes: https://github.com/gentoo/gentoo/pull/5199 net-misc/rclone/Manifest | 1 + net-misc/rclone/rclone-1.37.ebuild | 31 +++ 2 files changed, 32 insertions(+) diff --git a/net-misc/rclone/Manifest b/net-misc/rclone/Manifest index 71ff95857b6..42d2994cec5 100644 --- a/net-misc/rclone/Manifest +++ b/net-misc/rclone/Manifest @@ -1 +1,2 @@ DIST rclone-1.36.tar.gz 14013564 SHA256 a573b70e3aeb355b9436ae9375386fc21bf12dfba601d8d7280f97c4c884 SHA512 589b5e2370244b5609d1ec8245f9f5f5cf58d6a2d507768db2cfc5a5b882f7d277d797fd0068b904538f3700e1751df03a21697d5295c83a2bf01a78d0ac6b13 WHIRLPOOL aa75c6c32cdcebd79ecf79abd03b4dc0205517808eb232a9655e8ae3da327cd62ad7183f4e0b0f6b7b52649c0c5058fdc2b57bc7b31b7dffb05e8a1508307d5c +DIST rclone-1.37.tar.gz 37684683 SHA256 a74e284d2368f6fb8e4ac654a31b9b1328ac6078acd3446c9a892cd4bcbe8660 SHA512 683c88c04aa3d6f7057937c431bc56b20c9218c3a01f8baa4fb63ed716a0a3397855c1a9bf485041354bc6696f54f670b5cd9945c0465b4dc65595a9f606427b WHIRLPOOL c43709f66f0de6e66f073e34e4896707db0b91cf556cc225bdc22b7195c92e5777fbf7dc6983d57bcb11cab825ec7c222e0f75c6e52949a68fe5a7b4e43da1ff diff --git a/net-misc/rclone/rclone-1.37.ebuild b/net-misc/rclone/rclone-1.37.ebuild new file mode 100644 index 000..0c936bdca50 --- /dev/null +++ b/net-misc/rclone/rclone-1.37.ebuild @@ -0,0 +1,31 @@ +# 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} == ** ]]; 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" +IUSE="" + +DEPEND="" +RDEPEND="${DEPEND}" + +src_install() { + dobin ${PN} + doman src/${EGO_PN}/${PN}.1 + dodoc src/${EGO_PN}/README.md +}
[gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/
commit: 7edde5465da4ee83092bed63e95f8bd29f133550 Author: Jason Zaman gentoo org> AuthorDate: Fri May 26 19:31:49 2017 + Commit: Jason Zaman gentoo org> CommitDate: Fri May 26 19:32:20 2017 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7edde546 net-misc/rclone: New package Ebuild from Jack Coulter and Chris Pritchard Gentoo-Bug: https://bugs.gentoo.org/609510 Package-Manager: Portage-2.3.5, Repoman-2.3.1 net-misc/rclone/Manifest | 1 + net-misc/rclone/metadata.xml | 8 net-misc/rclone/rclone-1.36.ebuild | 31 +++ net-misc/rclone/rclone-.ebuild | 31 +++ 4 files changed, 71 insertions(+) diff --git a/net-misc/rclone/Manifest b/net-misc/rclone/Manifest new file mode 100644 index 000..71ff95857b6 --- /dev/null +++ b/net-misc/rclone/Manifest @@ -0,0 +1 @@ +DIST rclone-1.36.tar.gz 14013564 SHA256 a573b70e3aeb355b9436ae9375386fc21bf12dfba601d8d7280f97c4c884 SHA512 589b5e2370244b5609d1ec8245f9f5f5cf58d6a2d507768db2cfc5a5b882f7d277d797fd0068b904538f3700e1751df03a21697d5295c83a2bf01a78d0ac6b13 WHIRLPOOL aa75c6c32cdcebd79ecf79abd03b4dc0205517808eb232a9655e8ae3da327cd62ad7183f4e0b0f6b7b52649c0c5058fdc2b57bc7b31b7dffb05e8a1508307d5c diff --git a/net-misc/rclone/metadata.xml b/net-misc/rclone/metadata.xml new file mode 100644 index 000..76f45cdee0f --- /dev/null +++ b/net-misc/rclone/metadata.xml @@ -0,0 +1,8 @@ + +http://www.gentoo.org/dtd/metadata.dtd";> + + + perfin...@gentoo.org + Jason Zaman + + diff --git a/net-misc/rclone/rclone-1.36.ebuild b/net-misc/rclone/rclone-1.36.ebuild new file mode 100644 index 000..0c936bdca50 --- /dev/null +++ b/net-misc/rclone/rclone-1.36.ebuild @@ -0,0 +1,31 @@ +# 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} == ** ]]; 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" +IUSE="" + +DEPEND="" +RDEPEND="${DEPEND}" + +src_install() { + dobin ${PN} + doman src/${EGO_PN}/${PN}.1 + dodoc src/${EGO_PN}/README.md +} diff --git a/net-misc/rclone/rclone-.ebuild b/net-misc/rclone/rclone-.ebuild new file mode 100644 index 000..0c936bdca50 --- /dev/null +++ b/net-misc/rclone/rclone-.ebuild @@ -0,0 +1,31 @@ +# 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} == ** ]]; 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" +IUSE="" + +DEPEND="" +RDEPEND="${DEPEND}" + +src_install() { + dobin ${PN} + doman src/${EGO_PN}/${PN}.1 + dodoc src/${EGO_PN}/README.md +}