Package: src:plastex
Version: 3.0-3
Severity: serious
Tags: ftbfs

Dear maintainer:

During a rebuild of all packages in unstable, your package failed to build:

--------------------------------------------------------------------------------
[...]
 debian/rules binary
dh binary --with python3 --buildsystem=pybuild
   dh_update_autotools_config -O--buildsystem=pybuild
   dh_autoreconf -O--buildsystem=pybuild
   dh_auto_configure -O--buildsystem=pybuild
   dh_auto_build -O--buildsystem=pybuild
I: pybuild plugin_pyproject:129: Building wheel for python3.12 with "build" 
module
I: pybuild base:311: python3.12 -m build --skip-dependency-check --no-isolation --wheel 
--outdir /<<PKGBUILDDIR>>/.pybuild/cpython3_3.12_plastex
* Building wheel...
running bdist_wheel
running build
running build_py
creating build
creating build/lib

[... snipped ...]

(/usr/share/texlive/texmf-dist/tex/latex/base/ts1cmr.fd)
(/usr/share/texlive/texmf-dist/tex/latex/microtype/mt-LatinModernRoman.cfg)
[1{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map}] (./test.aux))
 406 words of node memory still in use:
   3 hlist, 1 vlist, 1 rule, 2 glue, 3 kern, 1 glyph, 4 attribute, 48 glue_spec
, 4 attribute_list, 1 write nodes
   avail lists: 1:1,2:23,3:4,4:2,5:24,6:3,7:60,9:18,11:4
</usr/share/texmf/fonts/opentype/public/lm/lmroman10-regular.otf>
Output written on test.pdf (1 page, 3883 bytes).
Transcript written on test.log.
__________________________ test_expandafter_undefined __________________________

    def test_expandafter_undefined():
      compare_output(r'\def\xx{\yy}\expandafter\def\xx{a}\yy')

unittests/Primitives.py:8:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

tex = 
'\\nonstopmode\\AtBeginDocument{\\thispagestyle{empty}}\\documentclass{article}\\usepackage{microtype}\\DisableLigatures{encoding
 = *, family = 
*}\\begin{document}\\def\\xx{\\yy}\\expandafter\\def\\xx{a}\\yy\\end{document}'

    def compare_output(tex: str):
        r"""
        This checks whether plastex produces the same output as tex. This only 
works
        for things with simple plain text output, and is intended to be used for
        testing primitives such as \let, \def, \expandafter etc.
        """
        if not CACHE_LOCATION.is_dir():
            CACHE_LOCATION.mkdir()
cwd = os.getcwd()
        try:
            plastex_out = TeX().input(tex).parse().textContent.strip()
            tex_hash = md5(tex.encode('utf-8')).hexdigest()
            tex_out = None
            try:
                tex_out = (CACHE_LOCATION / tex_hash).read_text()
            except IOError:
                with TemporaryDirectory() as tmpdir:
                    os.chdir(tmpdir)
if r'\documentclass{article}' not in tex:
                        tex = 
r'\documentclass{article}\usepackage{microtype}\DisableLigatures{encoding = *, 
family = *}\begin{document}' + tex + r'\end{document}'
                    tex = 
r'\nonstopmode\AtBeginDocument{\thispagestyle{empty}}' + tex
with open("test.tex", "w") as f:
                        f.write(tex)
subprocess.run(["lualatex", "test.tex"], check=True)
                    if not os.path.exists("test.pdf"):
                        # If pdflatex was successful but a pdf file was not 
produced,
                        # this means 0 pages were produced, so the content is 
empty.
                        return plastex_out.strip() == ""
out = subprocess.run(
                            ["gs", "-q", "-sDEVICE=txtwrite", "-o", "%stdout%", 
"test.pdf"],
                            check=True,
                            stdout=subprocess.PIPE,
                            stdin=subprocess.DEVNULL,
                            universal_newlines=True)
                    tex_out = out.stdout.strip()
                    (CACHE_LOCATION / tex_hash).write_text(tex_out)
          assert plastex_out == tex_out, ('%r != %r ' % (plastex_out, tex_out))
E           AssertionError: 'a' != ''
E           assert 'a' == ''
E
E             + a

unittests/helpers/utils.py:83: AssertionError
----------------------------- Captured stdout call -----------------------------
This is LuaHBTeX, Version 1.18.0 (TeX Live 2025/dev/Debian)
 restricted system commands enabled.
(./test.tex
LaTeX2e <2024-06-01> patch level 2
L3 programming layer <2024-08-16>

(/usr/share/texlive/texmf-dist/tex/latex/base/article.cls
Document Class: article 2024/02/08 v1.4n Standard LaTeX document class
(/usr/share/texlive/texmf-dist/tex/latex/base/size10.clo))
(/usr/share/texlive/texmf-dist/tex/latex/microtype/microtype.sty
(/usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty)
(/usr/share/texlive/texmf-dist/tex/latex/etoolbox/etoolbox.sty)
(/usr/share/texlive/texmf-dist/tex/latex/microtype/microtype-luatex.def)
(/usr/share/texlive/texmf-dist/tex/latex/microtype/microtype.cfg))
(/usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-luatex.def)
No file test.aux.
(/usr/share/texlive/texmf-dist/tex/latex/base/ts1cmr.fd)
(/usr/share/texlive/texmf-dist/tex/latex/microtype/mt-LatinModernRoman.cfg)
[1{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map}] (./test.aux))
 406 words of node memory still in use:
   3 hlist, 1 vlist, 1 rule, 2 glue, 3 kern, 1 glyph, 4 attribute, 48 glue_spec
, 4 attribute_list, 1 write nodes
   avail lists: 1:2,2:23,3:4,4:1,5:22,6:3,7:24,9:18
</usr/share/texmf/fonts/opentype/public/lm/lmroman10-regular.otf>
Output written on test.pdf (1 page, 2501 bytes).
Transcript written on test.log.
_________________________ test_expandafter_def_csname __________________________

    def test_expandafter_def_csname():
      compare_output(r'\expandafter\def\csname xx\endcsname{a}\xx')

unittests/Primitives.py:11:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

tex = 
'\\nonstopmode\\AtBeginDocument{\\thispagestyle{empty}}\\documentclass{article}\\usepackage{microtype}\\DisableLigatures{encoding
 = *, family = *}\\begin{document}\\expandafter\\def\\csname 
xx\\endcsname{a}\\xx\\end{document}'

    def compare_output(tex: str):
        r"""
        This checks whether plastex produces the same output as tex. This only 
works
        for things with simple plain text output, and is intended to be used for
        testing primitives such as \let, \def, \expandafter etc.
        """
        if not CACHE_LOCATION.is_dir():
            CACHE_LOCATION.mkdir()
cwd = os.getcwd()
        try:
            plastex_out = TeX().input(tex).parse().textContent.strip()
            tex_hash = md5(tex.encode('utf-8')).hexdigest()
            tex_out = None
            try:
                tex_out = (CACHE_LOCATION / tex_hash).read_text()
            except IOError:
                with TemporaryDirectory() as tmpdir:
                    os.chdir(tmpdir)
if r'\documentclass{article}' not in tex:
                        tex = 
r'\documentclass{article}\usepackage{microtype}\DisableLigatures{encoding = *, 
family = *}\begin{document}' + tex + r'\end{document}'
                    tex = 
r'\nonstopmode\AtBeginDocument{\thispagestyle{empty}}' + tex
with open("test.tex", "w") as f:
                        f.write(tex)
subprocess.run(["lualatex", "test.tex"], check=True)
                    if not os.path.exists("test.pdf"):
                        # If pdflatex was successful but a pdf file was not 
produced,
                        # this means 0 pages were produced, so the content is 
empty.
                        return plastex_out.strip() == ""
out = subprocess.run(
                            ["gs", "-q", "-sDEVICE=txtwrite", "-o", "%stdout%", 
"test.pdf"],
                            check=True,
                            stdout=subprocess.PIPE,
                            stdin=subprocess.DEVNULL,
                            universal_newlines=True)
                    tex_out = out.stdout.strip()
                    (CACHE_LOCATION / tex_hash).write_text(tex_out)
          assert plastex_out == tex_out, ('%r != %r ' % (plastex_out, tex_out))
E           AssertionError: 'a' != ''
E           assert 'a' == ''
E
E             + a

unittests/helpers/utils.py:83: AssertionError
----------------------------- Captured stdout call -----------------------------
This is LuaHBTeX, Version 1.18.0 (TeX Live 2025/dev/Debian)
 restricted system commands enabled.
(./test.tex
LaTeX2e <2024-06-01> patch level 2
L3 programming layer <2024-08-16>

(/usr/share/texlive/texmf-dist/tex/latex/base/article.cls
Document Class: article 2024/02/08 v1.4n Standard LaTeX document class
(/usr/share/texlive/texmf-dist/tex/latex/base/size10.clo))
(/usr/share/texlive/texmf-dist/tex/latex/microtype/microtype.sty
(/usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty)
(/usr/share/texlive/texmf-dist/tex/latex/etoolbox/etoolbox.sty)
(/usr/share/texlive/texmf-dist/tex/latex/microtype/microtype-luatex.def)
(/usr/share/texlive/texmf-dist/tex/latex/microtype/microtype.cfg))
(/usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-luatex.def)
No file test.aux.
(/usr/share/texlive/texmf-dist/tex/latex/base/ts1cmr.fd)
(/usr/share/texlive/texmf-dist/tex/latex/microtype/mt-LatinModernRoman.cfg)
[1{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map}] (./test.aux))
 406 words of node memory still in use:
   3 hlist, 1 vlist, 1 rule, 2 glue, 3 kern, 1 glyph, 4 attribute, 48 glue_spec
, 4 attribute_list, 1 write nodes
   avail lists: 1:2,2:23,3:4,4:1,5:22,6:3,7:24,9:18
</usr/share/texmf/fonts/opentype/public/lm/lmroman10-regular.otf>
Output written on test.pdf (1 page, 2501 bytes).
Transcript written on test.log.
_________________________ test_expandafter_let_csname __________________________

    def test_expandafter_let_csname():
      compare_output(r'\expandafter\let\csname xx\endcsname=a\xx')

unittests/Primitives.py:14:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

tex = 
'\\nonstopmode\\AtBeginDocument{\\thispagestyle{empty}}\\documentclass{article}\\usepackage{microtype}\\DisableLigatures{encoding
 = *, family = *}\\begin{document}\\expandafter\\let\\csname 
xx\\endcsname=a\\xx\\end{document}'

    def compare_output(tex: str):
        r"""
        This checks whether plastex produces the same output as tex. This only 
works
        for things with simple plain text output, and is intended to be used for
        testing primitives such as \let, \def, \expandafter etc.
        """
        if not CACHE_LOCATION.is_dir():
            CACHE_LOCATION.mkdir()
cwd = os.getcwd()
        try:
            plastex_out = TeX().input(tex).parse().textContent.strip()
            tex_hash = md5(tex.encode('utf-8')).hexdigest()
            tex_out = None
            try:
                tex_out = (CACHE_LOCATION / tex_hash).read_text()
            except IOError:
                with TemporaryDirectory() as tmpdir:
                    os.chdir(tmpdir)
if r'\documentclass{article}' not in tex:
                        tex = 
r'\documentclass{article}\usepackage{microtype}\DisableLigatures{encoding = *, 
family = *}\begin{document}' + tex + r'\end{document}'
                    tex = 
r'\nonstopmode\AtBeginDocument{\thispagestyle{empty}}' + tex
with open("test.tex", "w") as f:
                        f.write(tex)
subprocess.run(["lualatex", "test.tex"], check=True)
                    if not os.path.exists("test.pdf"):
                        # If pdflatex was successful but a pdf file was not 
produced,
                        # this means 0 pages were produced, so the content is 
empty.
                        return plastex_out.strip() == ""
out = subprocess.run(
                            ["gs", "-q", "-sDEVICE=txtwrite", "-o", "%stdout%", 
"test.pdf"],
                            check=True,
                            stdout=subprocess.PIPE,
                            stdin=subprocess.DEVNULL,
                            universal_newlines=True)
                    tex_out = out.stdout.strip()
                    (CACHE_LOCATION / tex_hash).write_text(tex_out)
          assert plastex_out == tex_out, ('%r != %r ' % (plastex_out, tex_out))
E           AssertionError: 'a' != ''
E           assert 'a' == ''
E
E             + a

unittests/helpers/utils.py:83: AssertionError
----------------------------- Captured stdout call -----------------------------
This is LuaHBTeX, Version 1.18.0 (TeX Live 2025/dev/Debian)
 restricted system commands enabled.
(./test.tex
LaTeX2e <2024-06-01> patch level 2
L3 programming layer <2024-08-16>

(/usr/share/texlive/texmf-dist/tex/latex/base/article.cls
Document Class: article 2024/02/08 v1.4n Standard LaTeX document class
(/usr/share/texlive/texmf-dist/tex/latex/base/size10.clo))
(/usr/share/texlive/texmf-dist/tex/latex/microtype/microtype.sty
(/usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty)
(/usr/share/texlive/texmf-dist/tex/latex/etoolbox/etoolbox.sty)
(/usr/share/texlive/texmf-dist/tex/latex/microtype/microtype-luatex.def)
(/usr/share/texlive/texmf-dist/tex/latex/microtype/microtype.cfg))
(/usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-luatex.def)
No file test.aux.
(/usr/share/texlive/texmf-dist/tex/latex/base/ts1cmr.fd)
(/usr/share/texlive/texmf-dist/tex/latex/microtype/mt-LatinModernRoman.cfg)
[1{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map}] (./test.aux))
 406 words of node memory still in use:
   3 hlist, 1 vlist, 1 rule, 2 glue, 3 kern, 1 glyph, 4 attribute, 48 glue_spec
, 4 attribute_list, 1 write nodes
   avail lists: 1:2,2:23,3:4,4:1,5:22,6:3,7:24,9:18
</usr/share/texmf/fonts/opentype/public/lm/lmroman10-regular.otf>
Output written on test.pdf (1 page, 2501 bytes).
Transcript written on test.log.
____________________________ test_expandafter_once _____________________________

    def test_expandafter_once():
      compare_output(r'\def\a{ab}\def\b{\a}\def\foo#1{#1.}\expandafter\foo\b')

unittests/Primitives.py:17:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

tex = 
'\\nonstopmode\\AtBeginDocument{\\thispagestyle{empty}}\\documentclass{article}\\usepackage{microtype}\\DisableLigatur...coding
 = *, family = 
*}\\begin{document}\\def\\a{ab}\\def\\b{\\a}\\def\\foo#1{#1.}\\expandafter\\foo\\b\\end{document}'

    def compare_output(tex: str):
        r"""
        This checks whether plastex produces the same output as tex. This only 
works
        for things with simple plain text output, and is intended to be used for
        testing primitives such as \let, \def, \expandafter etc.
        """
        if not CACHE_LOCATION.is_dir():
            CACHE_LOCATION.mkdir()
cwd = os.getcwd()
        try:
            plastex_out = TeX().input(tex).parse().textContent.strip()
            tex_hash = md5(tex.encode('utf-8')).hexdigest()
            tex_out = None
            try:
                tex_out = (CACHE_LOCATION / tex_hash).read_text()
            except IOError:
                with TemporaryDirectory() as tmpdir:
                    os.chdir(tmpdir)
if r'\documentclass{article}' not in tex:
                        tex = 
r'\documentclass{article}\usepackage{microtype}\DisableLigatures{encoding = *, 
family = *}\begin{document}' + tex + r'\end{document}'
                    tex = 
r'\nonstopmode\AtBeginDocument{\thispagestyle{empty}}' + tex
with open("test.tex", "w") as f:
                        f.write(tex)
subprocess.run(["lualatex", "test.tex"], check=True)
                    if not os.path.exists("test.pdf"):
                        # If pdflatex was successful but a pdf file was not 
produced,
                        # this means 0 pages were produced, so the content is 
empty.
                        return plastex_out.strip() == ""
out = subprocess.run(
                            ["gs", "-q", "-sDEVICE=txtwrite", "-o", "%stdout%", 
"test.pdf"],
                            check=True,
                            stdout=subprocess.PIPE,
                            stdin=subprocess.DEVNULL,
                            universal_newlines=True)
                    tex_out = out.stdout.strip()
                    (CACHE_LOCATION / tex_hash).write_text(tex_out)
          assert plastex_out == tex_out, ('%r != %r ' % (plastex_out, tex_out))
E           AssertionError: 'ab.' != '#X'
E           assert 'ab.' == '#X'
E
E             - #X
E             + ab.

unittests/helpers/utils.py:83: AssertionError
----------------------------- Captured stdout call -----------------------------
This is LuaHBTeX, Version 1.18.0 (TeX Live 2025/dev/Debian)
 restricted system commands enabled.
(./test.tex
LaTeX2e <2024-06-01> patch level 2
L3 programming layer <2024-08-16>

(/usr/share/texlive/texmf-dist/tex/latex/base/article.cls
Document Class: article 2024/02/08 v1.4n Standard LaTeX document class
(/usr/share/texlive/texmf-dist/tex/latex/base/size10.clo))
(/usr/share/texlive/texmf-dist/tex/latex/microtype/microtype.sty
(/usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty)
(/usr/share/texlive/texmf-dist/tex/latex/etoolbox/etoolbox.sty)
(/usr/share/texlive/texmf-dist/tex/latex/microtype/microtype-luatex.def)
(/usr/share/texlive/texmf-dist/tex/latex/microtype/microtype.cfg))
(/usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-luatex.def)
No file test.aux.
(/usr/share/texlive/texmf-dist/tex/latex/base/ts1cmr.fd)
(/usr/share/texlive/texmf-dist/tex/latex/microtype/mt-LatinModernRoman.cfg)
[1{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map}] (./test.aux))
 406 words of node memory still in use:
   3 hlist, 1 vlist, 1 rule, 2 glue, 3 kern, 1 glyph, 4 attribute, 48 glue_spec
, 4 attribute_list, 1 write nodes
   avail lists: 2:23,3:4,4:2,5:23,6:3,7:30,8:1,9:18
</usr/share/texmf/fonts/opentype/public/lm/lmroman10-regular.otf>
Output written on test.pdf (1 page, 2711 bytes).
Transcript written on test.log.
__________________________ test_expandafter_non_macro __________________________

    def test_expandafter_non_macro():
      compare_output(r'\def\foo#1{#1.}\expandafter\foo ab')

unittests/Primitives.py:20:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

tex = 
'\\nonstopmode\\AtBeginDocument{\\thispagestyle{empty}}\\documentclass{article}\\usepackage{microtype}\\DisableLigatures{encoding
 = *, family = *}\\begin{document}\\def\\foo#1{#1.}\\expandafter\\foo 
ab\\end{document}'

    def compare_output(tex: str):
        r"""
        This checks whether plastex produces the same output as tex. This only 
works
        for things with simple plain text output, and is intended to be used for
        testing primitives such as \let, \def, \expandafter etc.
        """
        if not CACHE_LOCATION.is_dir():
            CACHE_LOCATION.mkdir()
cwd = os.getcwd()
        try:
            plastex_out = TeX().input(tex).parse().textContent.strip()
            tex_hash = md5(tex.encode('utf-8')).hexdigest()
            tex_out = None
            try:
                tex_out = (CACHE_LOCATION / tex_hash).read_text()
            except IOError:
                with TemporaryDirectory() as tmpdir:
                    os.chdir(tmpdir)
if r'\documentclass{article}' not in tex:
                        tex = 
r'\documentclass{article}\usepackage{microtype}\DisableLigatures{encoding = *, 
family = *}\begin{document}' + tex + r'\end{document}'
                    tex = 
r'\nonstopmode\AtBeginDocument{\thispagestyle{empty}}' + tex
with open("test.tex", "w") as f:
                        f.write(tex)
subprocess.run(["lualatex", "test.tex"], check=True)
                    if not os.path.exists("test.pdf"):
                        # If pdflatex was successful but a pdf file was not 
produced,
                        # this means 0 pages were produced, so the content is 
empty.
                        return plastex_out.strip() == ""
out = subprocess.run(
                            ["gs", "-q", "-sDEVICE=txtwrite", "-o", "%stdout%", 
"test.pdf"],
                            check=True,
                            stdout=subprocess.PIPE,
                            stdin=subprocess.DEVNULL,
                            universal_newlines=True)
                    tex_out = out.stdout.strip()
                    (CACHE_LOCATION / tex_hash).write_text(tex_out)
          assert plastex_out == tex_out, ('%r != %r ' % (plastex_out, tex_out))
E           AssertionError: 'a.b' != 'X#'
E           assert 'a.b' == 'X#'
E
E             - X#
E             + a.b

unittests/helpers/utils.py:83: AssertionError
----------------------------- Captured stdout call -----------------------------
This is LuaHBTeX, Version 1.18.0 (TeX Live 2025/dev/Debian)
 restricted system commands enabled.
(./test.tex
LaTeX2e <2024-06-01> patch level 2
L3 programming layer <2024-08-16>

(/usr/share/texlive/texmf-dist/tex/latex/base/article.cls
Document Class: article 2024/02/08 v1.4n Standard LaTeX document class
(/usr/share/texlive/texmf-dist/tex/latex/base/size10.clo))
(/usr/share/texlive/texmf-dist/tex/latex/microtype/microtype.sty
(/usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty)
(/usr/share/texlive/texmf-dist/tex/latex/etoolbox/etoolbox.sty)
(/usr/share/texlive/texmf-dist/tex/latex/microtype/microtype-luatex.def)
(/usr/share/texlive/texmf-dist/tex/latex/microtype/microtype.cfg))
(/usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-luatex.def)
No file test.aux.
(/usr/share/texlive/texmf-dist/tex/latex/base/ts1cmr.fd)
(/usr/share/texlive/texmf-dist/tex/latex/microtype/mt-LatinModernRoman.cfg)
[1{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map}] (./test.aux))
 406 words of node memory still in use:
   3 hlist, 1 vlist, 1 rule, 2 glue, 3 kern, 1 glyph, 4 attribute, 48 glue_spec
, 4 attribute_list, 1 write nodes
   avail lists: 2:24,3:4,4:1,5:22,6:2,7:28,8:1,9:18
</usr/share/texmf/fonts/opentype/public/lm/lmroman10-regular.otf>
Output written on test.pdf (1 page, 2711 bytes).
Transcript written on test.log.
=========================== short test summary info ============================
FAILED unittests/If.py::testTrue - AssertionError: 'hi' != '?B'
FAILED unittests/If.py::testFalse - AssertionError: 'bye' != '#v2'
FAILED unittests/If.py::testIf - AssertionError: 'text one' != 'i2ti QM2'
FAILED unittests/If.py::testIfNum - AssertionError: 'textone' != 'i2tiQM2'
FAILED unittests/If.py::testIfDim - AssertionError: 'textone' != 'i2tiQM2'
FAILED unittests/If.py::testIfOdd - AssertionError: 'textone' != 'i2tiQM2'
FAILED unittests/If.py::testIfMMode - AssertionError: 'texttwo' != 'i2tiirQ'
FAILED unittests/If.py::testIfInner - AssertionError: 'texttwo' != 'i2tiirQ'
FAILED unittests/If.py::testIfCat - AssertionError: 'text one' != 'i2ti QM2'
FAILED unittests/If.py::testIfX - AssertionError: 'byetwo' != '#v2irQ'
FAILED unittests/If.py::testIfHBox - AssertionError: 'texttwo' != 'i2tiirQ'
FAILED unittests/If.py::testIfVBox - AssertionError: 'texttwo' != 'i2tiirQ'
FAILED unittests/If.py::testIfTrue - AssertionError: 'byeone' != '#v2QM2'
FAILED unittests/If.py::testIfFalse - AssertionError: 'texttwo' != 'i2tiirQ'
FAILED unittests/If.py::testIfCase - AssertionError: 'one' != 'QM2'
FAILED unittests/If.py::testNestedIf - AssertionError: 'byetext hifoo' != '#v...
FAILED unittests/If.py::testNestedIf2 - AssertionError: 'foo' != '7QQ'
FAILED unittests/If.py::testNewIfIf - AssertionError: 'before always up then ...
FAILED unittests/Let.py::test_let_redef - AssertionError: 'a' != ''
FAILED unittests/Let.py::test_let_nonrecursive - AssertionError: 'b' != '#'
FAILED unittests/Let.py::test_let_recursive - AssertionError: 'a' != ''
FAILED unittests/Let.py::test_let_scope - AssertionError: 'ab' != '#'
FAILED unittests/NewCommands.py::NC::testNewcommand - AssertionError: 'hi:thi...
FAILED unittests/NewCommands.py::NewCommands::testChardef - AssertionError: '...
FAILED unittests/NewCommands.py::NewCommands::testDef - AssertionError: 'this...
FAILED unittests/NewCommands.py::NewCommands::testDef3 - AssertionError: ':x:...
FAILED unittests/NewCommands.py::NewCommands::testRedefineUndefinedCommand - ...
FAILED unittests/Primitives.py::test_expandafter - AssertionError: 'Argument ...
FAILED unittests/Primitives.py::test_expandafter_undefined - AssertionError: ...
FAILED unittests/Primitives.py::test_expandafter_def_csname - AssertionError:...
FAILED unittests/Primitives.py::test_expandafter_let_csname - AssertionError:...
FAILED unittests/Primitives.py::test_expandafter_once - AssertionError: 'ab.'...
FAILED unittests/Primitives.py::test_expandafter_non_macro - AssertionError: ...
================== 33 failed, 366 passed, 5 xfailed in 33.08s ==================
E: pybuild pybuild:389: test: plugin pyproject failed with: exit code=1: cd 
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.12_plastex/build; python3.12 -m pytest
dh_auto_test: error: pybuild --test --test-pytest -i python{version} -p 3.12 
returned exit code 13
make: *** [debian/rules:10: binary] Error 25
dpkg-buildpackage: error: debian/rules binary subprocess returned exit status 2
--------------------------------------------------------------------------------

The above is just how the build ends and not necessarily the most relevant part.
If required, the full build log is available here:

https://people.debian.org/~sanvila/build-logs/202409/

About the archive rebuild: The build was made on virtual machines from AWS,
using sbuild and a reduced chroot with only build-essential packages.

If you could not reproduce the bug please contact me privately, as I
am willing to provide ssh access to a virtual machine where the bug is
fully reproducible.

If this is really a bug in one of the build-depends, please use
reassign and affects, so that this is still visible in the BTS web
page for this package.

Thanks.

Reply via email to