diff --git a/package/zxlhhyccc/luci-app-verysync/Makefile b/package/zxlhhyccc/luci-app-verysync/Makefile deleted file mode 100644 index d9e018aadc..0000000000 --- a/package/zxlhhyccc/luci-app-verysync/Makefile +++ /dev/null @@ -1,17 +0,0 @@ -# Copyright (C) 2016 Openwrt.org -# -# This is free software, licensed under the Apache License, Version 2.0 . -# - -include $(TOPDIR)/rules.mk - -LUCI_TITLE:=LuCI support for verysync -LUCI_DEPENDS:=+verysync -LUCI_PKGARCH:=all -PKG_VERSION:=1.0 -PKG_RELEASE:=2 - -include $(TOPDIR)/feeds/luci/luci.mk - -# call BuildPackage - OpenWrt buildroot signature - diff --git a/package/zxlhhyccc/luci-app-verysync/luasrc/controller/verysync.lua b/package/zxlhhyccc/luci-app-verysync/luasrc/controller/verysync.lua deleted file mode 100644 index 4dea43b909..0000000000 --- a/package/zxlhhyccc/luci-app-verysync/luasrc/controller/verysync.lua +++ /dev/null @@ -1,18 +0,0 @@ - -module("luci.controller.verysync", package.seeall) - -function index() - if not nixio.fs.access("/etc/config/verysync") then - return - end - - entry({"admin", "nas", "verysync"}, cbi("verysync"), _("Verysync"), 10).dependent = true - entry({"admin","nas","verysync","status"},call("act_status")).leaf=true -end - -function act_status() - local e={} - e.running=luci.sys.call("pgrep verysync >/dev/null")==0 - luci.http.prepare_content("application/json") - luci.http.write_json(e) -end diff --git a/package/zxlhhyccc/luci-app-verysync/luasrc/model/cbi/verysync.lua b/package/zxlhhyccc/luci-app-verysync/luasrc/model/cbi/verysync.lua deleted file mode 100644 index 20b74a04a2..0000000000 --- a/package/zxlhhyccc/luci-app-verysync/luasrc/model/cbi/verysync.lua +++ /dev/null @@ -1,20 +0,0 @@ --- Copyright 2008 Yanira --- Licensed to the public under the Apache License 2.0. - -require("nixio.fs") - -m = Map("verysync", translate("An Efficient Data Transfer Tool"), - translate("Simple and easy-to-use multi-platform file synchronization software, astonishing transmission speed is different from the greatest advantage of other products, micro-force synchronization of intelligent P2P technology to accelerate synchronization, will split the file into several KB-only data synchronization, and the file will be AES encryption processing.")) - -m:section(SimpleSection).template = "verysync/verysync_status" - -s = m:section(TypedSection, "setting", translate("Settings")) -s.anonymous = true - -s:option(Flag, "enabled", translate("Enable")) - -s:option(Value, "port", translate("port")).default = 8886 -s.rmempty = true - - -return m diff --git a/package/zxlhhyccc/luci-app-verysync/luasrc/view/verysync/verysync_status.htm b/package/zxlhhyccc/luci-app-verysync/luasrc/view/verysync/verysync_status.htm deleted file mode 100644 index 5564d75de0..0000000000 --- a/package/zxlhhyccc/luci-app-verysync/luasrc/view/verysync/verysync_status.htm +++ /dev/null @@ -1,22 +0,0 @@ - - -
-

- <%:Collecting data...%> -

-
diff --git a/package/zxlhhyccc/luci-app-verysync/po/zh-cn/verysync.po b/package/zxlhhyccc/luci-app-verysync/po/zh-cn/verysync.po deleted file mode 100644 index 03bc029c66..0000000000 --- a/package/zxlhhyccc/luci-app-verysync/po/zh-cn/verysync.po +++ /dev/null @@ -1,13 +0,0 @@ -msgid "Verysync" -msgstr "微力同步" - -msgid "An Efficient Data Transfer Tool" -msgstr "一款高效的数据传输工具" - -msgid "Simple and easy-to-use multi-platform file synchronization software, astonishing transmission speed is different from the greatest advantage of other products, micro-force synchronization of intelligent P2P technology to accelerate synchronization, will split the file into several KB-only data synchronization, and the file will be AES encryption processing." -msgstr "简单易用的多平台文件同步软件,惊人的传输速度是不同于其他产品的最大优势, 微力同步 的智能 P2P 技术加速同步,会将文件分割成若干份仅 KB 的数据同步,而文件都会进行 AES 加密处理。" - - - - - diff --git a/package/zxlhhyccc/luci-app-verysync/root/etc/config/verysync b/package/zxlhhyccc/luci-app-verysync/root/etc/config/verysync deleted file mode 100644 index 5eba45b255..0000000000 --- a/package/zxlhhyccc/luci-app-verysync/root/etc/config/verysync +++ /dev/null @@ -1,4 +0,0 @@ - -config setting 'config' - option enabled '0' - option port '8886' diff --git a/package/zxlhhyccc/luci-app-verysync/root/etc/init.d/verysync b/package/zxlhhyccc/luci-app-verysync/root/etc/init.d/verysync deleted file mode 100755 index 964305a619..0000000000 --- a/package/zxlhhyccc/luci-app-verysync/root/etc/init.d/verysync +++ /dev/null @@ -1,43 +0,0 @@ -#!/bin/sh /etc/rc.common -START=50 - -run_verysync() -{ - local enabled - config_get_bool enabled $1 enabled - if [ $enabled = 1 ]; then - local port - config_get port $1 port - state=`pgrep verysync | wc -l` - if [ $state = 0 ] ; then - export HOME="/root" - verysync -gui-address="0.0.0.0:$port" -logfile="/var/log/verysync.log" -no-browser >/dev/null & - echo "启动中..." - start=`pgrep verysync | wc -l` - if [ $start = 0 ] ; then - echo "启动失败" - else - echo "启动成功" - fi - else - echo "已在运行" - fi - fi -} - -start() -{ - config_load verysync - config_foreach run_verysync setting -} - -stop() -{ - kill -9 `pgrep verysync` - stop=`pgrep verysync | wc -l` - if [ $stop = 0 ] ; then - echo "已停止运行" - else - echo "未停止运行" - fi -} diff --git a/package/zxlhhyccc/luci-app-verysync/root/etc/uci-defaults/luci-verysync b/package/zxlhhyccc/luci-app-verysync/root/etc/uci-defaults/luci-verysync deleted file mode 100755 index c32f7ee3da..0000000000 --- a/package/zxlhhyccc/luci-app-verysync/root/etc/uci-defaults/luci-verysync +++ /dev/null @@ -1,12 +0,0 @@ -#!/bin/sh -touch /etc/config/verysync - -uci -q batch <<-EOF >/dev/null - delete ucitrack.@verysync[-1] - add ucitrack verysync - set ucitrack.@verysync[-1].exec='/etc/init.d/verysync restart' - commit ucitrack -EOF -# remove LuCI cache -rm -f /tmp/luci* -exit 0 diff --git a/package/zxlhhyccc/verysync/Makefile b/package/zxlhhyccc/verysync/Makefile deleted file mode 100644 index 745d8f5d50..0000000000 --- a/package/zxlhhyccc/verysync/Makefile +++ /dev/null @@ -1,65 +0,0 @@ -# -# Copyright (C) 2015-2016 OpenWrt.org -# -# This is free software, licensed under the GNU General Public License v3. -# - -include $(TOPDIR)/rules.mk - -ifeq ($(ARCH),x86_64) - PKG_ARCH_VERYSYNC:=amd64 -endif -ifeq ($(ARCH),mipsel) - PKG_ARCH_VERYSYNC:=mipsle -endif -ifeq ($(ARCH),mips) - PKG_ARCH_VERYSYNC:=mips -endif -ifeq ($(ARCH),i386) - PKG_ARCH_VERYSYNC:=386 -endif -ifeq ($(ARCH),arm) - PKG_ARCH_VERYSYNC:=arm -endif -ifeq ($(ARCH),aarch64) - PKG_ARCH_VERYSYNC:=arm64 -endif - -PKG_NAME:=verysync -PKG_VERSION:=v1.1.3 -PKG_RELEASE:=1 -PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) -PKG_SOURCE:=$(PKG_NAME)-linux-$(PKG_ARCH_VERYSYNC)-$(PKG_VERSION).tar.gz -PKG_SOURCE_URL:=http://releases-cdn.verysync.com/releases/$(PKG_VERSION)/ -PKG_HASH:=skip - -include $(INCLUDE_DIR)/package.mk - -define Package/$(PKG_NAME) - SECTION:=net - CATEGORY:=Network - TITLE:=A efficient data transmission tool - DEPENDS:= - URL:=http://www.verysync.com -endef - -define Package/$(PKG_NAME)/description - Verysync is a efficient data transmission tool. -endef - -define Build/Prepare - tar -xzvf $(DL_DIR)/$(PKG_SOURCE) -C $(PKG_BUILD_DIR) -endef - -define Build/Configure -endef - -define Build/Compile -endef - -define Package/$(PKG_NAME)/install - $(INSTALL_DIR) $(1)/usr/bin - $(INSTALL_BIN) $(PKG_BUILD_DIR)/$(PKG_NAME)-linux-$(PKG_ARCH_VERYSYNC)-$(PKG_VERSION)/verysync $(1)/usr/bin/verysync -endef - -$(eval $(call BuildPackage,$(PKG_NAME)))