~ed.so/duplicity/boto.fixup

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#!/usr/bin/env python2
# -*- Mode:Python; indent-tabs-mode:nil; tab-width:4 -*-
#
# Copyright 2002 Ben Escoto <ben@emerose.org>
# Copyright 2007 Kenneth Loafman <kenneth@loafman.com>
#
# This file is part of duplicity.
#
# Duplicity is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by the
# Free Software Foundation; either version 2 of the License, or (at your
# option) any later version.
#
# Duplicity is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with duplicity; if not, write to the Free Software Foundation,
# Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA

import sys
import os

from distutils.core import setup, Extension  # pylint: disable=import-error,no-name-in-module

assert len(sys.argv) == 1
sys.argv.append(u"build")

os.chdir(u"duplicity")

incdir_list = libdir_list = None

if os.name == u'posix':
    LIBRSYNC_DIR = os.environ.get(u'LIBRSYNC_DIR', u'')
    args = sys.argv[:]
    for arg in args:
        if arg.startswith(u'--librsync-dir='):
            LIBRSYNC_DIR = arg.split(u'=')[1]
            sys.argv.remove(arg)
    if LIBRSYNC_DIR:
        incdir_list = [os.path.join(LIBRSYNC_DIR, u'include')]
        libdir_list = [os.path.join(LIBRSYNC_DIR, u'lib')]

setup(name=r"CModule",
      version=u"cvs",
      description=u"duplicity's C component",
      ext_modules=[Extension(name=r"_librsync",
                             sources=[r"_librsyncmodule.c"],
                             include_dirs=incdir_list,
                             library_dirs=libdir_list,
                             libraries=[u"rsync"])])

assert not os.system(u"mv `find build -name '_librsync*.so'` .")
assert not os.system(u"rm -rf build")

os.chdir(u"..")