Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added rsync version 3.1.3 to synocli-net #3581

Merged
merged 1 commit into from
Dec 5, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions cross/rsync/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
PKG_NAME = rsync
PKG_VERS = 3.1.3
PKG_EXT = tar.gz
PKG_DIR = $(PKG_NAME)-$(PKG_VERS)
PKG_DIST_SITE = https://download.samba.org/pub/$(PKG_NAME)/src
PKG_DIST_NAME = $(PKG_NAME)-$(PKG_VERS).$(PKG_EXT)

# DEPENDS = cross/ncurses

HOMEPAGE = https://rsync.samba.org/
COMMENT = Rsync is a fast and extraordinarily versatile file copying tool. It can copy locally, to/from another host over any remote shell, or to/from a remote rsync daemon. It offers a large number of options that control every aspect of its behavior and permit very flexible specification of the set of files to be copied. It is famous for its delta-transfer algorithm, which reduces the amount of data sent over the network by sending only the differences between the source files and the existing files in the destination. Rsync is widely used for backups and mirroring and as an improved copy command for everyday use.
LICENSE = GPLv3

GNU_CONFIGURE = 1

include ../../mk/spksrc.cross-cc.mk
1 change: 1 addition & 0 deletions cross/rsync/PLIST
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
bin:bin/rsync
3 changes: 3 additions & 0 deletions cross/rsync/digests
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
rsync-3.1.3.tar.gz SHA1 82e7829c0b3cefbd33c233005341e2073c425629
rsync-3.1.3.tar.gz SHA256 55cc554efec5fdaad70de921cd5a5eeb6c29a95524c715f3bbf849235b0800c0
rsync-3.1.3.tar.gz MD5 1581a588fde9d89f6bc6201e8129afaf
7 changes: 4 additions & 3 deletions spk/synocli-net/Makefile
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
SPK_NAME = synocli-net
SPK_VERS = 1.1
SPK_VERS = 1.2
SPK_REV = 2
SPK_ICON = src/synocli-net.png

include ../../mk/spksrc.common.mk

DEPENDS = cross/screen cross/tmux cross/nmap cross/sshfs cross/mosh cross/socat
DEPENDS += cross/rsync
ifneq ($(findstring $(ARCH),$(PPC_ARCHES)),$(ARCH))
DEPENDS += cross/fritzctl
endif
Expand All @@ -14,10 +15,10 @@ endif
SPK_DEPENDS = "Perl>=5.14"

MAINTAINER = ymartin59
DESCRIPTION = "SynoCli Network Tools provides a set of small command-line utilities: screen, tmux, mosh, socat, nmap, sshfs, fritzctl. Credits to Sebastian Schmidt \(publicarray\) for icons"
DESCRIPTION = "SynoCli Network Tools provides a set of small command-line utilities: screen, tmux, mosh, socat, nmap, sshfs, fritzctl, rsync. Credits to Sebastian Schmidt \(publicarray\) for icons"
DISPLAY_NAME = SynoCli Network Tools
STARTABLE = no
CHANGELOG = "3. Build sshfs 2.10 with fuse updated to v2.9.9"
CHANGELOG = "1. Add rsync"

HOMEPAGE = https://github.com/SynoCommunity/spksrc/wiki/FAQ-SynoCliNet
LICENSE = Mixed
Expand Down
2 changes: 1 addition & 1 deletion spk/synocli-net/src/service-setup.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

COMMANDS="nmap nping sshfs fusermount screen mosh mosh-client mosh-server socat procan filan fritzctl"
COMMANDS="nmap nping sshfs fusermount screen mosh mosh-client mosh-server socat procan filan fritzctl rsync"

service_postinst ()
{
Expand Down