forked from libfuse/python-fuse
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·126 lines (109 loc) · 4.2 KB
/
setup.py
File metadata and controls
executable file
·126 lines (109 loc) · 4.2 KB
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# distutils build script
# To install fuse-python, run 'python setup.py install'
# This setup.py based on that of shout-python (py bindings for libshout,
# part of the icecast project, http://svn.xiph.org/icecast/trunk/shout-python)
try:
from setuptools import setup
from setuptools.dist import Distribution
except ImportError:
from distutils.core import setup
from distutils.dist import Distribution
from distutils.core import Extension
import os
import sys
from fuseparts import __version__
classifiers = """\
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)
Environment :: Console,
Operating System :: POSIX
Programming Language :: C
Programming Language :: Python,
Programming Language :: Python :: 2,
Programming Language :: Python :: 2.7,
Programming Language :: Python :: 3,
Programming Language :: Python :: 3.5,
Programming Language :: Python :: 3.6,
Programming Language :: Python
Topic :: System :: Filesystems
"""
class MyDistribution(Distribution):
"""
Obnoxious hack to enforce the packager to generate
the to-be-generated files
"""
def run_command(self, command):
if command == 'sdist':
for f in ('Changelog', 'README.new_fusepy_api.html'):
if not os.path.exists(f):
raise RuntimeError('file ' + repr(f) + \
" doesn't exist, please generate it before creating a source distribution")
return Distribution.run_command(self, command)
# write default fuse.pc path into environment if PKG_CONFIG_PATH is unset
#if not os.environ.has_key('PKG_CONFIG_PATH'):
# os.environ['PKG_CONFIG_PATH'] = '/usr/local/lib/pkgconfig'
# Find fuse compiler/linker flag via pkgconfig
if os.system('pkg-config --exists fuse 2> /dev/null') == 0:
pkgcfg = os.popen('pkg-config --cflags fuse')
cflags = pkgcfg.readline().strip()
pkgcfg.close()
pkgcfg = os.popen('pkg-config --libs fuse')
libs = pkgcfg.readline().strip()
pkgcfg.close()
else:
if os.system('pkg-config --usage 2> /dev/null') == 0:
print("""pkg-config could not find fuse:
you might need to adjust PKG_CONFIG_PATH or your
FUSE installation is very old (older than 2.1-pre1)""")
else:
print("pkg-config unavailable, build terminated")
sys.exit(1)
# there must be an easier way to set up these flags!
iflags = [x[2:] for x in cflags.split() if x[0:2] == '-I']
extra_cflags = [x for x in cflags.split() if x[0:2] != '-I']
libdirs = [x[2:] for x in libs.split() if x[0:2] == '-L']
libsonly = [x[2:] for x in libs.split() if x[0:2] == '-l']
try:
import _thread
except ImportError:
# if our Python doesn't have thread support, we enforce
# linking against libpthread so that libfuse's pthread
# related symbols won't be undefined
libsonly.append("pthread")
# include_dirs=[]
# libraries=[]
# runtime_library_dirs=[]
# extra_objects, extra_compile_args, extra_link_args
fusemodule = Extension('fuseparts._fusemodule', sources = ['fuseparts/_fusemodule.c'],
include_dirs = iflags,
extra_compile_args = extra_cflags,
library_dirs = libdirs,
libraries = libsonly)
# data_files = []
if sys.version_info < (2, 3):
_setup = setup
def setup(**kwargs):
if "classifiers" in kwargs:
del kwargs["classifiers"]
_setup(**kwargs)
setup (name = 'fuse-python',
version = __version__,
description = 'Bindings for FUSE',
classifiers = [_f for _f in classifiers.split("\n") if _f],
license = 'LGPL',
platforms = ['posix'],
url = 'https://github.com/libfuse/python-fuse',
package_data={'': ['COPYING', 'AUTHORS', 'FAQ', 'INSTALL',
'README.md', 'README.new_fusepy_api',
'README.package_maintainers']},
author = 'Jeff Epler',
author_email = 'jepler@unpythonic.dhs.org',
maintainer = 'Csaba Henk',
maintainer_email = 'csaba.henk@creo.hu',
ext_modules = [fusemodule],
packages = ["fuseparts"],
py_modules=["fuse"],
distclass = MyDistribution)