fix version handling so setup.py doesn't need to import terminator itself. Also fix gettext to work across imported files
This commit is contained in:
parent
3297fe011a
commit
0ce3550f6f
10
setup.py
10
setup.py
|
@ -9,15 +9,7 @@ import glob
|
|||
import os
|
||||
import sys
|
||||
|
||||
def import_terminator():
|
||||
from types import ModuleType
|
||||
module = ModuleType('terminator')
|
||||
module_file = open('terminator', 'r')
|
||||
exec module_file in module.__dict__
|
||||
return module
|
||||
|
||||
TERMINATOR_BUILD = True
|
||||
APP_VERSION = import_terminator().APP_VERSION
|
||||
from terminatorlib.version import *
|
||||
|
||||
PO_DIR = 'po'
|
||||
MO_DIR = os.path.join('build', 'mo')
|
||||
|
|
12
terminator
12
terminator
|
@ -17,20 +17,21 @@
|
|||
|
||||
"""Terminator by Chris Jones <cmsj@tenshu.net>"""
|
||||
|
||||
# Global defines
|
||||
APP_NAME = 'terminator'
|
||||
APP_VERSION = '0.9'
|
||||
|
||||
# import standard python libs
|
||||
import os, platform, sys, string, time, math, subprocess
|
||||
from optparse import OptionParser
|
||||
|
||||
#import version details
|
||||
from terminatorlib.version import *
|
||||
|
||||
try:
|
||||
import gettext
|
||||
gettext.install (APP_NAME)
|
||||
except:
|
||||
def _ (text):
|
||||
import __builtin__
|
||||
def _t (text):
|
||||
return text
|
||||
__builtin__.__dict__['_'] = _t
|
||||
|
||||
# import unix-lib
|
||||
import pwd
|
||||
|
@ -65,7 +66,6 @@ else:
|
|||
try:
|
||||
import gobject, gtk, pango
|
||||
except:
|
||||
if not TERMINATOR_BUILD:
|
||||
err (_("You need to install the python bindings for " \
|
||||
"gobject, gtk and pango to run Terminator."))
|
||||
sys.exit(1)
|
||||
|
|
|
@ -0,0 +1,24 @@
|
|||
#!/usr/bin/python
|
||||
# TerminatorVersion - version number
|
||||
# Copyright (C) 2008 cmsj@tenshu.net
|
||||
#
|
||||
# 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, version 2 only.
|
||||
#
|
||||
# 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.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
|
||||
"""TerminatorVersion by Chris Jones <cmsj@tenshu.net>
|
||||
|
||||
TerminatorEncoding supplies our version number.
|
||||
"""
|
||||
|
||||
APP_NAME='Terminator'
|
||||
APP_VERSION='0.9'
|
Loading…
Reference in New Issue