Skip to content
Snippets Groups Projects
Commit 1623f095 authored by Julien Grossholtz's avatar Julien Grossholtz Committed by Guillaume Roguez
Browse files

packaging: add Ubuntu 15.10 support

Ubuntu 15.10 will be released soon.
Ubuntu image support is already available so we can make a Ring
package for this release.

Issue: #80115
Change-Id: I40573d46846996eef79a860e5974d3de01910203
parent fad2bac4
Branches
No related tags found
No related merge requests found
......@@ -104,6 +104,26 @@
"cd .. ",
"mv *.orig.tar* *.debian.tar* *deb *changes *dsc /output"
]
"ubuntu_15.10": [
"mkdir -p /sources/ring-daemon",
"cd /sources/ring-daemon",
"/ring-daemon/debian/rules get-orig-source",
"dch --newversion $(dpkg-parsechangelog | perl -ne 'print $1 if m{^Version:\\s+([\\d\\.]+)};')-{{RELEASE_NUMBER}} \"Automatic nightly release\"",
"dch --release --distribution \"unstable\" debian/changelog",
"dpkg-buildpackage -uc -us",
"cd .. ",
"mv *.orig.tar* *.debian.tar* *deb *changes *dsc /output"
],
"ubuntu_15.10_i386": [
"mkdir -p /sources/ring-daemon",
"cd /sources/ring-daemon",
"/ring-daemon/debian/rules get-orig-source",
"dch --newversion $(dpkg-parsechangelog | perl -ne 'print $1 if m{^Version:\\s+([\\d\\.]+)};')-{{RELEASE_NUMBER}} \"Automatic nightly release\"",
"dch --release --distribution \"unstable\" debian/changelog",
"dpkg-buildpackage -uc -us",
"cd .. ",
"mv *.orig.tar* *.debian.tar* *deb *changes *dsc /output"
]
},
"UpdateInstructions" : {
"fedora_21" : ["yum upgrade -y"],
......@@ -116,6 +136,8 @@
"ubuntu_15.04": ["apt-get update", "( apt-get upgrade -y || apt-get upgrade -y || apt-get upgrade -y )"],
"ubuntu_14.04_i386": ["apt-get update", "( apt-get upgrade -y || apt-get upgrade -y || apt-get upgrade -y )"],
"ubuntu_15.04_i386": ["apt-get update", "( apt-get upgrade -y || apt-get upgrade -y || apt-get upgrade -y )"]
"ubuntu_15.10": ["apt-get update", "( apt-get upgrade -y || apt-get upgrade -y || apt-get upgrade -y )"],
"ubuntu_15.10_i386": ["apt-get update", "( apt-get upgrade -y || apt-get upgrade -y || apt-get upgrade -y )"],
},
"ReviewType": "",
"ReviewAddress": "https://gerrit-ring.savoirfairelinux.com",
......@@ -128,8 +150,10 @@
"debian_9": "",
"ubuntu_14.04": "",
"ubuntu_15.04": "",
"ubuntu_15.10": "",
"ubuntu_14.04_i386": "",
"ubuntu_15.04_i386": ""
"ubuntu_15.04_i386": "",
"ubuntu_15.10_i386": ""
},
"ReloadProjectCmd" : [
"git checkout packaging",
......@@ -145,8 +169,10 @@
"debian_9": "@midnight",
"ubuntu_14.04": "@midnight",
"ubuntu_15.04": "@midnight",
"ubuntu_15.10": "@midnight",
"ubuntu_14.04_i386": "@midnight",
"ubuntu_15.04_i386": "@midnight"
"ubuntu_15.04_i386": "@midnight",
"ubuntu_15.10_i386": "@midnight"
},
"DeployScript": "ring-nightly-sign-deploy.sh",
"NotificationMailAdress": ["Awesome Ring Team", "ring-dev@lists.savoirfairelinux.net"]
......
FROM ubuntu:15.10
RUN apt-get update && ( apt-get upgrade -y || apt-get upgrade -y || apt-get upgrade -y )
RUN apt-get install -y devscripts debianutils debhelper build-essential tar rsync git \
autoconf automake libpulse-dev libsamplerate0-dev libtool libdbus-1-dev \
libasound2-dev libexpat1-dev libpcre3-dev libyaml-cpp-dev libboost-dev \
libdbus-c++-dev libsndfile1-dev libsrtp-dev libxext-dev libgnutls-dev \
libxfixes-dev yasm autopoint unbound-anchor git-core libspeex-dev \
libspeexdsp-dev autotools-dev chrpath check astyle \
uuid-dev libudev-dev cmake --fix-missing
FROM savoirfairelinux/ring-ubuntu32:15.10
RUN apt-get update && ( apt-get upgrade -y || apt-get upgrade -y || apt-get upgrade -y )
RUN apt-get install -y devscripts debianutils debhelper build-essential tar rsync git \
autoconf automake libpulse-dev libsamplerate0-dev libtool libdbus-1-dev \
libasound2-dev libexpat1-dev libpcre3-dev libyaml-cpp-dev libboost-dev \
libdbus-c++-dev libsndfile1-dev libsrtp-dev libxext-dev libgnutls-dev \
libxfixes-dev yasm autopoint unbound-anchor git-core libspeex-dev \
libspeexdsp-dev autotools-dev chrpath check astyle \
uuid-dev libudev-dev cmake --fix-missing
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment