make - autocommit

This commit is contained in:
Zimovskii Anatolii 2023-01-20 19:05:33 +03:00
parent c6b8e88e20
commit d1fa4da889
Signed by: stam
GPG Key ID: 9911D9EF664EEE14
40 changed files with 224 additions and 14 deletions

View File

@ -4,6 +4,7 @@
* added new `jira` releases * added new `jira` releases
* added new `bitbucket` releases * added new `bitbucket` releases
* added new `confluence` releases * added new `confluence` releases
* fixed `git` binary sources
------------------------------------------------------------------- -------------------------------------------------------------------
## 2022 ## 2022
* `dec` * `dec`

View File

@ -242,7 +242,7 @@ ecosystem-debian-images:
make ecosystem-debian-stretch-images make ecosystem-debian-stretch-images
make ecosystem-debian-buster-images make ecosystem-debian-buster-images
make ecosystem-debian-bullseye-images make ecosystem-debian-bullseye-images
make ecosystem-debian-bookworm-images # make ecosystem-debian-bookworm-images
ecosystem-debian-squeeze-images: ecosystem-debian-squeeze-images:
cd `pwd`/linux/ecosystem/epicmorg/debian/06-squeeze/slim && pwd && make build && make deploy cd `pwd`/linux/ecosystem/epicmorg/debian/06-squeeze/slim && pwd && make build && make deploy

View File

@ -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 && \ RUN git clone https://github.com/ArekSredzki/electron-release-server.git /usr/src/electron-release-server && \
tree /usr/src/electron-release-server tree /usr/src/electron-release-server

View File

@ -5,8 +5,8 @@ ARG DEBIAN_FRONTEND=noninteractive
################################################################## ##################################################################
# perforce client binary # perforce client binary
################################################################## ##################################################################
ENV P4_VERSION=r22.1 ARG P4_VERSION=r22.1
ENV P4_DOWNLOAD_URL=http://filehost.perforce.com/perforce/${P4_VERSION}/bin.linux26x86_64/p4 ARG P4_DOWNLOAD_URL=http://filehost.perforce.com/perforce/${P4_VERSION}/bin.linux26x86_64/p4
################################################################## ##################################################################
# update lists # update lists

View File

@ -139,6 +139,19 @@ RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selectio
# xfsprogs \ # xfsprogs \
# xfsdump # 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 # git-lfs official binary
################################################################## ##################################################################

View File

@ -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

View File

@ -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

View File

@ -5,20 +5,20 @@ ARG DEBIAN_FRONTEND=noninteractive
################################################################## ##################################################################
# perforce client binary # perforce client binary
################################################################## ##################################################################
ENV P4_VERSION=r22.1 ARG P4_VERSION=r22.1
ENV P4_DOWNLOAD_URL=https://filehost.perforce.com/perforce/${P4_VERSION}/bin.linux26x86_64/p4 ARG P4_DOWNLOAD_URL=https://filehost.perforce.com/perforce/${P4_VERSION}/bin.linux26x86_64/p4
################################################################## ##################################################################
# 7z official binary # 7z official binary
################################################################## ##################################################################
ENV SZ_VERSION=7z2200 ARG SZ_VERSION=7z2200
ENV SZ_DOWNLOAD_URL=https://www.7-zip.org/a/${SZ_VERSION}-linux-x64.tar.xz ARG SZ_DOWNLOAD_URL=https://www.7-zip.org/a/${SZ_VERSION}-linux-x64.tar.xz
################################################################## ##################################################################
# LazyGit official binary # LazyGit official binary
################################################################## ##################################################################
ENV LZGIT_VERSION=0.34 ARG 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_DOWNLOAD_URL=https://github.com/jesseduffield/lazygit/releases/download/v${LZGIT_VERSION}/lazygit_${LZGIT_VERSION}_Linux_x86_64.tar.gz
################################################################## ##################################################################
# update lists # update lists
@ -138,6 +138,19 @@ RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selectio
# xfsprogs \ # xfsprogs \
# xfsdump # 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 # git-lfs official binary
################################################################## ##################################################################
@ -195,7 +208,7 @@ RUN wget --no-check-certificate -nv --random-wait --retry-connrefused --continue
################################################################## ##################################################################
# dumb init # 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 && \ 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 && \ chmod +x /usr/bin/dumb-init && \
dumb-init --version dumb-init --version
@ -203,7 +216,7 @@ RUN wget -q --no-check-certificate -c https://github.com/Yelp/dumb-init/releases
################################################################## ##################################################################
# grab gosu for easy step-down from root # 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 && \ 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 && \ chmod +x /usr/local/bin/gosu && \
gosu --version gosu --version

View File

@ -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

View File

@ -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

View File

@ -138,6 +138,19 @@ RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selectio
# xfsprogs # xfsprogs
## xfsdump ## 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 # git-lfs official binary
################################################################## ##################################################################

View File

@ -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

View File

@ -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

View File

@ -188,6 +188,19 @@ RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selectio
# xfsprogs \ # xfsprogs \
# xfsdump # 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 # git-lfs official binary
################################################################## ##################################################################

View File

@ -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

View File

@ -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

View File

@ -192,6 +192,19 @@ RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selectio
# xfsprogs \ # xfsprogs \
# xfsdump # 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 # git-lfs official binary
################################################################## ##################################################################

View File

@ -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

View File

@ -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

View File

@ -183,6 +183,19 @@ RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selectio
# xfsprogs \ # xfsprogs \
# xfsdump # 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 # git-lfs official binary
################################################################## ##################################################################

View File

@ -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

View File

@ -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

View File

@ -183,6 +183,19 @@ RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selectio
# xfsprogs \ # xfsprogs \
# xfsdump # 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 # git-lfs official binary
################################################################## ##################################################################

View File

@ -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

View File

@ -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

View File

@ -183,6 +183,19 @@ RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selectio
# xfsprogs \ # xfsprogs \
# xfsdump # 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 # git-lfs official binary
################################################################## ##################################################################

View File

@ -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

View File

@ -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

View File

@ -183,6 +183,19 @@ RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selectio
# xfsprogs \ # xfsprogs \
# xfsdump # 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 # git-lfs official binary
################################################################## ##################################################################

View File

@ -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

View File

@ -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

View File

@ -183,6 +183,19 @@ RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selectio
# xfsprogs \ # xfsprogs \
# xfsdump # 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 # git-lfs official binary
################################################################## ##################################################################

View File

@ -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

View File

@ -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

View File

@ -183,6 +183,19 @@ RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selectio
# xfsprogs \ # xfsprogs \
# xfsdump # 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 # git-lfs official binary
################################################################## ##################################################################

View File

@ -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

View File

@ -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

View File

@ -8,7 +8,7 @@ ARG DEBIAN_FRONTEND=noninteractive
ENV MONERO_DIR=/monero ENV MONERO_DIR=/monero
ENV MONERO_BIN=${MONERO_DIR}/bin ENV MONERO_BIN=${MONERO_DIR}/bin
ENV MONERO_DATA=${MONERO_DIR}/data 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 MONERO_DOWNLOAD_URL=https://downloads.getmonero.org/cli/monero-linux-x64-v${MONERO_VERSION}.tar.bz2
ENV PATH="${PATH}:${MONERO_BIN}" ENV PATH="${PATH}:${MONERO_BIN}"

View File

@ -7,7 +7,7 @@ ARG DEBIAN_FRONTEND=noninteractive
# ARGuments # ARGuments
################################################################## ##################################################################
ENV P2POOL_DIR=/p2pool ENV P2POOL_DIR=/p2pool
ENV P2POOL_VERSION=2.3 ENV P2POOL_VERSION=2.7
ENV P2POOL_DOWNLOAD_URL=https://github.com/SChernykh/p2pool/releases/download/v${P2POOL_VERSION}/p2pool-v${P2POOL_VERSION}-linux-x64.tar.gz ENV P2POOL_DOWNLOAD_URL=https://github.com/SChernykh/p2pool/releases/download/v${P2POOL_VERSION}/p2pool-v${P2POOL_VERSION}-linux-x64.tar.gz
################################################################## ##################################################################