Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] rclone: update to 1.56.0
@ 2021-07-21 20:42 4ricci
  2021-07-22 13:39 ` [PR PATCH] [Closed]: " ahesford
  0 siblings, 1 reply; 2+ messages in thread
From: 4ricci @ 2021-07-21 20:42 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1808 bytes --]

There is a new pull request by 4ricci against master on the void-packages repository

https://github.com/4ricci/void-packages rclone
https://github.com/void-linux/void-packages/pull/32114

rclone: update to 1.56.0
- pass $go_build_tags to `go test` to avoid failure
- disable tests for `rclone serve docker`
- re-enable tests on ci
- adopt package

According to `git log --author` the last time the current maintainer contributed to Void was more than a year ago.

<!-- Mark items with [x] where applicable -->

#### General
- [ ] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
<!-- 
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [ ] I built this PR locally for my native architecture, (ARCH-LIBC)
- [ ] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [ ] aarch64-musl
  - [ ] armv7l
  - [ ] armv6l-musl
-->


A patch file from https://github.com/void-linux/void-packages/pull/32114.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-rclone-32114.patch --]
[-- Type: text/x-diff, Size: 1809 bytes --]

From d5275e5aefb059c93f9420f779a2b889e0bdb584 Mon Sep 17 00:00:00 2001
From: Roberto Ricci <ricci@disroot.org>
Date: Wed, 21 Jul 2021 20:13:17 +0200
Subject: [PATCH] rclone: update to 1.56.0

- pass $go_build_tags to `go test` to avoid failure
- disable tests for `rclone serve docker`
- re-enable tests on ci
- adopt package
---
 srcpkgs/rclone/template | 13 +++++++------
 1 file changed, 7 insertions(+), 6 deletions(-)

diff --git a/srcpkgs/rclone/template b/srcpkgs/rclone/template
index da28404b0342..96626e1ca320 100644
--- a/srcpkgs/rclone/template
+++ b/srcpkgs/rclone/template
@@ -1,6 +1,6 @@
 # Template file for 'rclone'
 pkgname=rclone
-version=1.55.1
+version=1.56.0
 revision=1
 wrksrc="rclone-v${version}"
 build_style=go
@@ -8,14 +8,12 @@ go_import_path=github.com/rclone/rclone
 go_build_tags="noselfupdate"
 go_ldflags="-extldflags=-fuse-ld=bfd -X github.com/rclone/rclone/fs.Version=v${version}"
 short_desc="Rsync for cloud storage"
-maintainer="Diogo Leal <diogo@diogoleal.com>"
+maintainer="Roberto Ricci <ricci@disroot.org>"
 license="MIT"
 homepage="https://rclone.org/"
 changelog="https://raw.githubusercontent.com/rclone/rclone/master/docs/content/changelog.md"
 distfiles="https://downloads.rclone.org/v${version}/rclone-v${version}.tar.gz"
-checksum=25da7fc5c9269b3897f27b0d946919df595c6dda1b127085fda0fe32aa59d29d
-# tests fail on CI
-make_check=ci-skip
+checksum=81d2eda23ebaad0a355aab6ff030712470a42505b94c01c9bb5a9ead9168cedb
 
 pre_build() {
 	if [ "$CROSS_BUILD" ] && [ "$XBPS_TARGET_LIBC" = musl ]; then
@@ -27,7 +25,10 @@ pre_build() {
 }
 
 do_check() {
-	RCLONE_CONFIG="/notfound" go test ./...
+	rm cmd/serve/docker/docker_test.go
+
+	# equivalent to quicktest target of Makefile
+	RCLONE_CONFIG="/notfound" go test -tags "$go_build_tags" ./...
 }
 
 post_install() {

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PR PATCH] [Closed]: rclone: update to 1.56.0
  2021-07-21 20:42 [PR PATCH] rclone: update to 1.56.0 4ricci
@ 2021-07-22 13:39 ` ahesford
  0 siblings, 0 replies; 2+ messages in thread
From: ahesford @ 2021-07-22 13:39 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1660 bytes --]

There's a closed pull request on the void-packages repository

rclone: update to 1.56.0
https://github.com/void-linux/void-packages/pull/32114

Description:
- pass $go_build_tags to `go test` to avoid failure
- disable tests for `rclone serve docker`
- re-enable tests on ci
- adopt package

According to `git log --author` the last time the current maintainer contributed to Void was more than a year ago.

<!-- Mark items with [x] where applicable -->

#### General
- [ ] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
<!-- 
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [ ] I built this PR locally for my native architecture, (ARCH-LIBC)
- [ ] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [ ] aarch64-musl
  - [ ] armv7l
  - [ ] armv6l-musl
-->


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2021-07-22 13:39 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-07-21 20:42 [PR PATCH] rclone: update to 1.56.0 4ricci
2021-07-22 13:39 ` [PR PATCH] [Closed]: " ahesford

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).