Date: Mon, 3 Jun 2019 23:47:33 +0000 (UTC) From: Ben Woods <woodsb02@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r503430 - in head/net: . rclone-browser rclone-browser/files Message-ID: <201906032347.x53NlX2A039509@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: woodsb02 Date: Mon Jun 3 23:47:32 2019 New Revision: 503430 URL: https://svnweb.freebsd.org/changeset/ports/503430 Log: Add net/rclone-browser, a simple cross platfrom GUI for the rclone command line tool. Added: head/net/rclone-browser/ head/net/rclone-browser/Makefile (contents, props changed) head/net/rclone-browser/distinfo (contents, props changed) head/net/rclone-browser/files/ head/net/rclone-browser/files/patch-scripts_rclone-browser.desktop (contents, props changed) head/net/rclone-browser/files/patch-src_icon__cache.h (contents, props changed) head/net/rclone-browser/pkg-descr (contents, props changed) head/net/rclone-browser/pkg-plist (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Mon Jun 3 23:16:43 2019 (r503429) +++ head/net/Makefile Mon Jun 3 23:47:32 2019 (r503430) @@ -1150,6 +1150,7 @@ SUBDIR += radsecproxy SUBDIR += radvd SUBDIR += rclone + SUBDIR += rclone-browser SUBDIR += rdapper SUBDIR += rdesktop SUBDIR += rdist6 Added: head/net/rclone-browser/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/rclone-browser/Makefile Mon Jun 3 23:47:32 2019 (r503430) @@ -0,0 +1,25 @@ +# $FreeBSD$ + +PORTNAME= rclone-browser +DISTVERSION= 1.2 +CATEGORIES= net + +MAINTAINER= woodsb02@FreeBSD.org +COMMENT= Simple cross platform GUI for rclone + +LICENSE= UNLICENSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= rclone:net/rclone + +USES= cmake pkgconfig qt:5 +USE_GITHUB= yes +GH_ACCOUNT= mmozeiko +GH_PROJECT= RcloneBrowser +USE_QT= buildtools_build core gui qmake_build widgets + +post-patch: + ${REINPLACE_CMD} -e 's!%%PREFIX%%!${PREFIX}!g' \ + ${WRKSRC}/scripts/rclone-browser.desktop + +.include <bsd.port.mk> Added: head/net/rclone-browser/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/rclone-browser/distinfo Mon Jun 3 23:47:32 2019 (r503430) @@ -0,0 +1,3 @@ +TIMESTAMP = 1559534900 +SHA256 (mmozeiko-RcloneBrowser-1.2_GH0.tar.gz) = 679c4cae5ede309e8ae8f67c482ecef0194fac5fabe9c1784fe4638c4d5bfdb6 +SIZE (mmozeiko-RcloneBrowser-1.2_GH0.tar.gz) = 480391 Added: head/net/rclone-browser/files/patch-scripts_rclone-browser.desktop ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/rclone-browser/files/patch-scripts_rclone-browser.desktop Mon Jun 3 23:47:32 2019 (r503430) @@ -0,0 +1,13 @@ +--- scripts/rclone-browser.desktop.orig 2019-06-03 23:30:21 UTC ++++ scripts/rclone-browser.desktop +@@ -1,8 +1,8 @@ + [Desktop Entry] + Name=Rclone Browser + Comment=Simple cross-platform GUI for rclone +-Exec=/usr/bin/rclone-browser +-Icon=/usr/share/pixmaps/rclone-browser.png ++Exec=%%PREFIX%%/bin/rclone-browser ++Icon=%%PREFIX%%/share/pixmaps/rclone-browser.png + Terminal=false + Type=Application + Categories=Network Added: head/net/rclone-browser/files/patch-src_icon__cache.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/rclone-browser/files/patch-src_icon__cache.h Mon Jun 3 23:47:32 2019 (r503430) @@ -0,0 +1,11 @@ +--- src/icon_cache.h.orig 2019-06-03 23:11:44 UTC ++++ src/icon_cache.h +@@ -23,7 +23,7 @@ signals: (private) + + QHash<QString, QIcon> mIcons; + +-#ifdef Q_OS_LINUX ++#if defined(Q_OS_LINUX) || defined(Q_OS_FREEBSD) + QMimeDatabase mMimeDatabase; + #endif + }; Added: head/net/rclone-browser/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/rclone-browser/pkg-descr Mon Jun 3 23:47:32 2019 (r503430) @@ -0,0 +1,22 @@ +Simple cross platfrom GUI for rclone command line tool. + +Features: +* Allows to browse and modify any rclone remote, including encrypted ones +* Uses same configuration file as rclone, no extra configuration required +* Supports custom location and encryption for `.rclone.conf` configuration file +* Simultaneously navigate multiple repositories in separate tabs +* Lists files hierarchically with file name, size and modify date +* All rclone commands are executed asynchronously, no freezing GUI +* File hierarchy is lazily cached in memory, for faster traversal of folders +* Allows to upload, download, create new folders, rename or delete files/folders +* Allows to calculate size of folder, export list of files and copy rclone + copmmand to clipboard +* Can process multiple upload or download jobs in background +* Drag & drop support for dragging files from local file explorer for uploading +* Streaming media files for playback in player like [mpv][6] or similar +* Mount and unmount folders on macOS and GNU/Linux +* Optionally minimizes to tray, with notifications when upload/download finishes +* Supports portable mode (create .ini file next to executable with same name), + rclone and .rclone.conf path now can be relative to executable + +WWW: https://martins.ninja/RcloneBrowser/ Added: head/net/rclone-browser/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/rclone-browser/pkg-plist Mon Jun 3 23:47:32 2019 (r503430) @@ -0,0 +1,3 @@ +bin/rclone-browser +share/applications/rclone-browser.desktop +share/pixmaps/rclone-browser.png
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201906032347.x53NlX2A039509>