From 33b42c9e3f6a67d70327f89039d679c57fa11f31 Mon Sep 17 00:00:00 2001 From: Witherking25 Date: Wed, 2 Dec 2020 20:25:23 +0000 Subject: [PATCH 1/3] gitpod project --- .gitpod.Dockerfile | 4 ++++ .gitpod.yml | 12 ++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 .gitpod.Dockerfile create mode 100644 .gitpod.yml diff --git a/.gitpod.Dockerfile b/.gitpod.Dockerfile new file mode 100644 index 0000000..c037601 --- /dev/null +++ b/.gitpod.Dockerfile @@ -0,0 +1,4 @@ +FROM gitpod/workspace-full +USER gitpod +RUN sudo apt-get update -q && \ + sudo apt-get install -yq dh-make \ No newline at end of file diff --git a/.gitpod.yml b/.gitpod.yml new file mode 100644 index 0000000..970eca6 --- /dev/null +++ b/.gitpod.yml @@ -0,0 +1,12 @@ +image: + file: .gitpod.Dockerfile + +# List the ports you want to expose and what to do when they are served. See https://www.gitpod.io/docs/config-ports/ +ports: + - port: 3000 + onOpen: open-preview + +# List the start up tasks. You can start them in parallel in multiple terminals. See https://www.gitpod.io/docs/config-start-tasks/ +tasks: + - init: echo 'init script' # runs during prebuild + command: echo 'start script' From 10304488828850c3af133922e213fbcfc1ff22fa Mon Sep 17 00:00:00 2001 From: Witherking25 Date: Wed, 2 Dec 2020 20:34:27 +0000 Subject: [PATCH 2/3] fix docker --- .gitpod.Dockerfile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.gitpod.Dockerfile b/.gitpod.Dockerfile index c037601..c63a625 100644 --- a/.gitpod.Dockerfile +++ b/.gitpod.Dockerfile @@ -1,4 +1,6 @@ FROM gitpod/workspace-full -USER gitpod -RUN sudo apt-get update -q && \ - sudo apt-get install -yq dh-make \ No newline at end of file + +RUN sudo apt-get update \ + && sudo apt-get install -y \ + dh-make debhelper devscripts\ + && sudo rm -rf /var/lib/apt/lists/* \ No newline at end of file From ea9eccba042b855b8efbdeeebf8f4ac1b52a40d6 Mon Sep 17 00:00:00 2001 From: Witherking25 <39203202+Witherking25@users.noreply.github.com> Date: Thu, 3 Dec 2020 10:47:12 -0600 Subject: [PATCH 3/3] Update motorcommon.h --- src/motorcommon.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/motorcommon.h b/src/motorcommon.h index 3f80d43..546ad74 100644 --- a/src/motorcommon.h +++ b/src/motorcommon.h @@ -23,7 +23,7 @@ // #define LOCALE_DIR "/usr/local/share/locale/" // #define SHARE_DIR "/usr/local/share/motor/" -#define VERSION "0.0.0" +#define VERSION "3.5.2" #define GNUMAKE "gmake" #endif