diff options
Diffstat (limited to 'sysutils/duplicity-devel/files')
-rw-r--r-- | sysutils/duplicity-devel/files/patch-librsyncmodule.c | 19 | ||||
-rw-r--r-- | sysutils/duplicity-devel/files/patch-setup.py | 38 |
2 files changed, 0 insertions, 57 deletions
diff --git a/sysutils/duplicity-devel/files/patch-librsyncmodule.c b/sysutils/duplicity-devel/files/patch-librsyncmodule.c deleted file mode 100644 index d8e0db197e1e..000000000000 --- a/sysutils/duplicity-devel/files/patch-librsyncmodule.c +++ /dev/null @@ -1,19 +0,0 @@ -*** _librsyncmodule.c.orig Sat Aug 9 17:26:51 2003 ---- _librsyncmodule.c Sat Aug 9 17:26:59 2003 -*************** -*** 13,19 **** - * ----------------------------------------------------------------------- */ - - #include <Python.h> -! #include <rsync.h> - #define RS_JOB_BLOCKSIZE 65536 - - static PyObject *librsyncError; ---- 13,19 ---- - * ----------------------------------------------------------------------- */ - - #include <Python.h> -! #include <librsync.h> - #define RS_JOB_BLOCKSIZE 65536 - - static PyObject *librsyncError; diff --git a/sysutils/duplicity-devel/files/patch-setup.py b/sysutils/duplicity-devel/files/patch-setup.py deleted file mode 100644 index 2484a45dd4ee..000000000000 --- a/sysutils/duplicity-devel/files/patch-setup.py +++ /dev/null @@ -1,38 +0,0 @@ -*** /tmp/duplicity-0.4.0/setup.py Sat Nov 30 23:41:29 2002 ---- setup.py Wed Jun 11 20:31:32 2003 -*************** -*** 9,14 **** ---- 9,18 ---- - print "Sorry, duplicity requires version 2.2 or later of python" - sys.exit(1) - -+ LOCALBASE = os.environ.get("LOCALBASE", "/usr/local") -+ include_dirs = ['%s/include' % LOCALBASE] -+ library_dirs = ['%s/lib/' % LOCALBASE] -+ - setup(name="duplicity", - version=version_string, - description="Untrusted backup using rsync algorithm", -*************** -*** 19,28 **** - package_dir = {"duplicity": "src"}, - ext_modules = [Extension("duplicity._librsync", - ["_librsyncmodule.c"], -! libraries=["rsync"])], -! scripts = ['rdiffdir', 'duplicity'], -! data_files = [('share/man/man1', ['duplicity.1', 'rdiffdir.1']), -! ('share/doc/duplicity-%s' % version_string, -! ['COPYING', 'README', 'CHANGELOG'])]) - - ---- 23,32 ---- - package_dir = {"duplicity": "src"}, - ext_modules = [Extension("duplicity._librsync", - ["_librsyncmodule.c"], -! libraries=["rsync"], -! include_dirs=include_dirs, -! library_dirs=library_dirs)], -! scripts = ['rdiffdir', 'duplicity'] -! ) - - |