deluge/setup.py

397 lines
16 KiB
Python
Raw Normal View History

2007-01-08 04:18:24 +00:00
# Copyright (c) 2006 Zach Tibbitts ('zachtib') <zach@collegegeek.org>
2006-11-29 23:41:58 +00:00
#
# This program 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, or (at your option)
# any later version.
#
# This program 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.
2007-01-08 19:38:19 +00:00
#
# You should have received a copy of the GNU General Public License
2007-01-08 19:38:19 +00:00
# along with this program. If not, write to:
2007-08-03 22:22:40 +00:00
# The Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor
# Boston, MA 02110-1301, USA.
2007-06-12 16:33:32 +00:00
#
# In addition, as a special exception, the copyright holders give
# permission to link the code of portions of this program with the OpenSSL
# library.
# You must obey the GNU General Public License in all respects for all of
# the code used other than OpenSSL. If you modify file(s) with this
# exception, you may extend this exception to your version of the file(s),
# but you are not obligated to do so. If you do not wish to do so, delete
# this exception statement from your version. If you delete this exception
# statement from all source files in the program, then also delete it here.
2007-07-13 01:13:13 +00:00
NAME = "deluge"
FULLNAME = "Deluge BitTorrent Client"
VERSION = "0.5.7.98"
2007-07-18 14:42:19 +00:00
AUTHOR = "Zach Tibbitts, Alon Zakai, Marcos Pinto, Andrew Resch, Alex Dedul"
EMAIL = "zach@collegegeek.org, kripkensteiner@gmail.com, marcospinto@dipconsultants.com, alonzakai@gmail.com, rotmer@gmail.com"
2007-11-18 00:09:48 +00:00
DESCRIPTION = "A GTK BitTorrent client written in Python and C++"
2007-07-13 01:13:13 +00:00
URL = "http://deluge-torrent.org"
2007-08-03 22:22:40 +00:00
LICENSE = "GPLv2"
2007-06-27 15:42:10 +00:00
2007-03-27 20:32:45 +00:00
import os, platform
print "Attempting to detect your system information"
if platform.machine() == "i386" or platform.machine() == "i686":
2007-08-03 22:22:40 +00:00
print "32bit x86 system detected"
ARCH = "x86"
2007-03-28 22:45:25 +00:00
elif platform.machine() == "x86_64" or platform.machine() == "amd64":
2007-08-03 22:22:40 +00:00
print "64bit x86_64 system detected"
ARCH = "x64"
2007-06-02 21:05:12 +00:00
elif platform.machine() == "ppc":
2007-08-03 22:22:40 +00:00
print "PowerPC system detected"
ARCH = "ppc"
2007-03-27 20:32:45 +00:00
else:
2007-08-03 22:22:40 +00:00
print "Couldn't detect CPU architecture"
ARCH = ""
2007-03-27 20:32:45 +00:00
if platform.system() == "Linux":
2007-08-03 22:22:40 +00:00
print "Linux operating system detected"
OS = "linux"
2007-03-27 20:32:45 +00:00
elif platform.system() == "Darwin" :
2007-08-03 22:22:40 +00:00
print "Darwin / OS X system detected"
OS = "osx"
2007-06-05 03:16:26 +00:00
elif platform.system() == "FreeBSD" :
2007-08-03 22:22:40 +00:00
print "FreeBSD operating system detected"
OS = "freebsd"
2007-09-14 19:08:01 +00:00
elif platform.system() in ('Windows', 'Microsoft'):
2007-08-03 22:22:40 +00:00
print "Windows system detected"
OS = "win"
2007-03-27 20:32:45 +00:00
elif os.name == "posix":
2007-08-03 22:22:40 +00:00
print "Unix system detected"
OS = "nix"
2007-03-27 20:32:45 +00:00
else:
2007-08-03 22:22:40 +00:00
print "Couldn't detect operating system"
OS = ""
2007-03-27 20:32:45 +00:00
import os.path, glob
2007-02-12 21:30:54 +00:00
from distutils.core import setup, Extension
2007-01-11 18:58:28 +00:00
from distutils import sysconfig
2007-03-05 20:44:53 +00:00
import shutil
from distutils import cmd
from distutils.command.install import install as _install
from distutils.command.install_data import install_data as _install_data
from distutils.command.build import build as _build
2007-09-10 08:51:21 +00:00
if OS == "win":
from distutils.command.build_ext import build_ext as _build_ext
2007-03-05 20:44:53 +00:00
import msgfmt
2007-01-11 18:58:28 +00:00
2007-03-27 20:32:45 +00:00
python_version = platform.python_version()[0:3]
2007-02-19 23:02:23 +00:00
2007-03-27 20:32:45 +00:00
2007-03-02 00:33:15 +00:00
# NOTE: The following "hack" removes the -g and -Wstrict-prototypes
# build options from the command that will compile the C++ module,
# deluge_core. While we understand that you aren't generally
# encouraged to do this, we have done so for the following reasons:
# 1) The -g compiler option produces debugging information about
2007-08-03 22:22:40 +00:00
# the compiled module. However, this option increases the
# size of deluge_core.so from ~1.9MB to 13.6MB and slows down
# the program's execution without offering any benefits
# whatsoever.
2007-03-02 00:33:15 +00:00
# 2) -Wstrict-prototypes is not a valid C++ build option, and the
2007-08-03 22:22:40 +00:00
# compiler will throw a number of warnings at compile time.
# While this does not really impact anything, it makes it
# seem as if something is going wrong with the compile, and
# it has been removed to prevent confusion.
2007-03-02 00:33:15 +00:00
2007-03-27 22:13:09 +00:00
if not OS == "win":
2007-08-03 22:22:40 +00:00
EXTRA_COMPILE_ARGS = ["-Wno-missing-braces",
"-DHAVE_INCLUDE_LIBTORRENT_ASIO____ASIO_HPP=1",
"-DHAVE_INCLUDE_LIBTORRENT_ASIO_SSL_STREAM_HPP=1",
"-DHAVE_INCLUDE_LIBTORRENT_ASIO_IP_TCP_HPP=1",
"-DHAVE_PTHREAD=1", "-DTORRENT_USE_OPENSSL=1", "-DHAVE_SSL=1",
2007-08-05 09:52:50 +00:00
"-DNDEBUG=1", "-O2"]
2007-08-03 22:22:40 +00:00
if ARCH == "x64":
EXTRA_COMPILE_ARGS.append("-DAMD64")
2007-06-28 23:00:36 +00:00
2007-08-03 22:22:40 +00:00
includedirs = ['./libtorrent', './libtorrent/include',
2007-06-28 14:14:09 +00:00
'./libtorrent/include/libtorrent',
'/usr/include/python' + python_version]
2007-06-28 13:20:17 +00:00
2007-08-03 22:22:40 +00:00
if OS == "linux":
2007-11-18 00:35:52 +00:00
if os.path.exists(os.path.join(sysconfig.get_config_vars()['LIBDIR'], \
2007-11-18 00:37:30 +00:00
'libboost_filesystem-mt.so')):
2007-11-18 00:09:48 +00:00
boost_filesystem = "boost_filesystem-mt"
2007-11-18 00:35:52 +00:00
elif os.path.exists(os.path.join(sysconfig.get_config_vars()['LIBDIR'], \
2007-11-18 00:37:30 +00:00
'libboost_filesystem.so')):
2007-11-18 00:09:48 +00:00
boost_filesystem = "boost_filesystem"
2007-11-18 00:35:52 +00:00
if os.path.exists(os.path.join(sysconfig.get_config_vars()['LIBDIR'], \
2007-11-18 00:37:30 +00:00
'libboost_date_time-mt.so')):
2007-11-18 00:09:48 +00:00
boost_date_time = "boost_date_time-mt"
2007-11-18 00:35:52 +00:00
elif os.path.exists(os.path.join(sysconfig.get_config_vars()['LIBDIR'], \
2007-11-18 00:37:30 +00:00
'libboost_date_time.so')):
2007-11-18 00:09:48 +00:00
boost_date_time = "boost_date_time"
2007-11-18 00:35:52 +00:00
if os.path.exists(os.path.join(sysconfig.get_config_vars()['LIBDIR'], \
2007-11-18 00:37:30 +00:00
'libboost_thread-mt.so')):
2007-11-18 00:09:48 +00:00
boost_thread = "boost_thread-mt"
2007-11-18 00:35:52 +00:00
elif os.path.exists(os.path.join(sysconfig.get_config_vars()['LIBDIR'], \
2007-11-18 00:37:30 +00:00
'libboost_thread.so')):
2007-11-18 00:09:48 +00:00
boost_thread = "boost_thread"
2007-11-26 16:42:07 +00:00
if 'boost_filesystem' not in vars():
boost_filesystem = "boost_filesystem-mt"
if 'boost_date_time' not in vars():
boost_date_time = "boost_date_time-mt"
if 'boost_thread' not in vars():
boost_thread = "boost_thread-mt"
2007-11-18 00:09:48 +00:00
2007-08-03 22:22:40 +00:00
elif OS == "freebsd":
2007-11-18 00:09:48 +00:00
boost_filesystem = "boost_filesystem"
boost_date_time = "boost_date_time"
boost_thread = "boost_thread"
2007-08-03 22:22:40 +00:00
else:
2007-11-18 00:09:48 +00:00
boost_filesystem = "boost_filesystem-mt"
boost_date_time = "boost_date_time-mt"
boost_thread = "boost_thread-mt"
librariestype = [boost_filesystem, boost_date_time,
boost_thread, 'z', 'pthread', 'ssl']
2007-08-03 22:22:40 +00:00
removals = ['-g', '-Wstrict-prototypes']
if python_version == '2.5':
cv_opt = sysconfig.get_config_vars()["CFLAGS"]
2007-08-03 22:20:08 +00:00
for removal in removals:
cv_opt = cv_opt.replace(removal, " ")
2007-08-03 22:22:40 +00:00
sysconfig.get_config_vars()["CFLAGS"] = ' '.join(cv_opt.split())
else:
cv_opt = sysconfig.get_config_vars()["OPT"]
2007-08-03 22:20:08 +00:00
for removal in removals:
cv_opt = cv_opt.replace(removal, " ")
2007-08-03 22:22:40 +00:00
sysconfig.get_config_vars()["OPT"] = ' '.join(cv_opt.split())
else:
EXTRA_COMPILE_ARGS = [ '-O2', '-DBOOST_WINDOWS',
2007-09-10 08:51:21 +00:00
'-Wno-missing-braces',
2007-09-10 16:44:35 +00:00
'-DWIN32_LEAN_AND_MEAN',
2007-09-10 08:51:21 +00:00
'-D_WIN32_WINNT=0x0500',
2007-09-10 16:44:35 +00:00
'-D__USE_W32_SOCKETS',
'-D_WIN32',
'-DWIN32',
2007-12-23 02:42:22 +00:00
'-DUNICODE',
2007-09-10 16:44:35 +00:00
'-DBOOST_ALL_NO_LIB',
2007-09-10 08:51:21 +00:00
'-D_FILE_OFFSET_BITS=64',
'-DBOOST_THREAD_USE_LIB',
'-DTORRENT_USE_OPENSSL=1',
'-DNDEBUG=1']
EXTRA_LINK_ARGS = ['-L.\win32\lib']
2007-09-14 18:26:53 +00:00
includedirs = ['./libtorrent', './libtorrent/include', './libtorrent/include/libtorrent', './win32/include']
2007-11-18 00:09:48 +00:00
librariestype = ['boost_filesystem-mt', 'boost_date_time-mt',
'boost_thread-mt', 'z', 'ssl' ,'wsock32' ,'crypto' ,'gdi32' ,'ws2_32']
2007-01-11 18:58:28 +00:00
2007-03-02 00:33:15 +00:00
# NOTE: The Rasterbar Libtorrent source code is in the libtorrent/ directory
2007-11-17 20:47:46 +00:00
# inside of Deluge's source tarball.
2007-07-06 00:03:12 +00:00
def fetchCpp():
for root,dirs,files in os.walk('libtorrent'):
if '.svn' in dirs:
dirs.remove('.svn')
for file in files:
if file.endswith('.cpp'):
yield os.path.join(root,file)
sources=list(fetchCpp())
2007-07-06 00:59:36 +00:00
sources.append(os.path.join('src','deluge_core.cpp'))
2007-07-06 00:03:12 +00:00
if not OS == "win":
2007-08-03 22:22:40 +00:00
sources.remove('libtorrent/src/file_win.cpp')
2007-09-10 08:51:21 +00:00
deluge_core = Extension('deluge_core',
2007-06-28 14:14:09 +00:00
include_dirs = includedirs,
2007-09-10 08:51:21 +00:00
libraries = librariestype,
2007-03-27 20:32:45 +00:00
extra_compile_args = EXTRA_COMPILE_ARGS,
2007-07-06 00:03:12 +00:00
sources = sources)
2007-09-10 08:51:21 +00:00
else:
sources.remove('libtorrent\\src\\file.cpp')
2007-11-01 05:49:06 +00:00
deluge_core = Extension('deluge_core',
include_dirs = includedirs,
libraries = librariestype,
extra_compile_args = EXTRA_COMPILE_ARGS,
extra_link_args = EXTRA_LINK_ARGS,
2007-09-10 08:51:21 +00:00
sources = sources)
2007-02-28 06:09:32 +00:00
# Thanks to Iain Nicol for code to save the location for installed prefix
# At runtime, we need to know where we installed the data to.
2007-03-05 20:44:53 +00:00
class write_data_install_path(cmd.Command):
2007-08-03 22:22:40 +00:00
description = 'saves the data installation path for access at runtime'
def initialize_options(self):
self.prefix = None
self.lib_build_dir = None
def finalize_options(self):
self.set_undefined_options('install',
('prefix', 'prefix')
)
self.set_undefined_options('build',
('build_lib', 'lib_build_dir')
)
def run(self):
conf_filename = os.path.join(self.lib_build_dir,
'deluge', 'common.py')
conf_file = open(conf_filename, 'r')
data = conf_file.read()
conf_file.close()
data = data.replace('@datadir@', self.prefix)
conf_file = open(conf_filename, 'w')
conf_file.write(data)
conf_file.close()
2007-09-25 19:32:56 +00:00
def get_outputs(self): return []
class unwrite_data_install_path(cmd.Command):
2007-08-03 22:22:40 +00:00
description = 'undoes write_data_install_path'
2007-08-03 22:22:40 +00:00
def initialize_options(self):
self.lib_build_dir = None
2007-08-03 22:22:40 +00:00
def finalize_options(self):
self.set_undefined_options('build',
('build_lib', 'lib_build_dir')
)
2007-08-03 22:22:40 +00:00
def run(self):
dest = os.path.join(self.lib_build_dir,
'deluge', 'common.py')
shutil.copyfile('src/common.py', dest)
2007-09-25 19:32:56 +00:00
def get_outputs(self): return []
2007-03-05 20:44:53 +00:00
class build_trans(cmd.Command):
2007-08-03 22:22:40 +00:00
description = 'Compile .po files into .mo files'
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
po_dir = os.path.join(os.path.dirname(os.curdir), 'po')
for path, names, filenames in os.walk(po_dir):
for f in filenames:
if f.endswith('.po'):
lang = f[:len(f) - 3]
src = os.path.join(path, f)
dest_path = os.path.join('build', 'locale', lang, 'LC_MESSAGES')
dest = os.path.join(dest_path, 'deluge.mo')
if not os.path.exists(dest_path):
os.makedirs(dest_path)
if not os.path.exists(dest):
print 'Compiling %s' % src
msgfmt.make(src, dest)
else:
src_mtime = os.stat(src)[8]
dest_mtime = os.stat(dest)[8]
if src_mtime > dest_mtime:
print 'Compiling %s' % src
msgfmt.make(src, dest)
2007-03-05 20:44:53 +00:00
class build(_build):
2007-08-03 22:22:40 +00:00
sub_commands = _build.sub_commands + [('build_trans', None)]
def run(self):
_build.run(self)
2007-03-05 20:44:53 +00:00
class install(_install):
2007-08-03 22:22:40 +00:00
sub_commands = [('write_data_install_path', None)] + \
_install.sub_commands + [('unwrite_data_install_path', None)]
def run(self):
_install.run(self)
2007-03-05 20:44:53 +00:00
class install_data(_install_data):
2007-08-03 22:22:40 +00:00
def run(self):
for lang in os.listdir('build/locale/'):
lang_dir = os.path.join('share', 'locale', lang, 'LC_MESSAGES')
lang_file = os.path.join('build', 'locale', lang, 'LC_MESSAGES', 'deluge.mo')
self.data_files.append( (lang_dir, [lang_file]) )
_install_data.run(self)
2007-09-10 08:51:21 +00:00
if OS == "win":
class build_ext(_build_ext):
def build_extensions(self):
# Linking against this library causes deluge_core.pyd to crash
# on Python >= 2.4. Maybe related to strdup calls, cfr.
# http://mail.python.org/pipermail/distutils-sig/2005-April/004433.html
if 'msvcr71' in self.compiler.dll_libraries:
self.compiler.dll_libraries.remove('msvcr71')
_build_ext.build_extensions(self)
if not OS == "win":
cmdclass = {
'build': build,
'install': install,
'build_trans': build_trans,
'install_data': install_data,
'write_data_install_path': write_data_install_path,
'unwrite_data_install_path': unwrite_data_install_path,
}
else:
cmdclass = {
'build': build,
'build_ext' : build_ext,
'install': install,
'build_trans': build_trans,
'install_data': install_data,
'write_data_install_path': write_data_install_path,
'unwrite_data_install_path': unwrite_data_install_path,
}
2007-03-05 20:44:53 +00:00
2007-03-05 20:44:53 +00:00
data = [('share/deluge/glade', glob.glob('glade/*.glade')),
('share/deluge/pixmaps', glob.glob('pixmaps/*.png')),
('share/deluge/pixmaps', glob.glob('pixmaps/*.svg')),
('share/deluge/icons/scalable/apps', glob.glob('icons/scalable/apps/*.svg')),
('share/deluge/icons/hicolor', glob.glob('icons/hicolor/*.png')),
2007-09-23 08:18:20 +00:00
('share/icons/hicolor/128x128', glob.glob('icons/hicolor/128x128/*.png')),
('share/icons/hicolor/128x128/apps', glob.glob('icons/hicolor/128x128/apps/*.png')),
('share/icons/hicolor/16x16', glob.glob('icons/hicolor/16x16/*.png')),
('share/icons/hicolor/16x16/apps', glob.glob('icons/hicolor/16x16/apps/*.png')),
('share/icons/hicolor/192x192', glob.glob('icons/hicolor/192x192/*.png')),
('share/icons/hicolor/192x192/apps', glob.glob('icons/hicolor/192x192/apps/*.png')),
('share/icons/hicolor/22x22', glob.glob('icons/hicolor/22x22/*.png')),
('share/icons/hicolor/22x22/apps', glob.glob('icons/hicolor/22x22/apps/*.png')),
('share/icons/hicolor/24x24', glob.glob('icons/hicolor/24x24/*.png')),
('share/icons/hicolor/24x24/apps', glob.glob('icons/hicolor/24x24/apps/*.png')),
('share/icons/hicolor/256x256', glob.glob('icons/hicolor/256x256/*.png')),
('share/icons/hicolor/256x256/apps', glob.glob('icons/hicolor/256x256/apps/*.png')),
('share/icons/hicolor/32x32', glob.glob('icons/hicolor/32x32/*.png')),
('share/icons/hicolor/32x32/apps', glob.glob('icons/hicolor/32x32/apps/*.png')),
('share/icons/hicolor/36x36', glob.glob('icons/hicolor/36x36/*.png')),
('share/icons/hicolor/36x36/apps', glob.glob('icons/hicolor/36x36/apps/*.png')),
('share/icons/hicolor/48x48', glob.glob('icons/hicolor/48x48/*.png')),
('share/icons/hicolor/48x48/apps', glob.glob('icons/hicolor/48x48/apps/*.png')),
('share/icons/hicolor/64x64', glob.glob('icons/hicolor/64x64/*.png')),
('share/icons/hicolor/64x64/apps', glob.glob('icons/hicolor/64x64/apps/*.png')),
('share/icons/hicolor/72x72', glob.glob('icons/hicolor/72x72/*.png')),
('share/icons/hicolor/72x72/apps', glob.glob('icons/hicolor/72x72/apps/*.png')),
('share/icons/hicolor/96x96', glob.glob('icons/hicolor/96x96/*.png')),
('share/icons/hicolor/96x96/apps', glob.glob('icons/hicolor/96x96/apps/*.png')),
('share/deluge/pixmaps/flags18x12', glob.glob('pixmaps/flags18x12/*.png')),
('share/deluge/pixmaps/flags25x15', glob.glob('pixmaps/flags25x15/*.png')),
2007-03-05 20:44:53 +00:00
('share/applications' , ['deluge.desktop']),
2007-07-17 20:05:20 +00:00
('share/pixmaps' , ['deluge.png'])]
2007-03-05 20:44:53 +00:00
# New code to glob plugins and include subdirs:
for o in os.walk('plugins'):
path = o[0]
if not path.count('/.') and not path.count('\\.'):
items = o[2]
for x in range(len(items)):
items[x] = path + '/' + items[x]
data.append( ('share/deluge/' + path, items))
2007-03-08 18:43:29 +00:00
setup(name=NAME, fullname=FULLNAME, version=VERSION,
2007-08-03 22:22:40 +00:00
author=AUTHOR, author_email=EMAIL, description=DESCRIPTION,
url=URL, license=LICENSE,
scripts=["scripts/deluge"],
packages=['deluge'],
package_dir = {'deluge': 'src'},
data_files=data,
ext_package='deluge',
ext_modules=[deluge_core],
cmdclass=cmdclass
)