~mterry/duplicity/gdrive

« back to all changes in this revision

Viewing changes to dist/duplicity.spec

  • Committer: bescoto
  • Date: 2002-10-29 01:49:46 UTC
  • Revision ID: vcs-imports@canonical.com-20021029014946-3m4rmm5plom7pl6q
Initial checkin

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
Version: $version
 
2
Summary: Untrusted/encrypted backup using rsync algorithm
 
3
Name: duplicity
 
4
Release: 1
 
5
URL: http://rdiff-backup.stanford.edu/duplicity
 
6
Source: %{name}-%{version}.tar.gz
 
7
Copyright: GPL
 
8
Group: Applications/Archiving
 
9
BuildRoot: %{_tmppath}/%{name}-root
 
10
requires: librsync >= 0.9.5.1, python2 >= 2.2, gnupg >= 1.0.6
 
11
BuildPrereq: python2-devel >= 2.2, librsync-devel >= 0.9.5.1
 
12
 
 
13
%description
 
14
Duplicity incrementally backs up files and directory by encrypting
 
15
tar-format volumes with GnuPG and uploading them to a remote (or
 
16
local) file server.  In theory many remote backends are possible;
 
17
right now only the local or ssh/scp backend is written.  Because
 
18
duplicity uses librsync, the incremental archives are space efficient
 
19
and only record the parts of files that have changed since the last
 
20
backup.  Currently duplicity supports deleted files, full unix
 
21
permissions, directories, symbolic links, fifos, etc., but not hard
 
22
links.
 
23
 
 
24
%prep
 
25
%setup
 
26
 
 
27
%build
 
28
python2 setup.py build
 
29
 
 
30
%install
 
31
python2 setup.py install --prefix=$RPM_BUILD_ROOT/usr
 
32
%clean
 
33
 
 
34
%files
 
35
%defattr(-,root,root)
 
36
/usr/bin/rdiffdir
 
37
/usr/bin/duplicity
 
38
/usr/share/doc/duplicity-%{version}
 
39
/usr/share/man/man1
 
40
/usr/lib
 
41
 
 
42
 
 
43
%changelog
 
44
* Sun Aug 30 2002 Ben Escoto <bescoto@stanford.edu>
 
45
- Initial RPM
 
46