SOURCES: rpm.macros - avoid compressing very small (manual) pages
glen
glen at pld-linux.org
Sat Jun 10 18:25:19 CEST 2006
Author: glen Date: Sat Jun 10 16:25:19 2006 GMT
Module: SOURCES Tag: HEAD
---- Log message:
- avoid compressing very small (manual) pages
---- Files affected:
SOURCES:
rpm.macros (1.304 -> 1.305)
---- Diffs:
================================================================
Index: SOURCES/rpm.macros
diff -u SOURCES/rpm.macros:1.304 SOURCES/rpm.macros:1.305
--- SOURCES/rpm.macros:1.304 Fri Jun 2 23:00:22 2006
+++ SOURCES/rpm.macros Sat Jun 10 18:25:14 2006
@@ -234,6 +234,11 @@
; do echo $l; done >> %1 \
}
+# minimum file size needed for compressed documents.
+# just smaller files than this get larger when compressed.
+# current number is based from experiment that 0 byte file compressed was 25 bytes .gz
+%_min_compress_bytes 25
+
#-----------------------------------------------------------------
# find and gzip all files in %{_mandir} and %{infodir}
#
@@ -245,9 +250,9 @@
echo "Compress man and info pages."; \
for i in /usr/share/man /usr/X11R6/man /usr/share/info; do \
if [ -d "$RPM_BUILD_ROOT$i" ]; then \
- find "$RPM_BUILD_ROOT$i" -name \*.bz2 -print | xargs -r %{__bzip2} -df; \
- find "$RPM_BUILD_ROOT$i" -name \*.gz -print | xargs -r %{__gzip} -dnf; \
- find "$RPM_BUILD_ROOT$i" -type f -print | xargs -r %{__gzip} -9nf; \
+ find "$RPM_BUILD_ROOT$i" -name '*.bz2' -print | xargs -r %{__bzip2} -df; \
+ find "$RPM_BUILD_ROOT$i" -name '*.gz' -print | xargs -r %{__gzip} -dnf; \
+ find "$RPM_BUILD_ROOT$i" -type f -size +%{_min_compress_bytes}c -print | xargs -r %{__gzip} -9nf; \
fi; \
done; \
}; __spec_install_post_compress_docs } }
================================================================
---- CVS-web:
http://cvs.pld-linux.org/SOURCES/rpm.macros?r1=1.304&r2=1.305&f=u
More information about the pld-cvs-commit
mailing list