Your message dated Sun, 29 Sep 2024 08:33:59 +0000
with message-id <e1supnp-00670g...@fasolo.debian.org>
and subject line Bug#1082694: fixed in plastex 3.0-4
has caused the Debian Bug report #1082694,
regarding plastex: FTBFS: assert 'a.b' == 'X#'
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
1082694: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1082694
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
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.

--- End Message ---
--- Begin Message ---
Source: plastex
Source-Version: 3.0-4
Done: Stuart Prescott <stu...@debian.org>

We believe that the bug you reported is fixed in the latest version of
plastex, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 1082...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Stuart Prescott <stu...@debian.org> (supplier of updated plastex package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256

Format: 1.8
Date: Sun, 29 Sep 2024 11:51:59 +1000
Source: plastex
Architecture: source
Version: 3.0-4
Distribution: unstable
Urgency: medium
Maintainer: Debian Python Team <team+pyt...@tracker.debian.org>
Changed-By: Stuart Prescott <stu...@debian.org>
Closes: 1082694
Changes:
 plastex (3.0-4) unstable; urgency=medium
 .
   * Fix FTBFS with ghostscript 10.04.0~dfsg-1 by using pdftotext from
     poppler-utils in the test suite instead (Closes: #1082694).
   * Add ghostscript to d/t/control so that CI checks plastex when ghostscript
     uploads are performed.
   * Update Standards-Version to 4.7.0 (no changes required).
Checksums-Sha1:
 2a4c8ec7b3b50790e2bdc9c667cefd214bd66297 2868 plastex_3.0-4.dsc
 a566050a8b8f2cc997ab22eb52357835411de444 90332 plastex_3.0-4.debian.tar.xz
 405ea30497ad74426d7835ed138ad45738405a62 13324 plastex_3.0-4_amd64.buildinfo
Checksums-Sha256:
 aab075a82e6680e97934249b96f5b2b28fa687cb657376ef243e86accb3397e1 2868 
plastex_3.0-4.dsc
 df6f116863fd0a1b6736b551ba5d5121b20156dd974636967b9056c1d3f47f4f 90332 
plastex_3.0-4.debian.tar.xz
 aae7af5f7c087d7cc665d2a80042537acdb982350e16e26d5ad176be8093a65b 13324 
plastex_3.0-4_amd64.buildinfo
Files:
 c5bcf4e673bcf693de0f877e8e20bf1d 2868 python optional plastex_3.0-4.dsc
 f21842ae13085059737f4362b6cfaae7 90332 python optional 
plastex_3.0-4.debian.tar.xz
 1688af443eab4566a7e6bd47425df354 13324 python optional 
plastex_3.0-4_amd64.buildinfo

-----BEGIN PGP SIGNATURE-----

iQIzBAEBCAAdFiEEkOLSwa0Uaht+u4kdu8F+uxOW8vcFAmb4uDgACgkQu8F+uxOW
8vfPlQ/9GIkfvTSqjgeZhSaKSPQrRdqVipTwSNiZHVkQlUfeeY0b1weCPf++0pur
ournTlWAIuR/1nfiwBhKGLEkAYCRoFbnAfjxHw8/sqqQIdh7Qe6i4avz3PZMyyyO
VPTvESUcUudjHGBiIP+COm5KZJihXYQT12qOzdbOZ2Ep2r1ajA4jf0eSHuWZiSj9
KiMaex8dXy26SI7Ms+nbvTbjWFFNxZtMqMgw5D1eJlFIO4jcBQGlxFT00fSveS1H
I4jobp2dLCjBH0xPhbDT8RmKUEhk/GFoBnc36WKoN/IlechtBIHP8EFElzK3ZOQ1
kU+rEkU7cti4Brto7ucU5kF9ASUXvdO/SOKDopd6M2scMOBz9FGyBGNnBr0jJX0d
EyFl/K/S/ybTc52QVWBh6DObp+Jm0uFkD65xb16r5d3KvdMMTEz4oGzjc814xgPb
ve/3JkpsLsUd1LlCdNhaJd8YYtUfYH9TUanXvmjwz701wfRFwf3fvxZw5TjwOre3
XxZ43ALr/q09JRy/a3JR14Y24Z6CCFpQVzC5Wc6JMbNaz8WfoXFCZ4Fic3MEB2eL
8b7uDBs/AtyhQ6mPVVO2QJN+kF6PMJpAf5Y1Km0NVoNDeZHp0OOT4qc90zo92W5s
etdE4hovFO7cdR2WwkQV4V3NYuiuxhmDEUURseABxcdBb1gw2bg=
=w/BH
-----END PGP SIGNATURE-----

Attachment: pgp2OwLmC0vrI.pgp
Description: PGP signature


--- End Message ---

Reply via email to