mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-23 09:22:59 +02:00
python3: exclude __pycache__ from iso, core and packages
Signed-off-by: Arne Fitzenreiter <arne_f@ipfire.org>
This commit is contained in:
@@ -241,7 +241,7 @@ define PAK
|
||||
sed -e 's/BUILDTARGET/$(BUILDTARGET)/g' -e 's/KVER/$(KVER)/g' -e 's/MACHINE/$(BUILD_ARCH)/g' -i /install/packages/package/ROOTFILES
|
||||
sed -e 's/xxxKVERxxx/$(KVER)/g' -i /install/packages/package/install.sh
|
||||
chmod 755 /install/packages/package/{{,un}install,update}.sh
|
||||
cd / && tar cfp /install/packages/package/files.tmp --numeric-owner --exclude='#*' --files-from=/install/packages/package/ROOTFILES
|
||||
cd / && tar cfp /install/packages/package/files.tmp --numeric-owner --exclude='#*' --exclude='__pycache__' --files-from=/install/packages/package/ROOTFILES
|
||||
# Double tar to remove double files
|
||||
tar xfp /install/packages/package/files.tmp --numeric-owner -C /install/packages/package/tmp/
|
||||
rm -f /install/packages/package/files.tmp
|
||||
|
||||
@@ -162,7 +162,8 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
|
||||
|
||||
# Compress root filesystem
|
||||
# Reason for this tar+untar+tar is removing of entries listed two or more in src/ROOTFILES
|
||||
tar -c --exclude='#*' --exclude='proc/*' --exclude='dev/pts/*' --exclude='tmp/ROOTFILES' \
|
||||
tar -c --exclude='#*' --exclude='proc/*' --exclude='dev/pts/*' \
|
||||
--exclude='__pycache__' --exclude='tmp/ROOTFILES' \
|
||||
-C / --files-from=/tmp/ROOTFILES -f /$(SNAME).tar
|
||||
rm -f /tmp/ROOTFILES
|
||||
tar -x -C /tmp -f /$(SNAME).tar
|
||||
|
||||
@@ -72,7 +72,7 @@ core/%:
|
||||
sed -e "s/KVER/$(KVER)/g" -i /tmp/ROOTFILES
|
||||
|
||||
#Remove doubled files with tar/untar/tar to save space
|
||||
tar -c --exclude='proc/*' --exclude='tmp/ROOTFILES' --exclude='#*' --exclude='dev/pts/*' \
|
||||
tar -c --exclude='proc/*' --exclude='tmp/ROOTFILES' --exclude='__pycache__' --exclude='#*' --exclude='dev/pts/*' \
|
||||
--exclude-from=$(DIR_SRC)/config/rootfiles/$@/exclude \
|
||||
-C / --files-from=/tmp/ROOTFILES -f /$(SNAME).tar
|
||||
mv -f /tmp/ROOTFILES /install/packages/package/ROOTFILES
|
||||
|
||||
Reference in New Issue
Block a user