source: projects/specs/branches/6/d/duplicity/duplicity-vl.spec @ 4472

Revision 4472, 2.4 KB checked in by kudoh, 13 years ago (diff)
Line 
1Version: 0.6.14
2Summary: Untrusted/encrypted backup using rsync algorithm
3Summary(ja): rsync アルゴリズムを使い暗号化されない/されたバックアップを行う
4
5Name: duplicity
6Release: 1%{?_dist_release}
7URL: http://www.nongnu.org/duplicity/
8Source: http://savannah.nongnu.org/download/duplicity/%{name}-%{version}.tar.gz
9License: GPLv2+
10Group: Applications/Archiving
11BuildRoot: %{_tmppath}/%{name}-%{version}-root
12
13Requires: librsync >= 0.9.6 python >= 2.3 gnupg >= 1.0.6
14Requires: openssh-clients rsync ncftp
15Requires: python-boto >= 0.9d python-GnuPGInterface >= 0.3.2
16BuildRequires: python-devel >= 2.3
17BuildRequires: librsync-devel >= 0.9.6
18
19%description
20Duplicity incrementally backs up files and directory by encrypting
21tar-format volumes with GnuPG and uploading them to a remote (or
22local) file server.  In theory many remote backends are possible;
23right now local, ssh/scp, ftp, and rsync backends are written.
24Because duplicity uses librsync, the incremental archives are space
25efficient and only record the parts of files that have changed since
26the last backup.  Currently duplicity supports deleted files, full
27unix permissions, directories, symbolic links, fifos, etc., but not
28hard links.
29
30%prep
31%setup -q
32
33%build
34%{__python} setup.py build
35
36%install
37rm -rf $RPM_BUILD_ROOT
38%{__python} setup.py install -O1 --skip-build --root $RPM_BUILD_ROOT
39
40%find_lang %{name}
41
42%clean
43[ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT
44
45%files -f %{name}.lang
46%defattr(-,root,root)
47%doc CHANGELOG COPYING README
48%{_bindir}/rdiffdir
49%{_bindir}/%{name}
50%{_mandir}/man1/%{name}*
51%{_mandir}/man1/rdiffdir*
52%{python_sitearch}/%{name}*
53
54%changelog
55* Thu Aug 04 2011 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.6.14-1
56- new upstream release
57
58* Sat Apr 30 2011 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.6.13-1
59- new upstream release
60
61* Tue Dec 7 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.6.11-1
62- new upstream release
63
64* Wed Oct 13 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.6.10-1
65- new upstream release
66
67* Fri Aug 20 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.6.09-1
68- new upstream release
69
70* Sat May 22 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.6.08b-1
71- initial build for VineSeed
72
73* Sat Aug 09 2003 Ben Escoto <bescoto@stanford.edu>
74- Repackaging for Fedora
75- autodetect python version
76- require librsync >=0.9.6
77
78* Sun Aug 30 2002 Ben Escoto <bescoto@stanford.edu>
79- Initial RPM
Note: See TracBrowser for help on using the repository browser.