2024-01-14 20:00:17 +02:00
|
|
|
{
|
2024-01-17 10:45:16 +02:00
|
|
|
runCommand,
|
2024-01-14 20:00:17 +02:00
|
|
|
zopfli,
|
|
|
|
brotli,
|
|
|
|
findutils,
|
2024-01-28 18:15:49 +02:00
|
|
|
e11sync-blog,
|
2024-01-28 16:42:17 +02:00
|
|
|
e11sync-djangostatic,
|
|
|
|
}:
|
|
|
|
runCommand "e11sync-static" {
|
2024-01-28 18:15:49 +02:00
|
|
|
srcs = [e11sync-djangostatic e11sync-blog];
|
2024-01-28 16:42:17 +02:00
|
|
|
nativeBuildInputs = [findutils];
|
2024-01-28 18:15:49 +02:00
|
|
|
sourceRoot = ".";
|
2024-01-28 16:42:17 +02:00
|
|
|
} ''
|
|
|
|
unpackPhase
|
2024-01-28 18:15:49 +02:00
|
|
|
|
|
|
|
# check that {e11sync-djangostatic,e11sync-blog/static/style.*.css
|
|
|
|
# is the same file
|
|
|
|
hash1=$(echo e11sync-djangostatic/static/style.*.css | sed 's;.*/;;' )
|
|
|
|
hash2=$(echo e11sync-blog/static/style.*.css | sed 's;.*/;;' )
|
|
|
|
|
|
|
|
if [ "$hash1" != "$hash2" ]; then
|
|
|
|
{
|
|
|
|
echo "style.*.css in blog and django do not match:"
|
|
|
|
ls e11sync-djangostatic/style/style.*.css
|
|
|
|
ls blog/style/style.*.css
|
|
|
|
} >&2
|
|
|
|
fi
|
|
|
|
|
|
|
|
mkdir -p $out
|
|
|
|
mv e11sync-djangostatic/* $out/
|
|
|
|
mv --no-clobber e11sync-blog/{static,blog,contact} $out/
|
|
|
|
|
|
|
|
find $out \
|
2024-01-28 16:42:17 +02:00
|
|
|
-name '*.css' -or \
|
|
|
|
-name '*.js' -or \
|
|
|
|
-name '*.svg' -or \
|
2024-01-28 18:15:49 +02:00
|
|
|
-name '*.html' -or \
|
2024-01-28 16:42:17 +02:00
|
|
|
-name '*.txt' | \
|
|
|
|
tee >(xargs -n1 -P''$(nproc) ${zopfli}/bin/zopfli) | \
|
|
|
|
xargs -n1 -P''$(nproc) ${brotli}/bin/brotli
|
|
|
|
''
|