]> git.pld-linux.org Git - packages/rsync.git/blob - rsync.spec
- updated to 2.2.1.
[packages/rsync.git] / rsync.spec
1 Summary:     Program for efficient remote updates of files.
2 Name:        rsync
3 Version:     2.2.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 CFLAGS="$RPM_OPT_FLAGS" LDFLAGS="-s" ./configure --prefix=/usr
28 make
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 - added Group(pl),
54 - changed Buildroot to /tmp/%%{name}-%%{version}-root,
55 - added using %%{name} and %%{version} in Source,
56 - added using $RPM_OPT_FLAGS during compile,
57 - added full %attr description in %files.
58
59 * Thu Jun 18 1998 Douglas N. Arnold <dna@math.psu.edu>
60 Upgrade to rsync version 2.0.18
61
62 * Sat May 16 1998 John H Terpstra <jht@aquasoft.com.au>
63   Upgraded to Rsync 2.0.6
64     -new feature anonymous rsync
65
66 * Mon Apr  6 1998 Douglas N. Arnold <dna@math.psu.edu>
67 Upgrade to rsync version 1.7.2.
68
69 * Sun Mar  1 1998 Douglas N. Arnold <dna@math.psu.edu>
70 Built 1.6.9-1 based on the 1.6.3-2 spec file of John A. Martin.
71 Changes from 1.6.3-2 packaging: added latex and dvips commands
72 to create tech_report.ps.
73
74 * Mon Aug 25 1997 John A. Martin <jam@jamux.com>
75 Built 1.6.3-2 after finding no rsync-1.6.3-1.src.rpm although there
76 was an ftp://ftp.redhat.com/pub/contrib/alpha/rsync-1.6.3-1.alpha.rpm
77 showing no packager nor signature but giving 
78 "Source RPM: rsync-1.6.3-1.src.rpm".
79
80 Changes from 1.6.2-1 packaging: added '$RPM_OPT_FLAGS' to make, strip
81 to '%build', removed '%prefix'.
82
83 * Thu Apr 10 1997 Michael De La Rue <miked@ed.ac.uk>
84 rsync-1.6.2-1 packaged.  (This entry by jam to credit Michael for the
85 previous package(s).)
This page took 0.037035 seconds and 4 git commands to generate.