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
|
# 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 :: 4 - Beta
Intended Audience :: Developers
License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)
Operating System :: POSIX
Programming Language :: C
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 ' + `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 kwargs.has_key("classifiers"):
del kwargs["classifiers"]
_setup(**kwargs)
setup (name = 'fuse-python',
version = __version__,
description = 'Bindings for FUSE',
classifiers = filter(None, classifiers.split("\n")),
license = 'LGPL',
platforms = ['posix'],
url = 'http://fuse.sourceforge.net/wiki/index.php/FusePython',
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)
|