Mention the latest changes.
[rsync/rsync.git] / packaging / lsb / rsync.spec
CommitLineData
0b25efc1 1Summary: Program for efficient remote updates of files.
2Name: rsync
29fbd1ee 3Version: 2.6.4pre1
0b25efc1 4Release: 1
5Copyright: GPL
6Group: Applications/Networking
0d7d3763 7Source: ftp://samba.anu.edu.au/pub/rsync/rsync-%{version}.tar.gz
0b25efc1 8URL: http://samba.anu.edu.au/rsync/
9Packager: Andrew Tridgell <tridge@samba.anu.edu.au>
10BuildRoot: /tmp/rsync
11
12%description
13rsync is a replacement for rcp that has many more features.
14
15rsync uses the "rsync algorithm" which provides a very fast method for
16bringing remote files into sync. It does this by sending just the
17differences in the files across the link, without requiring that both
18sets of files are present at one of the ends of the link beforehand.
19
20A technical report describing the rsync algorithm is included with
21this package.
22
23%changelog
e2bea9eb 24* Thu Jan 30 2003 Horst von Brand <vonbrand@inf.utfsm.cl>
3fccfafd 25 Fixed "Sept" date in %changelog here
e2bea9eb
PG
26 Use %{_mandir} to point to manpages
27 Support for compressed manpages (* at end catches them in %files)
3fccfafd 28 Add doc/README-SGML and doc/rsync.sgml to %doc
e2bea9eb 29
3fccfafd 30* Mon Sep 11 2000 John H Terpstra <jht@turbolinux.com>
0b25efc1 31 Changed target paths to be Linux Standards Base compliant
32
33* Mon Jan 25 1999 Stefan Hornburg <racke@linuxia.de>
e2bea9eb
PG
34 quoted RPM_OPT_FLAGS for the sake of robustness
35
0b25efc1 36* Mon May 18 1998 Andrew Tridgell <tridge@samba.anu.edu.au>
37 reworked for auto-building when I release rsync (tridge@samba.anu.edu.au)
38
39* Sat May 16 1998 John H Terpstra <jht@aquasoft.com.au>
40 Upgraded to Rsync 2.0.6
41 -new feature anonymous rsync
42
43* Mon Apr 6 1998 Douglas N. Arnold <dna@math.psu.edu>
44
45Upgrade to rsync version 1.7.2.
46
47* Sun Mar 1 1998 Douglas N. Arnold <dna@math.psu.edu>
48
49Built 1.6.9-1 based on the 1.6.3-2 spec file of John A. Martin.
50Changes from 1.6.3-2 packaging: added latex and dvips commands
51to create tech_report.ps.
52
53* Mon Aug 25 1997 John A. Martin <jam@jamux.com>
54
55Built 1.6.3-2 after finding no rsync-1.6.3-1.src.rpm although there
56was an ftp://ftp.redhat.com/pub/contrib/alpha/rsync-1.6.3-1.alpha.rpm
57showing no packager nor signature but giving
58"Source RPM: rsync-1.6.3-1.src.rpm".
59
60Changes from 1.6.2-1 packaging: added '$RPM_OPT_FLAGS' to make, strip
61to '%build', removed '%prefix'.
62
63* Thu Apr 10 1997 Michael De La Rue <miked@ed.ac.uk>
64
65rsync-1.6.2-1 packaged. (This entry by jam to credit Michael for the
66previous package(s).)
67
68%prep
69%setup
70
71%build
3fccfafd 72./configure --prefix=/usr --mandir=%{_mandir}
0b25efc1 73make CFLAGS="$RPM_OPT_FLAGS"
74strip rsync
75
76%install
3fccfafd
PG
77mkdir -p $RPM_BUILD_ROOT/usr/bin
78mkdir -p $RPM_BUILD_ROOT/%{_mandir}/man{1,5}
0b25efc1 79install -m755 rsync $RPM_BUILD_ROOT/usr/bin
e2bea9eb
PG
80install -m644 rsync.1 $RPM_BUILD_ROOT/%{_mandir}/man1
81install -m644 rsyncd.conf.5 $RPM_BUILD_ROOT/%{_mandir}/man5
0b25efc1 82
83%clean
84rm -rf $RPM_BUILD_ROOT
85
86%files
87%attr(-,root,root) /usr/bin/rsync
3fccfafd
PG
88%attr(-,root,root) %{_mandir}/man1/rsync.1*
89%attr(-,root,root) %{_mandir}/man5/rsyncd.conf.5*
0b25efc1 90%attr(-,root,root) %doc tech_report.tex
91%attr(-,root,root) %doc README
92%attr(-,root,root) %doc COPYING
3fccfafd 93%attr(-,root,root) %doc doc/README-SGML doc/rsync.sgml