[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

[texlive-bin] 01/13: more upstream cherry picking



This is an automated email from the git hooks/post-receive script.

preining pushed a commit to branch master
in repository texlive-bin.

commit 430ca2b05d88e5775708c9413e3db628c2a68152
Author: Norbert Preining <preining@debian.org>
Date:   Fri Jan 6 11:02:15 2017 +0900

    more upstream cherry picking
---
 debian/patches/series                              |   7 ++
 ...tream-svn42692..42695,42703-dvips-emstring-init |  27 +++++
 debian/patches/upstream-svn42711-texjp-contact     | 118 ++++++++++++++++++++
 debian/patches/upstream-svn42715-correct-email     |  34 ++++++
 debian/patches/upstream-svn42720-more-texjp        | 122 +++++++++++++++++++++
 debian/patches/upstream-svn42723-moremore-texjp    |  51 +++++++++
 debian/patches/upstream-svn42784-upmendex-cyrillic |  25 +++++
 .../upstream-svn42803-dvipdfmx-cid-font-info       |  81 ++++++++++++++
 8 files changed, 465 insertions(+)

diff --git a/debian/patches/series b/debian/patches/series
index fe807ef..a1f5689 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -34,3 +34,10 @@ upstream-svn42383-invalid-epoch
 upstream-svn42391-invalid-epoch-dvipdfmx
 upstream-svn42489-svn42493-mendex-fix-access-violation
 upstream-svn42506-eptex-euptex-randsupport
+upstream-svn42692..42695,42703-dvips-emstring-init
+upstream-svn42711-texjp-contact
+upstream-svn42715-correct-email
+upstream-svn42720-more-texjp
+upstream-svn42723-moremore-texjp
+upstream-svn42784-upmendex-cyrillic
+upstream-svn42803-dvipdfmx-cid-font-info
diff --git a/debian/patches/upstream-svn42692..42695,42703-dvips-emstring-init b/debian/patches/upstream-svn42692..42695,42703-dvips-emstring-init
new file mode 100644
index 0000000..ae7c2e2
--- /dev/null
+++ b/debian/patches/upstream-svn42692..42695,42703-dvips-emstring-init
@@ -0,0 +1,27 @@
+---
+ texk/dvipsk/ChangeLog   |    5 +++++
+ texk/dvipsk/emspecial.c |    2 +-
+ 2 files changed, 6 insertions(+), 1 deletion(-)
+
+--- texlive-bin.orig/texk/dvipsk/ChangeLog
++++ texlive-bin/texk/dvipsk/ChangeLog
+@@ -1,3 +1,8 @@
++2016-12-13  Akira Kakuto  <kakuto@fuk.kindai.ac.jp>
++
++	* emspecial.c: Fix a bug in emspecial(), reported by Norbert Klingen:
++	http://tug.org/pipermail/tex-live/2016-December/039483.html.
++
+ 2016-10-30  Karl Berry  <karl@tug.org>
+ 
+ 	* output.c (INVALID_EPOCH_VALUE): define as (time_t) -1,
+--- texlive-bin.orig/texk/dvipsk/emspecial.c
++++ texlive-bin/texk/dvipsk/emspecial.c
+@@ -276,7 +276,7 @@
+ 	   int i;
+ 	   for (emp = emp+5; *emp && isspace((unsigned char)*emp); emp++); /* skip blanks */
+ 	   for (i=0; *emp && !isspace((unsigned char)*emp) && !(*emp==','); emp++) {
+-	      if (strlen(emstr) - 2 >= sizeof(emstr)) {
++	      if (i > (int)sizeof(emstr) - 2) {
+                 fprintf(stderr, "em:graph: special too long, truncating\n");
+                 break;
+ 	      }
diff --git a/debian/patches/upstream-svn42711-texjp-contact b/debian/patches/upstream-svn42711-texjp-contact
new file mode 100644
index 0000000..9bb0c4c
--- /dev/null
+++ b/debian/patches/upstream-svn42711-texjp-contact
@@ -0,0 +1,118 @@
+---
+ texk/mendexk/ChangeLog             |    4 ++++
+ texk/mendexk/main.c                |    2 +-
+ texk/web2c/eptexdir/ChangeLog      |    4 ++++
+ texk/web2c/eptexdir/eptexextra.h   |    2 +-
+ texk/web2c/euptexdir/ChangeLog     |    4 ++++
+ texk/web2c/euptexdir/euptexextra.h |    2 +-
+ texk/web2c/ptexdir/ChangeLog       |    4 ++++
+ texk/web2c/ptexdir/ptexextra.h     |    2 +-
+ texk/web2c/uptexdir/ChangeLog      |    4 ++++
+ texk/web2c/uptexdir/uptexextra.h   |    2 +-
+ 10 files changed, 25 insertions(+), 5 deletions(-)
+
+--- texlive-bin.orig/texk/mendexk/ChangeLog
++++ texlive-bin/texk/mendexk/ChangeLog
+@@ -1,3 +1,7 @@
++2016-12-15  Akira Kakuto  <kakuto@fuk.kindai.ac.jp>
++
++	* main.c: Remove email address "ptex-staff@ml.asciimw.jp" as in upmendex.
++
+ 2016-11-12  Akira Kakuto  <kakuto@fuk.kindai.ac.jp>
+ 
+ 	* mendex.h: Sync with W32TeX (W32 only).
+--- texlive-bin.orig/texk/mendexk/main.c
++++ texlive-bin/texk/mendexk/main.c
+@@ -198,7 +198,7 @@
+ 
+ 			default:
+ 				fprintf(stderr,"mendex - Japanese index processor, %s (%s) (%s).\n",VERSION, get_enc_string(), TL_VERSION);
+-				fprintf(stderr," Copyright 2009 ASCII MEDIA WORKS.(ptex-staff@ml.asciimw.jp)\n");
++				fprintf(stderr," Copyright 2009 ASCII MEDIA WORKS.\n");
+ 				fprintf(stderr,"usage:\n");
+ 				fprintf(stderr,"%% mendex [-ilqrcgfEJS"
+ #ifdef WIN32
+--- texlive-bin.orig/texk/web2c/eptexdir/ChangeLog
++++ texlive-bin/texk/web2c/eptexdir/ChangeLog
+@@ -1,3 +1,7 @@
++2016-12-15  Akira Kakuto  <kakuto@fuk.kindai.ac.jp>
++
++	* eptexextra.h: Use "issue@texjp.org" as BUG_ADDRESS.
++
+ 2016-11-14  Hironori Kitagawa  <h_kitagawa2001@yahoo.co.jp>
+ 
+ 	* eptex.ech, eptex_version.h, pdfutils.ch: Add new primitives
+--- texlive-bin.orig/texk/web2c/eptexdir/eptexextra.h
++++ texlive-bin/texk/web2c/eptexdir/eptexextra.h
+@@ -11,7 +11,7 @@
+ #define COPYRIGHT_HOLDER "D.E. Knuth"
+ #define AUTHOR "Peter Breitenlohner"
+ #define PROGRAM_HELP EPTEXHELP
+-#define BUG_ADDRESS "tex-k@tug.org"
++#define BUG_ADDRESS "issue@texjp.org"
+ #define DUMP_VAR TEXformatdefault
+ #define DUMP_LENGTH_VAR formatdefaultlength
+ #define DUMP_OPTION "fmt"
+--- texlive-bin.orig/texk/web2c/euptexdir/ChangeLog
++++ texlive-bin/texk/web2c/euptexdir/ChangeLog
+@@ -1,3 +1,7 @@
++2016-12-15  Akira Kakuto  <kakuto@fuk.kindai.ac.jp>
++
++	* euptexextra.h: Use "issue@texjp.org" as BUG_ADDRESS.
++
+ 2016-11-14  Hironori Kitagawa  <h_kitagawa2001@yahoo.co.jp>
+ 
+ 	* euptrip/texmf.cnf: Increase pool_size.
+--- texlive-bin.orig/texk/web2c/euptexdir/euptexextra.h
++++ texlive-bin/texk/web2c/euptexdir/euptexextra.h
+@@ -12,7 +12,7 @@
+ #define COPYRIGHT_HOLDER "D.E. Knuth"
+ #define AUTHOR "Peter Breitenlohner"
+ #define PROGRAM_HELP EUPTEXHELP
+-#define BUG_ADDRESS "tex-k@tug.org"
++#define BUG_ADDRESS "issue@texjp.org"
+ #define DUMP_VAR TEXformatdefault
+ #define DUMP_LENGTH_VAR formatdefaultlength
+ #define DUMP_OPTION "fmt"
+--- texlive-bin.orig/texk/web2c/ptexdir/ChangeLog
++++ texlive-bin/texk/web2c/ptexdir/ChangeLog
+@@ -1,3 +1,7 @@
++2016-12-15  Akira Kakuto  <kakuto@fuk.kindai.ac.jp>
++
++	* ptexextra.h: Use "issue@texjp.org" as BUG_ADDRESS.
++
+ 2016-09-12  Hironori Kitagawa  <h_kitagawa2001@yahoo.co.jp>
+ 
+ 	* ptex-base.ch: New primitive \ifmbox to realize better box in math mode.
+--- texlive-bin.orig/texk/web2c/ptexdir/ptexextra.h
++++ texlive-bin/texk/web2c/ptexdir/ptexextra.h
+@@ -9,7 +9,7 @@
+ #define COPYRIGHT_HOLDER "D.E. Knuth"
+ #define AUTHOR NULL
+ #define PROGRAM_HELP PTEXHELP
+-#define BUG_ADDRESS "ptex-staff@ml.asciimw.jp"
++#define BUG_ADDRESS "issue@texjp.org"
+ #define DUMP_VAR TEXformatdefault
+ #define DUMP_LENGTH_VAR formatdefaultlength
+ #define DUMP_OPTION "fmt"
+--- texlive-bin.orig/texk/web2c/uptexdir/ChangeLog
++++ texlive-bin/texk/web2c/uptexdir/ChangeLog
+@@ -1,3 +1,7 @@
++2016-12-15  Akira Kakuto  <kakuto@fuk.kindai.ac.jp>
++
++	* uptexextra.h: Use "issue@texjp.org" as BUG_ADDRESS.
++
+ 2016-02-20  TANAKA Takuji  <ttk@t-lab.opal.ne.jp>
+ 
+ 	* uptex-m.ch, kanji.c:
+--- texlive-bin.orig/texk/web2c/uptexdir/uptexextra.h
++++ texlive-bin/texk/web2c/uptexdir/uptexextra.h
+@@ -10,7 +10,7 @@
+ #define COPYRIGHT_HOLDER "D.E. Knuth"
+ #define AUTHOR NULL
+ #define PROGRAM_HELP UPTEXHELP
+-#define BUG_ADDRESS "ptex-staff@ml.asciimw.jp"
++#define BUG_ADDRESS "issue@texjp.org"
+ #define DUMP_VAR TEXformatdefault
+ #define DUMP_LENGTH_VAR formatdefaultlength
+ #define DUMP_OPTION "fmt"
diff --git a/debian/patches/upstream-svn42715-correct-email b/debian/patches/upstream-svn42715-correct-email
new file mode 100644
index 0000000..ff8c01a
--- /dev/null
+++ b/debian/patches/upstream-svn42715-correct-email
@@ -0,0 +1,34 @@
+---
+ texk/kpathsea/ChangeLog  |    4 ++++
+ texk/kpathsea/kpsestat.c |    4 ++--
+ 2 files changed, 6 insertions(+), 2 deletions(-)
+
+--- texlive-bin.orig/texk/kpathsea/ChangeLog
++++ texlive-bin/texk/kpathsea/ChangeLog
+@@ -1,3 +1,7 @@
++2016-12-15  Akira Kakuto  <kakuto@fuk.kindai.ac.jp>
++
++	* kpsestat.c: Change tex-k@mail.tug.org to tex-k@tug.org.
++
+ 2016-05-13  Karl Berry  <karl@tug.org>
+ 
+ 	* texmf.cnf (RISINPUTS, BLTXMLINPUTS): $TEXMF/biber
+--- texlive-bin.orig/texk/kpathsea/kpsestat.c
++++ texlive-bin/texk/kpathsea/kpsestat.c
+@@ -1,6 +1,6 @@
+ /* kpsestat -- show file permissions of a file in octal form.
+ 
+-   Copyright 2008 Karl Berry.
++   Copyright 2008, 2016 Karl Berry.
+    Copyright 1997, 2000, 2001, 2005 Olaf Weber.
+ 
+    This program is free software; you can redistribute it and/or modify
+@@ -42,7 +42,7 @@
+ \n\
+ --help      display this help and exit\n\
+ --version   output version information and exit\n\n", argv[0]);
+-        fputs ("Email bug reports to tex-k@mail.tug.org.\n", stdout);
++        fputs ("Email bug reports to tex-k@tug.org.\n", stdout);
+         exit(0);
+     } else if (argc > 1 && strcmp (argv[1], "--version") == 0) {
+         printf ("%s (%s)\n\
diff --git a/debian/patches/upstream-svn42720-more-texjp b/debian/patches/upstream-svn42720-more-texjp
new file mode 100644
index 0000000..c6fee76
--- /dev/null
+++ b/debian/patches/upstream-svn42720-more-texjp
@@ -0,0 +1,122 @@
+---
+ texk/web2c/ptexdir/ChangeLog     |    5 +++++
+ texk/web2c/ptexdir/pbibtex.ch    |    2 +-
+ texk/web2c/ptexdir/pdvitype.ch   |    2 +-
+ texk/web2c/ptexdir/ppltotf.ch    |    2 +-
+ texk/web2c/ptexdir/ptftopl.ch    |    2 +-
+ texk/web2c/uptexdir/ChangeLog    |    5 +++++
+ texk/web2c/uptexdir/upbibtex.ch  |    2 +-
+ texk/web2c/uptexdir/updvitype.ch |    2 +-
+ texk/web2c/uptexdir/uppltotf.ch  |    2 +-
+ texk/web2c/uptexdir/uptftopl.ch  |    2 +-
+ 10 files changed, 18 insertions(+), 8 deletions(-)
+
+--- texlive-bin.orig/texk/web2c/ptexdir/ChangeLog
++++ texlive-bin/texk/web2c/ptexdir/ChangeLog
+@@ -1,3 +1,8 @@
++2016-12-16  Akira Kakuto  <kakuto@fuk.kindai.ac.jp>
++
++	* pbibtex.ch, pdvitype.ch, ppltotf.ch, ptftopl.ch:
++	Use "issue@texjp.org" as bug_email in usagehelp().
++
+ 2016-12-15  Akira Kakuto  <kakuto@fuk.kindai.ac.jp>
+ 
+ 	* ptexextra.h: Use "issue@texjp.org" as BUG_ADDRESS.
+--- texlive-bin.orig/texk/web2c/ptexdir/pbibtex.ch
++++ texlive-bin/texk/web2c/ptexdir/pbibtex.ch
+@@ -524,7 +524,7 @@
+ @x
+       usage_help (BIBTEX_HELP, nil);
+ @y
+-      usage_help (PBIBTEX_HELP, nil);
++      usage_help (PBIBTEX_HELP, 'issue@@texjp.org');
+ @z
+ 
+ @x
+--- texlive-bin.orig/texk/web2c/ptexdir/pdvitype.ch
++++ texlive-bin/texk/web2c/ptexdir/pdvitype.ch
+@@ -493,7 +493,7 @@
+ @x
+       usage_help (DVITYPE_HELP, nil);
+ @y
+-      usage_help (PDVITYPE_HELP, nil);
++      usage_help (PDVITYPE_HELP, 'issue@@texjp.org');
+ @z
+ 
+ @x
+--- texlive-bin.orig/texk/web2c/ptexdir/ppltotf.ch
++++ texlive-bin/texk/web2c/ptexdir/ppltotf.ch
+@@ -321,7 +321,7 @@
+ @x
+       usage_help (PLTOTF_HELP, nil);
+ @y
+-      usage_help (PPLTOTF_HELP, nil);
++      usage_help (PPLTOTF_HELP, 'issue@@texjp.org');
+ @z
+ 
+ @x
+--- texlive-bin.orig/texk/web2c/ptexdir/ptftopl.ch
++++ texlive-bin/texk/web2c/ptexdir/ptftopl.ch
+@@ -361,7 +361,7 @@
+ @x
+       usage_help (TFTOPL_HELP, nil);
+ @y
+-      usage_help (PTFTOPL_HELP, nil);
++      usage_help (PTFTOPL_HELP, 'issue@@texjp.org');
+ @z
+ 
+ @x
+--- texlive-bin.orig/texk/web2c/uptexdir/ChangeLog
++++ texlive-bin/texk/web2c/uptexdir/ChangeLog
+@@ -1,3 +1,8 @@
++2016-12-16  Akira Kakuto  <kakuto@fuk.kindai.ac.jp>
++
++	* upbibtex.ch, updvitype.ch, uppltotf.ch, uptftopl.ch:
++	Use "issue@texjp.org" as bug_email in usagehelp().
++
+ 2016-12-15  Akira Kakuto  <kakuto@fuk.kindai.ac.jp>
+ 
+ 	* uptexextra.h: Use "issue@texjp.org" as BUG_ADDRESS.
+--- texlive-bin.orig/texk/web2c/uptexdir/upbibtex.ch
++++ texlive-bin/texk/web2c/uptexdir/upbibtex.ch
+@@ -289,7 +289,7 @@
+ @x
+       usage_help (PBIBTEX_HELP, nil);
+ @y
+-      usage_help (UPBIBTEX_HELP, nil);
++      usage_help (UPBIBTEX_HELP, 'issue@@texjp.org');
+ @z
+ 
+ @x
+--- texlive-bin.orig/texk/web2c/uptexdir/updvitype.ch
++++ texlive-bin/texk/web2c/uptexdir/updvitype.ch
+@@ -34,6 +34,6 @@
+ @x
+       usage_help (PDVITYPE_HELP, nil);
+ @y
+-      usage_help (UPDVITYPE_HELP, nil);
++      usage_help (UPDVITYPE_HELP, 'issue@@texjp.org');
+ @z
+ 
+--- texlive-bin.orig/texk/web2c/uptexdir/uppltotf.ch
++++ texlive-bin/texk/web2c/uptexdir/uppltotf.ch
+@@ -9,7 +9,7 @@
+ @x
+       usage_help (PPLTOTF_HELP, nil);
+ @y
+-      usage_help (UPPLTOTF_HELP, nil);
++      usage_help (UPPLTOTF_HELP, 'issue@@texjp.org');
+ @z
+ 
+ @x
+--- texlive-bin.orig/texk/web2c/uptexdir/uptftopl.ch
++++ texlive-bin/texk/web2c/uptexdir/uptftopl.ch
+@@ -9,7 +9,7 @@
+ @x
+       usage_help (PTFTOPL_HELP, nil);
+ @y
+-      usage_help (UPTFTOPL_HELP, nil);
++      usage_help (UPTFTOPL_HELP, 'issue@@texjp.org');
+ @z
+ 
+ @x
diff --git a/debian/patches/upstream-svn42723-moremore-texjp b/debian/patches/upstream-svn42723-moremore-texjp
new file mode 100644
index 0000000..eb1ee3a
--- /dev/null
+++ b/debian/patches/upstream-svn42723-moremore-texjp
@@ -0,0 +1,51 @@
+---
+ texk/web2c/uptexdir/upbibtex.ch  |    2 +-
+ texk/web2c/uptexdir/updvitype.ch |    2 +-
+ texk/web2c/uptexdir/uppltotf.ch  |    2 +-
+ texk/web2c/uptexdir/uptftopl.ch  |    2 +-
+ 4 files changed, 4 insertions(+), 4 deletions(-)
+
+--- texlive-bin.orig/texk/web2c/uptexdir/upbibtex.ch
++++ texlive-bin/texk/web2c/uptexdir/upbibtex.ch
+@@ -287,7 +287,7 @@
+ @z
+ 
+ @x
+-      usage_help (PBIBTEX_HELP, nil);
++      usage_help (PBIBTEX_HELP, 'issue@@texjp.org');
+ @y
+       usage_help (UPBIBTEX_HELP, 'issue@@texjp.org');
+ @z
+--- texlive-bin.orig/texk/web2c/uptexdir/updvitype.ch
++++ texlive-bin/texk/web2c/uptexdir/updvitype.ch
+@@ -32,7 +32,7 @@
+ @z
+ 
+ @x
+-      usage_help (PDVITYPE_HELP, nil);
++      usage_help (PDVITYPE_HELP, 'issue@@texjp.org');
+ @y
+       usage_help (UPDVITYPE_HELP, 'issue@@texjp.org');
+ @z
+--- texlive-bin.orig/texk/web2c/uptexdir/uppltotf.ch
++++ texlive-bin/texk/web2c/uptexdir/uppltotf.ch
+@@ -7,7 +7,7 @@
+ @z
+ 
+ @x
+-      usage_help (PPLTOTF_HELP, nil);
++      usage_help (PPLTOTF_HELP, 'issue@@texjp.org');
+ @y
+       usage_help (UPPLTOTF_HELP, 'issue@@texjp.org');
+ @z
+--- texlive-bin.orig/texk/web2c/uptexdir/uptftopl.ch
++++ texlive-bin/texk/web2c/uptexdir/uptftopl.ch
+@@ -7,7 +7,7 @@
+ @z
+ 
+ @x
+-      usage_help (PTFTOPL_HELP, nil);
++      usage_help (PTFTOPL_HELP, 'issue@@texjp.org');
+ @y
+       usage_help (UPTFTOPL_HELP, 'issue@@texjp.org');
+ @z
diff --git a/debian/patches/upstream-svn42784-upmendex-cyrillic b/debian/patches/upstream-svn42784-upmendex-cyrillic
new file mode 100644
index 0000000..769efaf
--- /dev/null
+++ b/debian/patches/upstream-svn42784-upmendex-cyrillic
@@ -0,0 +1,25 @@
+---
+ texk/upmendex/ChangeLog |    4 ++++
+ texk/upmendex/sort.c    |    1 +
+ 2 files changed, 5 insertions(+)
+
+--- texlive-bin.orig/texk/upmendex/ChangeLog
++++ texlive-bin/texk/upmendex/ChangeLog
+@@ -1,3 +1,7 @@
++2016-12-24  TANAKA Takuji  <ttk@t-lab.opal.ne.jp>
++
++	* sort.c: Add Cyrillic Extended-C
++
+ 2016-11-12  TANAKA Takuji  <ttk@t-lab.opal.ne.jp>
+ 
+ 	* main.c: Avoid access violation.
+--- texlive-bin.orig/texk/upmendex/sort.c
++++ texlive-bin/texk/upmendex/sort.c
+@@ -414,6 +414,7 @@
+ int is_cyrillic(UChar *c)
+ {
+ 	if      ((*c>=0x0400)&&(*c<=0x052F)) return 1; /* Cyrillic, Cyrillic Supplement */
++	else if ((*c>=0x1C80)&&(*c<=0x1C8F)) return 1; /* Cyrillic Extended-C */
+ 	else if ((*c>=0x2DE0)&&(*c<=0x2DFF)) return 1; /* Cyrillic Extended-A */
+ 	else if ((*c>=0xA640)&&(*c<=0xA69F)) return 1; /* Cyrillic Extended-B */
+ 	else return 0;
diff --git a/debian/patches/upstream-svn42803-dvipdfmx-cid-font-info b/debian/patches/upstream-svn42803-dvipdfmx-cid-font-info
new file mode 100644
index 0000000..046abe0
--- /dev/null
+++ b/debian/patches/upstream-svn42803-dvipdfmx-cid-font-info
@@ -0,0 +1,81 @@
+---
+ texk/dvipdfm-x/ChangeLog      |    5 +++++
+ texk/dvipdfm-x/cid_basefont.h |   30 +++++++++++++++++++++++++-----
+ 2 files changed, 30 insertions(+), 5 deletions(-)
+
+--- texlive-bin.orig/texk/dvipdfm-x/ChangeLog
++++ texlive-bin/texk/dvipdfm-x/ChangeLog
+@@ -1,3 +1,8 @@
++2016-12-29  Hironobu Yamashita  <h.y.acetaminophen@gmail.com>
++
++	* cid_basefont.h: Add data for STHeiti-Regular-Acro, and correct
++	several data.
++
+ 2016-10-30  Akira Kakuto  <kakuto@fuk.kindai.ac.jp>
+ 
+ 	* pdffont.c, pdfobj.h: Use (time_t)-1 for INVALID_EPOCH_VALUE.
+--- texlive-bin.orig/texk/dvipdfm-x/cid_basefont.h
++++ texlive-bin/texk/dvipdfm-x/cid_basefont.h
+@@ -124,7 +124,7 @@
+ >>",
+     "<< \
+ /Ascent 752 /CapHeight 737 /Descent -271 /StemV 58 \
+-/FontBBox [-160 -259 1015 888] \
++/FontBBox [-160 -249 1015 888] \
+ /ItalicAngle 0 /Flags 6 /XHeight 553 \
+ /Style << /Panose <000000000400000000000000> >> \
+ >>"
+@@ -143,13 +143,33 @@
+ ]\
+ >>",
+     "<< \
+-/Ascent 857 /CapHeight 857 /Descent -143 /StemV 91 \
+-/FontBBox [-250 -143 600 857] \
++/Ascent 752 /CapHeight 737 /Descent -271 /StemV 58 \
++/FontBBox [-25 -254 1000 880] \
+ /ItalicAngle 0 /Flags 6 /XHeight 599 \
+ /Style << /Panose <000000000400000000000000> >> \
+ >>"
+   },
+   {
++    "STHeiti-Regular-Acro",
++    "<< \
++/Subtype /CIDFontType0 \
++/CIDSystemInfo << /Registry (Adobe) /Ordering (GB1) /Supplement 1 >> \
++/DW 1000 \
++/W [\
++  814 939 500 \
++ 7716 [500] \
++22355 [500 500] \
++22357 [500] \
++]\
++>>",
++    "<< \
++/Ascent 752 /CapHeight 737 /Descent -271 /StemV 58 \
++/FontBBox [-34 -250 1000 882] \
++/ItalicAngle 0 /Flags 4 /XHeight 599 \
++/Style << /Panose <000001000600000000000000> >> \
++>>"
++  },
++  {
+     "HeiseiKakuGo-W5-Acro",
+     "<< \
+ /Subtype /CIDFontType0 \
+@@ -164,7 +184,7 @@
+ /Ascent 752 /CapHeight 737 /Descent -221 /StemV 114 \
+ /FontBBox [-92 -250 1010 922] \
+ /ItalicAngle 0 /Flags 4 /XHeight 553 \
+-/Style << /Panose <000001000500000000000000> >> \
++/Style << /Panose <0801020b0600000000000000> >> \
+ >>"
+   },
+   {
+@@ -182,7 +202,7 @@
+ /Ascent 723 /CapHeight 709 /Descent -241 /StemV 69 \
+ /FontBBox [-123 -257 1001 910] \
+ /ItalicAngle 0 /Flags 6 /XHeight 450 \
+-/Style << /Panose <000002020500000000000000> >> \
++/Style << /Panose <010502020400000000000000> >> \
+ >>"
+   },
+   {

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-tex/texlive-bin.git


Reply to: