texlive[52509] Master: bxjatoucs (22oct19)

commits+karl at tug.org commits+karl at tug.org
Wed Oct 23 23:50:28 CEST 2019


Revision: 52509
          http://tug.org/svn/texlive?view=revision&revision=52509
Author:   karl
Date:     2019-10-23 23:50:28 +0200 (Wed, 23 Oct 2019)
Log Message:
-----------
bxjatoucs (22oct19)

Modified Paths:
--------------
    trunk/Master/tlpkg/bin/tlpkg-ctan-check
    trunk/Master/tlpkg/tlpsrc/collection-langjapanese.tlpsrc

Added Paths:
-----------
    trunk/Master/texmf-dist/doc/latex/bxjatoucs/
    trunk/Master/texmf-dist/doc/latex/bxjatoucs/LICENSE
    trunk/Master/texmf-dist/doc/latex/bxjatoucs/README.md
    trunk/Master/texmf-dist/fonts/tfm/public/bxjatoucs/
    trunk/Master/texmf-dist/fonts/tfm/public/bxjatoucs/bxjatoucs-cid.tfm
    trunk/Master/texmf-dist/fonts/tfm/public/bxjatoucs/bxjatoucs-jis.tfm
    trunk/Master/texmf-dist/tex/latex/bxjatoucs/
    trunk/Master/texmf-dist/tex/latex/bxjatoucs/bxjatoucs.sty
    trunk/Master/tlpkg/tlpsrc/bxjatoucs.tlpsrc

Added: trunk/Master/texmf-dist/doc/latex/bxjatoucs/LICENSE
===================================================================
--- trunk/Master/texmf-dist/doc/latex/bxjatoucs/LICENSE	                        (rev 0)
+++ trunk/Master/texmf-dist/doc/latex/bxjatoucs/LICENSE	2019-10-23 21:50:28 UTC (rev 52509)
@@ -0,0 +1,21 @@
+The MIT License
+
+Copyright (c) 2019 Takayuki YATO (aka. "ZR")
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.

Added: trunk/Master/texmf-dist/doc/latex/bxjatoucs/README.md
===================================================================
--- trunk/Master/texmf-dist/doc/latex/bxjatoucs/README.md	                        (rev 0)
+++ trunk/Master/texmf-dist/doc/latex/bxjatoucs/README.md	2019-10-23 21:50:28 UTC (rev 52509)
@@ -0,0 +1,97 @@
+BXjatoucs Package
+=================
+
+LaTeX: To convert Japanese character code to Unicode
+
+This package provides function-like (fully-expandable) macros that
+convert a character code value in several Japanese encodings to
+a Unicode value. Supported source encodings are: ISO-2022-JP (jis),
+EUC-JP (euc), Shift_JIS (sjis) and the Adobe-Japan1 glyph set.
+
+### System requirement
+
+  * TeX format: LaTeX and plain TeX.
+  * TeX engine: Anything that has e-TeX extension.
+  * Dependent packages:
+      - infwarerr
+      - ltxcmds
+
+### Installation
+
+  - `*.sty` → $TEXMF/tex/latex/bxjatoucs
+  - `*.tfm` → $TEXMF/fonts/tfm/public/bxjatoucs
+
+### License
+
+This package is distributed under the MIT License.
+
+
+The bxjatoucs Package ― main
+-----------------------------
+
+### Package Loading
+
+In plain TeX:
+
+    \input bxjatoucs.sty
+
+In LaTeX:
+
+    \usepackage{bxjatoucs}
+
+### Usage
+
+All the macros take an argument that forms a valid number and represents
+the input code value, and expands (in two steps) to the string that
+represents the output Unicode scalar value in decimal.
+
+  - `\bxjaJisToUcs{<value>}`: converts from a jis scalar value.
+  - `\bxjaEucToUcs{<value>}`: converts from an euc scalar value.
+  - `\bxjaSjisToUcs{<value>}`: converts from a sjis scalar value.
+  - `\bxjaCidToUcs{<value>}`: converts from an AJ1 CID value.
+
+There are variants that return in hexadecimal (zero-padded to at least
+four digits):
+
+  - `\bxjaJisToUcsHex{<value>}`
+  - `\bxjaEucToUcsHex{<value>}`
+  - `\bxjaSjisToUcsHex{<value>}`
+  - `\bxjaCidToUcsHex{<value>}`
+
+Note: These macros return zero (decimal `0` and hexadecimal `0000`)
+if the input number is out of the valid range of source encoding.
+If the input is malformed, the macros issue an error `Missing number`
+and then return zero.
+
+Additional variants:
+
+  - `\bxjaFastCidToUcs{<value>}`: same as `bxjaCidToUcs`, except that
+    the argument is assumed to be a valid decimal string.
+  - `\bxjaFastCidToUcsHex{<value>}`: same for `\bxjaCidToUcsHex`.
+
+## Example
+
+The following `\message` lines all display `23551:21496`.
+
+    \message{\bxjaJisToUcs{"3C77}:\bxjaJisToUcs{"3B4A}}
+    \message{\bxjaEucToUcs{"BCF7}:\bxjaEucToUcs{"BBCA}}
+    \message{\bxjaSjisToUcs{"8EF5}:\bxjaSjisToUcs{"8E69}}
+    \message{\bxjaCidToUcs{2339}:\bxjaCidToUcs{2200}}
+
+The following `\message` lines all display `5BFF:53F8`.
+
+    \message{\bxjaJisToUcsHex{"3C77}:\bxjaJisToUcsHex{"3B4A}}
+    \message{\bxjaEucToUcsHex{"BCF7}:\bxjaEucToUcsHex{"BBCA}}
+    \message{\bxjaSjisToUcsHex{"8EF5}:\bxjaSjisToUcsHex{"8E69}}
+    \message{\bxjaCidToUcsHex{2339}:\bxjaCidToUcsHex{2200}}
+
+
+Revision History
+----------------
+
+  * Version 0.2  ‹2019/10/20›
+      - The first public version.
+
+--------------------
+Takayuki YATO (aka. "ZR")  
+https://github.com/zr-tex8r


Property changes on: trunk/Master/texmf-dist/doc/latex/bxjatoucs/README.md
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: trunk/Master/texmf-dist/fonts/tfm/public/bxjatoucs/bxjatoucs-cid.tfm
===================================================================
(Binary files differ)

Index: trunk/Master/texmf-dist/fonts/tfm/public/bxjatoucs/bxjatoucs-cid.tfm
===================================================================
--- trunk/Master/texmf-dist/fonts/tfm/public/bxjatoucs/bxjatoucs-cid.tfm	2019-10-23 21:49:50 UTC (rev 52508)
+++ trunk/Master/texmf-dist/fonts/tfm/public/bxjatoucs/bxjatoucs-cid.tfm	2019-10-23 21:50:28 UTC (rev 52509)

Property changes on: trunk/Master/texmf-dist/fonts/tfm/public/bxjatoucs/bxjatoucs-cid.tfm
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Added: trunk/Master/texmf-dist/fonts/tfm/public/bxjatoucs/bxjatoucs-jis.tfm
===================================================================
(Binary files differ)

Index: trunk/Master/texmf-dist/fonts/tfm/public/bxjatoucs/bxjatoucs-jis.tfm
===================================================================
--- trunk/Master/texmf-dist/fonts/tfm/public/bxjatoucs/bxjatoucs-jis.tfm	2019-10-23 21:49:50 UTC (rev 52508)
+++ trunk/Master/texmf-dist/fonts/tfm/public/bxjatoucs/bxjatoucs-jis.tfm	2019-10-23 21:50:28 UTC (rev 52509)

Property changes on: trunk/Master/texmf-dist/fonts/tfm/public/bxjatoucs/bxjatoucs-jis.tfm
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Added: trunk/Master/texmf-dist/tex/latex/bxjatoucs/bxjatoucs.sty
===================================================================
--- trunk/Master/texmf-dist/tex/latex/bxjatoucs/bxjatoucs.sty	                        (rev 0)
+++ trunk/Master/texmf-dist/tex/latex/bxjatoucs/bxjatoucs.sty	2019-10-23 21:50:28 UTC (rev 52509)
@@ -0,0 +1,292 @@
+%%
+%% This is file 'bxjatoucs.sty'.
+%%
+%% Copyright (c) 2019 Takayuki YATO (aka. "ZR")
+%%   GitHub:   https://github.com/zr-tex8r
+%%   Twitter:  @zr_tex8r
+%%
+%% This package is distributed under the MIT License.
+%%
+%
+%% avoid multiple loading
+\csname\if11bxjatoucsLoaded\fi\endcsname
+%% code guards
+\edef\bxjatoucsLoaded{%
+\catcode32=\the\catcode32%
+\catcode34=\the\catcode34%
+\catcode43=\the\catcode43%
+\catcode45=\the\catcode45%
+\catcode46=\the\catcode46%
+\catcode47=\the\catcode47%
+\catcode58=\the\catcode58%
+\catcode60=\the\catcode60%
+\catcode62=\the\catcode62%
+\catcode63=\the\catcode63%
+\catcode64=\the\catcode64%
+\catcode96=\the\catcode96%
+\relax}
+\catcode32=10\relax
+\catcode34=12 % <">
+\catcode43=12 % <+>
+\catcode45=12 % <->
+\catcode46=12 % <.>
+\catcode47=12 % </>
+\catcode58=12 % <:>
+\catcode60=12 % <<>
+\catcode62=12 % <>>
+\catcode63=12 % <?>
+\catcode64=11 % <@>
+\catcode96=12 % <`>
+\edef\bxju at restore@codes{\bxjatoucsLoaded
+  \noexpand\let\noexpand\bxju at restore@codes\relax}
+\def\bxjatoucsLoaded{\endinput}
+
+%% check for LaTeX
+\ifx\RequirePackage\@undefined %<*!LaTeX>
+  \let\bxju at latex=f
+  \long\def\bxju at next#1\ProvidesPackage#2[#3]{%
+    \immediate\write-1{Package: #2 #3}}
+  \expandafter\bxju at next
+\else                          %<*LaTeX>
+  \let\bxju at latex=t
+\fi                            %</LaTeX>
+
+%% package declaration
+\NeedsTeXFormat{LaTeX2e}
+\ProvidesPackage{bxjatoucs}[2019/10/20 v0.2]
+\def\bxju at pkgname{bxjatoucs}
+
+%--------------------------------------- "check-avail"
+
+\let\bxju at bad\@undefined
+\ifx\bxjatoucsCheckAvail\@undefined\else \if t\bxju at latex
+  \IfFileExists{ltxcmds.sty}{}{\let\bxju at bad=t}
+  \IfFileExists{infwarerr.sty}{}{\let\bxju at bad=t}
+\fi\fi
+\ifx t\bxju at bad
+  \expandafter\let\csname ver@\bxju at pkgname.sty\endcsname\@undefined
+  \expandafter\let\csname \bxju at pkgname Loaded\endcsname\@undefined
+\bxju at restore@codes\endinput\fi
+
+%--------------------------------------- general
+
+\if t\bxju at latex    %-------<*LaTeX>
+
+%% packages
+\RequirePackage{ltxcmds}[2010/12/12]% v1.15
+\RequirePackage{infwarerr}[2010/04/08]% v1.3
+%% \bxju at ifdefinable
+\let\bxju at ifdefinable\@ifdefinable
+
+\else               %-------<*!LaTeX>
+
+%% package
+\input ltxcmds.sty
+\input infwarerr.sty
+%% \bxju at ifdefinable
+\def\bxju at ifdefinable#1{%
+  \ifx#1\@undefined \expandafter\ltx at secondoftwo
+  \else \expandafter\ltx at firstoftwo
+  \fi{%
+    \@PackageError\bxju at pkgname
+     {Command \noexpand#1 already defined}{\@ehd}%
+  }}
+
+\fi                 %-------</LaTeX>
+
+%% unique tokens
+\def\bxju at end{\bxju at end@}
+\let\bxju at mk\indent % unexpandable
+
+%% \bxju at cond\ifXXX...\fi{<true>}{<false>}
+\ltx at gobbletwo\if\if \def\bxju at cond#1\fi{%
+  #1\expandafter\ltx at firstoftwo \else\expandafter\ltx at secondoftwo \fi}
+
+%% \bxju at cond@both\ifXXX...\fi\ifYYY...\fi{<true>}{<false>}
+\ltx at gobblefour\if\if\if\if \def\bxju at cond@both#1\fi#2\fi{%
+  \bxju at cond{\if #1#2T\else F\fi\else F\fi T}\fi}
+
+%% \bxju at burst-`>...
+\let\bxju at burst\romannumeral
+
+%% check engine
+\ifx\numexpr\@undefined
+  \@PackageError\bxju at pkgname
+   {Not running under e-TeX}{\@ehd}
+\bxju at restore@codes\endinput\fi
+
+%--------------------------------------- user interface
+
+% Each function twice-expands to the unicode codevalue.
+
+%%<*> \bxjaCidToUcs{<cid>}
+\bxju at ifdefinable\bxjaCidToUcs{%
+  \def\bxjaCidToUcs{%
+    \bxju at burst-`>\bxju at cid@to at ucs}}
+%%<*> \bxjaJisToUcs{<jis>}
+\bxju at ifdefinable\bxjaJisToUcs{%
+  \def\bxjaJisToUcs{%
+    \bxju at burst-`>\bxju at jis@to at ucs}}
+%%<*> \bxjaEucToUcs{<euc>}
+\bxju at ifdefinable\bxjaEucToUcs{%
+  \def\bxjaEucToUcs{%
+    \bxju at burst-`>\bxju at euc@to at ucs}}
+%%<*> \bxjaSjisToUcs{<sjis>}
+\bxju at ifdefinable\bxjaSjisToUcs{%
+  \def\bxjaSjisToUcs{%
+    \bxju at burst-`>\bxju at sjis@to at ucs}}
+%%<*> \bxjaFastCidToUcs{<cid>}
+\bxju at ifdefinable\bxjaFastCidToUcs{%
+  \def\bxjaFastCidToUcs{%
+    \bxju at burst-`>\bxju at fast@cid at to@ucs}}
+%%<*> \bxjaFastJscToUcs{<jsc>}
+\bxju at ifdefinable\bxjaFastJscToUcs{%
+  \def\bxjaFastJscToUcs{%
+    \bxju at burst-`>\bxju at fast@jsc at to@ucs}}
+%%<*> \bxjaCidToUcsHex{<cid>}
+\bxju at ifdefinable\bxjaCidToUcsHex{%
+  \def\bxjaCidToUcsHex{%
+    \bxju at burst-`>\bxju at in@hex\bxju at cid@to at ucs}}
+%%<*> \bxjaJisToUcsHex{<jis>}
+\bxju at ifdefinable\bxjaJisToUcsHex{%
+  \def\bxjaJisToUcsHex{%
+    \bxju at burst-`>\bxju at in@hex\bxju at jis@to at ucs}}
+%%<*> \bxjaEucToUcsHex{<euc>}
+\bxju at ifdefinable\bxjaEucToUcsHex{%
+  \def\bxjaEucToUcsHex{%
+    \bxju at burst-`>\bxju at in@hex\bxju at euc@to at ucs}}
+%%<*> \bxjaSjisToUcsHex{<sjis>}
+\bxju at ifdefinable\bxjaSjisToUcsHex{%
+  \def\bxjaSjisToUcsHex{%
+    \bxju at burst-`>\bxju at in@hex\bxju at sjis@to at ucs}}
+%%<*> \bxjaFastCidToUcsHex{<cid>}
+\bxju at ifdefinable\bxjaFastCidToUcsHex{%
+  \def\bxjaFastCidToUcsHex{%
+    \bxju at burst-`>\bxju at in@hex\bxju at fast@cid at to@ucs}}
+%%<*> \bxjaFastJscToUcsHex{<jsc>}
+\bxju at ifdefinable\bxjaFastJscToUcsHex{%
+  \def\bxjaFastJscToUcsHex{%
+    \bxju at burst-`>\bxju at in@hex\bxju at fast@jsc at to@ucs}}
+
+%--------------------------------------- auxiliary
+
+%% \bxju at check@number{<text>}\CScont
+% Checks if the text is a valid number; if invalid, it causes
+% "missing number" error and returns 0; if valid, returns the
+% larger of 0 and the input number (in decimal).
+\def\bxju at check@number#1{%
+  \expandafter\bxju at check@number at a\the\parshapeindent#1\bxju at mk{#1}}
+\begingroup \lccode`?=`p \lowercase{\endgroup
+  \def\bxju at check@number at a#1?}#2#3\bxju at mk{%
+  \ltx at ifempty{#3}{\bxju at check@number at c}{%else
+    \expandafter\bxju at check@number at b\number\bxju at mk}}
+\def\bxju at check@number at b#1\bxju at mk#2#3{#3{#1}}
+\def\bxju at check@number at c#1{%
+  \expandafter\bxju at check@number at d\number#1\bxju at mk}
+\def\bxju at check@number at d#1\bxju at mk#2{%
+  \bxju at cond\ifnum#1>\ltx at zero\fi{#2{#1}}{#2{0}}}
+
+%% \bxju at decomp{<number>}\CScont
+% Divides the <number> by 256 and returns the quotient and
+% the remainder as \CScont{<high>}{<low>}.
+\def\bxju at decomp#1{%
+  \expandafter\bxju at decomp@a\number\dimexpr.00390625\dimexpr#1sp:#1:}
+\def\bxju at decomp@a#1:#2:{%
+  \expandafter\bxju at decomp@b\the\numexpr#2-#1*256:#1:}
+\def\bxju at decomp@b#1:#2:#3{#3{#2}{#1}}
+
+%% \bxju at in@hex\CSconv{<arg>}
+\def\bxju at in@hex#1#2{%
+  \expandafter\bxju at in@hex at a\bxju at burst-`>#1{#2}:>}
+\def\bxju at in@hex at a#1:>{%
+  \bxju at to@hex{#1}}
+
+%% \bxju at to@hex{<number>}
+\def\bxju at to@hex#1{% {N}
+  \bxju at to@hex at a#1:4::}% at least 4 digits
+\def\bxju at to@hex at a#1:#2:#3:{% N:C:H:|
+  \bxju at cond@both\ifnum#1=\ltx at zero\fi\ifnum#2<\ltx at one\fi{#3}{%else
+    \expandafter\bxju at to@hex at b\number\dimexpr.0625\dimexpr#1sp%
+    \expandafter:\the\numexpr#2-1:#1:#3:}}
+\def\bxju at to@hex at b#1:#2:#3:{% Q:C:N:|H:
+  \expandafter\bxju at to@hex at c\the\numexpr#3-#1*16:#2:#1:}
+\def\bxju at to@hex at c#1:{% R:|C:Q:H:
+  \expandafter\expandafter\expandafter\bxju at to@hex at d
+      \csname bxju at H/#1\endcsname:}
+\def\bxju at to@hex at d#1:#2:#3:#4:{% D:C:Q:H:
+  \bxju at to@hex at a#3:#2:#1#4:}
+\begingroup
+  \def\do#1{\expandafter\gdef\csname bxju at H/\number"#1\endcsname{#1}}
+  \do0\do1\do2\do3\do4\do5\do6\do7\do8\do9\do A\do B\do C\do D\do E\do F
+\endgroup
+
+%--------------------------------------- conversions
+
+%% constants
+\mathchardef\bxju at max@cid=23059
+\mathchardef\bxju at minb@jis="21
+\mathchardef\bxju at minb@euc="A1
+\mathchardef\bxju at jisrs=94
+
+%% umbralist fontdefs
+\font\bxju at ul@cid=bxjatoucs-cid
+\font\bxju at ul@jis=bxjatoucs-jis
+
+%% \bxju at cid@to at ucs{<cid>}
+\def\bxju at cid@to at ucs#1{%
+  \bxju at check@number{#1}\bxju at cid@to at ucs@a}
+\def\bxju at cid@to at ucs@a#1{%
+  \bxju at cond\ifnum#1>\bxju at max@cid\fi{0}{%
+    \number\fontdimen\numexpr#1+8\bxju at ul@cid}}
+
+%% \bxju at jis@to at ucs{<jis>}
+\def\bxju at jis@to at ucs#1{%
+  \bxju at check@number{#1}{\bxju at je@to at ucs\bxju at minb@jis}}
+%% \bxju at euc@to at ucs{<euc>}
+\def\bxju at euc@to at ucs#1{%
+  \bxju at check@number{#1}{\bxju at je@to at ucs\bxju at minb@euc}}
+\def\bxju at je@to at ucs#1#2{%
+  \bxju at decomp{#2}{\bxju at je@to at ucs@a#1}}
+\def\bxju at je@to at ucs@a#1#2#3{%
+  \expandafter\bxju at je@to at ucs@b\the\numexpr#2-#1\expandafter\bxju at mk
+      \the\numexpr#3-#1\bxju at mk}
+\def\bxju at je@to at ucs@b#1\bxju at mk#2\bxju at mk{%
+  \expandafter\bxju at je@to at ucs@c\the\numexpr
+    (\ifnum#1<\ltx at zero -9 \else\ifnum#1<\bxju at jisrs #1 \else
+     -9 \fi\fi)*\bxju at jisrs+%
+    (\ifnum#2<\ltx at zero -9999 \else\ifnum#2<\bxju at jisrs #2 \else
+     -9999 \fi\fi)\bxju at mk}
+\def\bxju at je@to at ucs@c#1\bxju at mk{%
+  \bxju at cond\ifnum#1<\ltx at zero\fi{0}{%
+    \number\fontdimen\numexpr#1+8\bxju at ul@jis}}
+
+%% \bxju at sjis@to at ucs{<euc>}
+\def\bxju at sjis@to at ucs#1{%
+  \bxju at check@number{#1}\bxju at sjis@to at ucs@a}
+\def\bxju at sjis@to at ucs@a#1{%
+  \bxju at decomp{#1}\bxju at sjis@to at ucs@b}
+\def\bxju at sjis@to at ucs@b#1#2{%
+  \expandafter\bxju at sjis@to at ucs@c\the\numexpr
+    (\ifnum#1<129 -9 \else\ifnum#1<160 #1-129 \else
+     \ifnum#1<224 -9 \else\ifnum#1<240 #1-193 \else
+     -9 \fi\fi\fi\fi)*188+%
+    (\ifnum#2<64 -9999 \else\ifnum#2<127 #2-64 \else
+     \ifnum#2<128 -9999 \else\ifnum#2<253 #2-65 \else
+     -9999 \fi\fi\fi\fi)\bxju at mk}
+\def\bxju at sjis@to at ucs@c#1\bxju at mk{%
+  \bxju at cond\ifnum#1<\ltx at zero\fi{0}{%
+    \number\fontdimen\numexpr#1+8\bxju at ul@jis}}
+
+%% \bxju at fast@cid at to@ucs{<cid>}
+\def\bxju at fast@cid at to@ucs#1{%
+  \number\fontdimen\numexpr(#1)+8\bxju at ul@cid}
+%% \bxju at fast@jsc at to@ucs{<jsc>}
+\def\bxju at fast@jsc at to@ucs#1{%
+  \number\fontdimen\numexpr(#1)+8\bxju at ul@jis}
+
+%--------------------------------------- all done
+\let\bxju at next\@undefined
+\let\bxju at ifdefinable\@undefined
+\bxju at restore@codes
+\endinput
+%% EOF


Property changes on: trunk/Master/texmf-dist/tex/latex/bxjatoucs/bxjatoucs.sty
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Modified: trunk/Master/tlpkg/bin/tlpkg-ctan-check
===================================================================
--- trunk/Master/tlpkg/bin/tlpkg-ctan-check	2019-10-23 21:49:50 UTC (rev 52508)
+++ trunk/Master/tlpkg/bin/tlpkg-ctan-check	2019-10-23 21:50:28 UTC (rev 52509)
@@ -134,7 +134,7 @@
     breakcites breakurl bredzenie breqn bropd brushscr
     bullcntr bundledoc burmese businesscard-qrcode bussproofs bussproofs-extra
     bxbase bxcalc bxcjkjatype bxdpx-beamer bxdvidriver bxghost
-    bxjaholiday bxjaprnind bxpapersize bxpdfver bxeepic bxenclose
+    bxjaholiday bxjaprnind bxjatoucs bxpapersize bxpdfver bxeepic bxenclose
     bxjalipsum bxjscls bxnewfont bxorigcapt bxtexlogo bxwareki bytefield 
   c90 c-pascal cabin cachepic caladea calcage calctab calculation calculator
     calligra calligra-type1 callouts calrsfs cals calxxxx-yyyy cancel

Added: trunk/Master/tlpkg/tlpsrc/bxjatoucs.tlpsrc
===================================================================
Modified: trunk/Master/tlpkg/tlpsrc/collection-langjapanese.tlpsrc
===================================================================
--- trunk/Master/tlpkg/tlpsrc/collection-langjapanese.tlpsrc	2019-10-23 21:49:50 UTC (rev 52508)
+++ trunk/Master/tlpkg/tlpsrc/collection-langjapanese.tlpsrc	2019-10-23 21:50:28 UTC (rev 52509)
@@ -12,6 +12,7 @@
 depend bxjaholiday
 depend bxjalipsum
 depend bxjaprnind
+depend bxjatoucs
 depend bxjscls
 depend bxorigcapt
 depend bxwareki



More information about the tex-live-commits mailing list