Browse Source

Issue #233 - Install Locale::XGettext::TT2 and gulp

Bug 25067 rewrote our translate script and move PO file manipulation code into gulp tasks.

It requires Locale::XGettext::TT2 (which is not packaged, yet?) and gulp

https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25067
merge-requests/162/head
Jonathan Druart 4 years ago
parent
commit
48acfeafed
  1. 6
      dists/bionic/Dockerfile
  2. 6
      dists/bullseye/Dockerfile
  3. 6
      dists/buster/Dockerfile
  4. 6
      dists/focal/Dockerfile
  5. 6
      dists/groovy/Dockerfile
  6. 6
      dists/stretch/Dockerfile
  7. 6
      dists/xenial/Dockerfile

6
dists/bionic/Dockerfile

@ -102,7 +102,8 @@ RUN cpanm -i --force \
Text::CSV::Unicode \
Devel::Cover::Report::Clover \
WebService::ILS \
Selenium::Remote::Driver
Selenium::Remote::Driver \
Locale::XGettext::TT2
# Patch Devel::Cover to skip exec
RUN wget -O Devel-Cover.tar.gz \
@ -125,6 +126,9 @@ RUN apt-get update \
&& rm -rf /var/cache/apt/archives/* \
&& rm -rf /var/lib/api/lists/*
# Install gulp
RUN npm install gulp-cli -g
# Add git-bz
RUN cd /usr/local/share \
&& git clone --depth 1 --branch apply_on_cascade https://gitlab.com/koha-community/git-bz git-bz \

6
dists/bullseye/Dockerfile

@ -121,7 +121,8 @@ RUN cpanm -i --force \
Text::CSV::Unicode \
Devel::Cover::Report::Clover \
WebService::ILS \
Selenium::Remote::Driver
Selenium::Remote::Driver \
Locale::XGettext::TT2
# Patch Devel::Cover to skip exec
RUN wget -O Devel-Cover.tar.gz \
@ -144,6 +145,9 @@ RUN apt-get update \
&& rm -rf /var/cache/apt/archives/* \
&& rm -rf /var/lib/api/lists/*
# Install gulp
RUN npm install gulp-cli -g
# Add git-bz
RUN cd /usr/local/share \
&& git clone --depth 1 --branch apply_on_cascade https://gitlab.com/koha-community/git-bz git-bz \

6
dists/buster/Dockerfile

@ -106,7 +106,8 @@ RUN cpanm -i --force \
Text::CSV::Unicode \
Devel::Cover::Report::Clover \
WebService::ILS \
Selenium::Remote::Driver
Selenium::Remote::Driver \
Locale::XGettext::TT2
# Patch Devel::Cover to skip exec
RUN wget -O Devel-Cover.tar.gz \
@ -129,6 +130,9 @@ RUN apt-get update \
&& rm -rf /var/cache/apt/archives/* \
&& rm -rf /var/lib/api/lists/*
# Install gulp
RUN npm install gulp-cli -g
# Add git-bz
RUN cd /usr/local/share \
&& git clone --depth 1 --branch apply_on_cascade https://gitlab.com/koha-community/git-bz git-bz \

6
dists/focal/Dockerfile

@ -102,7 +102,8 @@ RUN cpanm -i --force \
Text::CSV::Unicode \
Devel::Cover::Report::Clover \
WebService::ILS \
Selenium::Remote::Driver
Selenium::Remote::Driver \
Locale::XGettext::TT2
# Patch Devel::Cover to skip exec
RUN wget -O Devel-Cover.tar.gz \
@ -125,6 +126,9 @@ RUN apt-get update \
&& rm -rf /var/cache/apt/archives/* \
&& rm -rf /var/lib/api/lists/*
# Install gulp
RUN npm install gulp-cli -g
# Add git-bz
RUN cd /usr/local/share \
&& git clone --depth 1 --branch apply_on_cascade https://gitlab.com/koha-community/git-bz git-bz \

6
dists/groovy/Dockerfile

@ -102,7 +102,8 @@ RUN cpanm -i --force \
Text::CSV::Unicode \
Devel::Cover::Report::Clover \
WebService::ILS \
Selenium::Remote::Driver
Selenium::Remote::Driver \
Locale::XGettext::TT2
# Patch Devel::Cover to skip exec
RUN wget -O Devel-Cover.tar.gz \
@ -125,6 +126,9 @@ RUN apt-get update \
&& rm -rf /var/cache/apt/archives/* \
&& rm -rf /var/lib/api/lists/*
# Install gulp
RUN npm install gulp-cli -g
# Add git-bz
RUN cd /usr/local/share \
&& git clone --depth 1 --branch apply_on_cascade https://gitlab.com/koha-community/git-bz git-bz \

6
dists/stretch/Dockerfile

@ -106,7 +106,8 @@ RUN cpanm -i --force \
Text::CSV::Unicode \
Devel::Cover::Report::Clover \
WebService::ILS \
Selenium::Remote::Driver
Selenium::Remote::Driver \
Locale::XGettext::TT2
# Patch Devel::Cover to skip exec
RUN wget -O Devel-Cover.tar.gz \
@ -129,6 +130,9 @@ RUN apt-get update \
&& rm -rf /var/cache/apt/archives/* \
&& rm -rf /var/lib/api/lists/*
# Install gulp
RUN npm install gulp-cli -g
# Add git-bz
RUN cd /usr/local/share \
&& git clone --depth 1 --branch apply_on_cascade https://gitlab.com/koha-community/git-bz git-bz \

6
dists/xenial/Dockerfile

@ -115,7 +115,8 @@ RUN cpanm -i --force \
Text::CSV::Unicode \
Devel::Cover::Report::Clover \
WebService::ILS \
Selenium::Remote::Driver
Selenium::Remote::Driver \
Locale::XGettext::TT2
# Patch Devel::Cover to skip exec
RUN wget -O Devel-Cover.tar.gz \
@ -138,6 +139,9 @@ RUN apt-get update \
&& rm -rf /var/cache/apt/archives/* \
&& rm -rf /var/lib/api/lists/*
# Install gulp
RUN npm install gulp-cli -g
# Add git-bz
RUN cd /usr/local/share \
&& git clone --depth 1 --branch apply_on_cascade https://gitlab.com/koha-community/git-bz git-bz \

Loading…
Cancel
Save