changeset 28457:e6310cdcc4d0

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.
author Anton Shestakov <av6@dwimlabs.net>
date Thu, 10 Mar 2016 23:46:19 +0800
parents d9d51da7a850
children 311472301ef3
files Makefile contrib/docker/ubuntu-trusty
diffstat 2 files changed, 15 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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
--- /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