rclone: initial package
Signed-off-by: Elon Huang <elonh@immortalwrt.org>
Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
(cherry picked from commit d518239888
)
This commit is contained in:
parent
3ff099e0d3
commit
ebabd2430c
3 changed files with 197 additions and 0 deletions
82
net/rclone/Makefile
Normal file
82
net/rclone/Makefile
Normal file
|
@ -0,0 +1,82 @@
|
|||
# SPDX-Identifier-License: GPL-3.0-or-later
|
||||
#
|
||||
# Copyright (C) 2019 Elon Huang <elonhhuang@gmail.com>
|
||||
# Copyright (C) 2021 ImmortalWrt.org
|
||||
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=rclone
|
||||
PKG_VERSION:=1.56.2
|
||||
PKG_RELEASE:=$(AUTORELEASE)
|
||||
|
||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||
PKG_SOURCE_URL:=https://codeload.github.com/rclone/rclone/tar.gz/v$(PKG_VERSION)?
|
||||
PKG_HASH:=a5b0b7dfe17d9ec74e3a33415eec4331c61d800d8823621e61c6164e8f88c567
|
||||
|
||||
PKG_LICENSE:=MIT
|
||||
PKG_LICENSE_FILE:=LICENSE
|
||||
PKG_MAINTAINER:=Elon Huang <elonhhuang@gmail.com> \
|
||||
Tianling Shen <cnsztl@immortalwrt.org>
|
||||
|
||||
PKG_BUILD_DEPENDS:=golang/host
|
||||
PKG_BUILD_PARALLEL:=1
|
||||
PKG_USE_MIPS16:=0
|
||||
|
||||
GO_PKG:=github.com/rclone/rclone
|
||||
GO_PKG_EXCLUDES:=test
|
||||
GO_PKG_LDFLAGS_X:= \
|
||||
github.com/rclone/rclone/fs.Version=v$(PKG_VERSION) \
|
||||
main.Version=v$(PKG_VERSION) \
|
||||
main.BuildUser=openwrt \
|
||||
main.BuildHost=openwrt
|
||||
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
include ../../lang/golang/golang-package.mk
|
||||
|
||||
define Package/rclone/Default
|
||||
SECTION:=net
|
||||
CATEGORY:=Network
|
||||
SUBMENU:=File Transfer
|
||||
TITLE:=rsync for cloud storage
|
||||
URL:=https://rclone.org
|
||||
endef
|
||||
|
||||
define Package/rclone
|
||||
$(call Package/rclone/Default)
|
||||
DEPENDS:=$(GO_ARCH_DEPENDS) +ca-bundle +fuse-utils
|
||||
USERID:=rclone:rclone
|
||||
endef
|
||||
|
||||
define Package/rclone-config
|
||||
TITLE+= (Config Scripts)
|
||||
DEPENDS:=+rclone
|
||||
endef
|
||||
|
||||
define Package/rclone/description
|
||||
Rclone ("rsync for cloud storage") is a command line program to sync
|
||||
files and directories to and from different cloud storage providers.
|
||||
endef
|
||||
|
||||
define Package/rclone-config/conffiles
|
||||
/etc/config/rclone
|
||||
endef
|
||||
|
||||
# Disable CGO due to ld linker issue
|
||||
GO_PKG_TARGET_VARS:=$(filter-out CGO_ENABLED=%,$(GO_PKG_TARGET_VARS)) CGO_ENABLED=0
|
||||
|
||||
define Package/rclone/install
|
||||
$(call GoPackage/Package/Install/Bin,$(PKG_INSTALL_DIR))
|
||||
$(INSTALL_DIR) $(1)/usr/bin/
|
||||
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/rclone $(1)/usr/bin/
|
||||
endef
|
||||
|
||||
define Package/rclone-config/install
|
||||
$(INSTALL_DIR) $(1)/etc/config/
|
||||
$(INSTALL_CONF) $(CURDIR)/files/rclone.config $(1)/etc/config/rclone
|
||||
$(INSTALL_DIR) $(1)/etc/init.d/
|
||||
$(INSTALL_BIN) $(CURDIR)/files/rclone.init $(1)/etc/init.d/rclone
|
||||
endef
|
||||
|
||||
$(eval $(call GoBinPackage,rclone))
|
||||
$(eval $(call BuildPackage,rclone))
|
||||
$(eval $(call BuildPackage,rclone-config))
|
18
net/rclone/files/rclone.config
Normal file
18
net/rclone/files/rclone.config
Normal file
|
@ -0,0 +1,18 @@
|
|||
|
||||
config global 'global'
|
||||
option enabled '0'
|
||||
|
||||
config conf 'config'
|
||||
option config_path '/etc/rclone/rclone.conf'
|
||||
option port '5572'
|
||||
option username 'admin'
|
||||
option password 'admin'
|
||||
option addr_type 'lan'
|
||||
|
||||
config proxy 'proxy'
|
||||
option enabled '0'
|
||||
option proxy_addr 'socks5://127.0.0.1:1080'
|
||||
|
||||
config log 'log'
|
||||
option path '/var/log/rclone/output'
|
||||
|
97
net/rclone/files/rclone.init
Executable file
97
net/rclone/files/rclone.init
Executable file
|
@ -0,0 +1,97 @@
|
|||
#!/bin/sh /etc/rc.common
|
||||
# Copyright (C) 2019 Elon Huang <elonhhuang@gmail.com>
|
||||
|
||||
USE_PROCD=1
|
||||
|
||||
START=95
|
||||
STOP=10
|
||||
|
||||
APP="rclone"
|
||||
CONFIGURATION="rclone"
|
||||
|
||||
_info() {
|
||||
logger -p daemon.info -t "$APP" "$*"
|
||||
}
|
||||
|
||||
_err() {
|
||||
logger -p daemon.err -t "$APP" "$*"
|
||||
}
|
||||
|
||||
start_service() {
|
||||
config_load "${CONFIGURATION}"
|
||||
|
||||
local enabled
|
||||
config_get enabled global enabled
|
||||
if [ "$enabled" = "1" ]; then
|
||||
_info 'Instance "rclone" is disabled.'
|
||||
return 1
|
||||
else
|
||||
_info 'Instance "rclone" is starting.'
|
||||
fi
|
||||
|
||||
local config_path log_path
|
||||
local addr addr_type port
|
||||
local username password
|
||||
local proxy_enable proxy_addr
|
||||
|
||||
config_get config_path config config_path
|
||||
config_get log_path log path
|
||||
|
||||
config_get addr_type config addr_type
|
||||
config_get port config port
|
||||
|
||||
config_get username config username
|
||||
config_get password config password
|
||||
|
||||
config_get proxy_enable proxy enabled
|
||||
config_get proxy_addr proxy proxy_addr
|
||||
|
||||
if [ "${addr_type}" = "local" ]; then
|
||||
addr="$(uci get network.loopback.ipaddr)"
|
||||
elif [ "${addr_type}" = "lan" ]; then
|
||||
addr="$(uci get network.lan.ipaddr)"
|
||||
else
|
||||
addr=""
|
||||
fi
|
||||
|
||||
local config_dir="${config_path%/*}"
|
||||
[ -d "$config_dir" ] || mkdir -p "$config_dir"
|
||||
|
||||
[ -d "/lib/upgrade/keep.d" ] || mkdir -p "/lib/upgrade/keep.d/"
|
||||
echo "$config_path" > "/lib/upgrade/keep.d/luci-app-rclone"
|
||||
|
||||
local log_dir="${log_path%/*}"
|
||||
[ -d "$log_dir" ] || mkdir -p "$log_dir"
|
||||
|
||||
procd_open_instance
|
||||
|
||||
procd_set_param command /usr/bin/$APP rcd -vv
|
||||
procd_append_param command "--rc-addr=$addr:$port"
|
||||
procd_append_param command "--rc-user=$username" "--rc-pass=$password"
|
||||
procd_append_param command "--config=$config_path"
|
||||
procd_append_param command "--rc-allow-origin=*"
|
||||
procd_append_param command "--log-file=${log_path}"
|
||||
if [ "${proxy_enable}" = "1" ]; then
|
||||
procd_set_param env all_proxy="$proxy_addr" https_proxy="$proxy_addr" http_proxy="$proxy_addr"
|
||||
procd_append_param env ALL_PROXY="$proxy_addr" HTTPS_PROXY="$proxy_addr" HTTP_PROXY="$proxy_addr"
|
||||
fi
|
||||
|
||||
procd_set_param stdout 1
|
||||
procd_set_param stderr 1
|
||||
# procd_set_param pidfile /var/run/rclone.pid
|
||||
procd_set_param respawn
|
||||
|
||||
procd_set_param user rclone
|
||||
procd_set_param group rclone
|
||||
|
||||
procd_close_instance
|
||||
}
|
||||
|
||||
reload_service() {
|
||||
stop
|
||||
start
|
||||
}
|
||||
|
||||
service_triggers() {
|
||||
procd_add_reload_trigger "rclone"
|
||||
}
|
Loading…
Reference in a new issue