Changeset 575

Show
Ignore:
Timestamp:
06/12/07 16:28:57 (1 year ago)
Author:
zachtib
Message:

version number changes, hack to detect boost-mt

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • tags/deluge-0.5.1.1/scripts/deluge

    r523 r575  
    2424#       51 Franklin Street, Fifth Floor 
    2525#       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. 
    2636 
    2737from optparse import OptionParser 
  • tags/deluge-0.5.1.1/setup.py

    r556 r575  
    1616#       51 Franklin Street, Fifth Floor 
    1717#       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. 
    1828 
    1929import os, platform 
     
    6373NAME            = "deluge" 
    6474FULLNAME        = "Deluge BitTorrent Client" 
    65 VERSION         = "0.5.1
     75VERSION         = "0.5.1.1
    6676AUTHOR          = "Zach Tibbitts, Alon Zakai, Marcos Pinto" 
    6777EMAIL           = "zach@collegegeek.org, kripkensteiner@gmail.com, marcospinto@dipconsultants.com" 
     
    92102if not OS == "win": 
    93103        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' 
    96109                else: 
    97110                        boosttype = 'mt' 
  • tags/deluge-0.5.1.1/src/common.py

    r574 r575  
    3535 
    3636PROGRAM_NAME = "Deluge" 
    37 PROGRAM_VERSION = "0.5.1
     37PROGRAM_VERSION = "0.5.1.1
    3838 
    3939CLIENT_CODE = "DE" 
    40 CLIENT_VERSION = "0510
     40CLIENT_VERSION = "0511
    4141 
    4242CONFIG_DIR = xdg.BaseDirectory.save_config_path('deluge')