initial commit of file from CVS for zsync on Fri 14 Jul 22:37:08 BST 2023

This commit is contained in:
Brian Read 2023-07-14 22:37:08 +01:00
parent 9adcb523b6
commit 4320cf9344
7 changed files with 116 additions and 1 deletions

1
.gitattributes vendored Normal file
View File

@ -0,0 +1 @@
*.tar.bz2 filter=lfs diff=lfs merge=lfs -text

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
*.rpm
*.log
*spec-20*

21
Makefile Normal file
View File

@ -0,0 +1,21 @@
# Makefile for source rpm: zsync
# $Id: Makefile,v 1.1 2016/05/30 07:16:04 unnilennium Exp $
NAME := zsync
SPECFILE = $(firstword $(wildcard *.spec))
define find-makefile-common
for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
endef
MAKEFILE_COMMON := $(shell $(find-makefile-common))
ifeq ($(MAKEFILE_COMMON),)
# attept a checkout
define checkout-makefile-common
test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2
endef
MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
endif
include $(MAKEFILE_COMMON)

View File

@ -1,3 +1,11 @@
# zsync
3rd Party (Maintained by Koozali) git repo for zsync smeserver
3rd Party (Maintained by Koozali) git repo for zsync smeserver
## Description
<br />*This description has been generated by an LLM AI system and cannot be relied on to be fully correct.*
*Once it has been checked, then this comment will be deleted*
<br />
Zsync is a file transfer software package that enables fast, efficient, and reliable downloading of large files over the internet. It works by breaking up the file into smaller chunks, and only downloading the pieces that have changed. This reduces the amount of data that needs to be transferred, and speeds up the download process. Zsync can be used to download files from a range of sources, including FTP, HTTP, and RSYNC servers.

1
contriborbase Normal file
View File

@ -0,0 +1 @@
sme10

BIN
zsync-0.6.2.tar.bz2 (Stored with Git LFS) Normal file

Binary file not shown.

78
zsync.spec Normal file
View File

@ -0,0 +1,78 @@
# $Id$
# Authority: dag
# Upstream: Colin Phipps <cph@moria.org.uk>
Summary: Partial/differential file transfer client over HTTP
Name: zsync
Version: 0.6.2
Release: 1%{?dist}
License: Artistic License v2
Group: Applications/Internet
URL: http://zsync.moria.org.uk/
Packager: Dag Wieers <dag@wieers.com>
Vendor: Dag Apt Repository, http://dag.wieers.com/apt/
Source: http://zsync.moria.org.uk/download/zsync-%{version}.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
%description
zsync is a file transfer program. It allows you to download a file from
a remote server, where you have a copy of an older version of the file
on your computer already. zsync downloads only the new parts of the file.
zsync uses the same algorithm as rsync. However, where rsync is designed
for synchronising data from one computer to another within an organisation,
zsync is designed for file distribution, with one file on a server to be
distributed to thousands of downloaders. zsync requires no special server
software just a web server to host the files and imposes no extra load on
the server, making it ideal for large scale file distribution.
%prep
%setup
%build
%configure
%{__make} %{?_smp_mflags}
%install
%{__rm} -rf %{buildroot}
%{__make} install DESTDIR="%{buildroot}"
%clean
%{__rm} -rf %{buildroot}
%files
%defattr(-, root, root, 0755)
%doc COPYING INSTALL README
%doc %{_mandir}/man1/zsync.1*
%doc %{_mandir}/man1/zsyncmake.1*
%{_bindir}/zsync
%{_bindir}/zsyncmake
%exclude %{_docdir}/zsync/
%changelog
* Fri Jul 14 2023 BogusDateBot
- Eliminated rpmbuild "bogus date" warnings due to inconsistent weekday,
by assuming the date is correct and changing the weekday.
* Tue Sep 21 2010 Dag Wieers <dag@wieers.com> - 0.6.2-1
- Updated to release 0.6.2.
* Tue Jan 27 2009 Dag Wieers <dag@wieers.com> - 0.6-1
- Updated to release 0.6.
* Sun Aug 06 2006 Dag Wieers <dag@wieers.com> - 0.5-1
- Updated to release 0.5.
* Sun Jul 09 2006 Dag Wieers <dag@wieers.com> - 0.4.3-1
- Updated to release 0.4.3.
* Thu Jul 14 2005 Dag Wieers <dag@wieers.com> - 0.4.1-1
- Updated to release 0.4.1.
* Sun May 08 2005 Dag Wieers <dag@wieers.com> - 0.4.0-1
- Updated to release 0.4.0.
* Tue Apr 05 2005 Dag Wieers <dag@wieers.com> - 0.3.3-1
- Initial package. (using DAR)