deluge/setup.py

228 lines
8.8 KiB
Python
Raw Normal View History

2007-07-04 08:24:30 +00:00
# setup.py
#
# Copyright (C) 2007 Andrew Resch ('andar') <andrewresch@gmail.com>
2007-07-04 08:24:30 +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
2007-07-13 01:34:18 +00:00
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
2007-07-04 08:24:30 +00:00
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
2007-07-13 01:34:18 +00:00
# along with this program. If not, write to:
2007-07-04 08:24:30 +00:00
# The Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor
2007-07-13 01:34:18 +00:00
# Boston, MA 02110-1301, USA.
2007-07-04 08:24:30 +00:00
#
2007-07-13 01:34:18 +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-04 08:24:30 +00:00
import ez_setup
ez_setup.use_setuptools()
from setuptools import setup, find_packages, Extension
from distutils import cmd, sysconfig
2007-09-16 01:24:08 +00:00
from distutils.command.build import build as _build
from distutils.command.install import install as _install
from distutils.command.install_data import install_data as _install_data
import msgfmt
2007-07-04 08:24:30 +00:00
import platform
import glob
import os
2007-07-04 08:24:30 +00:00
python_version = platform.python_version()[0:3]
# The libtorrent extension
_extra_compile_args = [
2007-07-13 01:34:18 +00:00
"-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",
2008-01-09 07:12:04 +00:00
"-O2",
"-DNDEBUG"
2007-07-04 08:24:30 +00:00
]
removals = ["-Wstrict-prototypes"]
if python_version == '2.5':
cv_opt = sysconfig.get_config_vars()["CFLAGS"]
for removal in removals:
cv_opt = cv_opt.replace(removal, " ")
sysconfig.get_config_vars()["CFLAGS"] = " ".join(cv_opt.split())
else:
cv_opt = sysconfig.get_config_vars()["OPT"]
for removal in removals:
cv_opt = cv_opt.replace(removal, " ")
sysconfig.get_config_vars()["OPT"] = " ".join(cv_opt.split())
_include_dirs = [
2007-07-13 01:34:18 +00:00
'./libtorrent',
'./libtorrent/include',
'./libtorrent/include/libtorrent',
'/usr/include/python' + python_version
2007-07-04 08:24:30 +00:00
]
2007-07-13 01:34:18 +00:00
_libraries = [
2007-07-13 01:34:18 +00:00
'boost_filesystem',
'boost_date_time',
'boost_thread',
'boost_python',
'z',
'pthread',
2008-01-19 23:58:03 +00:00
'ssl',
2007-07-04 08:24:30 +00:00
]
2007-07-09 02:50:20 +00:00
_sources = glob.glob("./libtorrent/src/*.cpp") + \
2007-07-13 01:34:18 +00:00
glob.glob("./libtorrent/src/kademlia/*.cpp") + \
glob.glob("./libtorrent/bindings/python/src/*.cpp")
2007-07-04 08:24:30 +00:00
# Remove file_win.cpp as it is only for Windows builds
for source in _sources:
2007-07-13 01:34:18 +00:00
if "file_win.cpp" in source:
_sources.remove(source)
break
2007-07-04 08:24:30 +00:00
libtorrent = Extension(
2007-07-13 01:34:18 +00:00
'libtorrent',
include_dirs = _include_dirs,
libraries = _libraries,
extra_compile_args = _extra_compile_args,
sources = _sources
2007-07-04 08:24:30 +00:00
)
2007-09-16 01:24:08 +00:00
class build_trans(cmd.Command):
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(__file__), 'deluge/i18n/')
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('deluge', 'i18n', 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)
class build(_build):
sub_commands = _build.sub_commands + [('build_trans', None)]
def run(self):
_build.run(self)
class install_data(_install_data):
def run(self):
_install_data.run(self)
cmdclass = {
'build': build,
'build_trans': build_trans,
'install_data': install_data
}
# Build the plugin eggs
for path in glob.glob('deluge/plugins/*'):
print path + "/setup.py"
os.system("cd " + path + "&& python setup.py bdist_egg -d ..")
2007-07-04 08:24:30 +00:00
# Main setup
2007-09-16 03:46:50 +00:00
2007-07-04 08:24:30 +00:00
setup(
2007-07-13 01:34:18 +00:00
name = "deluge",
fullname = "Deluge Bittorent Client",
version = "0.6.0.0",
2007-09-16 01:24:08 +00:00
author = "Andrew Resch, Marcos Pinto",
author_email = "andrewresch@gmail.com, markybob@dipconsultants.com",
2007-07-13 01:34:18 +00:00
description = "GTK+ bittorrent client",
url = "http://deluge-torrent.org",
license = "GPLv2",
include_package_data = True,
package_data = {"deluge": ["ui/gtkui/glade/*.glade",
2007-07-14 01:33:16 +00:00
"data/pixmaps/*.png",
2008-01-20 00:30:43 +00:00
"data/pixmaps/deluge.svg",
"plugins/*.egg",
2007-09-16 01:24:08 +00:00
"i18n/*.pot",
"i18n/*/LC_MESSAGES/*.mo",
"ui/webui/webui_plugin/LICENSE",
"ui/webui/webui_plugin/scripts/*",
"ui/webui/webui_plugin/ssl/*",
"ui/webui/webui_plugin/static/*.css",
"ui/webui/webui_plugin/static/images/*.png",
"ui/webui/webui_plugin/static/images/*.jpg",
2008-01-14 05:40:40 +00:00
"ui/webui/webui_plugin/static/images/*.gif",
"ui/webui/webui_plugin/static/images/tango/*.png",
"ui/webui/webui_plugin/templates/deluge/*",
"ui/webui/webui_plugin/templates/advanced/*.html",
"ui/webui/webui_plugin/templates/advanced/static/*"
]},
2007-09-24 06:41:38 +00:00
data_files = [('/usr/share/icons/scalable/apps', [
2007-09-16 03:46:50 +00:00
'deluge/data/icons/scalable/apps/deluge.svg']),
2007-09-23 08:06:44 +00:00
('/usr/share/icons/hicolor/128x128/apps', [
2007-09-16 03:46:50 +00:00
'deluge/data/icons/hicolor/128x128/apps/deluge.png']),
2007-09-23 08:06:44 +00:00
('/usr/share/icons/hicolor/16x16/apps', [
2007-09-16 03:46:50 +00:00
'deluge/data/icons/hicolor/16x16/apps/deluge.png']),
2007-09-23 08:06:44 +00:00
('/usr/share/icons/hicolor/192x192/apps', [
2007-09-16 03:46:50 +00:00
'deluge/data/icons/hicolor/192x192/apps/deluge.png']),
2007-09-23 08:06:44 +00:00
('/usr/share/icons/hicolor/22x22/apps', [
2007-09-16 03:46:50 +00:00
'deluge/data/icons/hicolor/22x22/apps/deluge.png']),
2007-09-23 08:06:44 +00:00
('/usr/share/icons/hicolor/24x24/apps', [
2007-09-16 03:46:50 +00:00
'deluge/data/icons/hicolor/24x24/apps/deluge.png']),
2007-09-23 08:06:44 +00:00
('/usr/share/icons/hicolor/256x256/apps', [
2007-09-16 03:46:50 +00:00
'deluge/data/icons/hicolor/256x256/apps/deluge.png']),
2007-09-23 08:06:44 +00:00
('/usr/share/icons/hicolor/32x32/apps', [
2007-09-16 03:46:50 +00:00
'deluge/data/icons/hicolor/32x32/apps/deluge.png']),
2007-09-23 08:06:44 +00:00
('/usr/share/icons/hicolor/36x36/apps', [
2007-09-16 03:46:50 +00:00
'deluge/data/icons/hicolor/36x36/apps/deluge.png']),
2007-09-23 08:06:44 +00:00
('/usr/share/icons/hicolor/48x48/apps', [
2007-09-16 03:46:50 +00:00
'deluge/data/icons/hicolor/48x48/apps/deluge.png']),
2007-09-23 08:06:44 +00:00
('/usr/share/icons/hicolor/64x64/apps', [
2007-09-16 03:46:50 +00:00
'deluge/data/icons/hicolor/64x64/apps/deluge.png']),
2007-09-23 08:06:44 +00:00
('/usr/share/icons/hicolor/72x72/apps', [
2007-09-16 03:46:50 +00:00
'deluge/data/icons/hicolor/72x72/apps/deluge.png']),
2007-09-23 08:06:44 +00:00
('/usr/share/icons/hicolor/96x96/apps', [
2007-09-16 03:46:50 +00:00
'deluge/data/icons/hicolor/96x96/apps/deluge.png']),
2007-09-16 03:55:32 +00:00
('/usr/share/applications', [
2008-01-19 23:58:03 +00:00
'deluge/data/share/applications/deluge.desktop']),
2008-01-20 00:11:50 +00:00
('/usr/share/pixmaps' , ['deluge/data/pixmaps/deluge.png'])],
2007-07-13 01:34:18 +00:00
ext_package = "deluge",
ext_modules = [libtorrent],
packages = find_packages(exclude=["plugins"]),
2007-09-16 01:24:08 +00:00
cmdclass=cmdclass,
2007-07-13 01:34:18 +00:00
entry_points = """
[console_scripts]
deluge = deluge.main:start_ui
deluged = deluge.main:start_daemon
2007-09-16 01:24:08 +00:00
""")