mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-11 02:48:39 +00:00
here we go...lt 0.13...upnp & natpmp support!
This commit is contained in:
parent
3324d7afc7
commit
4722aa5796
107 changed files with 9717 additions and 6390 deletions
22
setup.py
22
setup.py
|
@ -146,21 +146,28 @@ deluge_core = Extension('deluge_core',
|
|||
'libtorrent/src/allocate_resources.cpp',
|
||||
'libtorrent/src/bandwidth_manager.cpp',
|
||||
'libtorrent/src/bt_peer_connection.cpp',
|
||||
'libtorrent/src/connection_queue.cpp',
|
||||
'libtorrent/src/entry.cpp',
|
||||
'libtorrent/src/escape_string.cpp',
|
||||
'libtorrent/src/file.cpp',
|
||||
'libtorrent/src/file_pool.cpp',
|
||||
'libtorrent/src/http_connection.cpp',
|
||||
'libtorrent/src/http_stream.cpp',
|
||||
'libtorrent/src/http_tracker_connection.cpp',
|
||||
'libtorrent/src/identify_client.cpp',
|
||||
'libtorrent/src/instantiate_connection.cpp',
|
||||
'libtorrent/src/ip_filter.cpp',
|
||||
'libtorrent/src/logger.cpp',
|
||||
'libtorrent/src/lsd.cpp',
|
||||
'libtorrent/src/metadata_transfer.cpp',
|
||||
'libtorrent/src/natpmp.cpp',
|
||||
'libtorrent/src/peer_connection.cpp',
|
||||
'libtorrent/src/piece_picker.cpp',
|
||||
'libtorrent/src/policy.cpp',
|
||||
'libtorrent/src/session.cpp',
|
||||
'libtorrent/src/session_impl.cpp',
|
||||
'libtorrent/src/sha1.cpp',
|
||||
'libtorrent/src/socks5_stream.cpp',
|
||||
'libtorrent/src/stat.cpp',
|
||||
'libtorrent/src/storage.cpp',
|
||||
'libtorrent/src/torrent.cpp',
|
||||
|
@ -168,6 +175,7 @@ deluge_core = Extension('deluge_core',
|
|||
'libtorrent/src/torrent_info.cpp',
|
||||
'libtorrent/src/tracker_manager.cpp',
|
||||
'libtorrent/src/udp_tracker_connection.cpp',
|
||||
'libtorrent/src/upnp.cpp',
|
||||
'libtorrent/src/ut_pex.cpp',
|
||||
'libtorrent/src/web_peer_connection.cpp',
|
||||
'libtorrent/src/kademlia/closest_nodes.cpp',
|
||||
|
@ -180,18 +188,6 @@ deluge_core = Extension('deluge_core',
|
|||
'libtorrent/src/kademlia/rpc_manager.cpp',
|
||||
'libtorrent/src/kademlia/traversal_algorithm.cpp'])
|
||||
|
||||
upnp = Extension('upnp',
|
||||
include_dirs = ['./miniupnpc'],
|
||||
sources=['src/python-upnp.c',
|
||||
'miniupnpc/igd_desc_parse.c',
|
||||
'miniupnpc/minisoap.c',
|
||||
'miniupnpc/miniupnpc.c',
|
||||
'miniupnpc/miniwget.c',
|
||||
'miniupnpc/minixml.c',
|
||||
'miniupnpc/minixmlvalid.c',
|
||||
'miniupnpc/upnpcommands.c',
|
||||
'miniupnpc/upnpreplyparse.c'])
|
||||
|
||||
# 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.
|
||||
|
||||
|
@ -313,6 +309,6 @@ setup(name=NAME, fullname=FULLNAME, version=VERSION,
|
|||
package_dir = {'deluge': 'src'},
|
||||
data_files=data,
|
||||
ext_package='deluge',
|
||||
ext_modules=[deluge_core, upnp],
|
||||
ext_modules=[deluge_core],
|
||||
cmdclass=cmdclass
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue