# HG changeset patch # User Chris Cannam # Date 1488893631 0 # Node ID cbaac283f47ea7f21e83612cf0931b26ea29c213 # Parent 92e1540a830a091c2f4fc823271c90f0e7b76a8b Add Docker build file for 3.0.1, remove the old betas diff -r 92e1540a830a -r cbaac283f47e deploy/linux/docker/Dockerfile_v3.0.1_ubuntu1604 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/deploy/linux/docker/Dockerfile_v3.0.1_ubuntu1604 Tue Mar 07 13:33:51 2017 +0000 @@ -0,0 +1,43 @@ +FROM ubuntu:16.04 +MAINTAINER Chris Cannam +RUN apt-get update && \ + apt-get install -y \ + build-essential \ + libbz2-dev \ + libfftw3-dev \ + libfishsound1-dev \ + libid3tag0-dev \ + liblo-dev \ + liblrdf0-dev \ + libmad0-dev \ + liboggz2-dev \ + libpulse-dev \ + libsamplerate-dev \ + libsndfile-dev \ + libsord-dev \ + libxml2-utils \ + portaudio19-dev \ + qt5-default libqt5svg5-dev \ + raptor-utils \ + librubberband-dev \ + git \ + mercurial \ + curl wget \ + autoconf automake libtool lintian +RUN apt-get clean && rm -rf /var/lib/apt/lists/* +RUN locale-gen en_US.UTF-8 +ENV LANG en_US.UTF-8 +ENV LANGUAGE en_US:en +ENV LC_ALL en_US.UTF-8 +RUN git clone https://github.com/sandstorm-io/capnproto +WORKDIR capnproto/c++ +RUN ./setup-autotools.sh && autoreconf -i +RUN ./configure --enable-static --disable-shared +RUN make && make install +WORKDIR ../.. +RUN hg clone -rsv_v3.0.1 https://code.soundsoftware.ac.uk/hg/sonic-visualiser +WORKDIR sonic-visualiser +RUN ./configure +RUN make -j3 +RUN deploy/linux/deploy-deb.sh 3.0.1 amd64 +RUN tar cvf output.tar *.deb && cp output.tar .. diff -r 92e1540a830a -r cbaac283f47e deploy/linux/docker/Dockerfile_v3.0beta1_fedora25 --- a/deploy/linux/docker/Dockerfile_v3.0beta1_fedora25 Tue Mar 07 13:27:53 2017 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,47 +0,0 @@ -FROM fedora:25 -MAINTAINER Chris Cannam -RUN dnf update -y && dnf groupinstall -y "Development tools" -RUN dnf install -y \ - gcc-c++ \ - alsa-lib-devel \ - bzip2-devel \ - fftw-devel \ - flac-devel \ - jack-audio-connection-kit-devel \ - libid3tag-devel \ - liblo-devel \ - liblrdf-devel \ - libmad-devel \ - liboggz-devel \ - libfishsound-devel \ - libsamplerate-devel \ - libsndfile-devel \ - libvorbis-devel \ - portaudio-devel \ - pulseaudio-libs-devel \ - qt5-qtbase-devel qt5-qtsvg-devel \ - sord-devel \ - speex-devel \ - rubberband-devel \ - git mercurial \ - curl wget \ - autoconf automake libtool \ - langpacks-en -ENV LANG en_US.UTF-8 -ENV LC_ALL en_US.UTF-8 -RUN git clone https://github.com/sandstorm-io/capnproto -WORKDIR capnproto/c++ -RUN ./setup-autotools.sh && autoreconf -i -RUN ./configure --enable-static --disable-shared -RUN make && make install -WORKDIR ../.. -ENV PKG_CONFIG_PATH /usr/local/lib/pkgconfig:$PKG_CONFIG_PATH -RUN hg clone https://code.soundsoftware.ac.uk/hg/sonic-visualiser -WORKDIR sonic-visualiser -RUN hg update -r782025ae1249 -RUN perl -i -p -e 's,#include "version.h",#include "../version.h",' main/Surveyer.cpp -RUN perl -i -p -e 's,#include "version.h",#include "../version.h",' main/PreferencesDialog.cpp -RUN ./configure -RUN make -j3 -RUN cp checker/vamp-plugin-load-checker . -# package...? diff -r 92e1540a830a -r cbaac283f47e deploy/linux/docker/Dockerfile_v3.0beta1_ubuntu1604 --- a/deploy/linux/docker/Dockerfile_v3.0beta1_ubuntu1604 Tue Mar 07 13:27:53 2017 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,45 +0,0 @@ -FROM ubuntu:16.04 -MAINTAINER Chris Cannam -RUN apt-get update -RUN apt-get install -y \ - build-essential \ - libbz2-dev \ - libfftw3-dev \ - libfishsound1-dev \ - libid3tag0-dev \ - liblo-dev \ - liblrdf0-dev \ - libmad0-dev \ - liboggz2-dev \ - libpulse-dev \ - libsamplerate-dev \ - libsndfile-dev \ - libsord-dev \ - libxml2-utils \ - portaudio19-dev \ - qt5-default libqt5svg5-dev \ - raptor-utils \ - librubberband-dev \ - git \ - mercurial \ - curl wget \ - autoconf automake libtool lintian -RUN apt-get clean && rm -rf /var/lib/apt/lists/* -RUN locale-gen en_US.UTF-8 -ENV LANG en_US.UTF-8 -ENV LANGUAGE en_US:en -ENV LC_ALL en_US.UTF-8 -RUN git clone https://github.com/sandstorm-io/capnproto -WORKDIR capnproto/c++ -RUN ./setup-autotools.sh && autoreconf -i -RUN ./configure --enable-static --disable-shared -RUN make && make install -WORKDIR ../.. -RUN hg clone https://code.soundsoftware.ac.uk/hg/sonic-visualiser -WORKDIR sonic-visualiser -RUN hg update -r9b59deb4a854 -RUN ./configure -RUN make -j3 -RUN cp checker/vamp-plugin-load-checker . -RUN deploy/linux/deploy-deb.sh 3.0beta1-1 amd64 -RUN tar cvf output.tar *.deb && cp output.tar .. diff -r 92e1540a830a -r cbaac283f47e deploy/linux/docker/Dockerfile_v3.0beta2_ubuntu1604 --- a/deploy/linux/docker/Dockerfile_v3.0beta2_ubuntu1604 Tue Mar 07 13:27:53 2017 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,43 +0,0 @@ -FROM ubuntu:16.04 -MAINTAINER Chris Cannam -RUN apt-get update -RUN apt-get install -y \ - build-essential \ - libbz2-dev \ - libfftw3-dev \ - libfishsound1-dev \ - libid3tag0-dev \ - liblo-dev \ - liblrdf0-dev \ - libmad0-dev \ - liboggz2-dev \ - libpulse-dev \ - libsamplerate-dev \ - libsndfile-dev \ - libsord-dev \ - libxml2-utils \ - portaudio19-dev \ - qt5-default libqt5svg5-dev \ - raptor-utils \ - librubberband-dev \ - git \ - mercurial \ - curl wget \ - autoconf automake libtool lintian -RUN apt-get clean && rm -rf /var/lib/apt/lists/* -RUN locale-gen en_US.UTF-8 -ENV LANG en_US.UTF-8 -ENV LANGUAGE en_US:en -ENV LC_ALL en_US.UTF-8 -RUN git clone https://github.com/sandstorm-io/capnproto -WORKDIR capnproto/c++ -RUN ./setup-autotools.sh && autoreconf -i -RUN ./configure --enable-static --disable-shared -RUN make && make install -WORKDIR ../.. -RUN hg clone -rsv_v3.0beta2 https://code.soundsoftware.ac.uk/hg/sonic-visualiser -WORKDIR sonic-visualiser -RUN ./configure -RUN make -j3 -RUN deploy/linux/deploy-deb.sh 3.0beta2-1 amd64 -RUN tar cvf output.tar *.deb && cp output.tar .. diff -r 92e1540a830a -r cbaac283f47e deploy/linux/docker/Dockerfile_v3.0beta3_ubuntu1604 --- a/deploy/linux/docker/Dockerfile_v3.0beta3_ubuntu1604 Tue Mar 07 13:27:53 2017 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,43 +0,0 @@ -FROM ubuntu:16.04 -MAINTAINER Chris Cannam -RUN apt-get update -RUN apt-get install -y \ - build-essential \ - libbz2-dev \ - libfftw3-dev \ - libfishsound1-dev \ - libid3tag0-dev \ - liblo-dev \ - liblrdf0-dev \ - libmad0-dev \ - liboggz2-dev \ - libpulse-dev \ - libsamplerate-dev \ - libsndfile-dev \ - libsord-dev \ - libxml2-utils \ - portaudio19-dev \ - qt5-default libqt5svg5-dev \ - raptor-utils \ - librubberband-dev \ - git \ - mercurial \ - curl wget \ - autoconf automake libtool lintian -RUN apt-get clean && rm -rf /var/lib/apt/lists/* -RUN locale-gen en_US.UTF-8 -ENV LANG en_US.UTF-8 -ENV LANGUAGE en_US:en -ENV LC_ALL en_US.UTF-8 -RUN git clone https://github.com/sandstorm-io/capnproto -WORKDIR capnproto/c++ -RUN ./setup-autotools.sh && autoreconf -i -RUN ./configure --enable-static --disable-shared -RUN make && make install -WORKDIR ../.. -RUN hg clone -rsv_v3.0beta3 https://code.soundsoftware.ac.uk/hg/sonic-visualiser -WORKDIR sonic-visualiser -RUN ./configure -RUN make -j3 -RUN deploy/linux/deploy-deb.sh 3.0beta3-1 amd64 -RUN tar cvf output.tar *.deb && cp output.tar .. diff -r 92e1540a830a -r cbaac283f47e deploy/linux/docker/Dockerfile_v3.0beta4_ubuntu1604 --- a/deploy/linux/docker/Dockerfile_v3.0beta4_ubuntu1604 Tue Mar 07 13:27:53 2017 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,43 +0,0 @@ -FROM ubuntu:16.04 -MAINTAINER Chris Cannam -RUN apt-get update && \ - apt-get install -y \ - build-essential \ - libbz2-dev \ - libfftw3-dev \ - libfishsound1-dev \ - libid3tag0-dev \ - liblo-dev \ - liblrdf0-dev \ - libmad0-dev \ - liboggz2-dev \ - libpulse-dev \ - libsamplerate-dev \ - libsndfile-dev \ - libsord-dev \ - libxml2-utils \ - portaudio19-dev \ - qt5-default libqt5svg5-dev \ - raptor-utils \ - librubberband-dev \ - git \ - mercurial \ - curl wget \ - autoconf automake libtool lintian -RUN apt-get clean && rm -rf /var/lib/apt/lists/* -RUN locale-gen en_US.UTF-8 -ENV LANG en_US.UTF-8 -ENV LANGUAGE en_US:en -ENV LC_ALL en_US.UTF-8 -RUN git clone https://github.com/sandstorm-io/capnproto -WORKDIR capnproto/c++ -RUN ./setup-autotools.sh && autoreconf -i -RUN ./configure --enable-static --disable-shared -RUN make && make install -WORKDIR ../.. -RUN hg clone -rsv_v3.0beta4 https://code.soundsoftware.ac.uk/hg/sonic-visualiser -WORKDIR sonic-visualiser -RUN ./configure -RUN make -j3 -RUN deploy/linux/deploy-deb.sh 3.0beta4-1 amd64 -RUN tar cvf output.tar *.deb && cp output.tar ..