commit initial, premières applications gérées: qtcreator, git, qgit, qcachegrind, valgrind, kdiff3

This commit is contained in:
Thomas Briffard 2021-06-29 10:17:23 +02:00
commit 9fad802282
32 changed files with 713 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
*.AppImage
.env

64
Dockerfile_centos7_base Normal file
View File

@ -0,0 +1,64 @@
FROM centos/devtoolset-7-toolchain-centos7
WORKDIR /
USER root
# on installe les outils de bases
RUN yum install -y wget && wget http://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm && rpm -ivh epel-release-latest-7.noarch.rpm && yum install -y \
autoconf \
binutils \
bison \
boost-python36 \
boost-python36-devel \
bzip2 \
ccache \
clang \
cmake3 \
file \
flex \
fuse-devel \
git \
lapack \
lapack-devel \
libtool \
libtirpc-devel \
libXext-devel \
libXmu-devel \
libXpm-devel \
libX11-devel \
make \
mesa-libEGL-devel \
numactl-libs \
numactl-devel \
openblas \
openblas-devel \
pkg-config \
python-devel \
python3-devel \
rh-python38 \
rh-python38-python-devel \
python-pip \
python-six \
qjson-devel \
screen \
tar \
time \
vim \
xorg-x11-apps && \
wget https://github.com/linuxdeploy/linuxdeploy/releases/download/continuous/linuxdeploy-x86_64.AppImage && \
wget https://github.com/AppImage/AppImageKit/releases/download/continuous/appimagetool-x86_64.AppImage && \
wget https://github.com/linuxdeploy/linuxdeploy-plugin-qt/releases/download/continuous/linuxdeploy-plugin-qt-x86_64.AppImage && \
chmod +x linuxdeploy-x86_64.AppImage appimagetool-x86_64.AppImage linuxdeploy-plugin-qt-x86_64.AppImage && \
mv linuxdeploy-x86_64.AppImage appimagetool-x86_64.AppImage linuxdeploy-plugin-qt-x86_64.AppImage /usr/bin/ && \
yum clean all && python3 -m pip install --upgrade pip && pip3 install six
# on fixe le fuseau horaire dans le conteneur,
ENV TZ=America/New_York
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone && \
echo "LC_ALL=en_US.UTF-8" >> /etc/environment && \
echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen && \
echo "LANG=en_US.UTF-8" > /etc/locale.conf && \
source /etc/locale.conf
# Exécuter une commande au démarrage de l'image.
CMD ["/bin/bash"]

View File

@ -0,0 +1,13 @@
FROM cos7_base
WORKDIR /
ARG QT_VER=5.15.2
ENV QT_VER=$QT_VER
ENV QMAKE=/qt/$QT_VER/gcc_64/bin/qmake
RUN yum install -y cups postgresql unixODBC ninja-build libxkbcommon-x11 xcb-util-wm xcb-util-image xcb-util-keysyms xcb-util-renderutil ninja-build && \
mkdir qt && cd qt/ && \
pip3 install aqtinstall && aqt install $QT_VER linux desktop
# Exécuter une commande au démarrage de l'image.
CMD ["/bin/bash"]

33
Makefile Normal file
View File

@ -0,0 +1,33 @@
init_env:
@echo "USER=$(shell id -u)" > .env
@echo "GROUP=$(shell id -g)" >> .env
build_base:
docker-compose build base
build_base_qt: build_base
docker-compose build base_qt
qtcreator: init_env build_base_qt
docker-compose build qtcreator
docker-compose run --rm qtcreator
git: init_env build_base
docker-compose build git
docker-compose run --rm git
qgit: init_env build_base_qt
docker-compose build qgit
docker-compose run --rm qgit
qcachegrind: init_env build_base_qt
docker-compose build qcachegrind
docker-compose run --rm qcachegrind
valgrind: init_env build_base
docker-compose build valgrind
docker-compose run --rm valgrind
kdiff3: init_env build_base_qt
docker-compose build kdiff3
docker-compose run --rm kdiff3

38
README.md Normal file
View File

@ -0,0 +1,38 @@
# Collection d'applications de développement au format AppImage
Les applications suivantes:
- valgrind
- git
- kdiff3
- qgit
- qtcreator
- qcachegrind
sont compilées dans un conteneur CentOS7 (glibc 2.17) puis livrées au format [AppImage](https://appimage.org/) via les outils [linuxdeploy](https://github.com/linuxdeploy/linuxdeploy) et [appimagetool](https://github.com/AppImage/AppImageKit).
Actuellement, toutes les applications faisant appels à Qt sont compilées avec Qt 5.15.2
## Pré-Requis
Vous devez avoir installé sur votre machine :
- [Docker](https://docs.docker.com/engine/install/)
- [docker-compose](https://docs.docker.com/compose/install/)
## Utilisation
``` sh
make APP_NOM
```
par exemple,
``` sh
make qtcreator
make qgit
```
Les AppImage seront situées dans les répertoires correspondant aux applications.
La première fois, les images docker de bases seront constuites, ce qui peut-être assez long...

123
docker-compose.yml Normal file
View File

@ -0,0 +1,123 @@
# Les services base et base_qt servent uniquement au build
version: "3.3"
services:
base:
build:
context: .
dockerfile: ./Dockerfile_centos7_base
image: cos7_base
base_qt:
build:
context: .
dockerfile: ./Dockerfile_centos7_base_qt
image: cos7_base_qt
depends_on:
- base
qtcreator:
build:
context: ./qtcreator/
dockerfile: ./Dockerfile_centos7_qtcreator
image: cos7_qtcreator
container_name: docker_cos7_qtcreator
privileged: true
volumes:
- ./qtcreator:/build
- ./template.sh:/template.sh
#tty: true
env_file:
- ./.env
environment:
- CUSTOM_STEP_PRE_DEPLOY=/build/qtcreator_pre_step.sh
- CUSTOM_STEP_POST_DEPLOY=/build/qtcreator_post_step.sh
- EXTRA_QT_PLUGINS=printsupport;sql;designer
- QML_SOURCES_PATHS=/qt-creator/qtcreator_build/share/qtcreator/
- NOM_APPIMAGE=qtcreator_4.15.1
command : ["bash", "-c","/template.sh /qt-creator/qtcreator_build/bin/qtcreator /build"]
git:
build:
context: ./git/
dockerfile: ./Dockerfile_centos7_git
image: cos7_git
container_name: docker_cos7_git
privileged: true
volumes:
- ./git:/build
- ./template.sh:/template.sh
env_file:
- ./.env
environment:
- CUSTOM_STEP_PRE_DEPLOY=/build/git_pre_step.sh
- NOM_APPIMAGE=git_2.32.0
command : ["bash", "-c","/template.sh /usr/local/bin/git /build"]
qgit:
build:
context: ./qgit/
dockerfile: ./Dockerfile_centos7_qgit
image: cos7_qgit
container_name: docker_cos7_qgit
privileged: true
volumes:
- ./qgit:/build
- ./template.sh:/template.sh
env_file:
- ./.env
environment:
- CUSTOM_STEP_PRE_DEPLOY=/build/qgit_pre_step.sh
- NOM_APPIMAGE=qgit_2.9
command : ["bash", "-c","/template.sh /qgit/bin/qgit /build"]
qcachegrind:
build:
context: ./qcachegrind/
dockerfile: ./Dockerfile_centos7_qcachegrind
image: cos7_qcachegrind
container_name: docker_cos7_qcachegrind
privileged: true
volumes:
- ./qcachegrind:/build
- ./template.sh:/template.sh
env_file:
- ./.env
environment:
- CUSTOM_STEP_PRE_DEPLOY=/build/qcachegrind_pre_step.sh
- NOM_APPIMAGE=qcachegrind_21.04.2
command : ["bash", "-c","/template.sh /kcachegrind/qcachegrind/qcachegrind /build"]
valgrind:
build:
context: ./valgrind/
dockerfile: ./Dockerfile_centos7_valgrind
image: cos7_valgrind
container_name: docker_cos7_valgrind
privileged: true
volumes:
- ./valgrind:/build
- ./template.sh:/template.sh
env_file:
- ./.env
environment:
- CUSTOM_STEP_PRE_DEPLOY=/build/valgrind_pre_step.sh
- NOM_APPIMAGE=valgrind_3.17
command : ["bash", "-c","/template.sh /usr/local/bin/valgrind /build"]
kdiff3:
build:
context: ./kdiff3/
dockerfile: ./Dockerfile_centos7_kdiff3
image: cos7_kdiff3
container_name: docker_cos7_kdiff3
privileged: true
volumes:
- ./kdiff3:/build
- ./template.sh:/template.sh
env_file:
- ./.env
environment:
- CUSTOM_STEP_PRE_DEPLOY=/build/kdiff3_pre_step.sh
- NOM_APPIMAGE=kdiff3_1.9.2
command : ["bash", "-c","/template.sh /usr/local/bin/kdiff3 /build"]

View File

@ -0,0 +1,13 @@
FROM cos7_base
ARG GIT_VER=2.32.0
RUN yum install -y curl-devel expat-devel gettext-devel openssl-devel zlib-devel perl-CPAN perl-devel && \
wget https://github.com/git/git/archive/refs/tags/v$GIT_VER.tar.gz && \
tar -xvf v$GIT_VER.tar.gz && \
cd git-$GIT_VER && \
make configure && ./configure --prefix=/usr/local && \
make -j$(nproc) && make install
# Exécuter une commande au démarrage de l'image.
CMD ["/bin/bash"]

9
git/git.desktop Normal file
View File

@ -0,0 +1,9 @@
[Desktop Entry]
Name=git
Type=Application
Exec=git
Icon=git
Comment=analysis tools
Categories=Development
StartupWMClass=git
Terminal=false

BIN
git/git.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

7
git/git_pre_step.sh Executable file
View File

@ -0,0 +1,7 @@
#!/bin/bash
fichierIcon=/build/git.png
fichierDesktop=/build/git.desktop
AUTRES_OPTIONS="-i $fichierIcon -d $fichierDesktop"

View File

@ -0,0 +1,12 @@
FROM cos7_base_qt
ARG KDIFF3_VER=1.9.2
ENV LD_LIBRARY_PATH=/qt/$QT_VER/gcc_64/lib:$LD_LIBRARY_PATH
RUN yum install -y boost169-devel extra-cmake-modules kf5-ki18n-devel kf5-kcoreaddons-devel kf5-kiconthemes-devel kf5-kparts-devel kf5-kdoctools-devel kf5-kcrash-devel && \
git clone --recursive https://github.com/KDE/kdiff3.git && \
cd kdiff3 && git checkout $KDIFF3_VER && \
cmake3 -DCMAKE_PREFIX_PATH=/qt/$QT_VER/gcc_64 -DBOOST_INCLUDEDIR=/usr/include/boost169 -DBOOST_LIBRARYDIR=/usr/lib64/boost169 . && make && make install
# Exécuter une commande au démarrage de l'image.
CMD ["/bin/bash"]

9
kdiff3/kdiff3.desktop Normal file
View File

@ -0,0 +1,9 @@
[Desktop Entry]
Type=Application
Name=kdiff3
GenericName=Kdiff3
Comment=compares and merges
Exec=kdiff3
Icon=kdiff3
Categories=Development;RevisionControl;Qt
Terminal=false

BIN
kdiff3/kdiff3.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 819 B

7
kdiff3/kdiff3_pre_step.sh Executable file
View File

@ -0,0 +1,7 @@
#!/bin/bash
fichierIcon=/build/kdiff3.png
fichierDesktop=/build/kdiff3.desktop
AUTRES_OPTIONS="-i $fichierIcon -d $fichierDesktop --plugin qt"

View File

@ -0,0 +1,10 @@
FROM cos7_base_qt
# qcachegrind
ARG KCACHEGRIND_VER=v21.04.2
RUN git clone --recursive https://github.com/KDE/kcachegrind.git && \
cd kcachegrind && git checkout $KCACHEGRIND_VER && \
PATH=/qt/$QT_VER/gcc_64/bin/:$PATH qmake; make
# Exécuter une commande au démarrage de l'image.
CMD ["/bin/bash"]

BIN
qcachegrind/kcachegrind.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.1 KiB

View File

@ -0,0 +1,159 @@
[Desktop Entry]
Type=Application
Exec=qcachegrind %F
MimeType=application/x-kcachegrind;
Icon=kcachegrind
Terminal=false
Name=QCachegrind
Name[bg]=QCachegrind
Name[bs]=QCachegrind
Name[ca]=QCachegrind
Name[ca@valencia]=QCachegrind
Name[cs]=QCachegrind
Name[da]=QCachegrind
Name[de]=QCachegrind
Name[el]=QCachegrind
Name[en_GB]=QCachegrind
Name[es]=QCachegrind
Name[et]=QCachegrind
Name[fi]=QCachegrind
Name[fr]=QCachegrind
Name[ga]=QCachegrind
Name[gl]=QCachegrind
Name[hu]=QCachegrind
Name[it]=QCachegrind
Name[kk]=QCachegrind
Name[ko]=QCachegrind
Name[lt]=QCachegrind
Name[mr]=-ि
Name[nb]=QCachegrind
Name[nds]=QCachegrind
Name[nl]=QCachegrind
Name[nn]=QCachegrind
Name[pa]=QCachegrind
Name[pl]=QCachegrind
Name[pt]=QCachegrind
Name[pt_BR]=QCachegrind
Name[ro]=QCachegrind
Name[ru]=QCachegrind
Name[sk]=QCachegrind
Name[sl]=QCachegrind
Name[sr]=Кукешгринд
Name[sr@ijekavian]=Кукешгринд
Name[sr@ijekavianlatin]=QCacheGrind
Name[sr@latin]=QCacheGrind
Name[sv]=Qcachegrind
Name[tr]=QCachegrind
Name[uk]=QCachegrind
Name[x-test]=xxQCachegrindxx
Name[zh_CN]=QCachegrind
Name[zh_TW]=QCachegrind
GenericName=Profiler Frontend
GenericName[bs]=Profajlerski program
GenericName[ca]=Frontal per a l'analitzador del rendiment
GenericName[ca@valencia]=Frontal per a l'analitzador del rendiment
GenericName[cs]=Rozhraní pro profilaci
GenericName[cy]=Blaen-wyneb Proffilydd
GenericName[da]=Grænseflade til profilering
GenericName[de]=Profiler-Oberfläche
GenericName[el]=Πρόγραμμα προφίλ
GenericName[en_GB]=Profiler Frontend
GenericName[eo]=Fasado de Profililo
GenericName[es]=Interfaz del analizador de rendimiento
GenericName[et]=Profileerimisrakendus
GenericName[eu]=Profilatzailearen interfazea
GenericName[fa]=پایانه گزارشگیر
GenericName[fi]=Profiloijan käyttöliittymä
GenericName[fr]=Interface de profilage
GenericName[ga]=Comhéadan ar Phróifíleoir
GenericName[gl]=Interface para o profiler
GenericName[hu]=Ábrázoló előtétprogram
GenericName[is]=Myndrænt viðmót á afkastakönnuð
GenericName[it]=Interfaccia a profiler
GenericName[ja]=
GenericName[kk]=Профильдеткіштің интерфейсі
GenericName[km]=
GenericName[ko]=
GenericName[lt]=Profiliuoklio naudotojo sąsaja
GenericName[lv]=Profilēšanas priekšpuse
GenericName[mr]=
GenericName[nb]=Grensesnitt for profilvisning
GenericName[nds]=Profiler-Böversiet
GenericName[ne]=
GenericName[nl]=Profiler-hulpprogramma
GenericName[nn]=Grensesnitt for profilvising
GenericName[pa]= -
GenericName[pl]=Interfejs do profilera
GenericName[pt]=Interface de Análise de Performance
GenericName[pt_BR]=Interface de análise de performance
GenericName[ro]=Interfață grafică pentru profilatoare
GenericName[ru]=Интерфейс к профилировщику
GenericName[sk]=Rozhranie pre profiler
GenericName[sl]=Začelje profilnika
GenericName[sr]=Прочеље профилизатора
GenericName[sr@ijekavian]=Прочеље профилизатора
GenericName[sr@ijekavianlatin]=Pročelje profilizatora
GenericName[sr@latin]=Pročelje profilizatora
GenericName[sv]=Profileringsgränssnitt
GenericName[ta]= ிி ி
GenericName[tg]=Интерфейс ба профилкунанда
GenericName[tr]=Profil Önyüzü
GenericName[uk]=Інтерфейс до Profiler
GenericName[wa]=Eterface grafike po Profiler
GenericName[x-test]=xxProfiler Frontendxx
GenericName[zh_CN]=
GenericName[zh_TW]=
Comment=Visualization of Performance Profiling Data
Comment[bg]=Визуализация на данните за производителност
Comment[bs]=Predočenje podataka profiliranja performansi
Comment[ca]=Visualització de les dades d'anàlisi del rendiment
Comment[ca@valencia]=Visualització de les dades d'anàlisi del rendiment
Comment[cs]=Vizualizace profilovacích dat výkonu
Comment[da]=Visualisering af profileringsdata
Comment[de]=Visualisierung von Daten des Laufzeitverhaltens eines Programmes
Comment[el]=Αναπαράσταση δεδομένων ταχύτητας προφίλ
Comment[en_GB]=Visualisation of Performance Profiling Data
Comment[es]=Visualización de datos de análisis de rendimiento
Comment[et]=Jõudluse profileerimise andmete visualiseerimise vahend
Comment[eu]=Errendimendu profil datuen bistaratzea
Comment[fa]=تجسم کارایی گزارش دادهها
Comment[fi]=Visualisointi tehokkuusprofiloinnin tiedoista
Comment[fr]=Visualise les données de profilage de performances
Comment[ga]=Amharcléiriú ar Shonraí Próifílithe Feidhmíochta
Comment[gl]=Visualización dos datos da análise de rendemento
Comment[hu]=Teljesítményprofil-adatok megjelenítése
Comment[is]=Sjónræn framsetning gagna úr afkastakönnun
Comment[it]=Visualizzazione dei dati di profilo delle prestazioni
Comment[ja]=
Comment[kk]=Деректерді профильдеудің визуализациясы
Comment[km]=
Comment[ko]=
Comment[lt]=Veikimo profiliavimo duomenų vizualizacija
Comment[lv]=Veiktspējas profilēšanas datu vizualizācija
Comment[mr]= ि ि
Comment[nb]=Vis informasjon om ytelse.
Comment[nds]=Visualiseren vun Programmleisten-Looptietdaten
Comment[ne]= ि ि
Comment[nl]=Visualisatie van Performance Profiling Data
Comment[nn]=Visualisering av data frå ytingsprofilar
Comment[pl]=Wizualizacja danych profilowania wydajności
Comment[pt]=Visualização dos Dados de Análise de Performance
Comment[pt_BR]=Visualização dos dados de análise de desempenho
Comment[ro]=Vizualizarea datelor de profilare a performanței
Comment[ru]=Утилита для визуального профилирования приложений
Comment[sk]=Vizualizácia dát o výkone
Comment[sl]=Vizualizacija podatkov profilnih zmogljivosti
Comment[sr]=Визуелизација профилисања перформанси
Comment[sr@ijekavian]=Визуелизација профилисања перформанси
Comment[sr@ijekavianlatin]=Vizuelizacija profilisanja performansi
Comment[sr@latin]=Vizuelizacija profilisanja performansi
Comment[sv]=Åskådliggörande av profileringsdata för prestanda
Comment[ta]= ி ிி
Comment[tg]=Утилита барои гузориши профили визуалӣ
Comment[tr]=Performans Profilleme Verisinin Görünür Hali
Comment[ug]=سانلىق-مەلۇماتلارنىڭ سەپلىنىشىنى سۈرەتلەشتۈرۈش
Comment[uk]=Візуалізація даних профілювання швидкодії
Comment[x-test]=xxVisualization of Performance Profiling Dataxx
Comment[zh_CN]=
Comment[zh_TW]=
Categories=Qt;Development;

View File

@ -0,0 +1,7 @@
#!/bin/bash
fichierIcon=/build/kcachegrind.png
fichierDesktop=/build/qcachegrind.desktop
AUTRES_OPTIONS="-i $fichierIcon -d $fichierDesktop --plugin qt"

View File

@ -0,0 +1,11 @@
FROM cos7_base_qt
ARG QGIT_VER=2.9
RUN git clone --recursive https://github.com/tibirna/qgit.git && \
cd qgit && git checkout qgit-$QGIT_VER && \
PATH=/qt/$QT_VER/gcc_64/bin/:$PATH qmake qgit.pro && \
make
# Exécuter une commande au démarrage de l'image.
CMD ["/bin/bash"]

9
qgit/qgit.desktop Normal file
View File

@ -0,0 +1,9 @@
[Desktop Entry]
Type=Application
Name=qgit
GenericName=QGit
Comment=A git GUI viewer
Exec=qgit
Icon=qgit
Categories=Development;RevisionControl;Qt
Terminal=false

BIN
qgit/qgit.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 819 B

7
qgit/qgit_pre_step.sh Executable file
View File

@ -0,0 +1,7 @@
#!/bin/bash
fichierIcon=/build/qgit.png
fichierDesktop=/build/qgit.desktop
AUTRES_OPTIONS="-i $fichierIcon -d $fichierDesktop --plugin qt"

View File

@ -0,0 +1,13 @@
FROM cos7_base_qt
ARG QTCREATOR_VER=v4.15.1
RUN git clone --recursive https://code.qt.io/qt-creator/qt-creator.git && \
cd qt-creator && \
git checkout $QTCREATOR_VER && \
mkdir qtcreator_build && cd qtcreator_build && \
QT_VER=$QT_VER cmake3 -DCMAKE_BUILD_TYPE=Release -G Ninja "-DCMAKE_PREFIX_PATH=/qt/$QT_VER/gcc_64/" /qt-creator/ && \
cmake3 --build .
# Exécuter une commande au démarrage de l'image.
CMD ["/bin/bash"]

View File

@ -0,0 +1,9 @@
<svg xmlns="http://www.w3.org/2000/svg" width="64" height="64" version="1.1">
<path style="opacity:0.2" d="m 12.3125,10.999747 c -0.527979,5.83e-4 -1.030154,0.217159 -1.394531,0.601563 L 3.5351562,19.382559 C 3.319371,19.610405 3.187246,19.893973 3.1015624,20.191153 l -0.01562,-0.0078 C 3.0350876,20.358847 2.99996,20.540375 3,20.726309 v 29.734376 c 0,1.945044 1.2538042,3.455584 2.359375,4.011718 1.105571,0.556134 2.1523438,0.527344 2.1523438,0.527344 H 51.683594 c 0.52798,-5.84e-4 1.03406,-0.221064 1.398438,-0.605468 l 7.386718,-7.777344 c 0.02134,-0.02252 0.02688,-0.05468 0.04688,-0.07812 0.1561,-0.18172 0.279538,-0.386438 0.359376,-0.609374 0.0026,-0.0072 0.0092,-0.0124 0.0118,-0.0196 l -0.0078,-0.004 C 60.948898,45.702801 61.000048,45.492097 61,45.273185 V 15.53881 c 0,-1.945045 -1.253804,-3.45168 -2.359376,-4.007813 -1.10557,-0.556134 -2.152342,-0.53125 -2.152342,-0.53125 z"/>
<path style="fill:#4cdb5d" d="m 12.314237,10.000208 c -0.527979,5.83e-4 -1.032758,0.218357 -1.397136,0.602761 L 3.5336804,18.383146 C 3.1909954,18.744984 2.999892,19.225639 3,19.725426 l 5.6834292,14.805753 c 0.6974302,1.816856 -2.979144,14.530044 -1.8735732,15.086178 1.105571,0.556132 5.856811,-2.492356 5.856811,-2.492356 l 35.904761,1.375 c 0.52798,-5.84e-4 2.397528,-0.990596 2.761906,-1.375 L 60.46632,45.616625 C 60.809004,45.254787 61.000108,44.774129 61,44.274341 V 14.538644 C 61,12.593599 59.746804,11.085657 58.641232,10.529523 57.535662,9.973389 56.48889,10.000208 56.48889,10.000208 Z"/>
<path style="fill:#31ae3e" d="m 3.0849616,19.182627 c -0.05085,0.175506 -0.085,0.357489 -0.08496,0.543425 v 29.734219 c 0,1.945044 1.2527388,3.455104 2.3583096,4.011238 1.105571,0.556134 2.1523438,0.52826 2.1523438,0.52826 h 44.174537 c 0.52798,-5.84e-4 1.033616,-0.219682 1.397994,-0.604086 l 7.383876,-7.779832 c 0.19234,-0.203082 0.329828,-0.444872 0.419656,-0.705188 z"/>
<path style="opacity:0.1" d="M 3.0859375 19.183594 C 3.0350875 19.3591 2.99996 19.540627 3 19.726562 L 3 20.726562 C 2.99996 20.540627 3.0350875 20.3591 3.0859375 20.183594 L 60.396484 45.691406 L 60.46875 45.617188 C 60.66109 45.414105 60.796891 45.170472 60.886719 44.910156 L 3.0859375 19.183594 z"/>
<path style="opacity:0.2" d="M 44.703124,21.011719 C 39.881008,21.011719 36,24.878353 36,29.679687 v 6.664064 c 0,4.801332 3.881008,8.667968 8.703124,8.667968 h 1.339844 c 1.43202,0 2.768996,-0.36204 3.957032,-0.96875 v -3.03125 H 46.042968 45.375 44.703124 c -2.666012,0 -4.6875,-2.013446 -4.6875,-4.667968 v -6.664064 c 0,-2.654522 2.021488,-4.667968 4.6875,-4.667968 H 45.375 46.042968 50 v -3.03125 c -1.188036,-0.60671 -2.525012,-0.96875 -3.957032,-0.96875 z m -22.347656,0.05078 C 17.725613,21.062501 14,24.911033 14,29.691407 v 6.636718 c 0,4.780372 3.725613,8.628906 8.355468,8.628906 h 1.289064 c 0.371514,0 0.731406,-0.03396 1.089844,-0.08204 l 2.664062,4.12501 3.285156,-1.6875 -2.304688,-3.871094 C 30.567664,41.888599 32,39.289103 32,36.328125 v -6.636718 c 0,-4.780374 -3.725616,-8.628906 -8.355468,-8.628906 z m 0.0196,3.949218 h 1.25 c 2.488614,0 4.375,2.013444 4.375,4.667968 v 6.664064 c 0,2.654524 -1.886386,4.667968 -4.375,4.667968 h -1.25 C 19.886382,41.011719 18,38.998275 18,36.343751 v -6.664064 c 0,-2.654524 1.886382,-4.667968 4.375,-4.667968 z"/>
<path style="fill:#ffffff" d="M 44.703124,20.000001 C 39.881008,20.000001 36,23.866635 36,28.667969 v 6.664064 c 0,4.801332 3.881008,8.667968 8.703124,8.667968 h 1.339844 c 1.43202,0 2.768996,-0.36204 3.957032,-0.96875 v -3.03125 H 46.042968 45.375 44.703124 c -2.666012,0 -4.6875,-2.013446 -4.6875,-4.667968 v -6.664064 c 0,-2.654522 2.021488,-4.667968 4.6875,-4.667968 H 45.375 46.042968 50 v -3.03125 c -1.188036,-0.60671 -2.525012,-0.96875 -3.957032,-0.96875 z m -22.347656,0.05078 C 17.725613,20.050783 14,23.899315 14,28.679689 v 6.636718 c 0,4.780372 3.725613,8.628906 8.355468,8.628906 h 1.289064 c 0.371514,0 0.731406,-0.03396 1.089844,-0.08204 l 2.664062,4.125 3.285156,-1.6875 -2.304688,-3.871094 C 30.567664,40.876881 32,38.277385 32,35.316407 v -6.636718 c 0,-4.780374 -3.725616,-8.628906 -8.355468,-8.628906 z m 0.01953,3.94922 h 1.25 c 2.488614,0 4.375,2.013444 4.375,4.667968 v 6.664064 c 0,2.654524 -1.886386,4.667968 -4.375,4.667968 h -1.25 c -2.488618,0 -4.375,-2.013444 -4.375,-4.667968 v -6.664064 c 0,-2.654524 1.886382,-4.667968 4.375,-4.667968 z"/>
<path style="opacity:0.2;fill:#ffffff" d="M 12.3125 10 C 11.784521 10.000582 11.282346 10.217159 10.917969 10.601562 L 3.5351562 18.382812 C 3.3193711 18.610658 3.1872461 18.894225 3.1015625 19.191406 L 3.0859375 19.183594 C 3.0350825 19.359087 2.99996 19.540628 3 19.726562 L 3 20.726562 C 2.99996 20.540628 3.0350825 20.359087 3.0859375 20.183594 L 3.1015625 20.191406 C 3.1872461 19.894225 3.319371 19.610658 3.5351562 19.382812 L 10.917969 11.601562 C 11.282346 11.217158 11.784521 11.000582 12.3125 11 L 56.488281 11 C 56.488281 11 57.535055 10.975115 58.640625 11.53125 C 59.746197 12.087383 61 13.594017 61 15.539062 L 61 14.539062 C 61 12.594017 59.746197 11.087383 58.640625 10.53125 C 57.535055 9.9751152 56.488281 10 56.488281 10 L 12.3125 10 z"/>
</svg>

After

Width:  |  Height:  |  Size: 5.0 KiB

View File

@ -0,0 +1,12 @@
[Desktop Entry]
Type=Application
Exec=qtcreator %F
Name=Qt Creator
GenericName=C++ IDE for developing Qt applications
X-KDE-StartupNotify=true
Icon=QtProject-qtcreator
StartupWMClass=qtcreator
Terminal=false
Categories=Development;IDE;Qt;
MimeType=text/x-c++src;text/x-c++hdr;text/x-xsrc;application/x-designer;application/vnd.qt.qmakeprofile;application/vnd.qt.xml.resource;

View File

@ -0,0 +1,6 @@
#!/bin/bash
cp -r --preserve=links /qt-creator/qtcreator_build/lib/qtcreator $WORK_DIR/AppDir/usr/lib/
cp -r --preserve=links /qt-creator/qtcreator_build/share/qtcreator $WORK_DIR/AppDir/usr/share/
wget https://thomasbriffard.com/public/mon_style_qtcreator.xml -O $WORK_DIR/AppDir/usr/share/qtcreator/styles/onedark_like.xml

18
qtcreator/qtcreator_pre_step.sh Executable file
View File

@ -0,0 +1,18 @@
#!/bin/bash
cat << EOF > $WORK_DIR/AppRun
#!/bin/bash
APPDIR=\$(dirname -- "\$0")
export LD_LIBRARY_PATH=\$APPDIR/usr/lib/:\$LD_LIBRARY_PATH
exec \$APPDIR/usr/bin/$APP_NOM "\$@"
EOF
fichierIcon=/build/QtProject-qtcreator.svg
fichierDesktop=/build/qtcreator.desktop
QT_LIB=/qt/$QT_VER/gcc_64/lib/
AUTRES_LIB="-l $QT_LIB/libQt5Help.so.5 -l $QT_LIB/libQt5QuickWidgets.so.5 -l $QT_LIB/libQt5DesignerComponents.so.5"
AUTRES_OPTIONS="-i $fichierIcon -d $fichierDesktop $AUTRES_LIB --custom-apprun $WORK_DIR/AppRun --plugin qt"

79
template.sh Executable file
View File

@ -0,0 +1,79 @@
#!/bin/bash
# à utiliser pour builder une appimage d'une app quelconque, y compris hors cadre GIREF/BIB
# Ceci est un point départ plus qu'un script clef en main !
function exit_on_fail() {
"$@"
local status=$?
if [ $status -ne 0 ]; then
echo "Erreur avec: $@" >&2
exit $status
fi
return $status
}
# Fonction permettant d'effectuer quelques vérifications de base
function verifications() {
echo "### Vérifications"
command -v linuxdeploy-x86_64.AppImage >/dev/null 2>&1 || {
echo >&2 "L'outil linuxdeploy-x86_64.AppImage n'est pas présent, pas de livraison possible !"
exit 1
}
command -v appimagetool-x86_64.AppImage >/dev/null 2>&1 || {
echo >&2 "L'outil appimagetool-x86_64.AppImage n'est pas présent, pas de livraison possible !"
exit 1
}
}
if [[ "$#" -ne 2 ]] && [[ "$#" -ne 3 ]]; then
echo "Usage: $0 CHEMIN_COMPLET_VERS_APP/mon_app CHEMIN_DESTINATION_APPIMAGE"
exit 0
fi
script_dir=$(dirname $0)
BIN=$1
DEST_DIR=$2
verifications
APP_NOM=$(basename $BIN)
if [[ -z NOM_APPIMAGE ]]; then
if [[ "$APP_NOM" =~ "." ]]; then
NOM_APPIMAGE="${APP_NOM%.???}"
else
NOM_APPIMAGE=$APP_NOM
fi
fi
AUTRES_OPTIONS=""
# Répertoire de travail
WORK_DIR=$DEST_DIR/build_AppImage
rm -rf $WORK_DIR
mkdir -p $WORK_DIR/AppDir
# Si la variable d'env CUSTOM_STEP_PRE_DEPLOY n'est pas vide, on l'utilise pour spécifier des commandes supplémentaires
# (CUSTOM_STEP_PRE_DEPLOY doit être le chemin vers le fichier contenant les commandes supplémentaires
if [[ -n $CUSTOM_STEP_PRE_DEPLOY ]]; then
echo "On source le fichier $CUSTOM_STEP_PRE_DEPLOY"
source $CUSTOM_STEP_PRE_DEPLOY
fi
exit_on_fail linuxdeploy-x86_64.AppImage --appdir $WORK_DIR/AppDir \
--executable $BIN \
$AUTRES_OPTIONS
# idem PRE_DEPLOY mais après l'appel à linuxdeploy (la structure du AppDir est alors terminée)
if [[ -n $CUSTOM_STEP_POST_DEPLOY ]]; then
echo "On source le fichier $CUSTOM_STEP_POST_DEPLOY"
source $CUSTOM_STEP_POST_DEPLOY
fi
# Création du fichier .AppImage
echo "### Création fichier .AppImage"
exit_on_fail appimagetool-x86_64.AppImage $WORK_DIR/AppDir $DEST_DIR/$NOM_APPIMAGE.AppImage
rm -rf $WORK_DIR
chown $USER:$GROUP $DEST_DIR/$NOM_APPIMAGE.AppImage
echo "Création terminée ! -> $DEST_DIR/$NOM_APPIMAGE.AppImage"

View File

@ -0,0 +1,14 @@
FROM cos7_base
ARG VALGRIND_VER=valgrind-3.17.0
RUN wget https://sourceware.org/pub/valgrind/$VALGRIND_VER.tar.bz2 && \
tar -xvf $VALGRIND_VER.tar.bz2 && \
cd $VALGRIND_VER && \
./configure && \
make -j$(nproc) && \
make install && \
cd ../ && rm -rf $VALGRIND_VER*
# Exécuter une commande au démarrage de l'image.
CMD ["/bin/bash"]

View File

@ -0,0 +1,9 @@
[Desktop Entry]
Name=valgrind
Type=Application
Exec=valgrind
Icon=valgrind
Comment=analysis tools
Categories=Development
StartupWMClass=valgrind
Terminal=false

BIN
valgrind/valgrind.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.1 KiB

20
valgrind/valgrind_pre_step.sh Executable file
View File

@ -0,0 +1,20 @@
#!/bin/bash
cp -r --preserve=links /usr/local/libexec/valgrind $WORK_DIR/AppDir/
cat << EOF > $WORK_DIR/AppRun
#!/bin/bash
APPDIR=\$(dirname -- "\$0")
export PATH=\$APPDIR/usr/bin:$PATH
export LD_LIBRARY_PATH=\$APPDIR/usr/lib/:$LD_LIBRARY_PATH
export VALGRIND_LIB=\$APPDIR/valgrind
exec \$APPDIR/usr/bin/$APP_NOM "\$@"
EOF
fichierIcon=/build/valgrind.png
fichierDesktop=/build/valgrind.desktop
AUTRES_OPTIONS="-i $fichierIcon -d $fichierDesktop --custom-apprun $WORK_DIR/AppRun"