diff options
| author | Carl Hetherington <cth@carlh.net> | 2016-04-17 01:05:20 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2016-04-17 01:05:20 +0100 |
| commit | 08ee5097bd526a6aa80ff023a81ad9f00201bbfa (patch) | |
| tree | 16b606ecea20a7061f4e0118bda6bc76f824f667 /cscript | |
| parent | 9c2bd2ca8a541b65d5a9c8501ed2e0871fb68f29 (diff) | |
Simplify deb dependencies slightly.
Diffstat (limited to 'cscript')
| -rw-r--r-- | cscript | 180 |
1 files changed, 71 insertions, 109 deletions
@@ -21,120 +21,82 @@ from __future__ import print_function import glob import shutil import os +import copy deb_build_depends = {'debhelper', 'python', 'g++', 'pkg-config', 'libssh-dev', 'libsndfile1-dev', 'libgtk2.0-dev'} deb_depends = dict() -deb_depends['12.04'] = {'libc6', - 'libssh-4', - 'libboost-filesystem1.48.0', - 'libboost-thread1.48.0', - 'libboost-regex1.48.0', - 'libsndfile1', - 'libmagick++4', - 'libxml++2.6-2', - 'libgtk2.0-0', - 'libxmlsec1', - 'libxmlsec1-openssl', - 'libboost-date-time1.48.0', - 'libcurl3', - 'libzip2', - 'libsamplerate0', - 'libicu48'} - -deb_depends['14.04'] = {'libc6', - 'libssh-4', - 'libboost-filesystem1.54.0', - 'libboost-thread1.54.0', - 'libboost-regex1.54.0', - 'libsndfile1', - 'libmagick++5', - 'libxml++2.6-2', - 'libgtk2.0-0', - 'libxmlsec1', - 'libxmlsec1-openssl', - 'libboost-date-time1.54.0', - 'libcurl3', - 'libzip2', - 'libsamplerate0', - 'libcairomm-1.0-1', - 'libpangomm-1.4-1', - 'libicu52'} - -deb_depends['15.10'] = {'libc6', - 'libssh-4', - 'libboost-filesystem1.58.0', - 'libboost-thread1.58.0', - 'libboost-regex1.58.0', - 'libsndfile1', - 'libmagick++-6.q16-5v5', - 'libxml++2.6-2v5', - 'libgtk2.0-0', - 'libxmlsec1', - 'libxmlsec1-openssl', - 'libboost-date-time1.58.0', - 'libcurl3', - 'libzip4', - 'libwxgtk3.0-0v5', - 'libsamplerate0', - 'libicu55'} - -deb_depends['7'] = {'libc6', - 'libssh-4', - 'libboost-filesystem1.49.0', - 'libboost-thread1.49.0', - 'libboost-regex1.49.0', - 'libsndfile1', - 'libmagick++5', - 'libxml++2.6-2', - 'libgtk2.0-0', - 'libxmlsec1', - 'libboost-date-time1.49.0', - 'libxmlsec1-openssl', - 'libcurl3', - 'libzip2', - 'libcairomm-1.0-1', - 'libpangomm-1.4-1', - 'libsamplerate0', - 'libicu48'} - -deb_depends['8'] = {'libc6', - 'libssh-4', - 'libboost-filesystem1.55.0', - 'libboost-thread1.55.0', - 'libboost-date-time1.55.0', - 'libboost-regex1.55.0', - 'libsndfile1', - 'libmagick++-6.q16-5', - 'libxml++2.6-2', - 'libgtk2.0-0', - 'libxmlsec1', - 'libxmlsec1-openssl', - 'libcurl3', - 'libzip2', - 'libwxgtk3.0-0', - 'libxcb-xfixes0', - 'libxcb-shape0', - 'libsamplerate0', - 'libicu52'} - -deb_depends['unstable'] = {'libc6', - 'libssh-4', - 'libboost-filesystem1.58.0', - 'libboost-thread1.58.0', - 'libboost-regex1.58.0', - 'libsndfile1', - 'libmagick++-6.q16-5v5', - 'libxml++2.6-2v5', - 'libgtk2.0-0', - 'libxmlsec1', - 'libboost-date-time1.58.0', - 'libxmlsec1-openssl', - 'libcurl3', - 'libzip2', - 'libsamplerate0', - 'libicu52'} +deb_depends_base = ['libc6', 'libssh-4', 'libsndfile1', 'libsamplerate0', 'libxmlsec1', 'libxmlsec1-openssl', 'libcurl3', 'libgtk2.0-0'] + +deb_depends['12.04'] = copy.deepcopy(deb_depends_base) +deb_depends['12.04'].extend(['libboost-filesystem1.48.0', + 'libboost-thread1.48.0', + 'libboost-regex1.48.0', + 'libmagick++4', + 'libxml++2.6-2', + 'libboost-date-time1.48.0', + 'libzip2', + 'libicu48']) + +deb_depends['14.04'] = copy.deepcopy(deb_depends_base) +deb_depends['14.04'].extend(['libboost-filesystem1.54.0', + 'libboost-thread1.54.0', + 'libboost-regex1.54.0', + 'libmagick++5', + 'libxml++2.6-2', + 'libboost-date-time1.54.0', + 'libzip2', + 'libcairomm-1.0-1', + 'libpangomm-1.4-1', + 'libicu52']) + +deb_depends['15.10'] = copy.deepcopy(deb_depends_base) +deb_depends['15.10'].extend(['libboost-filesystem1.58.0', + 'libboost-thread1.58.0', + 'libboost-regex1.58.0', + 'libmagick++-6.q16-5v5', + 'libxml++2.6-2v5', + 'libboost-date-time1.58.0', + 'libzip4', + 'libwxgtk3.0-0v5', + 'libicu55']) + +deb_depends['15.10'] = copy.deepcopy(deb_depends_base) +deb_depends['15.10'].extend(['libboost-filesystem1.49.0', + 'libboost-thread1.49.0', + 'libboost-regex1.49.0', + 'libmagick++5', + 'libxml++2.6-2', + 'libboost-date-time1.49.0', + 'libzip2', + 'libcairomm-1.0-1', + 'libpangomm-1.4-1', + 'libicu48']) + +deb_depends['8'] = copy.deepcopy(deb_depends_base) +deb_depends['8'].extend(['libboost-filesystem1.55.0', + 'libboost-thread1.55.0', + 'libboost-date-time1.55.0', + 'libboost-regex1.55.0', + 'libmagick++-6.q16-5', + 'libxml++2.6-2', + 'libzip2', + 'libwxgtk3.0-0', + 'libxcb-xfixes0', + 'libxcb-shape0', + 'libicu52']) + +deb_depends['unstable'] = copy.deepcopy(deb_depends_base) +deb_depends['unstable'].extend(['libboost-filesystem1.58.0', + 'libboost-thread1.58.0', + 'libboost-regex1.58.0', + 'libmagick++-6.q16-5v5', + 'libxml++2.6-2v5', + 'libgtk2.0-0', + 'libboost-date-time1.58.0', + 'libzip2', + 'libicu52']) def packages(name, packages, f): s = '%s: ' % name |
