]> git.pld-linux.org Git - packages/rsync.git/blob - rsync.spec
- added Group(pl).
[packages/rsync.git] / rsync.spec
1 Summary:     Program for efficient remote updates of files.
2 Name:        rsync
3 Version:     2.1.1
4 Release:     1
5 Copyright:   GPL
6 Group:       Applications/Networking
7 Group(pl):   Aplikacje/Sieæ
8 Source:      ftp://samba.anu.edu.au/pub/rsync/%{name}-%{version}.tar.gz
9 URL:         http://samba.anu.edu.au/rsync
10 BuildRoot:   /tmp/%{name}-%{version}-root
11
12 %description
13 rsync is a replacement for rcp that has many more features.
14
15 rsync uses the "rsync algorithm" which provides a very fast method for
16 bringing remote files into sync. It does this by sending just the
17 differences in the files across the link, without requiring that both
18 sets of files are present at one of the ends of the link beforehand.
19
20 A technical report describing the rsync algorithm is included with
21 this package. 
22
23 %prep
24 %setup -q
25
26 %build
27 ./configure --prefix=/usr
28 make CFLAGS="$RPM_OPT_FLAGS"
29 strip rsync
30 latex tech_report
31 dvips tech_report -o
32
33 %install
34 rm -rf $RPM_BUILD_ROOT
35 install -d $RPM_BUILD_ROOT/usr/{bin,man/man{1,5}}
36 install rsync $RPM_BUILD_ROOT/usr/bin
37 install rsync.1 $RPM_BUILD_ROOT/usr/man/man1
38 install rsyncd.conf.5 $RPM_BUILD_ROOT/usr/man/man5
39
40 %clean
41 rm -rf $RPM_BUILD_ROOT
42
43 %files
44
45 %attr(644, root, root, 755) %doc tech_report.ps README
46 %attr(755, root, root) /usr/bin/rsync
47 %attr(644, root, root) /usr/man/man[15]/*
48
49 %changelog
50 * Fri Sep 18 1998 Tomasz K³oczko <kloczek@rudy.mif.pg.gda.pl>
51   [2.1.1-1]
52 - added -q %setup parameter,
53 - changed Buildroot to /tmp/%%{name}-%%{version}-root,
54 - added using %%{name} and %%{version} in Source,
55 - added using $RPM_OPT_FLAGS during compile,
56 - added full %attr description in %files.
57
58 * Thu Jun 18 1998 Douglas N. Arnold <dna@math.psu.edu>
59 Upgrade to rsync version 2.0.18
60
61 * Sat May 16 1998 John H Terpstra <jht@aquasoft.com.au>
62   Upgraded to Rsync 2.0.6
63     -new feature anonymous rsync
64
65 * Mon Apr  6 1998 Douglas N. Arnold <dna@math.psu.edu>
66 Upgrade to rsync version 1.7.2.
67
68 * Sun Mar  1 1998 Douglas N. Arnold <dna@math.psu.edu>
69 Built 1.6.9-1 based on the 1.6.3-2 spec file of John A. Martin.
70 Changes from 1.6.3-2 packaging: added latex and dvips commands
71 to create tech_report.ps.
72
73 * Mon Aug 25 1997 John A. Martin <jam@jamux.com>
74 Built 1.6.3-2 after finding no rsync-1.6.3-1.src.rpm although there
75 was an ftp://ftp.redhat.com/pub/contrib/alpha/rsync-1.6.3-1.alpha.rpm
76 showing no packager nor signature but giving 
77 "Source RPM: rsync-1.6.3-1.src.rpm".
78
79 Changes from 1.6.2-1 packaging: added '$RPM_OPT_FLAGS' to make, strip
80 to '%build', removed '%prefix'.
81
82 * Thu Apr 10 1997 Michael De La Rue <miked@ed.ac.uk>
83 rsync-1.6.2-1 packaged.  (This entry by jam to credit Michael for the
84 previous package(s).)
This page took 0.038237 seconds and 4 git commands to generate.