Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
R
rdiff-backup
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Guillaume Hervier
rdiff-backup
Commits
a79f1b68
Commit
a79f1b68
authored
Sep 26, 2014
by
Marco Mariani
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
small cleanup, version 1.3.3nxd1
parent
39465b29
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
19 additions
and
5 deletions
+19
-5
CHANGELOG
CHANGELOG
+6
-0
rdiff_backup/Globals.py
rdiff_backup/Globals.py
+2
-1
rdiff_backup/__init__.py
rdiff_backup/__init__.py
+4
-0
setup.py
setup.py
+7
-4
No files found.
CHANGELOG
View file @
a79f1b68
New in v1.3.3nxd1 (2014-xx-xx)
-------------------------------
Experimental support for incremental restore.
New in v1.3.3 (2009/03/16)
---------------------------
...
...
rdiff_backup/Globals.py
View file @
a79f1b68
...
...
@@ -23,7 +23,8 @@ import re, os
# The current version of rdiff-backup
version
=
"$version"
import
rdiff_backup
version
=
rdiff_backup
.
version
# If this is set, use this value in seconds as the current time
# instead of reading it from the clock.
...
...
rdiff_backup/__init__.py
View file @
a79f1b68
# -*- coding: utf-8 -*-
version
=
"1.3.4nxd1"
setup.py
View file @
a79f1b68
...
...
@@ -2,8 +2,11 @@
import
sys
,
os
,
getopt
from
distutils.core
import
setup
,
Extension
# for python setup.py develop (but won't install manpages)
# from setuptools import setup, Extension
version_string
=
"$version"
import
rdiff_backup
version_string
=
rdiff_backup
.
version
if
sys
.
version_info
[:
2
]
<
(
2
,
2
):
print
"Sorry, rdiff-backup requires version 2.2 or later of python"
...
...
@@ -65,9 +68,9 @@ setup(name="rdiff-backup",
author_email
=
"rdiff-backup@emerose.org"
,
url
=
"http://rdiff-backup.nongnu.org/"
,
packages
=
[
'rdiff_backup'
],
ext_modules
=
[
Extension
(
"rdiff_backup.C"
,
[
"cmodule.c"
]),
ext_modules
=
[
Extension
(
"rdiff_backup.C"
,
[
"
rdiff_backup/
cmodule.c"
]),
Extension
(
"rdiff_backup._librsync"
,
[
"_librsyncmodule.c"
],
[
"
rdiff_backup/
_librsyncmodule.c"
],
include_dirs
=
incdir_list
,
library_dirs
=
libdir_list
,
libraries
=
libname
,
...
...
@@ -76,6 +79,6 @@ setup(name="rdiff-backup",
data_files
=
[(
'share/man/man1'
,
[
'rdiff-backup.1'
,
'rdiff-backup-statistics.1'
]),
(
'share/doc/rdiff-backup-%s'
%
(
version_string
,),
[
'CHANGELOG'
,
'COPYING'
,
'README'
,
'FAQ.html'
])],
[
'CHANGELOG'
,
'COPYING'
,
'README'
,
'FAQ
-body
.html'
])],
**
extra_options
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment