Compare commits
13 Commits
c0e3e542ff
...
feature/xe
Author | SHA1 | Date | |
---|---|---|---|
822fd277d5 | |||
a821fb141f | |||
d4547175da | |||
7b2644b953 | |||
4aecce6094 | |||
2a65d38c37 | |||
5591c2c0f0 | |||
0c09b27b8e | |||
5676297827 | |||
822dc3617c | |||
0172b4f62c | |||
d27cc4bf1b | |||
2606a82c17 |
@ -1,5 +0,0 @@
|
|||||||
#!/usr/bin/env bash
|
|
||||||
|
|
||||||
pushd /src
|
|
||||||
make build
|
|
||||||
popd
|
|
@ -1,10 +0,0 @@
|
|||||||
#!/usr/bin/env bash
|
|
||||||
|
|
||||||
set -e
|
|
||||||
|
|
||||||
echo 'ENV DEBIAN_FRONTEND=noninteractive' >> Dockerfile
|
|
||||||
echo 'RUN apt-get update && apt-get install --yes make' >> Dockerfile
|
|
||||||
echo 'RUN apt-get update && apt-get install --yes texlive-full python3-setuptools python-setuptools python3-pygments python-pygments fonts-liberation fonts-liberation2 rubber' >> Dockerfile
|
|
||||||
echo 'RUN apt-get update && apt-get install --yes pandoc' >> Dockerfile
|
|
||||||
echo 'ENV DEBIAN_FRONTEND=' >> Dockerfile
|
|
||||||
|
|
@ -1,13 +0,0 @@
|
|||||||
#!/usr/bin/env bash
|
|
||||||
|
|
||||||
set -e
|
|
||||||
|
|
||||||
|
|
||||||
if [ -e './datasets/fonts' ]
|
|
||||||
then
|
|
||||||
for font_file in $(find . -wholename "./datasets/fonts/*.ttf")
|
|
||||||
do
|
|
||||||
echo 'COPY datasets/fonts/$font_file /root/.fonts/$font_file' >> Dockerfile
|
|
||||||
done
|
|
||||||
fi
|
|
||||||
exit 0
|
|
@ -1,14 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
function move_output_to_dist {
|
|
||||||
find . -name "$1" -type f -print0 | xargs -0r mv -t /dist/
|
|
||||||
}
|
|
||||||
|
|
||||||
# Create new directory
|
|
||||||
mkdir -p /dist
|
|
||||||
|
|
||||||
# Move generated files
|
|
||||||
move_output_to_dist "*.pdf"
|
|
||||||
|
|
||||||
tamarin_success "Done :-)"
|
|
||||||
|
|
@ -1,4 +0,0 @@
|
|||||||
#!/usr/bin/env bash
|
|
||||||
|
|
||||||
cd src
|
|
||||||
|
|
2
package
2
package
@ -74,8 +74,6 @@ if __name__ == "__main__":
|
|||||||
# Verify project directory
|
# Verify project directory
|
||||||
project_dir = os.path.abspath(args.project_directory)
|
project_dir = os.path.abspath(args.project_directory)
|
||||||
output_dir = os.path.abspath(args.output)
|
output_dir = os.path.abspath(args.output)
|
||||||
if not os.path.exists(output_dir):
|
|
||||||
os.mkdir(output_dir)
|
|
||||||
|
|
||||||
# Load build profile
|
# Load build profile
|
||||||
profile = tamarin.load_profile(args.profile, debug=args.debug)
|
profile = tamarin.load_profile(args.profile, debug=args.debug)
|
||||||
|
@ -1,29 +0,0 @@
|
|||||||
# Configuration générale du profil
|
|
||||||
[profile]
|
|
||||||
# Image Docker par défaut
|
|
||||||
default_image=ubuntu:focal
|
|
||||||
|
|
||||||
# Configuration de l’étape de pré-construction du conteneur
|
|
||||||
[containerbuild]
|
|
||||||
hooks=
|
|
||||||
containerbuild/doc-compiler/add-packages,
|
|
||||||
containerbuild/doc-compiler/add-resources,
|
|
||||||
|
|
||||||
# Configuration de l’étape de pré-compilation des documents
|
|
||||||
[prebuild]
|
|
||||||
hooks=
|
|
||||||
prebuild/debian/copy-sources-to-workspace,
|
|
||||||
prebuild/debian/run-project-hooks,
|
|
||||||
prebuild/debian/load-project-db,
|
|
||||||
prebuild/doc-compiler/complete-project-db,
|
|
||||||
|
|
||||||
# Configuration de l’étape de compilation du document
|
|
||||||
[build]
|
|
||||||
hooks=build/doc-compiler/compile
|
|
||||||
|
|
||||||
# Configuration de l’étape de post-compilation du document
|
|
||||||
[postbuild]
|
|
||||||
hooks=
|
|
||||||
postbuild/debian/run-project-hooks,
|
|
||||||
postbuild/doc-compiler/export-dist,
|
|
||||||
|
|
@ -1,30 +0,0 @@
|
|||||||
# Configuration générale du profil
|
|
||||||
[profile]
|
|
||||||
# Image Docker par défaut
|
|
||||||
default_image=ubuntu:jammy
|
|
||||||
|
|
||||||
# Configuration de l'étape de pré-construction du conteneur
|
|
||||||
[containerbuild]
|
|
||||||
hooks=
|
|
||||||
containerbuild/debian/install-build-essential,
|
|
||||||
containerbuild/debian/install-git,
|
|
||||||
|
|
||||||
# Configuration de l'étape de pré-construction du paquet
|
|
||||||
[prebuild]
|
|
||||||
hooks=
|
|
||||||
prebuild/debian/copy-sources-to-workspace,
|
|
||||||
prebuild/debian/run-project-hooks,
|
|
||||||
prebuild/debian/load-project-db,
|
|
||||||
prebuild/debian/complete-project-db,
|
|
||||||
prebuild/eole/create-changelog,
|
|
||||||
prebuild/debian/install-build-depends
|
|
||||||
|
|
||||||
# Configuration de l'étape de construction du paquet
|
|
||||||
[build]
|
|
||||||
hooks=build/debian/build
|
|
||||||
|
|
||||||
# Configuration de l'étape de post-construction du paquet
|
|
||||||
[postbuild]
|
|
||||||
hooks=
|
|
||||||
postbuild/debian/run-project-hooks,
|
|
||||||
postbuild/debian/export-dist
|
|
@ -1,28 +0,0 @@
|
|||||||
# Configuration générale du profil
|
|
||||||
[profile]
|
|
||||||
# Image Docker par défaut
|
|
||||||
default_image=ubuntu:bionic
|
|
||||||
|
|
||||||
# Configuration de l'étape de pré-construction du conteneur
|
|
||||||
[containerbuild]
|
|
||||||
hooks=
|
|
||||||
containerbuild/debian/install-build-essential,
|
|
||||||
containerbuild/ubuntu/install-stdeb,
|
|
||||||
|
|
||||||
# Configuration de l'étape de pré-construction du paquet
|
|
||||||
[prebuild]
|
|
||||||
hooks=
|
|
||||||
prebuild/debian/copy-sources-to-workspace,
|
|
||||||
prebuild/debian/run-project-hooks,
|
|
||||||
prebuild/debian/load-project-db,
|
|
||||||
|
|
||||||
# Configuration de l'étape de construction du paquet
|
|
||||||
[build]
|
|
||||||
hooks=build/stdeb/build
|
|
||||||
|
|
||||||
# Configuration de l'étape de post-construction du paquet
|
|
||||||
[postbuild]
|
|
||||||
hooks=
|
|
||||||
postbuild/debian/run-project-hooks,
|
|
||||||
postbuild/debian/export-dist
|
|
||||||
|
|
Reference in New Issue
Block a user