diff options
author | thdox <thdox@free.fr> | 2014-05-11 17:21:49 +0200 |
---|---|---|
committer | thdox <thdox@free.fr> | 2014-05-11 17:21:49 +0200 |
commit | c61f137968d688312ac1601da06b743b742f27d1 (patch) | |
tree | 803922984f5349c00e2bce19b1abbaef92c90ffc | |
parent | 4b6e051adbc5615e4099e9d4e69d7341b9c4dc8d (diff) | |
download | fork-ledger-c61f137968d688312ac1601da06b743b742f27d1.tar.gz fork-ledger-c61f137968d688312ac1601da06b743b742f27d1.tar.bz2 fork-ledger-c61f137968d688312ac1601da06b743b742f27d1.zip |
Hardy, Karmic, Oneiric are obsolete Ubuntu releases.
See http://en.wikipedia.org/wiki/List_of_Ubuntu_releases#Table_of_versions
-rwxr-xr-x | acprep | 87 |
1 files changed, 0 insertions, 87 deletions
@@ -100,22 +100,6 @@ class BoostInfo(object): 'libboost-iostreams-dev', 'libboost-python-dev' ] - elif system == 'ubuntu-karmic' or system == 'ubuntu-hardy': - return [ 'bjam', 'libboost-dev', - 'libboost-regex-dev', - 'libboost-date-time-dev', - 'libboost-filesystem-dev', - 'libboost-iostreams-dev', - 'libboost-python-dev' ] - - elif system == 'ubuntu-oneiric': - return [ 'libboost-dev', - 'libboost-python-dev', - 'libboost-regex-dev', - 'libboost-date-time-dev', - 'libboost-filesystem-dev', - 'libboost-iostreams-dev' ] - class CommandLineApp(object): "Base class for building command line applications." @@ -629,77 +613,6 @@ class PrepareBuild(CommandLineApp): 'lcov', 'sloccount' ] + BoostInfo().dependencies('ubuntu-precise') - elif re.search('karmic', info): - self.log.info('Looks like you are using APT on Ubuntu Karmic') - packages = [ - 'sudo', 'apt-get', 'install', - 'build-essential', - 'libtool', - 'autoconf', - 'automake', - 'zlib1g-dev', - 'libbz2-dev', - 'python-dev', - 'libgmp3-dev', - 'libmpfr-dev', - 'gettext', - 'cvs', - 'libedit-dev', - #'texlive-full', - #'doxygen', - #'graphviz', - 'texinfo', - 'lcov', - 'sloccount' - ] + BoostInfo().dependencies('ubuntu-karmic') - elif re.search('hardy', info): - self.log.info('Looks like you are using APT on Ubuntu Hardy') - packages = [ - 'sudo', 'apt-get', 'install', - 'build-essential', - 'libtool', - 'autoconf', - 'automake', - 'autopoint', - 'zlib1g-dev', - 'libbz2-dev', - 'python-dev', - 'cvs', - 'gettext', - 'libgmp3-dev', - 'libmpfr-dev', - 'libedit-dev', - #'texlive-full', - #'doxygen', - #'graphviz', - 'texinfo', - 'lcov', - 'sloccount' - ] + self.boost_info.dependencies('ubuntu-hardy') - elif re.search('oneiric', info): - self.log.info('Looks like you are using APT on Ubuntu Oneiric') - packages = [ - 'sudo', 'apt-get', 'install', - 'build-essential', - 'libtool', - 'autoconf', - 'automake', - 'autopoint', - 'zlib1g-dev', - 'libbz2-dev', - 'python-dev', - 'cvs', - 'gettext', - 'libgmp3-dev', - 'libmpfr-dev', - 'libedit-dev', - #'texlive-full', - #'doxygen', - #'graphviz', - 'texinfo', - 'lcov', - 'sloccount' - ] + self.boost_info.dependencies('ubuntu-oneiric') else: self.log.info('I do not recognize your version of Ubuntu!') packages = None |