Changeset 575
- Timestamp:
- 06/12/07 16:28:57 (1 year ago)
- Files:
-
- tags/deluge-0.5.1.1/scripts/deluge (modified) (1 diff)
- tags/deluge-0.5.1.1/setup.py (modified) (3 diffs)
- tags/deluge-0.5.1.1/src/common.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
tags/deluge-0.5.1.1/scripts/deluge
r523 r575 24 24 # 51 Franklin Street, Fifth Floor 25 25 # Boston, MA 02110-1301, USA. 26 # 27 # In addition, as a special exception, the copyright holders give 28 # permission to link the code of portions of this program with the OpenSSL 29 # library. 30 # You must obey the GNU General Public License in all respects for all of 31 # the code used other than OpenSSL. If you modify file(s) with this 32 # exception, you may extend this exception to your version of the file(s), 33 # but you are not obligated to do so. If you do not wish to do so, delete 34 # this exception statement from your version. If you delete this exception 35 # statement from all source files in the program, then also delete it here. 26 36 27 37 from optparse import OptionParser tags/deluge-0.5.1.1/setup.py
r556 r575 16 16 # 51 Franklin Street, Fifth Floor 17 17 # Boston, MA 02110-1301, USA. 18 # 19 # In addition, as a special exception, the copyright holders give 20 # permission to link the code of portions of this program with the OpenSSL 21 # library. 22 # You must obey the GNU General Public License in all respects for all of 23 # the code used other than OpenSSL. If you modify file(s) with this 24 # exception, you may extend this exception to your version of the file(s), 25 # but you are not obligated to do so. If you do not wish to do so, delete 26 # this exception statement from your version. If you delete this exception 27 # statement from all source files in the program, then also delete it here. 18 28 19 29 import os, platform … … 63 73 NAME = "deluge" 64 74 FULLNAME = "Deluge BitTorrent Client" 65 VERSION = "0.5.1 "75 VERSION = "0.5.1.1" 66 76 AUTHOR = "Zach Tibbitts, Alon Zakai, Marcos Pinto" 67 77 EMAIL = "zach@collegegeek.org, kripkensteiner@gmail.com, marcospinto@dipconsultants.com" … … 92 102 if not OS == "win": 93 103 if OS == "linux": 94 if os.WEXITSTATUS(os.system('grep -iq "Debian GNU/Linux 4.0\|Ubuntu 7.04\|Ubuntu 6.06\|Fedora Core release 6\|openSUSE 10.2\|Mandriva Linux release 2007.1" /etc/issue')) == 0: 95 boosttype = 'nomt' 104 if os.WEXITSTATUS(os.system('grep -iq "Debian GNU/Linux 4.0\|Ubuntu 7.04\|Ubuntu 6.06\|Fedora Core release 6\|openSUSE 10.2\|Mandriva Linux release 2007.1" /etc/issue')) == 0 105 if os.path.exists('/usr/lib/libboost_filesystem-mt.so'): 106 boosttype = 'mt' 107 else: 108 boosttype = 'nomt' 96 109 else: 97 110 boosttype = 'mt' tags/deluge-0.5.1.1/src/common.py
r574 r575 35 35 36 36 PROGRAM_NAME = "Deluge" 37 PROGRAM_VERSION = "0.5.1 "37 PROGRAM_VERSION = "0.5.1.1" 38 38 39 39 CLIENT_CODE = "DE" 40 CLIENT_VERSION = "051 0"40 CLIENT_VERSION = "0511" 41 41 42 42 CONFIG_DIR = xdg.BaseDirectory.save_config_path('deluge')
