dockerdeb: add Ubuntu Trusty
authorAnton Shestakov <av6@dwimlabs.net>
Thu, 10 Mar 2016 23:46:19 +0800
changeset 28457 e6310cdcc4d0
parent 28456 d9d51da7a850
child 28458 311472301ef3
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.
Makefile
contrib/docker/ubuntu-trusty
--- 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