source: projects/specs/trunk/d/duplicity/duplicity-vl.spec @ 6294

Revision 6294, 2.8 KB checked in by kudoh, 12 years ago (diff)
Line 
1Version: 0.6.19
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* Fri Jun 08 2012 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.6.19-1
56- new upstream release
57
58* Tue May 01 2012 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.6.18-1
59- new upstream release
60
61* Tue Feb 21 2012 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.6.17-1
62- new upstream release
63
64* Tue Oct 18 2011 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.6.16-1
65- new upstream release
66
67* Sun Sep 11 2011 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.6.15-1
68- new upstream release
69
70* Thu Aug 04 2011 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.6.14-1
71- new upstream release
72
73* Sat Apr 30 2011 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.6.13-1
74- new upstream release
75
76* Tue Dec 7 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.6.11-1
77- new upstream release
78
79* Wed Oct 13 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.6.10-1
80- new upstream release
81
82* Fri Aug 20 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.6.09-1
83- new upstream release
84
85* Sat May 22 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.6.08b-1
86- initial build for VineSeed
87
88* Sat Aug 09 2003 Ben Escoto <bescoto@stanford.edu>
89- Repackaging for Fedora
90- autodetect python version
91- require librsync >=0.9.6
92
93* Sun Aug 30 2002 Ben Escoto <bescoto@stanford.edu>
94- Initial RPM
Note: See TracBrowser for help on using the repository browser.