diff --git a/net/rclone/Makefile b/net/rclone/Makefile index 1cb64f9f4171..c1b59156d493 100644 --- a/net/rclone/Makefile +++ b/net/rclone/Makefile @@ -1,27 +1,27 @@ PORTNAME= rclone DISTVERSIONPREFIX= v -DISTVERSION= 1.68.1 +DISTVERSION= 1.69.1 CATEGORIES= net MAINTAINER= tremere@cainites.net COMMENT= Sync files to and from various cloud services WWW= https://rclone.org/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libfuse.so:filesystems/fusefs-libs RUN_DEPENDS= ca_root_nss>=0:security/ca_root_nss -USES= cpe go:modules +USES= cpe go:1.23,modules GO_MODULE= github.com/rclone/rclone GO_BUILDFLAGS= -ldflags -s -tags cmount PLIST_FILES= bin/rclone \ share/man/man1/rclone.1.gz post-install: ${INSTALL_MAN} ${WRKSRC}/rclone.1 ${STAGEDIR}${PREFIX}/share/man/man1 .include diff --git a/net/rclone/distinfo b/net/rclone/distinfo index df9d9c89b5ac..d2b493caa135 100644 --- a/net/rclone/distinfo +++ b/net/rclone/distinfo @@ -1,5 +1,5 @@ -TIMESTAMP = 1727252942 -SHA256 (go/net_rclone/rclone-v1.68.1/v1.68.1.mod) = 25fb6509f155cdbfa6f5597dac1221e223c7e729fa3b4a1b866361b14ce78aa9 -SIZE (go/net_rclone/rclone-v1.68.1/v1.68.1.mod) = 11349 -SHA256 (go/net_rclone/rclone-v1.68.1/v1.68.1.zip) = fa8c6f66b40b875e4cd03889d7df71cf95ace6d4538b4184a97fdfba037182f9 -SIZE (go/net_rclone/rclone-v1.68.1/v1.68.1.zip) = 18521535 +TIMESTAMP = 1739708088 +SHA256 (go/net_rclone/rclone-v1.69.1/v1.69.1.mod) = 1be77b52090f7a50ec5b0e3f54ad8e1a992e4fc380b64998813b1b63f39905c1 +SIZE (go/net_rclone/rclone-v1.69.1/v1.69.1.mod) = 11360 +SHA256 (go/net_rclone/rclone-v1.69.1/v1.69.1.zip) = acae4ce89fc49d909d92e7d234b33712ab57da03fec144028ece30c6842fcd5a +SIZE (go/net_rclone/rclone-v1.69.1/v1.69.1.zip) = 18052005 diff --git a/net/rclone/files/patch-vendor_bazil.org_fuse_mount__freebsd.go b/net/rclone/files/patch-vendor_bazil.org_fuse_mount__freebsd.go deleted file mode 100644 index 6e65abfd799a..000000000000 --- a/net/rclone/files/patch-vendor_bazil.org_fuse_mount__freebsd.go +++ /dev/null @@ -1,15 +0,0 @@ ---- vendor/bazil.org/fuse/mount_freebsd.go.orig 2022-08-09 15:43:51 UTC -+++ vendor/bazil.org/fuse/mount_freebsd.go -@@ -56,10 +56,11 @@ func mount(dir string, conf *mountConfig) (*os.File, e - } - } - -- f, err := os.OpenFile("/dev/fuse", os.O_RDWR, 0o000) -+ fd, err := syscall.Open("/dev/fuse", os.O_RDWR|syscall.O_CLOEXEC, 0o000) - if err != nil { - return nil, err - } -+ f := os.NewFile(uintptr(fd), "/dev/fuse") - - cmd := exec.Command( - "/sbin/mount_fusefs",