Changeset 254


Ignore:
Timestamp:
25-05-07 16:07:16 (6 years ago)
Author:
thomas
Message:
  • moap/util/deps.py: Add Ubuntu information for ctags and Cheeath. Fixes #248.
Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r253 r254  
     12007-05-25  Thomas Vander Stichele  <thomas at apestaart dot org> 
     2 
     3        * moap/util/deps.py: 
     4          Add Ubuntu information for ctags and Cheeath.  Fixes #248. 
     5 
    162007-05-25  Thomas Vander Stichele  <thomas at apestaart dot org> 
    27 
  • trunk/moap/util/deps.py

    r253 r254  
    6767        return "python-cheetah is only available in Fedora 4 or newer.\n" 
    6868 
     69    def Ubuntu_install(self, distro): 
     70        return self.Ubuntu_apt('python-cheetah') 
     71 
    6972class genshi(Dependency): 
    7073    module = 'genshi' 
     
    102105    def FedoraCore_install(self, distro): 
    103106        return self.FedoraCore_yum('ctags') 
     107 
     108    def Ubuntu_install(self, distro): 
     109        return self.Ubuntu_apt('exuberant-ctags') 
    104110 
    105111def handleImportError(exception): 
Note: See TracChangeset for help on using the changeset viewer.