Hello community, here is the log from the commit of package texmath for openSUSE:Factory checked in at 2015-08-28 08:26:29 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/texmath (Old) and /work/SRC/openSUSE:Factory/.texmath.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "texmath" Changes: -------- --- /work/SRC/openSUSE:Factory/texmath/texmath.changes 2015-07-08 06:59:54.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.texmath.new/texmath.changes 2015-08-28 08:26:30.000000000 +0200 @@ -1,0 +2,7 @@ +Sun Aug 23 17:48:29 UTC 2015 - [email protected] + +- update to 0.8.3 +* Parse uppercase Greek letters as EIdentifier, not ESymbol Op. + This fixes handling of things like `$Lambda^1$`, particularly in omml. + +------------------------------------------------------------------- Old: ---- texmath-0.8.2.2.tar.gz New: ---- texmath-0.8.3.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ texmath.spec ++++++ --- /var/tmp/diff_new_pack.ZCnv49/_old 2015-08-28 08:26:31.000000000 +0200 +++ /var/tmp/diff_new_pack.ZCnv49/_new 2015-08-28 08:26:31.000000000 +0200 @@ -19,7 +19,7 @@ %global pkg_name texmath Name: texmath -Version: 0.8.2.2 +Version: 0.8.3 Release: 0 Summary: Conversion of LaTeX math formulas to MathML or OMML License: GPL-2.0 ++++++ texmath-0.8.2.2.tar.gz -> texmath-0.8.3.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/texmath-0.8.2.2/changelog new/texmath-0.8.3/changelog --- old/texmath-0.8.2.2/changelog 2015-07-05 00:11:08.000000000 +0200 +++ new/texmath-0.8.3/changelog 2015-08-18 18:44:37.000000000 +0200 @@ -1,3 +1,8 @@ +texmath (0.8.3) + + * Parse uppercase Greek letters as EIdentifier, not ESymbol Op. + This fixes handling of things like `$Lambda^1$`, particularly in omml. + texmath (0.8.2.2) * Handle `.` after number with no following digits. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/texmath-0.8.2.2/src/Text/TeXMath/Readers/TeX.hs new/texmath-0.8.3/src/Text/TeXMath/Readers/TeX.hs --- old/texmath-0.8.2.2/src/Text/TeXMath/Readers/TeX.hs 2015-07-05 00:11:08.000000000 +0200 +++ new/texmath-0.8.3/src/Text/TeXMath/Readers/TeX.hs 2015-08-18 18:44:37.000000000 +0200 @@ -723,38 +723,38 @@ , ("\\beta", EIdentifier "\x03B2") , ("\\chi", EIdentifier "\x03C7") , ("\\delta", EIdentifier "\x03B4") - , ("\\Delta", ESymbol Op "\x0394") + , ("\\Delta", EIdentifier "\x0394") , ("\\epsilon", EIdentifier "\x03F5") , ("\\varepsilon", EIdentifier "\x03B5") , ("\\eta", EIdentifier "\x03B7") , ("\\gamma", EIdentifier "\x03B3") - , ("\\Gamma", ESymbol Op "\x0393") + , ("\\Gamma", EIdentifier "\x0393") , ("\\iota", EIdentifier "\x03B9") , ("\\kappa", EIdentifier "\x03BA") , ("\\lambda", EIdentifier "\x03BB") - , ("\\Lambda", ESymbol Op "\x039B") + , ("\\Lambda", EIdentifier "\x039B") , ("\\mu", EIdentifier "\x03BC") , ("\\nu", EIdentifier "\x03BD") , ("\\omega", EIdentifier "\x03C9") - , ("\\Omega", ESymbol Op "\x03A9") + , ("\\Omega", EIdentifier "\x03A9") , ("\\phi", EIdentifier "\x03D5") , ("\\varphi", EIdentifier "\x03C6") - , ("\\Phi", ESymbol Op "\x03A6") + , ("\\Phi", EIdentifier "\x03A6") , ("\\pi", EIdentifier "\x03C0") - , ("\\Pi", ESymbol Op "\x03A0") + , ("\\Pi", EIdentifier "\x03A0") , ("\\psi", EIdentifier "\x03C8") - , ("\\Psi", ESymbol Ord "\x03A8") + , ("\\Psi", EIdentifier "\x03A8") , ("\\rho", EIdentifier "\x03C1") , ("\\sigma", EIdentifier "\x03C3") - , ("\\Sigma", ESymbol Op "\x03A3") + , ("\\Sigma", EIdentifier "\x03A3") , ("\\tau", EIdentifier "\x03C4") , ("\\theta", EIdentifier "\x03B8") , ("\\vartheta", EIdentifier "\x03D1") - , ("\\Theta", ESymbol Op "\x0398") + , ("\\Theta", EIdentifier "\x0398") , ("\\upsilon", EIdentifier "\x03C5") , ("\\Upsilon", EIdentifier "\x03A5") , ("\\xi", EIdentifier "\x03BE") - , ("\\Xi", ESymbol Op "\x039E") + , ("\\Xi", EIdentifier "\x039E") , ("\\zeta", EIdentifier "\x03B6") , ("\\pm", ESymbol Bin "\x00B1") , ("\\mp", ESymbol Bin "\x2213") diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/texmath-0.8.2.2/texmath.cabal new/texmath-0.8.3/texmath.cabal --- old/texmath-0.8.2.2/texmath.cabal 2015-07-05 00:11:08.000000000 +0200 +++ new/texmath-0.8.3/texmath.cabal 2015-08-18 18:44:37.000000000 +0200 @@ -1,5 +1,5 @@ Name: texmath -Version: 0.8.2.2 +Version: 0.8.3 Cabal-Version: >= 1.10 Build-type: Simple Synopsis: Conversion between formats used to represent mathematics.
