[tex4ht-commits] [SCM] tex4ht updated: r779 - trunk/lit
karl at gnu.org.ua
karl at gnu.org.ua
Sun Jul 26 18:18:05 CEST 2020
Author: karl
Date: 2020-07-26 19:18:05 +0300 (Sun, 26 Jul 2020)
New Revision: 779
Modified:
trunk/lit/ChangeLog
trunk/lit/Makefile
Log:
look for new htf files
Modified: trunk/lit/ChangeLog
===================================================================
--- trunk/lit/ChangeLog 2020-07-25 14:17:24 UTC (rev 778)
+++ trunk/lit/ChangeLog 2020-07-26 16:18:05 UTC (rev 779)
@@ -1,3 +1,8 @@
+2020-07-26 Karl Berry <karl at freefriends.org>
+
+ * Makefile (diff-htfonts): rename from diff-ht-fonts, and also
+ generate /tmp/htnew for new files. Other small name changes.
+
2020-07-25 Michal Hoftich <michal.h21 at gmail.com>
* tex4ht-fonts-newtx.tex,
@@ -64,8 +69,8 @@
2020-07-02 Michal Hoftich <michal.h21 at gmail.com>
- * tex4ht-mathml.tex (mathml.4ht): don't use deprecated <mfence> element for
- \left and \right.
+ * tex4ht-mathml.tex (mathml.4ht): don't use deprecated <mfence>
+ element for \left and \right.
2020-07-01 Michal Hoftich <michal.h21 at gmail.com>
Modified: trunk/lit/Makefile
===================================================================
--- trunk/lit/Makefile 2020-07-25 14:17:24 UTC (rev 778)
+++ trunk/lit/Makefile 2020-07-26 16:18:05 UTC (rev 779)
@@ -669,23 +669,27 @@
| (cd $(ht_fonts_instdir) && tar xf -)
svn diff $(ht_fonts_instdir)
#
-# copy fonts listed in /tmp/t (must be filenames relative to
-# ht_fonts_devdir) to ht_fonts_instdir.
+# copy fonts listed in /tmp/htf (must be filenames relative to
+# ht_fonts_devdir, like those created by diff-htfonts below)
+# to ht_fonts_instdir.
install-htfonts-tmp:
- cd $(ht_fonts_devdir) && tar cfT - /tmp/t \
+ cd $(ht_fonts_devdir) && tar cfT - /tmp/htf \
| (cd $(ht_fonts_instdir) && tar xvf -)
svn status $(ht_fonts_instdir)
-diff-ht-fonts:
-# the raw diff:
+diff-htfonts:
+# put the raw diff in /tmp/htd:
-$(diff) -r $(ht_fonts_instdir) $(ht_fonts_devdir) >/tmp/htd
-# just the filenames:
+# just the filenames in htf:
sed -n 's,^diff.*ht-fonts/,,p' /tmp/htd |sort >/tmp/htf
+# new files in htnew:
+ sed -n -e 's,^Only in.*ht-fonts/,,' \
+ -e 's,: ,/,p' /tmp/htd >/tmp/htnew
# for human consumption, remove generation lines (hopefully there are no
# real diffs on those lines); also the @@ lines from diff -u and the
# redundant diff invocations.
egrep -v '^(diff |@@ |[-+][^-+].*20[0-9][0-9]-[0-9][0-9]-[0-9][0-9])' \
- /tmp/htd | tee /tmp/hte
+ /tmp/htd | tee /tmp/htchanges
#
# to compare newly-built files with what's installed.
@@ -703,7 +707,7 @@
#
# the --ignore-matching-lines only works when that's the only change in
# the hunk, so ignore them all explicitly. also ignore commented changes.
-diff-all: #diff-ht-fonts
+diff-all: #diff-htfonts
-for f in $(diff_files); do $(diff) $(inst_dir_4ht)/$$f .; done \
| tee /tmp/u | egrep -v '^ *[-+]%|^@@ |^- *$$|-1.version' \
| egrep -v '^..ifx.infoIVht.UnDeF.*//$$'
More information about the tex4ht-commits
mailing list.