Skip to content

Commit

Permalink
make - autocommit
Browse files Browse the repository at this point in the history
  • Loading branch information
stamepicmorg committed Jan 20, 2023
1 parent c6b8e88 commit d1fa4da
Show file tree
Hide file tree
Showing 40 changed files with 224 additions and 14 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
* added new `jira` releases
* added new `bitbucket` releases
* added new `confluence` releases
* fixed `git` binary sources
-------------------------------------------------------------------
## 2022
* `dec`
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ ecosystem-debian-images:
make ecosystem-debian-stretch-images
make ecosystem-debian-buster-images
make ecosystem-debian-bullseye-images
make ecosystem-debian-bookworm-images
# make ecosystem-debian-bookworm-images

ecosystem-debian-squeeze-images:
cd `pwd`/linux/ecosystem/epicmorg/debian/06-squeeze/slim && pwd && make build && make deploy
Expand Down
2 changes: 1 addition & 1 deletion linux/ecosystem/electron-release-server/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM epicmorg/nodejs:node10
FROM epicmorg/nodejs:node12

RUN git clone https://github.com/ArekSredzki/electron-release-server.git /usr/src/electron-release-server && \
tree /usr/src/electron-release-server
Expand Down
4 changes: 2 additions & 2 deletions linux/ecosystem/epicmorg/debian/06-squeeze/main/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ ARG DEBIAN_FRONTEND=noninteractive
##################################################################
# perforce client binary
##################################################################
ENV P4_VERSION=r22.1
ENV P4_DOWNLOAD_URL=http://filehost.perforce.com/perforce/${P4_VERSION}/bin.linux26x86_64/p4
ARG P4_VERSION=r22.1
ARG P4_DOWNLOAD_URL=http://filehost.perforce.com/perforce/${P4_VERSION}/bin.linux26x86_64/p4

##################################################################
# update lists
Expand Down
13 changes: 13 additions & 0 deletions linux/ecosystem/epicmorg/debian/10-buster/main/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,19 @@ RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selectio
# xfsprogs \
# xfsdump

##################################################################
# git fresh binary
##################################################################
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys A1715D88E1DF1F24 && \
rm -rfv /etc/apt/sources.list.d/launchpad_git-mainline.list && \
rm -rfv /etc/apt/sources.list.d/launchpad_git-stable.list
COPY etc/apt/sources.list.d/launchpad_git-mainline.list /etc/apt/sources.list.d/launchpad_git-mainline.list
COPY etc/apt/sources.list.d/launchpad_git-stable.list /etc/apt/sources.list.d/launchpad_git-stable.list
RUN apt-get update && \
apt-get install -y --allow-unauthenticated \
git && \
git --version

##################################################################
# git-lfs official binary
##################################################################
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# mainline
deb https://ppa.launchpadcontent.net/git-core/candidate/ubuntu focal main
deb-src https://ppa.launchpadcontent.net/git-core/candidate/ubuntu focal main
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# stable
deb https://ppa.launchpadcontent.net/git-core/ppa/ubuntu focal main
deb-src https://ppa.launchpadcontent.net/git-core/ppa/ubuntu focal main
29 changes: 21 additions & 8 deletions linux/ecosystem/epicmorg/debian/11-bullseye/main/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,20 @@ ARG DEBIAN_FRONTEND=noninteractive
##################################################################
# perforce client binary
##################################################################
ENV P4_VERSION=r22.1
ENV P4_DOWNLOAD_URL=https://filehost.perforce.com/perforce/${P4_VERSION}/bin.linux26x86_64/p4
ARG P4_VERSION=r22.1
ARG P4_DOWNLOAD_URL=https://filehost.perforce.com/perforce/${P4_VERSION}/bin.linux26x86_64/p4

##################################################################
# 7z official binary
##################################################################
ENV SZ_VERSION=7z2200
ENV SZ_DOWNLOAD_URL=https://www.7-zip.org/a/${SZ_VERSION}-linux-x64.tar.xz
ARG SZ_VERSION=7z2200
ARG SZ_DOWNLOAD_URL=https://www.7-zip.org/a/${SZ_VERSION}-linux-x64.tar.xz

##################################################################
# LazyGit official binary
##################################################################
ENV LZGIT_VERSION=0.34
ENV LZGIT_DOWNLOAD_URL=https://github.com/jesseduffield/lazygit/releases/download/v${LZGIT_VERSION}/lazygit_${LZGIT_VERSION}_Linux_x86_64.tar.gz
ARG LZGIT_VERSION=0.34
ARG LZGIT_DOWNLOAD_URL=https://github.com/jesseduffield/lazygit/releases/download/v${LZGIT_VERSION}/lazygit_${LZGIT_VERSION}_Linux_x86_64.tar.gz

##################################################################
# update lists
Expand Down Expand Up @@ -138,6 +138,19 @@ RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selectio
# xfsprogs \
# xfsdump

##################################################################
# git fresh binary
##################################################################
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys A1715D88E1DF1F24 && \
rm -rfv /etc/apt/sources.list.d/launchpad_git-mainline.list && \
rm -rfv /etc/apt/sources.list.d/launchpad_git-stable.list
COPY etc/apt/sources.list.d/launchpad_git-mainline.list /etc/apt/sources.list.d/launchpad_git-mainline.list
COPY etc/apt/sources.list.d/launchpad_git-stable.list /etc/apt/sources.list.d/launchpad_git-stable.list
RUN apt-get update && \
apt-get install -y --allow-unauthenticated \
git && \
git --version

##################################################################
# git-lfs official binary
##################################################################
Expand Down Expand Up @@ -195,15 +208,15 @@ RUN wget --no-check-certificate -nv --random-wait --retry-connrefused --continue
##################################################################
# dumb init
##################################################################
ENV DUMB_INIT_VERSION=1.2.5
ARG DUMB_INIT_VERSION=1.2.5
RUN wget -q --no-check-certificate -c https://github.com/Yelp/dumb-init/releases/download/v${DUMB_INIT_VERSION}/dumb-init_${DUMB_INIT_VERSION}_x86_64 --random-wait -O /usr/bin/dumb-init && \
chmod +x /usr/bin/dumb-init && \
dumb-init --version

##################################################################
# grab gosu for easy step-down from root
##################################################################
ENV GOSU_VER 1.14
ARG GOSU_VER 1.14
RUN wget -q --no-check-certificate -c https://github.com/tianon/gosu/releases/download/${GOSU_VER}/gosu-amd64 --random-wait -O /usr/local/bin/gosu && \
chmod +x /usr/local/bin/gosu && \
gosu --version
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# mainline
deb https://ppa.launchpadcontent.net/git-core/candidate/ubuntu focal main
deb-src https://ppa.launchpadcontent.net/git-core/candidate/ubuntu focal main
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# stable
deb https://ppa.launchpadcontent.net/git-core/ppa/ubuntu focal main
deb-src https://ppa.launchpadcontent.net/git-core/ppa/ubuntu focal main
13 changes: 13 additions & 0 deletions linux/ecosystem/epicmorg/debian/12-bookworm/main/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,19 @@ RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selectio
# xfsprogs
## xfsdump

##################################################################
# git fresh binary
##################################################################
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys A1715D88E1DF1F24 && \
rm -rfv /etc/apt/sources.list.d/launchpad_git-mainline.list && \
rm -rfv /etc/apt/sources.list.d/launchpad_git-stable.list
COPY etc/apt/sources.list.d/launchpad_git-mainline.list /etc/apt/sources.list.d/launchpad_git-mainline.list
COPY etc/apt/sources.list.d/launchpad_git-stable.list /etc/apt/sources.list.d/launchpad_git-stable.list
RUN apt-get update && \
apt-get install -y --allow-unauthenticated \
git && \
git --version

##################################################################
# git-lfs official binary
##################################################################
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# mainline
deb https://ppa.launchpadcontent.net/git-core/candidate/ubuntu jammy main
deb-src https://ppa.launchpadcontent.net/git-core/candidate/ubuntu jammy main
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# stable
deb https://ppa.launchpadcontent.net/git-core/ppa/ubuntu jammy main
deb-src https://ppa.launchpadcontent.net/git-core/ppa/ubuntu jammy main
13 changes: 13 additions & 0 deletions linux/ecosystem/epicmorg/python/main/2.7/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,19 @@ RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selectio
# xfsprogs \
# xfsdump

##################################################################
# git fresh binary
##################################################################
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys A1715D88E1DF1F24 && \
rm -rfv /etc/apt/sources.list.d/launchpad_git-mainline.list && \
rm -rfv /etc/apt/sources.list.d/launchpad_git-stable.list
COPY etc/apt/sources.list.d/launchpad_git-mainline.list /etc/apt/sources.list.d/launchpad_git-mainline.list
COPY etc/apt/sources.list.d/launchpad_git-stable.list /etc/apt/sources.list.d/launchpad_git-stable.list
RUN apt-get update && \
apt-get install -y --allow-unauthenticated \
git && \
git --version

##################################################################
# git-lfs official binary
##################################################################
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# mainline
deb https://ppa.launchpadcontent.net/git-core/candidate/ubuntu focal main
deb-src https://ppa.launchpadcontent.net/git-core/candidate/ubuntu focal main
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# stable
deb https://ppa.launchpadcontent.net/git-core/ppa/ubuntu focal main
deb-src https://ppa.launchpadcontent.net/git-core/ppa/ubuntu focal main
13 changes: 13 additions & 0 deletions linux/ecosystem/epicmorg/python/main/3.10/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,19 @@ RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selectio
# xfsprogs \
# xfsdump

##################################################################
# git fresh binary
##################################################################
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys A1715D88E1DF1F24 && \
rm -rfv /etc/apt/sources.list.d/launchpad_git-mainline.list && \
rm -rfv /etc/apt/sources.list.d/launchpad_git-stable.list
COPY etc/apt/sources.list.d/launchpad_git-mainline.list /etc/apt/sources.list.d/launchpad_git-mainline.list
COPY etc/apt/sources.list.d/launchpad_git-stable.list /etc/apt/sources.list.d/launchpad_git-stable.list
RUN apt-get update && \
apt-get install -y --allow-unauthenticated \
git && \
git --version

##################################################################
# git-lfs official binary
##################################################################
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# mainline
deb https://ppa.launchpadcontent.net/git-core/candidate/ubuntu focal main
deb-src https://ppa.launchpadcontent.net/git-core/candidate/ubuntu focal main
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# stable
deb https://ppa.launchpadcontent.net/git-core/ppa/ubuntu focal main
deb-src https://ppa.launchpadcontent.net/git-core/ppa/ubuntu focal main
13 changes: 13 additions & 0 deletions linux/ecosystem/epicmorg/python/main/3.11/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,19 @@ RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selectio
# xfsprogs \
# xfsdump

##################################################################
# git fresh binary
##################################################################
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys A1715D88E1DF1F24 && \
rm -rfv /etc/apt/sources.list.d/launchpad_git-mainline.list && \
rm -rfv /etc/apt/sources.list.d/launchpad_git-stable.list
COPY etc/apt/sources.list.d/launchpad_git-mainline.list /etc/apt/sources.list.d/launchpad_git-mainline.list
COPY etc/apt/sources.list.d/launchpad_git-stable.list /etc/apt/sources.list.d/launchpad_git-stable.list
RUN apt-get update && \
apt-get install -y --allow-unauthenticated \
git && \
git --version

##################################################################
# git-lfs official binary
##################################################################
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# mainline
deb https://ppa.launchpadcontent.net/git-core/candidate/ubuntu focal main
deb-src https://ppa.launchpadcontent.net/git-core/candidate/ubuntu focal main
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# stable
deb https://ppa.launchpadcontent.net/git-core/ppa/ubuntu focal main
deb-src https://ppa.launchpadcontent.net/git-core/ppa/ubuntu focal main
13 changes: 13 additions & 0 deletions linux/ecosystem/epicmorg/python/main/3.12/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,19 @@ RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selectio
# xfsprogs \
# xfsdump

##################################################################
# git fresh binary
##################################################################
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys A1715D88E1DF1F24 && \
rm -rfv /etc/apt/sources.list.d/launchpad_git-mainline.list && \
rm -rfv /etc/apt/sources.list.d/launchpad_git-stable.list
COPY etc/apt/sources.list.d/launchpad_git-mainline.list /etc/apt/sources.list.d/launchpad_git-mainline.list
COPY etc/apt/sources.list.d/launchpad_git-stable.list /etc/apt/sources.list.d/launchpad_git-stable.list
RUN apt-get update && \
apt-get install -y --allow-unauthenticated \
git && \
git --version

##################################################################
# git-lfs official binary
##################################################################
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# mainline
deb https://ppa.launchpadcontent.net/git-core/candidate/ubuntu focal main
deb-src https://ppa.launchpadcontent.net/git-core/candidate/ubuntu focal main
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# stable
deb https://ppa.launchpadcontent.net/git-core/ppa/ubuntu focal main
deb-src https://ppa.launchpadcontent.net/git-core/ppa/ubuntu focal main
13 changes: 13 additions & 0 deletions linux/ecosystem/epicmorg/python/main/3.6/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,19 @@ RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selectio
# xfsprogs \
# xfsdump

##################################################################
# git fresh binary
##################################################################
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys A1715D88E1DF1F24 && \
rm -rfv /etc/apt/sources.list.d/launchpad_git-mainline.list && \
rm -rfv /etc/apt/sources.list.d/launchpad_git-stable.list
COPY etc/apt/sources.list.d/launchpad_git-mainline.list /etc/apt/sources.list.d/launchpad_git-mainline.list
COPY etc/apt/sources.list.d/launchpad_git-stable.list /etc/apt/sources.list.d/launchpad_git-stable.list
RUN apt-get update && \
apt-get install -y --allow-unauthenticated \
git && \
git --version

##################################################################
# git-lfs official binary
##################################################################
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# mainline
deb https://ppa.launchpadcontent.net/git-core/candidate/ubuntu focal main
deb-src https://ppa.launchpadcontent.net/git-core/candidate/ubuntu focal main
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# stable
deb https://ppa.launchpadcontent.net/git-core/ppa/ubuntu focal main
deb-src https://ppa.launchpadcontent.net/git-core/ppa/ubuntu focal main
13 changes: 13 additions & 0 deletions linux/ecosystem/epicmorg/python/main/3.7/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,19 @@ RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selectio
# xfsprogs \
# xfsdump

##################################################################
# git fresh binary
##################################################################
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys A1715D88E1DF1F24 && \
rm -rfv /etc/apt/sources.list.d/launchpad_git-mainline.list && \
rm -rfv /etc/apt/sources.list.d/launchpad_git-stable.list
COPY etc/apt/sources.list.d/launchpad_git-mainline.list /etc/apt/sources.list.d/launchpad_git-mainline.list
COPY etc/apt/sources.list.d/launchpad_git-stable.list /etc/apt/sources.list.d/launchpad_git-stable.list
RUN apt-get update && \
apt-get install -y --allow-unauthenticated \
git && \
git --version

##################################################################
# git-lfs official binary
##################################################################
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# mainline
deb https://ppa.launchpadcontent.net/git-core/candidate/ubuntu focal main
deb-src https://ppa.launchpadcontent.net/git-core/candidate/ubuntu focal main
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# stable
deb https://ppa.launchpadcontent.net/git-core/ppa/ubuntu focal main
deb-src https://ppa.launchpadcontent.net/git-core/ppa/ubuntu focal main
13 changes: 13 additions & 0 deletions linux/ecosystem/epicmorg/python/main/3.8/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,19 @@ RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selectio
# xfsprogs \
# xfsdump

##################################################################
# git fresh binary
##################################################################
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys A1715D88E1DF1F24 && \
rm -rfv /etc/apt/sources.list.d/launchpad_git-mainline.list && \
rm -rfv /etc/apt/sources.list.d/launchpad_git-stable.list
COPY etc/apt/sources.list.d/launchpad_git-mainline.list /etc/apt/sources.list.d/launchpad_git-mainline.list
COPY etc/apt/sources.list.d/launchpad_git-stable.list /etc/apt/sources.list.d/launchpad_git-stable.list
RUN apt-get update && \
apt-get install -y --allow-unauthenticated \
git && \
git --version

##################################################################
# git-lfs official binary
##################################################################
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# mainline
deb https://ppa.launchpadcontent.net/git-core/candidate/ubuntu focal main
deb-src https://ppa.launchpadcontent.net/git-core/candidate/ubuntu focal main
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# stable
deb https://ppa.launchpadcontent.net/git-core/ppa/ubuntu focal main
deb-src https://ppa.launchpadcontent.net/git-core/ppa/ubuntu focal main
13 changes: 13 additions & 0 deletions linux/ecosystem/epicmorg/python/main/3.9/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,19 @@ RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selectio
# xfsprogs \
# xfsdump

##################################################################
# git fresh binary
##################################################################
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys A1715D88E1DF1F24 && \
rm -rfv /etc/apt/sources.list.d/launchpad_git-mainline.list && \
rm -rfv /etc/apt/sources.list.d/launchpad_git-stable.list
COPY etc/apt/sources.list.d/launchpad_git-mainline.list /etc/apt/sources.list.d/launchpad_git-mainline.list
COPY etc/apt/sources.list.d/launchpad_git-stable.list /etc/apt/sources.list.d/launchpad_git-stable.list
RUN apt-get update && \
apt-get install -y --allow-unauthenticated \
git && \
git --version

##################################################################
# git-lfs official binary
##################################################################
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# mainline
deb https://ppa.launchpadcontent.net/git-core/candidate/ubuntu focal main
deb-src https://ppa.launchpadcontent.net/git-core/candidate/ubuntu focal main
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# stable
deb https://ppa.launchpadcontent.net/git-core/ppa/ubuntu focal main
deb-src https://ppa.launchpadcontent.net/git-core/ppa/ubuntu focal main
2 changes: 1 addition & 1 deletion linux/ecosystem/monero/monerod/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ ARG DEBIAN_FRONTEND=noninteractive
ENV MONERO_DIR=/monero
ENV MONERO_BIN=${MONERO_DIR}/bin
ENV MONERO_DATA=${MONERO_DIR}/data
ENV MONERO_VERSION=0.18.1.0
ENV MONERO_VERSION=0.18.1.2
ENV MONERO_DOWNLOAD_URL=https://downloads.getmonero.org/cli/monero-linux-x64-v${MONERO_VERSION}.tar.bz2
ENV PATH="${PATH}:${MONERO_BIN}"

Expand Down
Loading

0 comments on commit d1fa4da

Please sign in to comment.