# HG changeset patch # User Anton Shestakov # Date 1457624779 -28800 # Node ID e6310cdcc4d0c8f1e5e9d6a6fee2077eab1f65eb # Parent d9d51da7a8506581e278e918813431a052805dd7 dockerdeb: add Ubuntu Trusty One problem reported by lintian is "bad-distribution-in-changes-file unstable" in changelog, but the current changelog for the official package in Ubuntu also uses that distribution name (unstable), because they import from Debian. This certainly doesn't stop the build process. diff -r d9d51da7a850 -r e6310cdcc4d0 Makefile --- a/Makefile Thu Mar 10 17:31:38 2016 -0600 +++ b/Makefile Thu Mar 10 23:46:19 2016 +0800 @@ -168,6 +168,10 @@ mkdir -p packages/debian-jessie contrib/dockerdeb debian jessie +docker-ubuntu-trusty: + mkdir -p packages/ubuntu-trusty + contrib/dockerdeb ubuntu trusty + fedora20: mkdir -p packages/fedora20 contrib/buildrpm diff -r d9d51da7a850 -r e6310cdcc4d0 contrib/docker/ubuntu-trusty --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/contrib/docker/ubuntu-trusty Thu Mar 10 23:46:19 2016 +0800 @@ -0,0 +1,11 @@ +FROM ubuntu:trusty +RUN apt-get update && apt-get install -y \ + build-essential \ + debhelper \ + dh-python \ + devscripts \ + python \ + python-all-dev \ + python-docutils \ + zip \ + unzip