Commit 4e772dbb authored by bescoto's avatar bescoto

Final changes for 0.12.3


git-svn-id: http://svn.savannah.nongnu.org/svn/rdiff-backup@387 2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109
parent d60a0aa3
New in v0.12.3 (2003/08/??) New in v0.12.3 (2003/08/08)
--------------------------- ---------------------------
Patch by Jeffrey Marshall fixes socket/fifo recognition on Mac OS X Patch by Jeffrey Marshall fixes socket/fifo recognition on Mac OS X
...@@ -10,6 +10,11 @@ to have broken recently. ...@@ -10,6 +10,11 @@ to have broken recently.
rdiff-backup should now work with python 2.3. Thanks to Arkadiusz rdiff-backup should now work with python 2.3. Thanks to Arkadiusz
Miskiewicz for bug reports. Miskiewicz for bug reports.
rdiff-backup now builds with and requires librsync 0.9.6. This
version should be much better than the old one and everyone should
probably upgrade. Much thanks to Donovan Baarda for all the work that
went into this release.
New in v0.12.2 (2003/07/24) New in v0.12.2 (2003/07/24)
--------------------------- ---------------------------
......
#!/usr/bin/env python #!/usr/bin/env python
import os, sys, re import os, sys
rpmroot = "/home/ben/rpm" rpmroot = os.path.join(os.environ['HOME'], 'rpm')
if len(sys.argv) == 2: if len(sys.argv) == 2:
version = sys.argv[1] Version = sys.argv[1]
specfile = "rdiff-backup.spec" specfile = "rdiff-backup.spec"
print "Using specfile %s" % specfile print "Using specfile %s" % specfile
else: else:
print "Syntax: %s version_number" % sys.argv[0] print "Syntax: %s version_number" % sys.argv[0]
sys.exit(1) sys.exit(1)
base = "rdiff-backup-%s" % (version,) base = "rdiff-backup-%s" % (Version,)
tarfile = base + ".tar.gz" tarfile = base + ".tar.gz"
rpmbase = base + "-0.fdr.2" # Fedora suffix, with release number 2 rpmbase = base + "-0.fdr.3" # Fedora suffix, with release number 1
i386_rpm = rpmbase + ".i386.rpm" i386_rpm = rpmbase + ".i386.rpm"
source_rpm = rpmbase + ".src.rpm" source_rpm = rpmbase + ".src.rpm"
......
...@@ -3,15 +3,15 @@ ...@@ -3,15 +3,15 @@
Version: $version Version: $version
Summary: Convenient and transparent local/remote incremental mirror/backup Summary: Convenient and transparent local/remote incremental mirror/backup
Name: rdiff-backup Name: rdiff-backup
Release: 0.fdr.2 Release: 0.fdr.3
Epoch: 0 Epoch: 0
URL: http://rdiff-backup.stanford.edu/ URL: http://rdiff-backup.stanford.edu/
Source: http://rdiff-backup.stanford.edu/%{name}-%{version}.tar.gz Source: http://rdiff-backup.stanford.edu/OLD/%{version}/%{name}-%{version}.tar.gz
License: GPL License: GPL
Group: Applications/Archiving Group: Applications/Archiving
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
Requires: librsync >= 0.9.5.1, %{PYTHON_NAME} >= 2.2 Requires: librsync >= 0.9.6, %{PYTHON_NAME} >= 2.2
BuildPrereq: %{PYTHON_NAME}-devel >= 2.2, librsync-devel = 0.9.5.1 BuildPrereq: %{PYTHON_NAME}-devel >= 2.2, librsync-devel >= 0.9.6
%description %description
rdiff-backup is a script, written in Python, that backs up one rdiff-backup is a script, written in Python, that backs up one
...@@ -45,9 +45,8 @@ differences from the previous backup will be transmitted. ...@@ -45,9 +45,8 @@ differences from the previous backup will be transmitted.
%doc CHANGELOG COPYING FAQ.html README %doc CHANGELOG COPYING FAQ.html README
%changelog %changelog
* Thu Jul 24 2003 Ben Escoto <bescoto@stanford.edu> * Thu Aug 8 2003 Ben Escoto <bescoto@stanford.edu>
- Set librsync = 0.9.5.1, because new version will use librsync.h - Set librsync >= 0.9.6, because rsync.h renamed to librsync.h
instead of rsync.h
* Sun Jul 20 2003 Ben Escoto <bescoto@stanford.edu> * Sun Jul 20 2003 Ben Escoto <bescoto@stanford.edu>
- Minor changes to comply with Fedora standards. - Minor changes to comply with Fedora standards.
......
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
* ----------------------------------------------------------------------- */ * ----------------------------------------------------------------------- */
#include <Python.h> #include <Python.h>
#include <rsync.h> #include <librsync.h>
#define RS_JOB_BLOCKSIZE 65536 #define RS_JOB_BLOCKSIZE 65536
static PyObject *librsyncError; static PyObject *librsyncError;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment