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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
|
--- setup.py.orig 2014-05-18 14:37:42.190089675 +0100
+++ setup.py 2014-05-18 14:41:15.084751008 +0100
@@ -22,7 +22,6 @@
import sys, os
from setuptools import setup, Extension
-from setuptools.command.test import test
from setuptools.command.install import install
from setuptools.command.sdist import sdist
@@ -34,6 +33,10 @@
incdir_list = libdir_list = None
+LOCALBASE = os.environ.get("LOCALBASE", "/usr/local")
+incdir_list = ['%s/include' % LOCALBASE]
+libdir_list = ['%s/lib/' % LOCALBASE]
+
if os.name == 'posix':
LIBRSYNC_DIR = os.environ.get('LIBRSYNC_DIR', '')
args = sys.argv[:]
@@ -45,17 +48,9 @@
incdir_list = [os.path.join(LIBRSYNC_DIR, 'include')]
libdir_list = [os.path.join(LIBRSYNC_DIR, 'lib')]
-data_files = [('share/man/man1',
+data_files = [('man/man1',
['bin/duplicity.1',
'bin/rdiffdir.1']),
- ('share/doc/duplicity-%s' % version_string,
- ['COPYING',
- 'README',
- 'README-REPO',
- 'README-LOG',
- 'tarfile-LICENSE',
- 'tarfile-CHANGES',
- 'CHANGELOG']),
]
top_dir = os.path.dirname(os.path.abspath(__file__))
@@ -70,45 +65,8 @@
["po/%s/duplicity.mo" % lang]))
-class TestCommand(test):
- def run(self):
- # Make sure all modules are ready
- build_cmd = self.get_finalized_command("build_py")
- build_cmd.run()
- # And make sure our scripts are ready
- build_scripts_cmd = self.get_finalized_command("build_scripts")
- build_scripts_cmd.run()
-
- # make symlinks for test data
- if build_cmd.build_lib != top_dir:
- for path in ['testfiles.tar.gz', 'testtar.tar', 'gnupg']:
- src = os.path.join(top_dir, 'testing', path)
- target = os.path.join(build_cmd.build_lib, 'testing', path)
- try:
- os.symlink(src, target)
- except Exception:
- pass
-
- os.environ['PATH'] = "%s:%s" % (
- os.path.abspath(build_scripts_cmd.build_dir),
- os.environ.get('PATH'))
-
- test.run(self)
-
-
class InstallCommand(install):
def run(self):
- # Normally, install will call build(). But we want to delete the
- # testing dir between building and installing. So we manually build
- # and mark ourselves to skip building when we run() for real.
- self.run_command('build')
- self.skip_build = True
-
- # This should always be true, but just to make sure!
- if self.build_lib != top_dir:
- testing_dir = os.path.join(self.build_lib, 'testing')
- os.system("rm -rf %s" % testing_dir)
-
install.run(self)
@@ -133,11 +91,7 @@
maintainer_email="kenneth@loafman.com",
url="http://duplicity.nongnu.org/index.html",
packages = ['duplicity',
- 'duplicity.backends',
- 'testing',
- 'testing.functional',
- 'testing.overrides',
- 'testing.unit'],
+ 'duplicity.backends'],
package_dir = {"duplicity" : "duplicity",
"duplicity.backends" : "duplicity/backends",},
ext_modules = [Extension("duplicity._librsync",
@@ -147,9 +101,6 @@
libraries=["rsync"])],
scripts = ['bin/rdiffdir', 'bin/duplicity'],
data_files = data_files,
- tests_require = ['lockfile', 'mock'],
- test_suite = 'testing',
- cmdclass={'test': TestCommand,
- 'install': InstallCommand,
+ cmdclass={'install': InstallCommand,
'sdist': SDistCommand},
)
|