question
stringlengths 235
464k
| answer
stringlengths 11
2.11k
|
---|---|
Given following log snippets, their explanation, and nothing else, explain what failure, if any, occurred during build of this package.
Snippets are in a format of [X] : [Y], where [X] is a log snippet, and [Y] is the explanation.
Snippets are delimited with '================'.
Drawing on information from all snippets, provide a concise explanation of the issue and recommend a solution.
Explanation of the issue, and recommended solution, should take a handful of sentences.
Snippets:
[Problem: package python3-pydantic-2.5.3-1.fc40.noarch requires python(abi) = 3.12, but none of the providers can be installed
- package python3-devel-3.13.0~a3-1.fc40.x86_64 conflicts with python3 < 3.13.0~a3-1.fc40 provided by python3-3.12.1-2.fc40.i686
- package python3-devel-3.13.0~a3-1.fc40.x86_64 conflicts with python3 < 3.13.0~a3-1.fc40 provided by python3-3.12.1-2.fc40.x86_64
- cannot install the best candidate for the job]: [DNF5 couldn't install `python3-pydantic-2.5.3-1.fc40.noarch` as the best find the best candidate for dependency `python(abi) = 3.12` had conflicts with `python3 < 3.13.0~a3-1.fc40`.]
=============
[Copr build error: Build failed]: [The snippet contains final build failure report.]
=============
[Problem: package python3-pydantic-2.5.3-1.fc40.noarch requires python(abi) = 3.12, but none of the providers can be installed
- package python3-devel-3.13.0~a3-1.fc40.x86_64 conflicts with python3 < 3.13.0~a3-1.fc40 provided by python3-3.12.1-2.fc40.x86_64
- package python3-devel-3.13.0~a3-1.fc40.x86_64 conflicts with python3 < 3.13.0~a3-1.fc40 provided by python3-3.12.1-2.fc40.i686
- cannot install the best candidate for the job]: [Final attempt by DNF5 package manager to resolve dependency conflicts has failed.]
|
Issue: Package dependencies couldn't be installed as they were in mutual conflicts.
Resolution: Relax constraints on dependencies, or ensure the appropriate versions are available at build time.
|
Analyse following RPM build log snippet. Describe contents accurately, without speculation or suggestions for resolution.
Your analysis must be as concise as possible, while keeping relevant information intact.
Snippet:
Problem: package python3-pydantic-2.5.3-1.fc40.noarch requires python(abi) = 3.12, but none of the providers can be installed
- package python3-devel-3.13.0~a3-1.fc40.x86_64 conflicts with python3 < 3.13.0~a3-1.fc40 provided by python3-3.12.1-2.fc40.i686
- package python3-devel-3.13.0~a3-1.fc40.x86_64 conflicts with python3 < 3.13.0~a3-1.fc40 provided by python3-3.12.1-2.fc40.x86_64
- cannot install the best candidate for the job
|
DNF5 couldn't install `python3-pydantic-2.5.3-1.fc40.noarch` as the best find the best candidate for dependency `python(abi) = 3.12` had conflicts with `python3 < 3.13.0~a3-1.fc40`.
|
Analyse following RPM build log snippet. Describe contents accurately, without speculation or suggestions for resolution.
Your analysis must be as concise as possible, while keeping relevant information intact.
Snippet:
Copr build error: Build failed
|
The snippet contains final build failure report.
|
Analyse following RPM build log snippet. Describe contents accurately, without speculation or suggestions for resolution.
Your analysis must be as concise as possible, while keeping relevant information intact.
Snippet:
Problem: package python3-pydantic-2.5.3-1.fc40.noarch requires python(abi) = 3.12, but none of the providers can be installed
- package python3-devel-3.13.0~a3-1.fc40.x86_64 conflicts with python3 < 3.13.0~a3-1.fc40 provided by python3-3.12.1-2.fc40.x86_64
- package python3-devel-3.13.0~a3-1.fc40.x86_64 conflicts with python3 < 3.13.0~a3-1.fc40 provided by python3-3.12.1-2.fc40.i686
- cannot install the best candidate for the job
|
Final attempt by DNF5 package manager to resolve dependency conflicts has failed.
|
Given following log snippets, their explanation, and nothing else, explain what failure, if any, occurred during build of this package.
Snippets are in a format of [X] : [Y], where [X] is a log snippet, and [Y] is the explanation.
Snippets are delimited with '================'.
Drawing on information from all snippets, provide a concise explanation of the issue and recommend a solution.
Explanation of the issue, and recommended solution, should take a handful of sentences.
Snippets:
[xsltproc --nonet -o doc/ambiguous_words.1 http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl -
I/O error : Attempt to load network entity http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl
warning: failed to load external entity "http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl"
]: [Build failure reason.]
|
Issue: The build process is trying to download data from the internet. This is not allowed as per Fedora Packaging guidelines.
Resolution: Remove requirement of downloading data from the internet.
|
Analyse following RPM build log snippet. Describe contents accurately, without speculation or suggestions for resolution.
Your analysis must be as concise as possible, while keeping relevant information intact.
Snippet:
xsltproc --nonet -o doc/ambiguous_words.1 http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl -
I/O error : Attempt to load network entity http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl
warning: failed to load external entity "http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl"
|
Build failure reason.
|
Given following log snippets, their explanation, and nothing else, explain what failure, if any, occurred during build of this package.
Snippets are in a format of [X] : [Y], where [X] is a log snippet, and [Y] is the explanation.
Snippets are delimited with '================'.
Drawing on information from all snippets, provide a concise explanation of the issue and recommend a solution.
Explanation of the issue, and recommended solution, should take a handful of sentences.
Snippets:
[ #display_table([{:a => 1, :nested => {:key => 'value'}}]) - returns " +---+-----------------+\n | a | nested |\n +---+-----------------+\n | 1 | {:key=>\"value\"} |\n +---+-----------------+\n"
expected => " +---+-----------------+\n | a | nested |\n +---+-----------------+\n | 1 | {:key=>\"value\"} |\n +---+-----------------+\n"
returned => " +---+----------------+\n | a | nested |\n +---+----------------+\n | 1 | {key: \"value\"} |\n +---+----------------+\n"
]: [Test suite error]
|
Issue: Test suite error in `%check` section. The output is changing with settings of tty.
Resolution: Fix the test suite (the issue is related to https://github.com/geemus/formatador/issues/56) or ignore the failing test case.
|
Analyse following RPM build log snippet. Describe contents accurately, without speculation or suggestions for resolution.
Your analysis must be as concise as possible, while keeping relevant information intact.
Snippet:
#display_table([{:a => 1, :nested => {:key => 'value'}}]) - returns " +---+-----------------+\n | a | nested |\n +---+-----------------+\n | 1 | {:key=>\"value\"} |\n +---+-----------------+\n"
expected => " +---+-----------------+\n | a | nested |\n +---+-----------------+\n | 1 | {:key=>\"value\"} |\n +---+-----------------+\n"
returned => " +---+----------------+\n | a | nested |\n +---+----------------+\n | 1 | {key: \"value\"} |\n +---+----------------+\n"
|
Test suite error
|
Given following log snippets, their explanation, and nothing else, explain what failure, if any, occurred during build of this package.
Snippets are in a format of [X] : [Y], where [X] is a log snippet, and [Y] is the explanation.
Snippets are delimited with '================'.
Drawing on information from all snippets, provide a concise explanation of the issue and recommend a solution.
Explanation of the issue, and recommended solution, should take a handful of sentences.
Snippets:
[/usr/bin/g++ -DAPT_DOMAIN=\"libapt-pkg6.0\" -D_WITH_GETLINE=1 -Dapt_pkg_EXPORTS -I/builddir/build/BUILD/apt-2.9.8-build/apt-2.9.8/redhat-linux-build/include -I/builddir/build/BUILD/apt-2.9.8-build/apt-2.9.8/redhat-linux-build/include/apt-pkg -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -march=x86-64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -mtls-dialect=gnu2 -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -std=gnu++17 -fPIC -fvisibility=hidden -fvisibility-inlines-hidden -Wall -Wextra -Wcast-align -Wlogical-op -Wredundant-decls -Wmissing-declarations -Wunsafe-loop-optimizations -Wctor-dtor-privacy -Wdisabled-optimization -Winit-self -Wmissing-include-dirs -Wnoexcept -Wsign-promo -Wundef -Wdouble-promotion -Wsuggest-override -Werror=suggest-override -Werror=return-type -MD -MT apt-pkg/CMakeFiles/apt-pkg.dir/contrib/strutl.cc.o -MF apt-pkg/CMakeFiles/apt-pkg.dir/contrib/strutl.cc.o.d -o apt-pkg/CMakeFiles/apt-pkg.dir/contrib/strutl.cc.o -c /builddir/build/BUILD/apt-2.9.8-build/apt-2.9.8/apt-pkg/contrib/strutl.cc
/builddir/build/BUILD/apt-2.9.8-build/apt-2.9.8/apt-pkg/contrib/strutl.cc: In function ‘std::string Base64Encode(const std::string&)’:
/builddir/build/BUILD/apt-2.9.8-build/apt-2.9.8/apt-pkg/contrib/strutl.cc:597:7: error: ‘uint8_t’ was not declared in this scope
597 | uint8_t Bits[3] = {0,0,0};
| ^~~~~~~
/builddir/build/BUILD/apt-2.9.8-build/apt-2.9.8/apt-pkg/contrib/strutl.cc:52:8: note: ‘uint8_t’ is defined in header ‘<cstdint>’; this is probably fixable by adding ‘#include <cstdint>’
51 | #include <apti18n.h>
+++ |+#include <cstdint>
52 | /*}}}*/]: [This is a compilation failure.]
|
Issue: GCC 15 shuffled header files and cstdint header file stopped to be implicitly included. That caused the "uint8_t" type not to be declared.
Resolution: Include <cstdint> header file into the source file.
|
Analyse following RPM build log snippet. Describe contents accurately, without speculation or suggestions for resolution.
Your analysis must be as concise as possible, while keeping relevant information intact.
Snippet:
/usr/bin/g++ -DAPT_DOMAIN=\"libapt-pkg6.0\" -D_WITH_GETLINE=1 -Dapt_pkg_EXPORTS -I/builddir/build/BUILD/apt-2.9.8-build/apt-2.9.8/redhat-linux-build/include -I/builddir/build/BUILD/apt-2.9.8-build/apt-2.9.8/redhat-linux-build/include/apt-pkg -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -march=x86-64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -mtls-dialect=gnu2 -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -std=gnu++17 -fPIC -fvisibility=hidden -fvisibility-inlines-hidden -Wall -Wextra -Wcast-align -Wlogical-op -Wredundant-decls -Wmissing-declarations -Wunsafe-loop-optimizations -Wctor-dtor-privacy -Wdisabled-optimization -Winit-self -Wmissing-include-dirs -Wnoexcept -Wsign-promo -Wundef -Wdouble-promotion -Wsuggest-override -Werror=suggest-override -Werror=return-type -MD -MT apt-pkg/CMakeFiles/apt-pkg.dir/contrib/strutl.cc.o -MF apt-pkg/CMakeFiles/apt-pkg.dir/contrib/strutl.cc.o.d -o apt-pkg/CMakeFiles/apt-pkg.dir/contrib/strutl.cc.o -c /builddir/build/BUILD/apt-2.9.8-build/apt-2.9.8/apt-pkg/contrib/strutl.cc
/builddir/build/BUILD/apt-2.9.8-build/apt-2.9.8/apt-pkg/contrib/strutl.cc: In function ‘std::string Base64Encode(const std::string&)’:
/builddir/build/BUILD/apt-2.9.8-build/apt-2.9.8/apt-pkg/contrib/strutl.cc:597:7: error: ‘uint8_t’ was not declared in this scope
597 | uint8_t Bits[3] = {0,0,0};
| ^~~~~~~
/builddir/build/BUILD/apt-2.9.8-build/apt-2.9.8/apt-pkg/contrib/strutl.cc:52:8: note: ‘uint8_t’ is defined in header ‘<cstdint>’; this is probably fixable by adding ‘#include <cstdint>’
51 | #include <apti18n.h>
+++ |+#include <cstdint>
52 | /*}}}*/
|
This is a compilation failure.
|
Given following log snippets, their explanation, and nothing else, explain what failure, if any, occurred during build of this package.
Snippets are in a format of [X] : [Y], where [X] is a log snippet, and [Y] is the explanation.
Snippets are delimited with '================'.
Drawing on information from all snippets, provide a concise explanation of the issue and recommend a solution.
Explanation of the issue, and recommended solution, should take a handful of sentences.
Snippets:
[Problem: cannot install the best candidate for the job
- nothing provides python(abi) = 3.12 needed by python3-poetry-1.8.3-1.fc41.noarch from copr_base
- nothing provides (python3.12dist(cleo) < 3~~ with python3.12dist(cleo) >= 2.1) needed by python3-poetry-1.8.3-1.fc41.noarch from copr_base
- nothing provides python3.12dist(packaging) >= 23.1 needed by python3-poetry-1.8.3-1.fc41.noarch from copr_base
- nothing provides (python3.12dist(requests-toolbelt) < 2~~ with python3.12dist(requests-toolbelt) >= 1) needed by python3-poetry-1.8.3-1.fc41.noarch from copr_base
- nothing provides (python3.12dist(build) < 2~~ with python3.12dist(build) >= 1.0.3) needed by python3-poetry-1.8.3-1.fc41.noarch from copr_base
- nothing provides (python3.12dist(cachecontrol) < 0.15~~ with python3.12dist(cachecontrol) >= 0.14) needed by python3-poetry-1.8.3-1.fc41.noarch from copr_base
- nothing provides (python3.12dist(cachecontrol[filecache]) < 0.15~~ with python3.12dist(cachecontrol[filecache]) >= 0.14) needed by python3-poetry-1.8.3-1.fc41.noarch from copr_base
- nothing provides (python3.12dist(crashtest) < 0.5~~ with python3.12dist(crashtest) >= 0.4.1) needed by python3-poetry-1.8.3-1.fc41.noarch from copr_base
- nothing provides (python3.12dist(dulwich) < 0.22~~ with python3.12dist(dulwich) >= 0.21.2) needed by python3-poetry-1.8.3-1.fc41.noarch from copr_base
- nothing provides (python3.12dist(fastjsonschema) < 3~~ with python3.12dist(fastjsonschema) >= 2.18) needed by python3-poetry-1.8.3-1.fc41.noarch from copr_base
- nothing provides (python3.12dist(installer) < 0.8~~ with python3.12dist(installer) >= 0.7) needed by python3-poetry-1.8.3-1.fc41.noarch from copr_base
- nothing provides (python3.12dist(pexpect) < 5~~ with python3.12dist(pexpect) >= 4.7) needed by python3-poetry-1.8.3-1.fc41.noarch from copr_base
- nothing provides (python3.12dist(pkginfo) < 2~~ with python3.12dist(pkginfo) >= 1.10) needed by python3-poetry-1.8.3-1.fc41.noarch from copr_base
- nothing provides (python3.12dist(pyproject-hooks) < 2~~ with python3.12dist(pyproject-hooks) >= 1) needed by python3-poetry-1.8.3-1.fc41.noarch from copr_base
- nothing provides (python3.12dist(tomlkit) < 1~~ with python3.12dist(tomlkit) >= 0.11.4) needed by python3-poetry-1.8.3-1.fc41.noarch from copr_base
- nothing provides python3.12dist(poetry-core) = 1.9 needed by python3-poetry-1.8.3-1.fc41.noarch from copr_base
- nothing provides python3.12dist(trove-classifiers) >= 2022.5.19 needed by python3-poetry-1.8.3-1.fc41.noarch from copr_base]: [The python-poetry package required a few libraries which are not available in the given python 3.12 version during the build.
The required python3 packages are:
- cleo
- packaging
- requests-toolbelt
- build
- cachecontrol
- cachecontrol[filecache]
- crashtest
- dulwich
- fastjsonschema
- installer
- pexpect
- pkginfo
- pyproject-hooks
- tomlkit
- poetry-core
- trove-classifiers]
|
Issue: There are python3 packages which are missing during the build and are requested.
Resolution: Take a look on your dependencies and make sure that these python3 packages exists during the build.
|
Analyse following RPM build log snippet. Describe contents accurately, without speculation or suggestions for resolution.
Your analysis must be as concise as possible, while keeping relevant information intact.
Snippet:
Problem: cannot install the best candidate for the job
- nothing provides python(abi) = 3.12 needed by python3-poetry-1.8.3-1.fc41.noarch from copr_base
- nothing provides (python3.12dist(cleo) < 3~~ with python3.12dist(cleo) >= 2.1) needed by python3-poetry-1.8.3-1.fc41.noarch from copr_base
- nothing provides python3.12dist(packaging) >= 23.1 needed by python3-poetry-1.8.3-1.fc41.noarch from copr_base
- nothing provides (python3.12dist(requests-toolbelt) < 2~~ with python3.12dist(requests-toolbelt) >= 1) needed by python3-poetry-1.8.3-1.fc41.noarch from copr_base
- nothing provides (python3.12dist(build) < 2~~ with python3.12dist(build) >= 1.0.3) needed by python3-poetry-1.8.3-1.fc41.noarch from copr_base
- nothing provides (python3.12dist(cachecontrol) < 0.15~~ with python3.12dist(cachecontrol) >= 0.14) needed by python3-poetry-1.8.3-1.fc41.noarch from copr_base
- nothing provides (python3.12dist(cachecontrol[filecache]) < 0.15~~ with python3.12dist(cachecontrol[filecache]) >= 0.14) needed by python3-poetry-1.8.3-1.fc41.noarch from copr_base
- nothing provides (python3.12dist(crashtest) < 0.5~~ with python3.12dist(crashtest) >= 0.4.1) needed by python3-poetry-1.8.3-1.fc41.noarch from copr_base
- nothing provides (python3.12dist(dulwich) < 0.22~~ with python3.12dist(dulwich) >= 0.21.2) needed by python3-poetry-1.8.3-1.fc41.noarch from copr_base
- nothing provides (python3.12dist(fastjsonschema) < 3~~ with python3.12dist(fastjsonschema) >= 2.18) needed by python3-poetry-1.8.3-1.fc41.noarch from copr_base
- nothing provides (python3.12dist(installer) < 0.8~~ with python3.12dist(installer) >= 0.7) needed by python3-poetry-1.8.3-1.fc41.noarch from copr_base
- nothing provides (python3.12dist(pexpect) < 5~~ with python3.12dist(pexpect) >= 4.7) needed by python3-poetry-1.8.3-1.fc41.noarch from copr_base
- nothing provides (python3.12dist(pkginfo) < 2~~ with python3.12dist(pkginfo) >= 1.10) needed by python3-poetry-1.8.3-1.fc41.noarch from copr_base
- nothing provides (python3.12dist(pyproject-hooks) < 2~~ with python3.12dist(pyproject-hooks) >= 1) needed by python3-poetry-1.8.3-1.fc41.noarch from copr_base
- nothing provides (python3.12dist(tomlkit) < 1~~ with python3.12dist(tomlkit) >= 0.11.4) needed by python3-poetry-1.8.3-1.fc41.noarch from copr_base
- nothing provides python3.12dist(poetry-core) = 1.9 needed by python3-poetry-1.8.3-1.fc41.noarch from copr_base
- nothing provides python3.12dist(trove-classifiers) >= 2022.5.19 needed by python3-poetry-1.8.3-1.fc41.noarch from copr_base
|
The python-poetry package required a few libraries which are not available in the given python 3.12 version during the build.
The required python3 packages are:
- cleo
- packaging
- requests-toolbelt
- build
- cachecontrol
- cachecontrol[filecache]
- crashtest
- dulwich
- fastjsonschema
- installer
- pexpect
- pkginfo
- pyproject-hooks
- tomlkit
- poetry-core
- trove-classifiers
|
Given following log snippets, their explanation, and nothing else, explain what failure, if any, occurred during build of this package.
Snippets are in a format of [X] : [Y], where [X] is a log snippet, and [Y] is the explanation.
Snippets are delimited with '================'.
Drawing on information from all snippets, provide a concise explanation of the issue and recommend a solution.
Explanation of the issue, and recommended solution, should take a handful of sentences.
Snippets:
[PHPUnit 12.1.5 by Sebastian Bergmann and contributors.]: [The test suite is using PHPUnit version 12.1.5]
=============
[FAILURES!
Tests: 16, Assertions: 14, Failures: 2, PHPUnit Deprecations: 1, Skipped: 2.
]: [This is the test suite summary.
Test suite have failures.]
=============
[1) /builddir/build/BUILD/phpcov-11.0.0-build/phpcov-491eef985e63f351eb997ba02cf76cdf749f2043/tests/end-to-end/patch-coverage/valid-arguments-with-invalid-path-prefix.phpt
Failed asserting that string matches format description.
--- Expected
+++ Actual
@@ @@
phpcov 11.0.0 by Sebastian Bergmann.
-Unable to detect executable lines that were changed.
-Are you sure your --path-prefix is correct?
-int(2)
+
+Fatal error: Uncaught TypeError: Cannot assign __PHP_Incomplete_Class to property SebastianBergmann\CodeCoverage\CodeCoverage::$analyser of type ?SebastianBergmann\CodeCoverage\StaticAnalysis\FileAnalyser in /builddir/build/BUILD/phpcov-11.0.0-build/phpcov-491eef985e63f351eb997ba02cf76cdf749f2043/tests/fixture/example/coverage/testGreetsWorld.cov:2
+Stack trace:
+#0 /builddir/build/BUILD/phpcov-11.0.0-build/phpcov-491eef985e63f351eb997ba02cf76cdf749f2043/tests/fixture/example/coverage/testGreetsWorld.cov(2): unserialize()
+#1 /builddir/build/BUILD/phpcov-11.0.0-build/BUILDROOT/usr/share/php/SebastianBergmann/PHPCOV/PatchCoverage.php(35): include('...')
+#2 /builddir/build/BUILD/phpcov-11.0.0-build/BUILDROOT/usr/share/php/SebastianBergmann/PHPCOV/cli/PatchCoverageCommand.php(41): SebastianBergmann\PHPCOV\PatchCoverage->execute()
+#3 /builddir/build/BUILD/phpcov-11.0.0-build/BUILDROOT/usr/share/php/SebastianBergmann/PHPCOV/cli/Application.php(52): SebastianBergmann\PHPCOV\PatchCoverageCommand->run()
+#4 Standard input code(10): SebastianBergmann\PHPCOV\Application->run()
+#5 {main}
+ thrown in /builddir/build/BUILD/phpcov-11.0.0-build/phpcov-491eef985e63f351eb997ba02cf76cdf749f2043/tests/fixture/example/coverage/testGreetsWorld.cov on line 2
/builddir/build/BUILD/phpcov-11.0.0-build/phpcov-491eef985e63f351eb997ba02cf76cdf749f2043/tests/end-to-end/patch-coverage/valid-arguments-with-invalid-path-prefix.phpt:19
]: [This is the detailed failure description, with diff from expected and actual output]
|
Issue: PHP raises a TypeError exception because of __PHP_Incomplete_Class.
This may be related to serialization and missing extension
Resolution: Analyse the valid-arguments-with-invalid-path-prefix.phpt unit test
|
Analyse following RPM build log snippet. Describe contents accurately, without speculation or suggestions for resolution.
Your analysis must be as concise as possible, while keeping relevant information intact.
Snippet:
PHPUnit 12.1.5 by Sebastian Bergmann and contributors.
|
The test suite is using PHPUnit version 12.1.5
|
Analyse following RPM build log snippet. Describe contents accurately, without speculation or suggestions for resolution.
Your analysis must be as concise as possible, while keeping relevant information intact.
Snippet:
FAILURES!
Tests: 16, Assertions: 14, Failures: 2, PHPUnit Deprecations: 1, Skipped: 2.
|
This is the test suite summary.
Test suite have failures.
|
Analyse following RPM build log snippet. Describe contents accurately, without speculation or suggestions for resolution.
Your analysis must be as concise as possible, while keeping relevant information intact.
Snippet:
1) /builddir/build/BUILD/phpcov-11.0.0-build/phpcov-491eef985e63f351eb997ba02cf76cdf749f2043/tests/end-to-end/patch-coverage/valid-arguments-with-invalid-path-prefix.phpt
Failed asserting that string matches format description.
--- Expected
+++ Actual
@@ @@
phpcov 11.0.0 by Sebastian Bergmann.
-Unable to detect executable lines that were changed.
-Are you sure your --path-prefix is correct?
-int(2)
+
+Fatal error: Uncaught TypeError: Cannot assign __PHP_Incomplete_Class to property SebastianBergmann\CodeCoverage\CodeCoverage::$analyser of type ?SebastianBergmann\CodeCoverage\StaticAnalysis\FileAnalyser in /builddir/build/BUILD/phpcov-11.0.0-build/phpcov-491eef985e63f351eb997ba02cf76cdf749f2043/tests/fixture/example/coverage/testGreetsWorld.cov:2
+Stack trace:
+#0 /builddir/build/BUILD/phpcov-11.0.0-build/phpcov-491eef985e63f351eb997ba02cf76cdf749f2043/tests/fixture/example/coverage/testGreetsWorld.cov(2): unserialize()
+#1 /builddir/build/BUILD/phpcov-11.0.0-build/BUILDROOT/usr/share/php/SebastianBergmann/PHPCOV/PatchCoverage.php(35): include('...')
+#2 /builddir/build/BUILD/phpcov-11.0.0-build/BUILDROOT/usr/share/php/SebastianBergmann/PHPCOV/cli/PatchCoverageCommand.php(41): SebastianBergmann\PHPCOV\PatchCoverage->execute()
+#3 /builddir/build/BUILD/phpcov-11.0.0-build/BUILDROOT/usr/share/php/SebastianBergmann/PHPCOV/cli/Application.php(52): SebastianBergmann\PHPCOV\PatchCoverageCommand->run()
+#4 Standard input code(10): SebastianBergmann\PHPCOV\Application->run()
+#5 {main}
+ thrown in /builddir/build/BUILD/phpcov-11.0.0-build/phpcov-491eef985e63f351eb997ba02cf76cdf749f2043/tests/fixture/example/coverage/testGreetsWorld.cov on line 2
/builddir/build/BUILD/phpcov-11.0.0-build/phpcov-491eef985e63f351eb997ba02cf76cdf749f2043/tests/end-to-end/patch-coverage/valid-arguments-with-invalid-path-prefix.phpt:19
|
This is the detailed failure description, with diff from expected and actual output
|
Given following log snippets, their explanation, and nothing else, explain what failure, if any, occurred during build of this package.
Snippets are in a format of [X] : [Y], where [X] is a log snippet, and [Y] is the explanation.
Snippets are delimited with '================'.
Drawing on information from all snippets, provide a concise explanation of the issue and recommend a solution.
Explanation of the issue, and recommended solution, should take a handful of sentences.
Snippets:
[/usr/share/pcp/lib/pmdaproc.sh: line 856: 795794 Segmentation fault (core dumped) PCP_PYTHON_DOMAIN=1 /usr/bin/python3 /var/lib/pcp/pmdas/bcc/pmdabcc.python
Arrgh! failed to create /var/lib/pcp/pmdas/bcc/domain.h.python from /var/lib/pcp/pmdas/bcc/pmdabcc.python
]: [Core-dump record of /var/lib/pcp/pmdas/bcc/pmdabcc.python]
|
Issue: The underlying bcc has core-dumped.
Resolution: This is a known issue on older llvm (see https://issues.redhat.com/browse/RHEL-70250 and https://issues.redhat.com/browse/RHEL-66060) If this re-occures, please report it to the bcc team (kernel).
|
Analyse following RPM build log snippet. Describe contents accurately, without speculation or suggestions for resolution.
Your analysis must be as concise as possible, while keeping relevant information intact.
Snippet:
/usr/share/pcp/lib/pmdaproc.sh: line 856: 795794 Segmentation fault (core dumped) PCP_PYTHON_DOMAIN=1 /usr/bin/python3 /var/lib/pcp/pmdas/bcc/pmdabcc.python
Arrgh! failed to create /var/lib/pcp/pmdas/bcc/domain.h.python from /var/lib/pcp/pmdas/bcc/pmdabcc.python
|
Core-dump record of /var/lib/pcp/pmdas/bcc/pmdabcc.python
|
Given following log snippets, their explanation, and nothing else, explain what failure, if any, occurred during build of this package.
Snippets are in a format of [X] : [Y], where [X] is a log snippet, and [Y] is the explanation.
Snippets are delimited with '================'.
Drawing on information from all snippets, provide a concise explanation of the issue and recommend a solution.
Explanation of the issue, and recommended solution, should take a handful of sentences.
Snippets:
[No matching package to install: 'python3dist(rich) >= 14'
Not all dependencies satisfied
Error: Some packages could not be found.]: [It describes the error reported by dnf.]
=============
[Handling hatchling from build-system.requires
Requirement not satisfied: hatchling
Handling hatch-vcs from build-system.requires
Requirement not satisfied: hatch-vcs
Exiting dependency generation pass: build backend]: [Indicates the package being built is a Python package using Hatch to control its build process and dependencies.]
|
Issue: The build failed because the package required a dependency that was not available in the required version.
Resolution: Inspect the package requirements and make sure all required packages are indeed available in the target distribution, and update the requirements as necessary. Since the package in question is a Python package, and it uses Hatch and pyproject.toml for its packaging, the dependencies are most likely stored in pyproject.toml rather than in the specfile. Look for `dependencies` keys in the pyproject.toml file.
|
Analyse following RPM build log snippet. Describe contents accurately, without speculation or suggestions for resolution.
Your analysis must be as concise as possible, while keeping relevant information intact.
Snippet:
No matching package to install: 'python3dist(rich) >= 14'
Not all dependencies satisfied
Error: Some packages could not be found.
|
It describes the error reported by dnf.
|
Analyse following RPM build log snippet. Describe contents accurately, without speculation or suggestions for resolution.
Your analysis must be as concise as possible, while keeping relevant information intact.
Snippet:
Handling hatchling from build-system.requires
Requirement not satisfied: hatchling
Handling hatch-vcs from build-system.requires
Requirement not satisfied: hatch-vcs
Exiting dependency generation pass: build backend
|
Indicates the package being built is a Python package using Hatch to control its build process and dependencies.
|
Given following log snippets, their explanation, and nothing else, explain what failure, if any, occurred during build of this package.
Snippets are in a format of [X] : [Y], where [X] is a log snippet, and [Y] is the explanation.
Snippets are delimited with '================'.
Drawing on information from all snippets, provide a concise explanation of the issue and recommend a solution.
Explanation of the issue, and recommended solution, should take a handful of sentences.
Snippets:
[Problem: cannot install the best candidate for the job
- nothing provides python3.14dist(pydantic-core) = 2.27.2 needed by python3-pydantic-2.10.6-2.fc43.noarch from copr_base]: [dnf buildep output showing error]
|
Issue: Dependency is missing.
Resolution: Make sure the dnf dependency is installable on the build system.
|
Analyse following RPM build log snippet. Describe contents accurately, without speculation or suggestions for resolution.
Your analysis must be as concise as possible, while keeping relevant information intact.
Snippet:
Problem: cannot install the best candidate for the job
- nothing provides python3.14dist(pydantic-core) = 2.27.2 needed by python3-pydantic-2.10.6-2.fc43.noarch from copr_base
|
dnf buildep output showing error
|
Given following log snippets, their explanation, and nothing else, explain what failure, if any, occurred during build of this package.
Snippets are in a format of [X] : [Y], where [X] is a log snippet, and [Y] is the explanation.
Snippets are delimited with '================'.
Drawing on information from all snippets, provide a concise explanation of the issue and recommend a solution.
Explanation of the issue, and recommended solution, should take a handful of sentences.
Snippets:
[
Problem: nothing provides requested (crate(drm/default) >= 0.9.0 with crate(drm/default) < 0.10.0~]: [Error message]
|
Issue: The package did not have the right version available
Resolution: Package rust-drm between 0.9.0 and 0.10.0
|
Analyse following RPM build log snippet. Describe contents accurately, without speculation or suggestions for resolution.
Your analysis must be as concise as possible, while keeping relevant information intact.
Snippet:
Problem: nothing provides requested (crate(drm/default) >= 0.9.0 with crate(drm/default) < 0.10.0~
|
Error message
|
Given following log snippets, their explanation, and nothing else, explain what failure, if any, occurred during build of this package.
Snippets are in a format of [X] : [Y], where [X] is a log snippet, and [Y] is the explanation.
Snippets are delimited with '================'.
Drawing on information from all snippets, provide a concise explanation of the issue and recommend a solution.
Explanation of the issue, and recommended solution, should take a handful of sentences.
Snippets:
[tests/executors/test_executor.py:71: in <module>
@pytest.mark.flaky(
/usr/lib/python3.14/site-packages/_pytest/mark/structures.py:546: in __getattr__
warnings.warn(
E pytest.PytestUnknownMarkWarning: Unknown pytest.mark.flaky]: [These lines indicate that pytest encountered an unknown marker.]
|
Issue: Pytest markers are often provided by pytest plugins. In this case, pytest.mark.flaky is provided by pytest-rerunfailures. That is not installed in the build environment, resulting in the unknown mark error.
Resolution: Add a build requirement on python3-pytest-rerunfailures so that it is present in the build environment.
|
Analyse following RPM build log snippet. Describe contents accurately, without speculation or suggestions for resolution.
Your analysis must be as concise as possible, while keeping relevant information intact.
Snippet:
tests/executors/test_executor.py:71: in <module>
@pytest.mark.flaky(
/usr/lib/python3.14/site-packages/_pytest/mark/structures.py:546: in __getattr__
warnings.warn(
E pytest.PytestUnknownMarkWarning: Unknown pytest.mark.flaky
|
These lines indicate that pytest encountered an unknown marker.
|
Given following log snippets, their explanation, and nothing else, explain what failure, if any, occurred during build of this package.
Snippets are in a format of [X] : [Y], where [X] is a log snippet, and [Y] is the explanation.
Snippets are delimited with '================'.
Drawing on information from all snippets, provide a concise explanation of the issue and recommend a solution.
Explanation of the issue, and recommended solution, should take a handful of sentences.
Snippets:
[semanageswig_wrap.c: In function '_wrap_semanage_get_hll_compiler_path':
semanageswig_wrap.c:4209:17: error: too few arguments to function 'SWIG_Python_AppendOutput'
4209 | resultobj = SWIG_Python_AppendOutput(resultobj, SWIG_FromCharPtr(*arg3));
| ^~~~~~~~~~~~~~~~~~~~~~~~
semanageswig_wrap.c:1259:1: note: declared here
1259 | SWIG_Python_AppendOutput(PyObject* result, PyObject* obj, int is_void) {
| ^~~~~~~~~~~~~~~~~~~~~~~~
semanageswig_wrap.c: In function '_wrap_semanage_module_extract':
semanageswig_wrap.c:5045:17: error: too few arguments to function 'SWIG_Python_AppendOutput'
5045 | resultobj = SWIG_Python_AppendOutput(resultobj, SWIG_NewPointerObj(*arg6, SWIGTYPE_p_semanage_module_info, 0));
| ^~~~~~~~~~~~~~~~~~~~~~~~
semanageswig_wrap.c:1259:1: note: declared here
1259 | SWIG_Python_AppendOutput(PyObject* result, PyObject* obj, int is_void) {
| ^~~~~~~~~~~~~~~~~~~~~~~~]: [Build failed because function 'SWIG_Python_AppendOutput' expected 3 arguments.]
|
Issue: The build failed due to changes in SWIG 4.3.0.
There is new declaration of SWIG_Python_AppendOutput is now:
SWIG_Python_AppendOutput(PyObject* result, PyObject* obj, int is_void);
The 3rd parameter is new and the new $isvoid special variable should be passed to it.
Resolution: There are two ways how to solve it.
* Add the 3rd parameter to indicate whether or not the wrapped function returns void.
* or also consider replacing with:
SWIG_AppendOutput(PyObject* result, PyObject* obj);
|
Analyse following RPM build log snippet. Describe contents accurately, without speculation or suggestions for resolution.
Your analysis must be as concise as possible, while keeping relevant information intact.
Snippet:
semanageswig_wrap.c: In function '_wrap_semanage_get_hll_compiler_path':
semanageswig_wrap.c:4209:17: error: too few arguments to function 'SWIG_Python_AppendOutput'
4209 | resultobj = SWIG_Python_AppendOutput(resultobj, SWIG_FromCharPtr(*arg3));
| ^~~~~~~~~~~~~~~~~~~~~~~~
semanageswig_wrap.c:1259:1: note: declared here
1259 | SWIG_Python_AppendOutput(PyObject* result, PyObject* obj, int is_void) {
| ^~~~~~~~~~~~~~~~~~~~~~~~
semanageswig_wrap.c: In function '_wrap_semanage_module_extract':
semanageswig_wrap.c:5045:17: error: too few arguments to function 'SWIG_Python_AppendOutput'
5045 | resultobj = SWIG_Python_AppendOutput(resultobj, SWIG_NewPointerObj(*arg6, SWIGTYPE_p_semanage_module_info, 0));
| ^~~~~~~~~~~~~~~~~~~~~~~~
semanageswig_wrap.c:1259:1: note: declared here
1259 | SWIG_Python_AppendOutput(PyObject* result, PyObject* obj, int is_void) {
| ^~~~~~~~~~~~~~~~~~~~~~~~
|
Build failed because function 'SWIG_Python_AppendOutput' expected 3 arguments.
|
Given following log snippets, their explanation, and nothing else, explain what failure, if any, occurred during build of this package.
Snippets are in a format of [X] : [Y], where [X] is a log snippet, and [Y] is the explanation.
Snippets are delimited with '================'.
Drawing on information from all snippets, provide a concise explanation of the issue and recommend a solution.
Explanation of the issue, and recommended solution, should take a handful of sentences.
Snippets:
[CMake Error at /usr/share/cmake/Modules/FindPackageHandleStandardArgs.cmake:233 (message):
Could NOT find RAPTOR (missing: RAPTOR_LIBRARY RAPTOR_INCLUDE_DIR)]: [CMake can't find definition of the mentioned options.]
|
Issue: Until the missing CMake options are not defined, it won't work.
Resolution: There are two ways to resolve this.
First to define the missing options to the cmake build.
The second is to turn off the RAPTOR by defining the `-DCOPASI_USE_RAPTOR:BOOL=OFF`
|
Analyse following RPM build log snippet. Describe contents accurately, without speculation or suggestions for resolution.
Your analysis must be as concise as possible, while keeping relevant information intact.
Snippet:
CMake Error at /usr/share/cmake/Modules/FindPackageHandleStandardArgs.cmake:233 (message):
Could NOT find RAPTOR (missing: RAPTOR_LIBRARY RAPTOR_INCLUDE_DIR)
|
CMake can't find definition of the mentioned options.
|
Given following log snippets, their explanation, and nothing else, explain what failure, if any, occurred during build of this package.
Snippets are in a format of [X] : [Y], where [X] is a log snippet, and [Y] is the explanation.
Snippets are delimited with '================'.
Drawing on information from all snippets, provide a concise explanation of the issue and recommend a solution.
Explanation of the issue, and recommended solution, should take a handful of sentences.
Snippets:
[error: Bad exit status from /var/tmp/rpm-tmp.crCZP8 (%check)
Bad exit status from /var/tmp/rpm-tmp.crCZP8 (%check)
Child return code was: 1
]: [The build failed in %check section.]
=============
[-Ddomain_prefix=org.gnome.FlatpakApp]: [This is a Flatpak build.]
=============
[+ for f in tracker-miner-fs-3.service tracker-miner-fs-control-3.service tracker-writeback-3.service
+ test -f /builddir/build/BUILD/tracker-miners-3.7.4-build/BUILDROOT/usr/lib/systemd/user/tracker-miner-fs-3.service]: [This is test of systemd unit files.]
|
Issue: Systemd unit files are in this case of Flatpak build irrelevant.
Resolution: You can skip the %check section for flatpak build by adding this condition:
%if ! 0%{?flatpak}
%check
...
%endif
|
Analyse following RPM build log snippet. Describe contents accurately, without speculation or suggestions for resolution.
Your analysis must be as concise as possible, while keeping relevant information intact.
Snippet:
error: Bad exit status from /var/tmp/rpm-tmp.crCZP8 (%check)
Bad exit status from /var/tmp/rpm-tmp.crCZP8 (%check)
Child return code was: 1
|
The build failed in %check section.
|
Analyse following RPM build log snippet. Describe contents accurately, without speculation or suggestions for resolution.
Your analysis must be as concise as possible, while keeping relevant information intact.
Snippet:
-Ddomain_prefix=org.gnome.FlatpakApp
|
This is a Flatpak build.
|
Analyse following RPM build log snippet. Describe contents accurately, without speculation or suggestions for resolution.
Your analysis must be as concise as possible, while keeping relevant information intact.
Snippet:
+ for f in tracker-miner-fs-3.service tracker-miner-fs-control-3.service tracker-writeback-3.service
+ test -f /builddir/build/BUILD/tracker-miners-3.7.4-build/BUILDROOT/usr/lib/systemd/user/tracker-miner-fs-3.service
|
This is test of systemd unit files.
|
Given following log snippets, their explanation, and nothing else, explain what failure, if any, occurred during build of this package.
Snippets are in a format of [X] : [Y], where [X] is a log snippet, and [Y] is the explanation.
Snippets are delimited with '================'.
Drawing on information from all snippets, provide a concise explanation of the issue and recommend a solution.
Explanation of the issue, and recommended solution, should take a handful of sentences.
Snippets:
[RPM build errors:
File not found: /builddir/build/BUILD/libsndfile-1.2.2-build/BUILDROOT/usr/lib64/libsndfile.sox
]: [rpmbuild error that caused build failure ]
|
Issue: spec file list a file in %files section that was not found
Resolution: Check %files section for changes and typos. New versions may have renamed or removed a file. Also some change in buildroot environment may cause some files not to be created, consult configure script.
|
Analyse following RPM build log snippet. Describe contents accurately, without speculation or suggestions for resolution.
Your analysis must be as concise as possible, while keeping relevant information intact.
Snippet:
RPM build errors:
File not found: /builddir/build/BUILD/libsndfile-1.2.2-build/BUILDROOT/usr/lib64/libsndfile.sox
|
rpmbuild error that caused build failure
|
Given following log snippets, their explanation, and nothing else, explain what failure, if any, occurred during build of this package.
Snippets are in a format of [X] : [Y], where [X] is a log snippet, and [Y] is the explanation.
Snippets are delimited with '================'.
Drawing on information from all snippets, provide a concise explanation of the issue and recommend a solution.
Explanation of the issue, and recommended solution, should take a handful of sentences.
Snippets:
[CC=clang]: [clang is being used as the C compiler.]
=============
[CXX=clang++]: [clang++ is being used as the C++ compiler.]
=============
[g++: error: unrecognized command-line option â--config=/usr/lib/rpm/redhat/redhat-hardened-clang.cfgâ]: [This is the error message for the build failure.]
|
Issue: The build failed, because the RPM spec file set clang as the C compiler, but the package has hard-coded the C compiler to gcc. Therefore, gcc is failing, because it is trying to use compiler flags intended for clang.
Resolution: Fix the package to not hard-code gcc as the C compiler.
|
Analyse following RPM build log snippet. Describe contents accurately, without speculation or suggestions for resolution.
Your analysis must be as concise as possible, while keeping relevant information intact.
Snippet:
CC=clang
|
clang is being used as the C compiler.
|
Analyse following RPM build log snippet. Describe contents accurately, without speculation or suggestions for resolution.
Your analysis must be as concise as possible, while keeping relevant information intact.
Snippet:
CXX=clang++
|
clang++ is being used as the C++ compiler.
|
Analyse following RPM build log snippet. Describe contents accurately, without speculation or suggestions for resolution.
Your analysis must be as concise as possible, while keeping relevant information intact.
Snippet:
g++: error: unrecognized command-line option â--config=/usr/lib/rpm/redhat/redhat-hardened-clang.cfgâ
|
This is the error message for the build failure.
|
Given following log snippets, their explanation, and nothing else, explain what failure, if any, occurred during build of this package.
Snippets are in a format of [X] : [Y], where [X] is a log snippet, and [Y] is the explanation.
Snippets are delimited with '================'.
Drawing on information from all snippets, provide a concise explanation of the issue and recommend a solution.
Explanation of the issue, and recommended solution, should take a handful of sentences.
Snippets:
[+ /usr/bin/pytest -k 'not probe_options and not probe_run_online and not test_dnsviz_graph_output_format and not _online'
============================= test session starts ==============================
platform linux -- Python 3.13.3, pytest-8.3.5, pluggy-1.5.0
rootdir: /builddir/build/BUILD/dnsviz-0.11.0-build/dnsviz-0.11.0
collected 74 items / 32 deselected / 42 selected
tests/test_00_setup.py . [ 2%]
tests/test_11_response.py . [ 4%]
tests/test_62_dnsviz_graph_options.py ........ [ 23%]
tests/test_63_dnsviz_grok_options.py ....... [ 40%]
tests/test_64_dnsviz_print_options.py ....... [ 57%]
tests/test_71_dnsviz_probe_run_offline.py FFsss [ 69%]
tests/test_72_dnsviz_graph_run.py FFFF [ 78%]
tests/test_73_dnsviz_grok_run.py FFFF [ 88%]
tests/test_74_dnsviz_print_run.py FFFF [ 97%]
tests/test_99_cleanup.py . [100%]
=================================== FAILURES ===================================
_____ DNSProbeRunOfflineTestCase.test_dnsviz_probe_auth_local_signed_nsec ______
self = <test_71_dnsviz_probe_run_offline.DNSProbeRunOfflineTestCase testMethod=test_dnsviz_probe_auth_local_signed_nsec>
def test_dnsviz_probe_auth_local_signed_nsec(self):
> self._probe_zone('signed-nsec', True)
tests/test_71_dnsviz_probe_run_offline.py:53:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
tests/test_71_dnsviz_probe_run_offline.py:50: in _probe_zone
self.assertReturnCode(subprocess.call(cmd, stdout=fh))
tests/test_71_dnsviz_probe_run_offline.py:33: in assertReturnCode
self.assertEqual(retcode, 0)
E AssertionError: 4 != 0
----------------------------- Captured stderr call -----------------------------
Error analyzing example.com
Traceback (most recent call last):
File "/builddir/build/BUILD/dnsviz-0.11.0-build/BUILDROOT/usr/lib/python3.13/site-packages/dnsviz/commands/probe.py", line 167, in _analyze
a = cls(name, rdclass=rdclass, dlv_domain=dlv_domain, try_ipv4=try_ipv4, try_ipv6=try_ipv6, client_ipv4=client_ipv4, client_ipv6=client_ipv6, query_class_mixin=query_class_mixin, ceiling=c, edns_diagnostics=edns_diagnostics, explicit_delegations=explicit_delegations, stop_at_explicit=stop_at_explicit, odd_ports=odd_ports, extra_rdtypes=extra_rdtypes, explicit_only=explicit_only, analysis_cache=cache, cache_level=cache_level, analysis_cache_lock=cache_lock, transport_manager=tm, th_factories=th_factories, resolver=resolver)
File "/builddir/build/BUILD/dnsviz-0.11.0-build/BUILDROOT/usr/lib/python3.13/site-packages/dnsviz/analysis/online.py", line 1146, in __init__
self.local_ceiling = self._detect_ceiling(ceiling)[0]
~~~~~~~~~~~~~~~~~~~~^^^^^^^^^
File "/builddir/build/BUILD/dnsviz-0.11.0-build/BUILDROOT/usr/lib/python3.13/site-packages/dnsviz/analysis/online.py", line 1233, in _detect_ceiling
ans = self.resolver.query_for_answer(ceiling, dns.rdatatype.NS, self.rdclass)
File "/builddir/build/BUILD/dnsviz-0.11.0-build/BUILDROOT/usr/lib/python3.13/site-packages/dnsviz/resolver.py", line 438, in query_for_answer
response, server = self.query(qname, rdtype, rdclass)
~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^
File "/builddir/build/BUILD/dnsviz-0.11.0-build/BUILDROOT/usr/lib/python3.13/site-packages/dnsviz/resolver.py", line 426, in query
l = self._query(qname, rdtype, rdclass, 0, self.SRC_NONAUTH_ANS)
File "/builddir/build/BUILD/dnsviz-0.11.0-build/BUILDROOT/usr/lib/python3.13/site-packages/dnsviz/resolver.py", line 595, in _query
server_cookie = response.get_server_cookie()
File "/builddir/build/BUILD/dnsviz-0.11.0-build/BUILDROOT/usr/lib/python3.13/site-packages/dnsviz/response.py", line 325, in get_server_cookie
if cookie_opt is not None and len(cookie_opt.data) > 8:
^^^^^^^^^^^^^^^
AttributeError: 'CookieOption' object has no attribute 'data'
_____ DNSProbeRunOfflineTestCase.test_dnsviz_probe_auth_local_signed_nsec3 _____
self = <test_71_dnsviz_probe_run_offline.DNSProbeRunOfflineTestCase testMethod=test_dnsviz_probe_auth_local_signed_nsec3>
def test_dnsviz_probe_auth_local_signed_nsec3(self):
> self._probe_zone('signed-nsec3', True)
tests/test_71_dnsviz_probe_run_offline.py:56:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
tests/test_71_dnsviz_probe_run_offline.py:50: in _probe_zone
self.assertReturnCode(subprocess.call(cmd, stdout=fh))
tests/test_71_dnsviz_probe_run_offline.py:33: in assertReturnCode
self.assertEqual(retcode, 0)
E AssertionError: 4 != 0
----------------------------- Captured stderr call -----------------------------
Error analyzing example.com
Traceback (most recent call last):
File "/builddir/build/BUILD/dnsviz-0.11.0-build/BUILDROOT/usr/lib/python3.13/site-packages/dnsviz/commands/probe.py", line 167, in _analyze
a = cls(name, rdclass=rdclass, dlv_domain=dlv_domain, try_ipv4=try_ipv4, try_ipv6=try_ipv6, client_ipv4=client_ipv4, client_ipv6=client_ipv6, query_class_mixin=query_class_mixin, ceiling=c, edns_diagnostics=edns_diagnostics, explicit_delegations=explicit_delegations, stop_at_explicit=stop_at_explicit, odd_ports=odd_ports, extra_rdtypes=extra_rdtypes, explicit_only=explicit_only, analysis_cache=cache, cache_level=cache_level, analysis_cache_lock=cache_lock, transport_manager=tm, th_factories=th_factories, resolver=resolver)
File "/builddir/build/BUILD/dnsviz-0.11.0-build/BUILDROOT/usr/lib/python3.13/site-packages/dnsviz/analysis/online.py", line 1146, in __init__
self.local_ceiling = self._detect_ceiling(ceiling)[0]
~~~~~~~~~~~~~~~~~~~~^^^^^^^^^
File "/builddir/build/BUILD/dnsviz-0.11.0-build/BUILDROOT/usr/lib/python3.13/site-packages/dnsviz/analysis/online.py", line 1233, in _detect_ceiling
ans = self.resolver.query_for_answer(ceiling, dns.rdatatype.NS, self.rdclass)
File "/builddir/build/BUILD/dnsviz-0.11.0-build/BUILDROOT/usr/lib/python3.13/site-packages/dnsviz/resolver.py", line 438, in query_for_answer
response, server = self.query(qname, rdtype, rdclass)
~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^
File "/builddir/build/BUILD/dnsviz-0.11.0-build/BUILDROOT/usr/lib/python3.13/site-packages/dnsviz/resolver.py", line 426, in query
l = self._query(qname, rdtype, rdclass, 0, self.SRC_NONAUTH_ANS)
File "/builddir/build/BUILD/dnsviz-0.11.0-build/BUILDROOT/usr/lib/python3.13/site-packages/dnsviz/resolver.py", line 595, in _query
server_cookie = response.get_server_cookie()
File "/builddir/build/BUILD/dnsviz-0.11.0-build/BUILDROOT/usr/lib/python3.13/site-packages/dnsviz/response.py", line 325, in get_server_cookie
if cookie_opt is not None and len(cookie_opt.data) > 8:
^^^^^^^^^^^^^^^
AttributeError: 'CookieOption' object has no attribute 'data'
_________________ DNSGraphRunTestCase.test_dnsviz_graph_input __________________
self = <test_72_dnsviz_graph_run.DNSGraphRunTestCase testMethod=test_dnsviz_graph_input>
def test_dnsviz_graph_input(self):
input_file = get_probe_output_auth_file('signed-nsec')
with io.open(self.output.name, 'wb') as fh_out:
with io.open(input_file, 'rb') as fh_in:
p = subprocess.Popen(['dnsviz', 'graph'], stdin=subprocess.PIPE, stdout=fh_out)
p.communicate(fh_in.read())
> self.assertEqual(p.returncode, 0)
E AssertionError: 3 != 0
tests/test_72_dnsviz_graph_run.py:39: AssertionError
______________ DNSGraphRunTestCase.test_dnsviz_graph_names_input _______________
self = <test_72_dnsviz_graph_run.DNSGraphRunTestCase testMethod=test_dnsviz_graph_names_input>
def test_dnsviz_graph_names_input(self):
input_file = get_probe_output_auth_file('signed-nsec')
with io.open(self.output.name, 'wb') as fh:
> self.assertEqual(subprocess.call(['dnsviz', 'graph', '-r', input_file, '-f', self.names_file.name], stdout=fh), 0)
E AssertionError: 3 != 0
tests/test_72_dnsviz_graph_run.py:54: AssertionError
----------------------------- Captured stderr call -----------------------------
No input
_________________ DNSGraphRunTestCase.test_dnsviz_graph_output _________________
self = <test_72_dnsviz_graph_run.DNSGraphRunTestCase testMethod=test_dnsviz_graph_output>
def test_dnsviz_graph_output(self):
input_file = get_probe_output_auth_file('signed-nsec')
with io.open(self.output.name, 'wb') as fh:
> self.assertEqual(subprocess.call(['dnsviz', 'graph', '-r', input_file], cwd=self.run_cwd, stdout=fh), 0)
E AssertionError: 3 != 0
tests/test_72_dnsviz_graph_run.py:79: AssertionError
----------------------------- Captured stderr call -----------------------------
No input
________________ DNSGraphRunTestCase.test_dnsviz_graph_tk_input ________________
self = <test_72_dnsviz_graph_run.DNSGraphRunTestCase testMethod=test_dnsviz_graph_tk_input>
def test_dnsviz_graph_tk_input(self):
input_file = get_probe_output_auth_file('signed-nsec')
tk_file = get_tk_file('signed-nsec')
with io.open(self.output.name, 'wb') as fh:
> self.assertEqual(subprocess.call(['dnsviz', 'graph', '-r', input_file, '-t', tk_file], stdout=fh), 0)
E AssertionError: 3 != 0
tests/test_72_dnsviz_graph_run.py:67: AssertionError
----------------------------- Captured stderr call -----------------------------
No input
__________________ DNSGrokRunTestCase.test_dnsviz_grok_input ___________________
self = <test_73_dnsviz_grok_run.DNSGrokRunTestCase testMethod=test_dnsviz_grok_input>
def test_dnsviz_grok_input(self):
input_file = get_probe_output_auth_file('signed-nsec')
with io.open(self.output.name, 'wb') as fh_out:
with io.open(input_file, 'rb') as fh_in:
p = subprocess.Popen(['dnsviz', 'grok'], stdin=subprocess.PIPE, stdout=fh_out)
p.communicate(fh_in.read())
> self.assertEqual(p.returncode, 0)
E AssertionError: 3 != 0
tests/test_73_dnsviz_grok_run.py:39: AssertionError
_______________ DNSGrokRunTestCase.test_dnsviz_grok_names_input ________________
self = <test_73_dnsviz_grok_run.DNSGrokRunTestCase testMethod=test_dnsviz_grok_names_input>
def test_dnsviz_grok_names_input(self):
input_file = get_probe_output_auth_file('signed-nsec')
with io.open(self.output.name, 'wb') as fh:
> self.assertEqual(subprocess.call(['dnsviz', 'grok', '-r', input_file, '-f', self.names_file.name], stdout=fh), 0)
E AssertionError: 3 != 0
tests/test_73_dnsviz_grok_run.py:54: AssertionError
----------------------------- Captured stderr call -----------------------------
No input
__________________ DNSGrokRunTestCase.test_dnsviz_grok_output __________________
self = <test_73_dnsviz_grok_run.DNSGrokRunTestCase testMethod=test_dnsviz_grok_output>
def test_dnsviz_grok_output(self):
input_file = get_probe_output_auth_file('signed-nsec')
with io.open(self.output.name, 'wb') as fh:
> self.assertEqual(subprocess.call(['dnsviz', 'grok', '-r', input_file], cwd=self.run_cwd, stdout=fh), 0)
E AssertionError: 3 != 0
tests/test_73_dnsviz_grok_run.py:79: AssertionError
----------------------------- Captured stderr call -----------------------------
No input
_________________ DNSGrokRunTestCase.test_dnsviz_grok_tk_input _________________
self = <test_73_dnsviz_grok_run.DNSGrokRunTestCase testMethod=test_dnsviz_grok_tk_input>
def test_dnsviz_grok_tk_input(self):
input_file = get_probe_output_auth_file('signed-nsec')
tk_file = get_tk_file('signed-nsec')
with io.open(self.output.name, 'wb') as fh:
> self.assertEqual(subprocess.call(['dnsviz', 'grok', '-r', input_file, '-t', tk_file], stdout=fh), 0)
E AssertionError: 3 != 0
tests/test_73_dnsviz_grok_run.py:67: AssertionError
----------------------------- Captured stderr call -----------------------------
No input
_________________ DNSPrintRunTestCase.test_dnsviz_print_input __________________
self = <test_74_dnsviz_print_run.DNSPrintRunTestCase testMethod=test_dnsviz_print_input>
def test_dnsviz_print_input(self):
input_file = get_probe_output_auth_file('signed-nsec')
with io.open(self.output.name, 'wb') as fh_out:
with io.open(input_file, 'rb') as fh_in:
p = subprocess.Popen(['dnsviz', 'print'], stdin=subprocess.PIPE, stdout=fh_out)
p.communicate(fh_in.read())
> self.assertEqual(p.returncode, 0)
E AssertionError: 3 != 0
tests/test_74_dnsviz_print_run.py:39: AssertionError
______________ DNSPrintRunTestCase.test_dnsviz_print_names_input _______________
self = <test_74_dnsviz_print_run.DNSPrintRunTestCase testMethod=test_dnsviz_print_names_input>
def test_dnsviz_print_names_input(self):
input_file = get_probe_output_auth_file('signed-nsec')
with io.open(self.output.name, 'wb') as fh:
> self.assertEqual(subprocess.call(['dnsviz', 'print', '-r', input_file, '-f', self.names_file.name], stdout=fh), 0)
E AssertionError: 3 != 0
tests/test_74_dnsviz_print_run.py:54: AssertionError
----------------------------- Captured stderr call -----------------------------
No input
_________________ DNSPrintRunTestCase.test_dnsviz_print_output _________________
self = <test_74_dnsviz_print_run.DNSPrintRunTestCase testMethod=test_dnsviz_print_output>
def test_dnsviz_print_output(self):
input_file = get_probe_output_auth_file('signed-nsec')
with io.open(self.output.name, 'wb') as fh:
> self.assertEqual(subprocess.call(['dnsviz', 'print', '-r', input_file], cwd=self.run_cwd, stdout=fh), 0)
E AssertionError: 3 != 0
tests/test_74_dnsviz_print_run.py:79: AssertionError
----------------------------- Captured stderr call -----------------------------
No input
________________ DNSPrintRunTestCase.test_dnsviz_print_tk_input ________________
self = <test_74_dnsviz_print_run.DNSPrintRunTestCase testMethod=test_dnsviz_print_tk_input>
def test_dnsviz_print_tk_input(self):
input_file = get_probe_output_auth_file('signed-nsec')
tk_file = get_tk_file('signed-nsec')
with io.open(self.output.name, 'wb') as fh:
> self.assertEqual(subprocess.call(['dnsviz', 'print', '-r', input_file, '-t', tk_file], stdout=fh), 0)
E AssertionError: 3 != 0
tests/test_74_dnsviz_print_run.py:67: AssertionError
----------------------------- Captured stderr call -----------------------------
No input
=============================== warnings summary ===============================
<frozen importlib._bootstrap>:488
<frozen importlib._bootstrap>:488: DeprecationWarning: builtin type SwigPyPacked has no __module__ attribute
<frozen importlib._bootstrap>:488
<frozen importlib._bootstrap>:488: DeprecationWarning: builtin type SwigPyObject has no __module__ attribute
<frozen importlib._bootstrap>:488
<frozen importlib._bootstrap>:488: DeprecationWarning: builtin type swigvarlink has no __module__ attribute
-- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html
=========================== short test summary info ============================
FAILED tests/test_71_dnsviz_probe_run_offline.py::DNSProbeRunOfflineTestCase::test_dnsviz_probe_auth_local_signed_nsec
FAILED tests/test_71_dnsviz_probe_run_offline.py::DNSProbeRunOfflineTestCase::test_dnsviz_probe_auth_local_signed_nsec3
FAILED tests/test_72_dnsviz_graph_run.py::DNSGraphRunTestCase::test_dnsviz_graph_input
FAILED tests/test_72_dnsviz_graph_run.py::DNSGraphRunTestCase::test_dnsviz_graph_names_input
FAILED tests/test_72_dnsviz_graph_run.py::DNSGraphRunTestCase::test_dnsviz_graph_output
FAILED tests/test_72_dnsviz_graph_run.py::DNSGraphRunTestCase::test_dnsviz_graph_tk_input
FAILED tests/test_73_dnsviz_grok_run.py::DNSGrokRunTestCase::test_dnsviz_grok_input
FAILED tests/test_73_dnsviz_grok_run.py::DNSGrokRunTestCase::test_dnsviz_grok_names_input
FAILED tests/test_73_dnsviz_grok_run.py::DNSGrokRunTestCase::test_dnsviz_grok_output
FAILED tests/test_73_dnsviz_grok_run.py::DNSGrokRunTestCase::test_dnsviz_grok_tk_input
FAILED tests/test_74_dnsviz_print_run.py::DNSPrintRunTestCase::test_dnsviz_print_input
FAILED tests/test_74_dnsviz_print_run.py::DNSPrintRunTestCase::test_dnsviz_print_names_input
FAILED tests/test_74_dnsviz_print_run.py::DNSPrintRunTestCase::test_dnsviz_print_output
FAILED tests/test_74_dnsviz_print_run.py::DNSPrintRunTestCase::test_dnsviz_print_tk_input
===== 14 failed, 25 passed, 3 skipped, 32 deselected, 3 warnings in 7.80s ======
error: Bad exit status from /var/tmp/rpm-tmp.yg5z8E (%check)
RPM build errors:
Bad exit status from /var/tmp/rpm-tmp.yg5z8E (%check)]: [The snippet shows failed tests.]
|
Issue: The build failed because the testsuite failed. In this particular case, the testsuite uncovered that dnsviz is not compatible with newest python-dns.
Resolution: Use compatible versions of dnsviz and python-dns.
|
Analyse following RPM build log snippet. Describe contents accurately, without speculation or suggestions for resolution.
Your analysis must be as concise as possible, while keeping relevant information intact.
Snippet:
+ /usr/bin/pytest -k 'not probe_options and not probe_run_online and not test_dnsviz_graph_output_format and not _online'
============================= test session starts ==============================
platform linux -- Python 3.13.3, pytest-8.3.5, pluggy-1.5.0
rootdir: /builddir/build/BUILD/dnsviz-0.11.0-build/dnsviz-0.11.0
collected 74 items / 32 deselected / 42 selected
tests/test_00_setup.py . [ 2%]
tests/test_11_response.py . [ 4%]
tests/test_62_dnsviz_graph_options.py ........ [ 23%]
tests/test_63_dnsviz_grok_options.py ....... [ 40%]
tests/test_64_dnsviz_print_options.py ....... [ 57%]
tests/test_71_dnsviz_probe_run_offline.py FFsss [ 69%]
tests/test_72_dnsviz_graph_run.py FFFF [ 78%]
tests/test_73_dnsviz_grok_run.py FFFF [ 88%]
tests/test_74_dnsviz_print_run.py FFFF [ 97%]
tests/test_99_cleanup.py . [100%]
=================================== FAILURES ===================================
_____ DNSProbeRunOfflineTestCase.test_dnsviz_probe_auth_local_signed_nsec ______
self = <test_71_dnsviz_probe_run_offline.DNSProbeRunOfflineTestCase testMethod=test_dnsviz_probe_auth_local_signed_nsec>
def test_dnsviz_probe_auth_local_signed_nsec(self):
> self._probe_zone('signed-nsec', True)
tests/test_71_dnsviz_probe_run_offline.py:53:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
tests/test_71_dnsviz_probe_run_offline.py:50: in _probe_zone
self.assertReturnCode(subprocess.call(cmd, stdout=fh))
tests/test_71_dnsviz_probe_run_offline.py:33: in assertReturnCode
self.assertEqual(retcode, 0)
E AssertionError: 4 != 0
----------------------------- Captured stderr call -----------------------------
Error analyzing example.com
Traceback (most recent call last):
File "/builddir/build/BUILD/dnsviz-0.11.0-build/BUILDROOT/usr/lib/python3.13/site-packages/dnsviz/commands/probe.py", line 167, in _analyze
a = cls(name, rdclass=rdclass, dlv_domain=dlv_domain, try_ipv4=try_ipv4, try_ipv6=try_ipv6, client_ipv4=client_ipv4, client_ipv6=client_ipv6, query_class_mixin=query_class_mixin, ceiling=c, edns_diagnostics=edns_diagnostics, explicit_delegations=explicit_delegations, stop_at_explicit=stop_at_explicit, odd_ports=odd_ports, extra_rdtypes=extra_rdtypes, explicit_only=explicit_only, analysis_cache=cache, cache_level=cache_level, analysis_cache_lock=cache_lock, transport_manager=tm, th_factories=th_factories, resolver=resolver)
File "/builddir/build/BUILD/dnsviz-0.11.0-build/BUILDROOT/usr/lib/python3.13/site-packages/dnsviz/analysis/online.py", line 1146, in __init__
self.local_ceiling = self._detect_ceiling(ceiling)[0]
~~~~~~~~~~~~~~~~~~~~^^^^^^^^^
File "/builddir/build/BUILD/dnsviz-0.11.0-build/BUILDROOT/usr/lib/python3.13/site-packages/dnsviz/analysis/online.py", line 1233, in _detect_ceiling
ans = self.resolver.query_for_answer(ceiling, dns.rdatatype.NS, self.rdclass)
File "/builddir/build/BUILD/dnsviz-0.11.0-build/BUILDROOT/usr/lib/python3.13/site-packages/dnsviz/resolver.py", line 438, in query_for_answer
response, server = self.query(qname, rdtype, rdclass)
~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^
File "/builddir/build/BUILD/dnsviz-0.11.0-build/BUILDROOT/usr/lib/python3.13/site-packages/dnsviz/resolver.py", line 426, in query
l = self._query(qname, rdtype, rdclass, 0, self.SRC_NONAUTH_ANS)
File "/builddir/build/BUILD/dnsviz-0.11.0-build/BUILDROOT/usr/lib/python3.13/site-packages/dnsviz/resolver.py", line 595, in _query
server_cookie = response.get_server_cookie()
File "/builddir/build/BUILD/dnsviz-0.11.0-build/BUILDROOT/usr/lib/python3.13/site-packages/dnsviz/response.py", line 325, in get_server_cookie
if cookie_opt is not None and len(cookie_opt.data) > 8:
^^^^^^^^^^^^^^^
AttributeError: 'CookieOption' object has no attribute 'data'
_____ DNSProbeRunOfflineTestCase.test_dnsviz_probe_auth_local_signed_nsec3 _____
self = <test_71_dnsviz_probe_run_offline.DNSProbeRunOfflineTestCase testMethod=test_dnsviz_probe_auth_local_signed_nsec3>
def test_dnsviz_probe_auth_local_signed_nsec3(self):
> self._probe_zone('signed-nsec3', True)
tests/test_71_dnsviz_probe_run_offline.py:56:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
tests/test_71_dnsviz_probe_run_offline.py:50: in _probe_zone
self.assertReturnCode(subprocess.call(cmd, stdout=fh))
tests/test_71_dnsviz_probe_run_offline.py:33: in assertReturnCode
self.assertEqual(retcode, 0)
E AssertionError: 4 != 0
----------------------------- Captured stderr call -----------------------------
Error analyzing example.com
Traceback (most recent call last):
File "/builddir/build/BUILD/dnsviz-0.11.0-build/BUILDROOT/usr/lib/python3.13/site-packages/dnsviz/commands/probe.py", line 167, in _analyze
a = cls(name, rdclass=rdclass, dlv_domain=dlv_domain, try_ipv4=try_ipv4, try_ipv6=try_ipv6, client_ipv4=client_ipv4, client_ipv6=client_ipv6, query_class_mixin=query_class_mixin, ceiling=c, edns_diagnostics=edns_diagnostics, explicit_delegations=explicit_delegations, stop_at_explicit=stop_at_explicit, odd_ports=odd_ports, extra_rdtypes=extra_rdtypes, explicit_only=explicit_only, analysis_cache=cache, cache_level=cache_level, analysis_cache_lock=cache_lock, transport_manager=tm, th_factories=th_factories, resolver=resolver)
File "/builddir/build/BUILD/dnsviz-0.11.0-build/BUILDROOT/usr/lib/python3.13/site-packages/dnsviz/analysis/online.py", line 1146, in __init__
self.local_ceiling = self._detect_ceiling(ceiling)[0]
~~~~~~~~~~~~~~~~~~~~^^^^^^^^^
File "/builddir/build/BUILD/dnsviz-0.11.0-build/BUILDROOT/usr/lib/python3.13/site-packages/dnsviz/analysis/online.py", line 1233, in _detect_ceiling
ans = self.resolver.query_for_answer(ceiling, dns.rdatatype.NS, self.rdclass)
File "/builddir/build/BUILD/dnsviz-0.11.0-build/BUILDROOT/usr/lib/python3.13/site-packages/dnsviz/resolver.py", line 438, in query_for_answer
response, server = self.query(qname, rdtype, rdclass)
~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^
File "/builddir/build/BUILD/dnsviz-0.11.0-build/BUILDROOT/usr/lib/python3.13/site-packages/dnsviz/resolver.py", line 426, in query
l = self._query(qname, rdtype, rdclass, 0, self.SRC_NONAUTH_ANS)
File "/builddir/build/BUILD/dnsviz-0.11.0-build/BUILDROOT/usr/lib/python3.13/site-packages/dnsviz/resolver.py", line 595, in _query
server_cookie = response.get_server_cookie()
File "/builddir/build/BUILD/dnsviz-0.11.0-build/BUILDROOT/usr/lib/python3.13/site-packages/dnsviz/response.py", line 325, in get_server_cookie
if cookie_opt is not None and len(cookie_opt.data) > 8:
^^^^^^^^^^^^^^^
AttributeError: 'CookieOption' object has no attribute 'data'
_________________ DNSGraphRunTestCase.test_dnsviz_graph_input __________________
self = <test_72_dnsviz_graph_run.DNSGraphRunTestCase testMethod=test_dnsviz_graph_input>
def test_dnsviz_graph_input(self):
input_file = get_probe_output_auth_file('signed-nsec')
with io.open(self.output.name, 'wb') as fh_out:
with io.open(input_file, 'rb') as fh_in:
p = subprocess.Popen(['dnsviz', 'graph'], stdin=subprocess.PIPE, stdout=fh_out)
p.communicate(fh_in.read())
> self.assertEqual(p.returncode, 0)
E AssertionError: 3 != 0
tests/test_72_dnsviz_graph_run.py:39: AssertionError
______________ DNSGraphRunTestCase.test_dnsviz_graph_names_input _______________
self = <test_72_dnsviz_graph_run.DNSGraphRunTestCase testMethod=test_dnsviz_graph_names_input>
def test_dnsviz_graph_names_input(self):
input_file = get_probe_output_auth_file('signed-nsec')
with io.open(self.output.name, 'wb') as fh:
> self.assertEqual(subprocess.call(['dnsviz', 'graph', '-r', input_file, '-f', self.names_file.name], stdout=fh), 0)
E AssertionError: 3 != 0
tests/test_72_dnsviz_graph_run.py:54: AssertionError
----------------------------- Captured stderr call -----------------------------
No input
_________________ DNSGraphRunTestCase.test_dnsviz_graph_output _________________
self = <test_72_dnsviz_graph_run.DNSGraphRunTestCase testMethod=test_dnsviz_graph_output>
def test_dnsviz_graph_output(self):
input_file = get_probe_output_auth_file('signed-nsec')
with io.open(self.output.name, 'wb') as fh:
> self.assertEqual(subprocess.call(['dnsviz', 'graph', '-r', input_file], cwd=self.run_cwd, stdout=fh), 0)
E AssertionError: 3 != 0
tests/test_72_dnsviz_graph_run.py:79: AssertionError
----------------------------- Captured stderr call -----------------------------
No input
________________ DNSGraphRunTestCase.test_dnsviz_graph_tk_input ________________
self = <test_72_dnsviz_graph_run.DNSGraphRunTestCase testMethod=test_dnsviz_graph_tk_input>
def test_dnsviz_graph_tk_input(self):
input_file = get_probe_output_auth_file('signed-nsec')
tk_file = get_tk_file('signed-nsec')
with io.open(self.output.name, 'wb') as fh:
> self.assertEqual(subprocess.call(['dnsviz', 'graph', '-r', input_file, '-t', tk_file], stdout=fh), 0)
E AssertionError: 3 != 0
tests/test_72_dnsviz_graph_run.py:67: AssertionError
----------------------------- Captured stderr call -----------------------------
No input
__________________ DNSGrokRunTestCase.test_dnsviz_grok_input ___________________
self = <test_73_dnsviz_grok_run.DNSGrokRunTestCase testMethod=test_dnsviz_grok_input>
def test_dnsviz_grok_input(self):
input_file = get_probe_output_auth_file('signed-nsec')
with io.open(self.output.name, 'wb') as fh_out:
with io.open(input_file, 'rb') as fh_in:
p = subprocess.Popen(['dnsviz', 'grok'], stdin=subprocess.PIPE, stdout=fh_out)
p.communicate(fh_in.read())
> self.assertEqual(p.returncode, 0)
E AssertionError: 3 != 0
tests/test_73_dnsviz_grok_run.py:39: AssertionError
_______________ DNSGrokRunTestCase.test_dnsviz_grok_names_input ________________
self = <test_73_dnsviz_grok_run.DNSGrokRunTestCase testMethod=test_dnsviz_grok_names_input>
def test_dnsviz_grok_names_input(self):
input_file = get_probe_output_auth_file('signed-nsec')
with io.open(self.output.name, 'wb') as fh:
> self.assertEqual(subprocess.call(['dnsviz', 'grok', '-r', input_file, '-f', self.names_file.name], stdout=fh), 0)
E AssertionError: 3 != 0
tests/test_73_dnsviz_grok_run.py:54: AssertionError
----------------------------- Captured stderr call -----------------------------
No input
__________________ DNSGrokRunTestCase.test_dnsviz_grok_output __________________
self = <test_73_dnsviz_grok_run.DNSGrokRunTestCase testMethod=test_dnsviz_grok_output>
def test_dnsviz_grok_output(self):
input_file = get_probe_output_auth_file('signed-nsec')
with io.open(self.output.name, 'wb') as fh:
> self.assertEqual(subprocess.call(['dnsviz', 'grok', '-r', input_file], cwd=self.run_cwd, stdout=fh), 0)
E AssertionError: 3 != 0
tests/test_73_dnsviz_grok_run.py:79: AssertionError
----------------------------- Captured stderr call -----------------------------
No input
_________________ DNSGrokRunTestCase.test_dnsviz_grok_tk_input _________________
self = <test_73_dnsviz_grok_run.DNSGrokRunTestCase testMethod=test_dnsviz_grok_tk_input>
def test_dnsviz_grok_tk_input(self):
input_file = get_probe_output_auth_file('signed-nsec')
tk_file = get_tk_file('signed-nsec')
with io.open(self.output.name, 'wb') as fh:
> self.assertEqual(subprocess.call(['dnsviz', 'grok', '-r', input_file, '-t', tk_file], stdout=fh), 0)
E AssertionError: 3 != 0
tests/test_73_dnsviz_grok_run.py:67: AssertionError
----------------------------- Captured stderr call -----------------------------
No input
_________________ DNSPrintRunTestCase.test_dnsviz_print_input __________________
self = <test_74_dnsviz_print_run.DNSPrintRunTestCase testMethod=test_dnsviz_print_input>
def test_dnsviz_print_input(self):
input_file = get_probe_output_auth_file('signed-nsec')
with io.open(self.output.name, 'wb') as fh_out:
with io.open(input_file, 'rb') as fh_in:
p = subprocess.Popen(['dnsviz', 'print'], stdin=subprocess.PIPE, stdout=fh_out)
p.communicate(fh_in.read())
> self.assertEqual(p.returncode, 0)
E AssertionError: 3 != 0
tests/test_74_dnsviz_print_run.py:39: AssertionError
______________ DNSPrintRunTestCase.test_dnsviz_print_names_input _______________
self = <test_74_dnsviz_print_run.DNSPrintRunTestCase testMethod=test_dnsviz_print_names_input>
def test_dnsviz_print_names_input(self):
input_file = get_probe_output_auth_file('signed-nsec')
with io.open(self.output.name, 'wb') as fh:
> self.assertEqual(subprocess.call(['dnsviz', 'print', '-r', input_file, '-f', self.names_file.name], stdout=fh), 0)
E AssertionError: 3 != 0
tests/test_74_dnsviz_print_run.py:54: AssertionError
----------------------------- Captured stderr call -----------------------------
No input
_________________ DNSPrintRunTestCase.test_dnsviz_print_output _________________
self = <test_74_dnsviz_print_run.DNSPrintRunTestCase testMethod=test_dnsviz_print_output>
def test_dnsviz_print_output(self):
input_file = get_probe_output_auth_file('signed-nsec')
with io.open(self.output.name, 'wb') as fh:
> self.assertEqual(subprocess.call(['dnsviz', 'print', '-r', input_file], cwd=self.run_cwd, stdout=fh), 0)
E AssertionError: 3 != 0
tests/test_74_dnsviz_print_run.py:79: AssertionError
----------------------------- Captured stderr call -----------------------------
No input
________________ DNSPrintRunTestCase.test_dnsviz_print_tk_input ________________
self = <test_74_dnsviz_print_run.DNSPrintRunTestCase testMethod=test_dnsviz_print_tk_input>
def test_dnsviz_print_tk_input(self):
input_file = get_probe_output_auth_file('signed-nsec')
tk_file = get_tk_file('signed-nsec')
with io.open(self.output.name, 'wb') as fh:
> self.assertEqual(subprocess.call(['dnsviz', 'print', '-r', input_file, '-t', tk_file], stdout=fh), 0)
E AssertionError: 3 != 0
tests/test_74_dnsviz_print_run.py:67: AssertionError
----------------------------- Captured stderr call -----------------------------
No input
=============================== warnings summary ===============================
<frozen importlib._bootstrap>:488
<frozen importlib._bootstrap>:488: DeprecationWarning: builtin type SwigPyPacked has no __module__ attribute
<frozen importlib._bootstrap>:488
<frozen importlib._bootstrap>:488: DeprecationWarning: builtin type SwigPyObject has no __module__ attribute
<frozen importlib._bootstrap>:488
<frozen importlib._bootstrap>:488: DeprecationWarning: builtin type swigvarlink has no __module__ attribute
-- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html
=========================== short test summary info ============================
FAILED tests/test_71_dnsviz_probe_run_offline.py::DNSProbeRunOfflineTestCase::test_dnsviz_probe_auth_local_signed_nsec
FAILED tests/test_71_dnsviz_probe_run_offline.py::DNSProbeRunOfflineTestCase::test_dnsviz_probe_auth_local_signed_nsec3
FAILED tests/test_72_dnsviz_graph_run.py::DNSGraphRunTestCase::test_dnsviz_graph_input
FAILED tests/test_72_dnsviz_graph_run.py::DNSGraphRunTestCase::test_dnsviz_graph_names_input
FAILED tests/test_72_dnsviz_graph_run.py::DNSGraphRunTestCase::test_dnsviz_graph_output
FAILED tests/test_72_dnsviz_graph_run.py::DNSGraphRunTestCase::test_dnsviz_graph_tk_input
FAILED tests/test_73_dnsviz_grok_run.py::DNSGrokRunTestCase::test_dnsviz_grok_input
FAILED tests/test_73_dnsviz_grok_run.py::DNSGrokRunTestCase::test_dnsviz_grok_names_input
FAILED tests/test_73_dnsviz_grok_run.py::DNSGrokRunTestCase::test_dnsviz_grok_output
FAILED tests/test_73_dnsviz_grok_run.py::DNSGrokRunTestCase::test_dnsviz_grok_tk_input
FAILED tests/test_74_dnsviz_print_run.py::DNSPrintRunTestCase::test_dnsviz_print_input
FAILED tests/test_74_dnsviz_print_run.py::DNSPrintRunTestCase::test_dnsviz_print_names_input
FAILED tests/test_74_dnsviz_print_run.py::DNSPrintRunTestCase::test_dnsviz_print_output
FAILED tests/test_74_dnsviz_print_run.py::DNSPrintRunTestCase::test_dnsviz_print_tk_input
===== 14 failed, 25 passed, 3 skipped, 32 deselected, 3 warnings in 7.80s ======
error: Bad exit status from /var/tmp/rpm-tmp.yg5z8E (%check)
RPM build errors:
Bad exit status from /var/tmp/rpm-tmp.yg5z8E (%check)
|
The snippet shows failed tests.
|
Given following log snippets, their explanation, and nothing else, explain what failure, if any, occurred during build of this package.
Snippets are in a format of [X] : [Y], where [X] is a log snippet, and [Y] is the explanation.
Snippets are delimited with '================'.
Drawing on information from all snippets, provide a concise explanation of the issue and recommend a solution.
Explanation of the issue, and recommended solution, should take a handful of sentences.
Snippets:
[interface/dataedit.c:212:46: error: passing argument 2 of ‘XawListChange’ from incompatible pointer type [-Wincompatible-pointer-types]]: [The relevant error message saying that type of the second argument passed to the 'XawListChange' function is of incompatible type.]
=============
[ 212 | XawListChange( dataedit_list_widget, list_text, 0, 0, True );
| ^~~~~~~~~
| |
| char **]: [The relevant compiler hint saying that the argument type being passed in is of 'char **' type.]
=============
[/usr/include/X11/Xaw/List.h:170:27: note: expected ‘const char **’ but argument is of type ‘char **’
170 | _Xconst char **list,
| ^]: [The relevant compiler hint saying that the 'XawListChange' function definition is expecting argument of type 'const char **’.]
|
Issue: Argument of an incompatible data type has been passed in the function.
Resolution: Either typecast the 'list_text' argument to '(const char **)' or rework the memory ownership of the 'list_text' variable.
|
Analyse following RPM build log snippet. Describe contents accurately, without speculation or suggestions for resolution.
Your analysis must be as concise as possible, while keeping relevant information intact.
Snippet:
interface/dataedit.c:212:46: error: passing argument 2 of ‘XawListChange’ from incompatible pointer type [-Wincompatible-pointer-types]
|
The relevant error message saying that type of the second argument passed to the 'XawListChange' function is of incompatible type.
|
Analyse following RPM build log snippet. Describe contents accurately, without speculation or suggestions for resolution.
Your analysis must be as concise as possible, while keeping relevant information intact.
Snippet:
212 | XawListChange( dataedit_list_widget, list_text, 0, 0, True );
| ^~~~~~~~~
| |
| char **
|
The relevant compiler hint saying that the argument type being passed in is of 'char **' type.
|
Analyse following RPM build log snippet. Describe contents accurately, without speculation or suggestions for resolution.
Your analysis must be as concise as possible, while keeping relevant information intact.
Snippet:
/usr/include/X11/Xaw/List.h:170:27: note: expected ‘const char **’ but argument is of type ‘char **’
170 | _Xconst char **list,
| ^
|
The relevant compiler hint saying that the 'XawListChange' function definition is expecting argument of type 'const char **’.
|
Given following log snippets, their explanation, and nothing else, explain what failure, if any, occurred during build of this package.
Snippets are in a format of [X] : [Y], where [X] is a log snippet, and [Y] is the explanation.
Snippets are delimited with '================'.
Drawing on information from all snippets, provide a concise explanation of the issue and recommend a solution.
Explanation of the issue, and recommended solution, should take a handful of sentences.
Snippets:
[DEBUG util.py:459: Problem: nothing provides requested (crate(clap_complete/default) >= 4.5.47 with crate(clap_complete/default) < 5.0.0~)]: [There is error in providing dependency in specific version.]
|
Issue: There is error in providing dependency crate(clap_complete/default) in specific version.
Resolution: Provide dependency in proper version.
|
Analyse following RPM build log snippet. Describe contents accurately, without speculation or suggestions for resolution.
Your analysis must be as concise as possible, while keeping relevant information intact.
Snippet:
DEBUG util.py:459: Problem: nothing provides requested (crate(clap_complete/default) >= 4.5.47 with crate(clap_complete/default) < 5.0.0~)
|
There is error in providing dependency in specific version.
|
Given following log snippets, their explanation, and nothing else, explain what failure, if any, occurred during build of this package.
Snippets are in a format of [X] : [Y], where [X] is a log snippet, and [Y] is the explanation.
Snippets are delimited with '================'.
Drawing on information from all snippets, provide a concise explanation of the issue and recommend a solution.
Explanation of the issue, and recommended solution, should take a handful of sentences.
Snippets:
[ERROR: Command failed:
# /usr/bin/dnf5 builddep --installroot /var/lib/mock/fedora-rawhide-x86_64-1750238802.372176/root/ --releasever 43 /var/lib/mock/fedora-rawhide-x86_64-1750238802.372176/root/builddir/build/SRPMS/awscli2-2.27.0-1.fc43.buildreqs.nosrc.rpm --setopt=deltarpm=False --setopt=allow_vendor_change=yes --allowerasing --setopt=tsflags=nocontexts --setopt=tsflags=nocontexts --setopt=tsflags=nocontexts
]: [dnf command that failed]
=============
[No match for argument: python3dist(awscrt) >= 0.25.4]: [build dependency that is missing]
|
Issue: Build dependency is missing.
Resolution: Ensure that dnf has repositories with all needed build dependencies.
|
Analyse following RPM build log snippet. Describe contents accurately, without speculation or suggestions for resolution.
Your analysis must be as concise as possible, while keeping relevant information intact.
Snippet:
ERROR: Command failed:
# /usr/bin/dnf5 builddep --installroot /var/lib/mock/fedora-rawhide-x86_64-1750238802.372176/root/ --releasever 43 /var/lib/mock/fedora-rawhide-x86_64-1750238802.372176/root/builddir/build/SRPMS/awscli2-2.27.0-1.fc43.buildreqs.nosrc.rpm --setopt=deltarpm=False --setopt=allow_vendor_change=yes --allowerasing --setopt=tsflags=nocontexts --setopt=tsflags=nocontexts --setopt=tsflags=nocontexts
|
dnf command that failed
|
Analyse following RPM build log snippet. Describe contents accurately, without speculation or suggestions for resolution.
Your analysis must be as concise as possible, while keeping relevant information intact.
Snippet:
No match for argument: python3dist(awscrt) >= 0.25.4
|
build dependency that is missing
|
Given following log snippets, their explanation, and nothing else, explain what failure, if any, occurred during build of this package.
Snippets are in a format of [X] : [Y], where [X] is a log snippet, and [Y] is the explanation.
Snippets are delimited with '================'.
Drawing on information from all snippets, provide a concise explanation of the issue and recommend a solution.
Explanation of the issue, and recommended solution, should take a handful of sentences.
Snippets:
[:: [ 14:40:05 ] :: [ BEGIN ] :: Running 'alternatives --set mta /usr/sbin/sendmail.sendmail'
/usr/sbin/sendmail.sendmail has not been configured as an alternative for mta
:: [ 14:40:05 ] :: [ FAIL ] :: Command 'alternatives --set mta /usr/sbin/sendmail.sendmail' (Expected 0, got 2)]: [alternatives command failed]
=============
[:: [ 14:40:05 ] :: [ FAIL ] :: Service must start without problem (Expected 0, got 1)
]: [Failure caused by the alternative not being configured correctly.a]
=============
[:: [ 14:40:10 ] :: [ FAIL ] :: Command 'systemctl status --no-pager sendmail ' (Expected 0, got 3)
]: [Failure caused by the alternative not being configured correctly.a]
=============
[:: [ 14:40:10 ] :: [ FAIL ] :: Already started service (Expected 0, got 1)
]: [Failure caused by the alternative not being configured correctly.a]
=============
[:: [ 14:40:15 ] :: [ FAIL ] :: Command 'systemctl status --no-pager sendmail' (Expected 0, got 3)
]: [Failure caused by the alternative not being configured correctly.a]
=============
[:: [ 14:40:16 ] :: [ FAIL ] :: Restarting of service (Expected 0, got 1)
]: [Failure caused by the alternative not being configured correctly.a]
=============
[:: [ 14:40:21 ] :: [ FAIL ] :: Command 'systemctl status --no-pager sendmail ' (Expected 0, got 3)
]: [Failure caused by the alternative not being configured correctly.a]
=============
[:: [ 14:40:36 ] :: [ FAIL ] :: File /var/run/sendmail.pid should exist
]: [Failure caused by the alternative not being configured correctly.a]
=============
[:: [ 14:40:47 ] :: [ FAIL ] :: Starting service for restarting under nonpriv user (Expected 0, got 1)
]: [Failure caused by the alternative not being configured correctly.a]
=============
[:: [ 14:40:52 ] :: [ FAIL ] :: Service have to implement start function (Expected 0, got 1)
]: [Failure caused by the alternative not being configured correctly.a]
=============
[:: [ 14:40:57 ] :: [ FAIL ] :: Service have to implement restart function (Expected 0, got 1)
]: [Failure caused by the alternative not being configured correctly.a]
=============
[:: [ 14:41:02 ] :: [ FAIL ] :: Service have to implement status function (Expected 0, got 3)
]: [Failure caused by the alternative not being configured correctly.a]
=============
[:: [ 14:41:17 ] :: [ FAIL ] :: Service have to implement reload function (Expected 0,3, got 1)
]: [Failure caused by the alternative not being configured correctly.a]
|
Issue: Path /usr/sbin/sendmail.sendmail has been changed to /usr/bin/sendmail.sendmail, which makes the test fail.
Resolution: "alternatives --set mta $(rpm --eval '%{_sbindir}')/sendmail.sendmail" needs to be used instead of "alternatives --set mta /usr/sbin/sendmail.sendmail", that sets correct path according to system.
|
Analyse following RPM build log snippet. Describe contents accurately, without speculation or suggestions for resolution.
Your analysis must be as concise as possible, while keeping relevant information intact.
Snippet:
:: [ 14:40:05 ] :: [ BEGIN ] :: Running 'alternatives --set mta /usr/sbin/sendmail.sendmail'
/usr/sbin/sendmail.sendmail has not been configured as an alternative for mta
:: [ 14:40:05 ] :: [ FAIL ] :: Command 'alternatives --set mta /usr/sbin/sendmail.sendmail' (Expected 0, got 2)
|
alternatives command failed
|
Analyse following RPM build log snippet. Describe contents accurately, without speculation or suggestions for resolution.
Your analysis must be as concise as possible, while keeping relevant information intact.
Snippet:
:: [ 14:40:05 ] :: [ FAIL ] :: Service must start without problem (Expected 0, got 1)
|
Failure caused by the alternative not being configured correctly.a
|
Analyse following RPM build log snippet. Describe contents accurately, without speculation or suggestions for resolution.
Your analysis must be as concise as possible, while keeping relevant information intact.
Snippet:
:: [ 14:40:10 ] :: [ FAIL ] :: Command 'systemctl status --no-pager sendmail ' (Expected 0, got 3)
|
Failure caused by the alternative not being configured correctly.a
|
Analyse following RPM build log snippet. Describe contents accurately, without speculation or suggestions for resolution.
Your analysis must be as concise as possible, while keeping relevant information intact.
Snippet:
:: [ 14:40:10 ] :: [ FAIL ] :: Already started service (Expected 0, got 1)
|
Failure caused by the alternative not being configured correctly.a
|
Analyse following RPM build log snippet. Describe contents accurately, without speculation or suggestions for resolution.
Your analysis must be as concise as possible, while keeping relevant information intact.
Snippet:
:: [ 14:40:15 ] :: [ FAIL ] :: Command 'systemctl status --no-pager sendmail' (Expected 0, got 3)
|
Failure caused by the alternative not being configured correctly.a
|
Analyse following RPM build log snippet. Describe contents accurately, without speculation or suggestions for resolution.
Your analysis must be as concise as possible, while keeping relevant information intact.
Snippet:
:: [ 14:40:16 ] :: [ FAIL ] :: Restarting of service (Expected 0, got 1)
|
Failure caused by the alternative not being configured correctly.a
|
Analyse following RPM build log snippet. Describe contents accurately, without speculation or suggestions for resolution.
Your analysis must be as concise as possible, while keeping relevant information intact.
Snippet:
:: [ 14:40:21 ] :: [ FAIL ] :: Command 'systemctl status --no-pager sendmail ' (Expected 0, got 3)
|
Failure caused by the alternative not being configured correctly.a
|
Analyse following RPM build log snippet. Describe contents accurately, without speculation or suggestions for resolution.
Your analysis must be as concise as possible, while keeping relevant information intact.
Snippet:
:: [ 14:40:36 ] :: [ FAIL ] :: File /var/run/sendmail.pid should exist
|
Failure caused by the alternative not being configured correctly.a
|
Analyse following RPM build log snippet. Describe contents accurately, without speculation or suggestions for resolution.
Your analysis must be as concise as possible, while keeping relevant information intact.
Snippet:
:: [ 14:40:47 ] :: [ FAIL ] :: Starting service for restarting under nonpriv user (Expected 0, got 1)
|
Failure caused by the alternative not being configured correctly.a
|
Analyse following RPM build log snippet. Describe contents accurately, without speculation or suggestions for resolution.
Your analysis must be as concise as possible, while keeping relevant information intact.
Snippet:
:: [ 14:40:52 ] :: [ FAIL ] :: Service have to implement start function (Expected 0, got 1)
|
Failure caused by the alternative not being configured correctly.a
|
Analyse following RPM build log snippet. Describe contents accurately, without speculation or suggestions for resolution.
Your analysis must be as concise as possible, while keeping relevant information intact.
Snippet:
:: [ 14:40:57 ] :: [ FAIL ] :: Service have to implement restart function (Expected 0, got 1)
|
Failure caused by the alternative not being configured correctly.a
|
Analyse following RPM build log snippet. Describe contents accurately, without speculation or suggestions for resolution.
Your analysis must be as concise as possible, while keeping relevant information intact.
Snippet:
:: [ 14:41:02 ] :: [ FAIL ] :: Service have to implement status function (Expected 0, got 3)
|
Failure caused by the alternative not being configured correctly.a
|
Analyse following RPM build log snippet. Describe contents accurately, without speculation or suggestions for resolution.
Your analysis must be as concise as possible, while keeping relevant information intact.
Snippet:
:: [ 14:41:17 ] :: [ FAIL ] :: Service have to implement reload function (Expected 0,3, got 1)
|
Failure caused by the alternative not being configured correctly.a
|
Given following log snippets, their explanation, and nothing else, explain what failure, if any, occurred during build of this package.
Snippets are in a format of [X] : [Y], where [X] is a log snippet, and [Y] is the explanation.
Snippets are delimited with '================'.
Drawing on information from all snippets, provide a concise explanation of the issue and recommend a solution.
Explanation of the issue, and recommended solution, should take a handful of sentences.
Snippets:
[meson.build:280:10: ERROR: Dependency "systemd" not found, tried pkgconfig]: ["systemd" is not foudn as a dependency by meson.build]
=============
[ERROR: Command failed:
# /usr/bin/systemd-nspawn -q -M 665829041bcf4c3db56a3c512ac8dc46 -D /var/lib/mock/fedora-rawhide-x86_64-1746776165.100666/root -a -u mockbuild --capability=cap_ipc_lock --rlimit=RLIMIT_NOFILE=10240 --capability=cap_ipc_lock --bind=/tmp/mock-resolv.a7lj8nrm:/etc/resolv.conf --bind=/dev/btrfs-control --bind=/dev/mapper/control --bind=/dev/fuse --bind=/dev/loop-control --bind=/dev/loop0 --bind=/dev/loop1 --bind=/dev/loop2 --bind=/dev/loop3 --bind=/dev/loop4 --bind=/dev/loop5 --bind=/dev/loop6 --bind=/dev/loop7 --bind=/dev/loop8 --bind=/dev/loop9 --bind=/dev/loop10 --bind=/dev/loop11 --console=pipe --setenv=TERM=vt100 --setenv=SHELL=/bin/bash --setenv=HOME=/builddir --setenv=HOSTNAME=mock --setenv=PATH=/usr/bin:/bin:/usr/sbin:/sbin '--setenv=PROMPT_COMMAND=printf "\033]0;<mock-chroot>\007"' '--setenv=PS1=<mock-chroot> \s-\v\$ ' --setenv=LANG=C.UTF-8 --resolv-conf=off bash --login -c '/usr/bin/rpmbuild -bb --target x86_64 --nodeps /builddir/build/originals/pipewire.spec']: [Container is unable to spawn due to missing dependency, "systemd"]
|
Issue: Missing dependency "systemd"
Resolution: Possibly, installing systemd-devel might help meson.build to discover systemd
|
Analyse following RPM build log snippet. Describe contents accurately, without speculation or suggestions for resolution.
Your analysis must be as concise as possible, while keeping relevant information intact.
Snippet:
meson.build:280:10: ERROR: Dependency "systemd" not found, tried pkgconfig
|
"systemd" is not foudn as a dependency by meson.build
|
Analyse following RPM build log snippet. Describe contents accurately, without speculation or suggestions for resolution.
Your analysis must be as concise as possible, while keeping relevant information intact.
Snippet:
ERROR: Command failed:
# /usr/bin/systemd-nspawn -q -M 665829041bcf4c3db56a3c512ac8dc46 -D /var/lib/mock/fedora-rawhide-x86_64-1746776165.100666/root -a -u mockbuild --capability=cap_ipc_lock --rlimit=RLIMIT_NOFILE=10240 --capability=cap_ipc_lock --bind=/tmp/mock-resolv.a7lj8nrm:/etc/resolv.conf --bind=/dev/btrfs-control --bind=/dev/mapper/control --bind=/dev/fuse --bind=/dev/loop-control --bind=/dev/loop0 --bind=/dev/loop1 --bind=/dev/loop2 --bind=/dev/loop3 --bind=/dev/loop4 --bind=/dev/loop5 --bind=/dev/loop6 --bind=/dev/loop7 --bind=/dev/loop8 --bind=/dev/loop9 --bind=/dev/loop10 --bind=/dev/loop11 --console=pipe --setenv=TERM=vt100 --setenv=SHELL=/bin/bash --setenv=HOME=/builddir --setenv=HOSTNAME=mock --setenv=PATH=/usr/bin:/bin:/usr/sbin:/sbin '--setenv=PROMPT_COMMAND=printf "\033]0;<mock-chroot>\007"' '--setenv=PS1=<mock-chroot> \s-\v\$ ' --setenv=LANG=C.UTF-8 --resolv-conf=off bash --login -c '/usr/bin/rpmbuild -bb --target x86_64 --nodeps /builddir/build/originals/pipewire.spec'
|
Container is unable to spawn due to missing dependency, "systemd"
|
Given following log snippets, their explanation, and nothing else, explain what failure, if any, occurred during build of this package.
Snippets are in a format of [X] : [Y], where [X] is a log snippet, and [Y] is the explanation.
Snippets are delimited with '================'.
Drawing on information from all snippets, provide a concise explanation of the issue and recommend a solution.
Explanation of the issue, and recommended solution, should take a handful of sentences.
Snippets:
[Processing files: osgearth-3.6.1-2.fc41.i686
error: File not found: /builddir/build/BUILD/osgearth-3.6.1-build/BUILDROOT/usr/lib/libosgEarth*.so.3.6.1
error: File not found: /builddir/build/BUILD/osgearth-3.6.1-build/BUILDROOT/usr/lib/libosgEarth*.so.158
error: File not found: /builddir/build/BUILD/osgearth-3.6.1-build/BUILDROOT/usr/lib/osgPlugins-3.6.5/osgdb_*.so
]: [Some files haven't been found when the build wants to write the binary rpms.]
|
Issue: The files specified by the maintainer in the %files section of the spec file to be present in the /usr/lib directory have not been found because they were installed into the /usr/lib64 directory. Seems the LIB_INSTALL_DIR variable has been ignored.
Resolution: Inspection of the project's CMakeLists.txt is required and proper override for the library destination directory is likely needed when the build configuration step is executed.
|
Analyse following RPM build log snippet. Describe contents accurately, without speculation or suggestions for resolution.
Your analysis must be as concise as possible, while keeping relevant information intact.
Snippet:
Processing files: osgearth-3.6.1-2.fc41.i686
error: File not found: /builddir/build/BUILD/osgearth-3.6.1-build/BUILDROOT/usr/lib/libosgEarth*.so.3.6.1
error: File not found: /builddir/build/BUILD/osgearth-3.6.1-build/BUILDROOT/usr/lib/libosgEarth*.so.158
error: File not found: /builddir/build/BUILD/osgearth-3.6.1-build/BUILDROOT/usr/lib/osgPlugins-3.6.5/osgdb_*.so
|
Some files haven't been found when the build wants to write the binary rpms.
|
Given following log snippets, their explanation, and nothing else, explain what failure, if any, occurred during build of this package.
Snippets are in a format of [X] : [Y], where [X] is a log snippet, and [Y] is the explanation.
Snippets are delimited with '================'.
Drawing on information from all snippets, provide a concise explanation of the issue and recommend a solution.
Explanation of the issue, and recommended solution, should take a handful of sentences.
Snippets:
[cmd: ['dist-git-client', 'sources']
cwd: /var/lib/copr-rpmbuild/workspace/workdir-agh4tp54/watchman
rc: 1
stdout:
stderr: INFO: Reading stdout from command: git rev-parse --abbrev-ref HEAD
ERROR: Exactly one spec file expected in /var/lib/copr-rpmbuild/workspace/workdir-agh4tp54/watchman/. directory, 0 found]: [Spec file is missing for the build.]
|
Issue: Spec file is not available so SRPM can't be created.
Resolution: Please make sure that the spec file is available during build.
|
Analyse following RPM build log snippet. Describe contents accurately, without speculation or suggestions for resolution.
Your analysis must be as concise as possible, while keeping relevant information intact.
Snippet:
cmd: ['dist-git-client', 'sources']
cwd: /var/lib/copr-rpmbuild/workspace/workdir-agh4tp54/watchman
rc: 1
stdout:
stderr: INFO: Reading stdout from command: git rev-parse --abbrev-ref HEAD
ERROR: Exactly one spec file expected in /var/lib/copr-rpmbuild/workspace/workdir-agh4tp54/watchman/. directory, 0 found
|
Spec file is missing for the build.
|
Given following log snippets, their explanation, and nothing else, explain what failure, if any, occurred during build of this package.
Snippets are in a format of [X] : [Y], where [X] is a log snippet, and [Y] is the explanation.
Snippets are delimited with '================'.
Drawing on information from all snippets, provide a concise explanation of the issue and recommend a solution.
Explanation of the issue, and recommended solution, should take a handful of sentences.
Snippets:
[error: Bad exit status from /var/tmp/rpm-tmp.KjvJPM (%build)
RPM build errors:
Bad exit status from /var/tmp/rpm-tmp.KjvJPM (%build)
Child return code was: 1]: [The build failed in `%build` phase.]
=============
[/builddir/build/BUILD/dtk6core-6.0.21-build/dtk6core-6.0.21/src/dconfig.cpp:91:1: warning: "/*" within comment [-Wcomment]
91 | /*!
/builddir/build/BUILD/dtk6core-6.0.21-build/dtk6core-6.0.21/src/dconfig.cpp: In member function ‘virtual bool Dtk::Core::{anonymous}::FileBackend::load(const QString&)’:
/builddir/build/BUILD/dtk6core-6.0.21-build/dtk6core-6.0.21/src/dconfig.cpp:180:50: warning: ‘T* QScopedPointer<T, Cleanup>::take() [with T = Dtk::Core::DConfigFile; Cleanup = QScopedPointerDeleter<Dtk::Core::DConfigFile>]’ is deprecated: Use std::unique_ptr instead, and call release(). [-Wdeprecated-declarations]
180 | genericConfigFile.reset(file.take());
| ~~~~~~~~~^~
In file included from /usr/include/qt6/QtCore/QScopedPointer:1,
from /builddir/build/BUILD/dtk6core-6.0.21-build/dtk6core-6.0.21/include/base/dobject.h:8,
from /builddir/build/BUILD/dtk6core-6.0.21-build/dtk6core-6.0.21/include/DtkCore/DObject:1,
from /builddir/build/BUILD/dtk6core-6.0.21-build/dtk6core-6.0.21/include/global/dconfig.h:9,
from /builddir/build/BUILD/dtk6core-6.0.21-build/dtk6core-6.0.21/src/dconfig.cpp:5:
/usr/include/qt6/QtCore/qscopedpointer.h:130:8: note: declared here
130 | T *take() noexcept
| ^~~~
/builddir/build/BUILD/dtk6core-6.0.21-build/dtk6core-6.0.21/src/dconfig.cpp:181:52: warning: ‘T* QScopedPointer<T, Cleanup>::take() [with T = Dtk::Core::DConfigCache; Cleanup = QScopedPointerDeleter<Dtk::Core::DConfigCache>]’ is deprecated: Use std::unique_ptr instead, and call release(). [-Wdeprecated-declarations]
181 | genericConfigCache.reset(cache.take());
| ~~~~~~~~~~^~
/usr/include/qt6/QtCore/qscopedpointer.h:130:8: note: declared here
130 | T *take() noexcept
| ^~~~
/builddir/build/BUILD/dtk6core-6.0.21-build/dtk6core-6.0.21/src/dconfig.cpp: In static member function ‘static QVariant Dtk::Core::{anonymous}::DBusBackend::decodeQDBusArgument(const QVariant&)’:
/builddir/build/BUILD/dtk6core-6.0.21-build/dtk6core-6.0.21/src/dconfig.cpp:372:49: warning: ‘constexpr typename std::add_const<_Tp>::type& qAsConst(T&) [with T = QList<QVariant>; typename std::add_const<_Tp>::type = const QList<QVariant>]’ is deprecated: Use std::as_const() instead. [-Wdeprecated-declarations]
372 | for (const auto &item : qAsConst(list)) {
| ~~~~~~~~^~~~~~
In file included from /usr/include/qt6/QtCore/qforeach.h:11,
from /usr/include/qt6/QtCore/qglobal.h:57,
from /builddir/build/BUILD/dtk6core-6.0.21-build/dtk6core-6.0.21/include/global/dtkcore_global.h:7,
from /builddir/build/BUILD/dtk6core-6.0.21-build/dtk6core-6.0.21/include/global/dconfig.h:8:
/usr/include/qt6/QtCore/qttypetraits.h:36:45: note: declared here
36 | constexpr typename std::add_const<T>::type &qAsConst(T &t) noexcept { return t; }
| ^~~~~~~~
[60/80] /usr/bin/g++ -DDSYSINFO_PREFIX=\"\" -DLIBDTKCORE_LIBRARY -DPREFIX=\"/usr\" -DQT_CORE_LIB -DQT_DBUS_LIB -DQT_NO_DEBUG -DQT_XML_LIB -Ddtk6core_EXPORTS -I/builddir/build/BUILD/dtk6core-6.0.21-build/dtk6core-6.0.21/redhat-linux-build/src -I/builddir/build/BUILD/dtk6core-6.0.21-build/dtk6core-6.0.21/src -I/builddir/build/BUILD/dtk6core-6.0.21-build/dtk6core-6.0.21/redhat-linux-build/src/dtk6core_autogen/include -I/usr/include/uchardet -I/builddir/build/BUILD/dtk6core-6.0.21-build/dtk6core-6.0.21/include/util -I/builddir/build/BUILD/dtk6core-6.0.21-build/dtk6core-6.0.21/include/dci -I/builddir/build/BUILD/dtk6core-6.0.21-build/dtk6core-6.0.21/include/log -I/builddir/build/BUILD/dtk6core-6.0.21-build/dtk6core-6.0.21/include/base -I/builddir/build/BUILD/dtk6core-6.0.21-build/dtk6core-6.0.21/include/base/private -I/builddir/build/BUILD/dtk6core-6.0.21-build/dtk6core-6.0.21/include/global -I/builddir/build/BUILD/dtk6core-6.0.21-build/dtk6core-6.0.21/include/DtkCore -I/builddir/build/BUILD/dtk6core-6.0.21-build/dtk6core-6.0.21/include/settings -I/builddir/build/BUILD/dtk6core-6.0.21-build/dtk6core-6.0.21/include/filesystem -I/builddir/build/BUILD/dtk6core-6.0.21-build/dtk6core-6.0.21/include -isystem /usr/include/qt6/QtCore -isystem /usr/include/qt6 -isystem /usr/lib64/qt6/mkspecs/linux-g++ -isystem /usr/include/qt6/QtDBus -isystem /usr/include/qt6/QtXml -isystem /usr/include/dtk6/DLog -isystem /usr/include/qt6/QtCore/6.8.1 -isystem /usr/include/qt6/QtCore/6.8.1/QtCore -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -march=x86-64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -mtls-dialect=gnu2 -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -fPIC -Wall -Wextra -DNDEBUG -std=gnu++17 -fPIC -MD -MT src/CMakeFiles/dtk6core.dir/dsysinfo.cpp.o -MF src/CMakeFiles/dtk6core.dir/dsysinfo.cpp.o.d -o src/CMakeFiles/dtk6core.dir/dsysinfo.cpp.o -c /builddir/build/BUILD/dtk6core-6.0.21-build/dtk6core-6.0.21/src/dsysinfo.cpp
ninja: build stopped: subcommand failed.]: [Warning about the usage of deprecated calls.]
|
Issue: The build failed in `%build` phase because the code use deprecated calls. Compiler flags like `-Wcomments` and `-Wdeprecated-declarations` makes this fatal error.
Resolution: While you can suppress these flags temporarily, it's better to fix the issues they highlight.
You should contact upstream and replace the deprecated call with code that aligns with current practices.
|
Analyse following RPM build log snippet. Describe contents accurately, without speculation or suggestions for resolution.
Your analysis must be as concise as possible, while keeping relevant information intact.
Snippet:
error: Bad exit status from /var/tmp/rpm-tmp.KjvJPM (%build)
RPM build errors:
Bad exit status from /var/tmp/rpm-tmp.KjvJPM (%build)
Child return code was: 1
|
The build failed in `%build` phase.
|
Analyse following RPM build log snippet. Describe contents accurately, without speculation or suggestions for resolution.
Your analysis must be as concise as possible, while keeping relevant information intact.
Snippet:
/builddir/build/BUILD/dtk6core-6.0.21-build/dtk6core-6.0.21/src/dconfig.cpp:91:1: warning: "/*" within comment [-Wcomment]
91 | /*!
/builddir/build/BUILD/dtk6core-6.0.21-build/dtk6core-6.0.21/src/dconfig.cpp: In member function ‘virtual bool Dtk::Core::{anonymous}::FileBackend::load(const QString&)’:
/builddir/build/BUILD/dtk6core-6.0.21-build/dtk6core-6.0.21/src/dconfig.cpp:180:50: warning: ‘T* QScopedPointer<T, Cleanup>::take() [with T = Dtk::Core::DConfigFile; Cleanup = QScopedPointerDeleter<Dtk::Core::DConfigFile>]’ is deprecated: Use std::unique_ptr instead, and call release(). [-Wdeprecated-declarations]
180 | genericConfigFile.reset(file.take());
| ~~~~~~~~~^~
In file included from /usr/include/qt6/QtCore/QScopedPointer:1,
from /builddir/build/BUILD/dtk6core-6.0.21-build/dtk6core-6.0.21/include/base/dobject.h:8,
from /builddir/build/BUILD/dtk6core-6.0.21-build/dtk6core-6.0.21/include/DtkCore/DObject:1,
from /builddir/build/BUILD/dtk6core-6.0.21-build/dtk6core-6.0.21/include/global/dconfig.h:9,
from /builddir/build/BUILD/dtk6core-6.0.21-build/dtk6core-6.0.21/src/dconfig.cpp:5:
/usr/include/qt6/QtCore/qscopedpointer.h:130:8: note: declared here
130 | T *take() noexcept
| ^~~~
/builddir/build/BUILD/dtk6core-6.0.21-build/dtk6core-6.0.21/src/dconfig.cpp:181:52: warning: ‘T* QScopedPointer<T, Cleanup>::take() [with T = Dtk::Core::DConfigCache; Cleanup = QScopedPointerDeleter<Dtk::Core::DConfigCache>]’ is deprecated: Use std::unique_ptr instead, and call release(). [-Wdeprecated-declarations]
181 | genericConfigCache.reset(cache.take());
| ~~~~~~~~~~^~
/usr/include/qt6/QtCore/qscopedpointer.h:130:8: note: declared here
130 | T *take() noexcept
| ^~~~
/builddir/build/BUILD/dtk6core-6.0.21-build/dtk6core-6.0.21/src/dconfig.cpp: In static member function ‘static QVariant Dtk::Core::{anonymous}::DBusBackend::decodeQDBusArgument(const QVariant&)’:
/builddir/build/BUILD/dtk6core-6.0.21-build/dtk6core-6.0.21/src/dconfig.cpp:372:49: warning: ‘constexpr typename std::add_const<_Tp>::type& qAsConst(T&) [with T = QList<QVariant>; typename std::add_const<_Tp>::type = const QList<QVariant>]’ is deprecated: Use std::as_const() instead. [-Wdeprecated-declarations]
372 | for (const auto &item : qAsConst(list)) {
| ~~~~~~~~^~~~~~
In file included from /usr/include/qt6/QtCore/qforeach.h:11,
from /usr/include/qt6/QtCore/qglobal.h:57,
from /builddir/build/BUILD/dtk6core-6.0.21-build/dtk6core-6.0.21/include/global/dtkcore_global.h:7,
from /builddir/build/BUILD/dtk6core-6.0.21-build/dtk6core-6.0.21/include/global/dconfig.h:8:
/usr/include/qt6/QtCore/qttypetraits.h:36:45: note: declared here
36 | constexpr typename std::add_const<T>::type &qAsConst(T &t) noexcept { return t; }
| ^~~~~~~~
[60/80] /usr/bin/g++ -DDSYSINFO_PREFIX=\"\" -DLIBDTKCORE_LIBRARY -DPREFIX=\"/usr\" -DQT_CORE_LIB -DQT_DBUS_LIB -DQT_NO_DEBUG -DQT_XML_LIB -Ddtk6core_EXPORTS -I/builddir/build/BUILD/dtk6core-6.0.21-build/dtk6core-6.0.21/redhat-linux-build/src -I/builddir/build/BUILD/dtk6core-6.0.21-build/dtk6core-6.0.21/src -I/builddir/build/BUILD/dtk6core-6.0.21-build/dtk6core-6.0.21/redhat-linux-build/src/dtk6core_autogen/include -I/usr/include/uchardet -I/builddir/build/BUILD/dtk6core-6.0.21-build/dtk6core-6.0.21/include/util -I/builddir/build/BUILD/dtk6core-6.0.21-build/dtk6core-6.0.21/include/dci -I/builddir/build/BUILD/dtk6core-6.0.21-build/dtk6core-6.0.21/include/log -I/builddir/build/BUILD/dtk6core-6.0.21-build/dtk6core-6.0.21/include/base -I/builddir/build/BUILD/dtk6core-6.0.21-build/dtk6core-6.0.21/include/base/private -I/builddir/build/BUILD/dtk6core-6.0.21-build/dtk6core-6.0.21/include/global -I/builddir/build/BUILD/dtk6core-6.0.21-build/dtk6core-6.0.21/include/DtkCore -I/builddir/build/BUILD/dtk6core-6.0.21-build/dtk6core-6.0.21/include/settings -I/builddir/build/BUILD/dtk6core-6.0.21-build/dtk6core-6.0.21/include/filesystem -I/builddir/build/BUILD/dtk6core-6.0.21-build/dtk6core-6.0.21/include -isystem /usr/include/qt6/QtCore -isystem /usr/include/qt6 -isystem /usr/lib64/qt6/mkspecs/linux-g++ -isystem /usr/include/qt6/QtDBus -isystem /usr/include/qt6/QtXml -isystem /usr/include/dtk6/DLog -isystem /usr/include/qt6/QtCore/6.8.1 -isystem /usr/include/qt6/QtCore/6.8.1/QtCore -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -march=x86-64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -mtls-dialect=gnu2 -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -fPIC -Wall -Wextra -DNDEBUG -std=gnu++17 -fPIC -MD -MT src/CMakeFiles/dtk6core.dir/dsysinfo.cpp.o -MF src/CMakeFiles/dtk6core.dir/dsysinfo.cpp.o.d -o src/CMakeFiles/dtk6core.dir/dsysinfo.cpp.o -c /builddir/build/BUILD/dtk6core-6.0.21-build/dtk6core-6.0.21/src/dsysinfo.cpp
ninja: build stopped: subcommand failed.
|
Warning about the usage of deprecated calls.
|
Given following log snippets, their explanation, and nothing else, explain what failure, if any, occurred during build of this package.
Snippets are in a format of [X] : [Y], where [X] is a log snippet, and [Y] is the explanation.
Snippets are delimited with '================'.
Drawing on information from all snippets, provide a concise explanation of the issue and recommend a solution.
Explanation of the issue, and recommended solution, should take a handful of sentences.
Snippets:
[regex.c:3845:23: error: too many arguments to function ‘bcmp_translate’; expected 0, have 4
3845 | ? bcmp_translate (d, d2, mcnt, translate)
| ^~~~~~~~~~~~~~ ~
regex.c:3003:12: note: declared here
3003 | static int bcmp_translate ();
| ^~~~~~~~~~~~~~]: [Build failed due to this compile error.]
|
Issue: The build failed because the function declaration differs from the actual function call later. This kind of error may appear when the default language version for C compilation is changed from -std=gnu17 to -std=gnu23. In C17 and earlier, function declarators in form of rettype identifier (); specified no information about the number or types of the parameters while in C23 such declarations mean (void) i.e. a function taking no arguments.
Resolution: Code relying on a non-zero number of parameters can be fixed by adding the correct parameters to the function declaration. In other cases the code may be simply missing a #include of the correct header and can be fixed by including the correct header and removing the declaration. Alternatively you can use -std= to select an earlier version of the C standard.
|
Analyse following RPM build log snippet. Describe contents accurately, without speculation or suggestions for resolution.
Your analysis must be as concise as possible, while keeping relevant information intact.
Snippet:
regex.c:3845:23: error: too many arguments to function ‘bcmp_translate’; expected 0, have 4
3845 | ? bcmp_translate (d, d2, mcnt, translate)
| ^~~~~~~~~~~~~~ ~
regex.c:3003:12: note: declared here
3003 | static int bcmp_translate ();
| ^~~~~~~~~~~~~~
|
Build failed due to this compile error.
|
Given following log snippets, their explanation, and nothing else, explain what failure, if any, occurred during build of this package.
Snippets are in a format of [X] : [Y], where [X] is a log snippet, and [Y] is the explanation.
Snippets are delimited with '================'.
Drawing on information from all snippets, provide a concise explanation of the issue and recommend a solution.
Explanation of the issue, and recommended solution, should take a handful of sentences.
Snippets:
[STEP 6/12: RUN INSTALL_PKGS="nodejs nodejs-nodemon nodejs-full-i18n npm findutils tar which" && microdnf -y module disable nodejs && microdnf -y module enable nodejs:$NODEJS_VERSION && microdnf --nodocs --setopt=install_weak_deps=0 install $INSTALL_PKGS && node -v | grep -qe "^v$NODEJS_VERSION\." && echo "Found VERSION $NODEJS_VERSION" && microdnf clean all && rm -rf /mnt/rootfs/var/cache/* /mnt/rootfs/var/log/dnf* /mnt/rootfs/var/log/yum.*
Downloading metadata...
Downloading metadata...
Downloading metadata...
Downloading metadata...
error: cannot update repo 'rhel-8-for-x86_64-appstream-rpms': Cannot download repomd.xml: Cannot download repodata/repomd.xml: All mirrors were tried; Last error: Status code: 403 for https://cdn.redhat.com/content/dist/rhel8/8/x86_64/appstream/os/repodata/repomd.xml (IP: 23.13.176.251)
Error: building at STEP "RUN INSTALL_PKGS="nodejs nodejs-nodemon nodejs-full-i18n npm findutils tar which" && microdnf -y module disable nodejs && microdnf -y module enable nodejs:$NODEJS_VERSION && microdnf --nodocs --setopt=install_weak_deps=0 install $INSTALL_PKGS && node -v | grep -qe "^v$NODEJS_VERSION\." && echo "Found VERSION $NODEJS_VERSION" && microdnf clean all && rm -rf /mnt/rootfs/var/cache/* /mnt/rootfs/var/log/dnf* /mnt/rootfs/var/log/yum.*": while running runtime: exit status 1
errexit on line 33, common/build.sh
errexit on line 33, common/build.sh
errexit on line 28, common/build.sh
errexit on line 42, common/build.sh
errexit on line 61, common/build.sh
errexit on line 61, common/build.sh
make[1]: *** [common/common.mk:84: 18-minimal] Error 1]: [Downloading metadata from subscribed repo failed]
|
Issue: The build failed because of it was not able to download repodata. Check if system is subscribed properly and what kind of pool you used.
Resolution: Select proper pool by command subscription-manager attach --pool <proper-pool>
|
Analyse following RPM build log snippet. Describe contents accurately, without speculation or suggestions for resolution.
Your analysis must be as concise as possible, while keeping relevant information intact.
Snippet:
STEP 6/12: RUN INSTALL_PKGS="nodejs nodejs-nodemon nodejs-full-i18n npm findutils tar which" && microdnf -y module disable nodejs && microdnf -y module enable nodejs:$NODEJS_VERSION && microdnf --nodocs --setopt=install_weak_deps=0 install $INSTALL_PKGS && node -v | grep -qe "^v$NODEJS_VERSION\." && echo "Found VERSION $NODEJS_VERSION" && microdnf clean all && rm -rf /mnt/rootfs/var/cache/* /mnt/rootfs/var/log/dnf* /mnt/rootfs/var/log/yum.*
Downloading metadata...
Downloading metadata...
Downloading metadata...
Downloading metadata...
error: cannot update repo 'rhel-8-for-x86_64-appstream-rpms': Cannot download repomd.xml: Cannot download repodata/repomd.xml: All mirrors were tried; Last error: Status code: 403 for https://cdn.redhat.com/content/dist/rhel8/8/x86_64/appstream/os/repodata/repomd.xml (IP: 23.13.176.251)
Error: building at STEP "RUN INSTALL_PKGS="nodejs nodejs-nodemon nodejs-full-i18n npm findutils tar which" && microdnf -y module disable nodejs && microdnf -y module enable nodejs:$NODEJS_VERSION && microdnf --nodocs --setopt=install_weak_deps=0 install $INSTALL_PKGS && node -v | grep -qe "^v$NODEJS_VERSION\." && echo "Found VERSION $NODEJS_VERSION" && microdnf clean all && rm -rf /mnt/rootfs/var/cache/* /mnt/rootfs/var/log/dnf* /mnt/rootfs/var/log/yum.*": while running runtime: exit status 1
errexit on line 33, common/build.sh
errexit on line 33, common/build.sh
errexit on line 28, common/build.sh
errexit on line 42, common/build.sh
errexit on line 61, common/build.sh
errexit on line 61, common/build.sh
make[1]: *** [common/common.mk:84: 18-minimal] Error 1
|
Downloading metadata from subscribed repo failed
|
Given following log snippets, their explanation, and nothing else, explain what failure, if any, occurred during build of this package.
Snippets are in a format of [X] : [Y], where [X] is a log snippet, and [Y] is the explanation.
Snippets are delimited with '================'.
Drawing on information from all snippets, provide a concise explanation of the issue and recommend a solution.
Explanation of the issue, and recommended solution, should take a handful of sentences.
Snippets:
[ignoring return value of ‘lockf’ declared with attribute ‘warn_unused_result’ [-Werror=unused-result]
]: [The relevant error message saying that the return value of the 'lockf' function call is being ignored.]
=============
[cc1: some warnings being treated as errors]: [A compiler warning message providing further context why an error happened.]
|
Issue: The build scripts explicitly specified the '-Werror=unused-result' compiler flag that turns the particular warning into an error, failing the build.
Resolution: Either store and use the return value of the 'lockf' function call or remove the '-Werror=unused-result' compiler flag.
|
Analyse following RPM build log snippet. Describe contents accurately, without speculation or suggestions for resolution.
Your analysis must be as concise as possible, while keeping relevant information intact.
Snippet:
ignoring return value of ‘lockf’ declared with attribute ‘warn_unused_result’ [-Werror=unused-result]
|
The relevant error message saying that the return value of the 'lockf' function call is being ignored.
|
Analyse following RPM build log snippet. Describe contents accurately, without speculation or suggestions for resolution.
Your analysis must be as concise as possible, while keeping relevant information intact.
Snippet:
cc1: some warnings being treated as errors
|
A compiler warning message providing further context why an error happened.
|
Given following log snippets, their explanation, and nothing else, explain what failure, if any, occurred during build of this package.
Snippets are in a format of [X] : [Y], where [X] is a log snippet, and [Y] is the explanation.
Snippets are delimited with '================'.
Drawing on information from all snippets, provide a concise explanation of the issue and recommend a solution.
Explanation of the issue, and recommended solution, should take a handful of sentences.
Snippets:
[---> 13:47:20 Starting MySQL server with disabled networking ...
---> 13:47:20 Waiting for MySQL to start ...
2025-04-14 13:47:20 0 [Note] Starting MariaDB 10.11.10-MariaDB-log source revision 3d0fb150289716ca75cd64d62823cf715ee47646 server_uid 2DAP7+jSGnuV6itoSPgUbQxL1/c= as process 59
2025-04-14 13:47:20 0 [Note] InnoDB: Compressed tables use zlib 1.2.11
2025-04-14 13:47:20 0 [Note] InnoDB: Number of transaction pools: 1
2025-04-14 13:47:20 0 [Note] InnoDB: Using crc32 + pclmulqdq instructions
2025-04-14 13:47:20 0 [Note] mysqld: O_TMPFILE is not supported on /var/tmp (disabling future attempts)
2025-04-14 13:47:20 0 [Note] InnoDB: Using Linux native AIO
2025-04-14 13:47:20 0 [Note] InnoDB: Initializing buffer pool, total size = 16.000MiB, chunk size = 1.000MiB
2025-04-14 13:47:20 0 [Note] InnoDB: Completed initialization of buffer pool
2025-04-14 13:47:20 0 [Note] InnoDB: Buffered log writes (block size=512 bytes)
2025-04-14 13:47:20 0 [Note] InnoDB: End of log at LSN=46996
2025-04-14 13:47:20 0 [Note] InnoDB: 128 rollback segments are active.
2025-04-14 13:47:20 0 [Note] InnoDB: Setting file './ibtmp1' size to 12.000MiB. Physically writing the file full; Please wait ...
2025-04-14 13:47:20 0 [Note] InnoDB: File './ibtmp1' size is now 12.000MiB.
2025-04-14 13:47:20 0 [Note] InnoDB: log sequence number 46996; transaction id 14
2025-04-14 13:47:20 0 [Note] Plugin 'FEEDBACK' is disabled.
2025-04-14 13:47:20 0 [Note] InnoDB: Loading buffer pool(s) from /var/lib/mysql/data/ib_buffer_pool
2025-04-14 13:47:20 0 [Warning] 'user' entry 'root@f388376d23f7' ignored in --skip-name-resolve mode.
2025-04-14 13:47:20 0 [Warning] 'proxies_priv' entry '@% root@f388376d23f7' ignored in --skip-name-resolve mode.
2025-04-14 13:47:20 0 [Note] InnoDB: Buffer pool(s) load completed at 250414 13:47:20
2025-04-14 13:47:20 0 [Note] /usr/libexec/mysqld: ready for connections.
Version: '10.11.10-MariaDB-log' socket: '/tmp/mysql.sock' port: 0 MariaDB Server
---> 13:47:21 MySQL started successfully
/usr/share/container-scripts/mysql/common.sh: line 107: mysql_upgrade: command not found
Test for image 'quay.io/sclorg/mariadb-1011-c9s:1' FAILED (exit code: 1)
Error: can only create exec sessions on running containers: container state improper
Error: can only create exec sessions on running containers: container state improper
]: [During the rpm package installation in container, someone removed package that provides 'mysql_upgrade' tool.]
|
Issue: The build failed because the mandatory tool 'mysql_upgrade' is missing.
Resolution: The fix is to install rpm package that contains 'mysql_upgrade' command. Use `dnf whatprovides mysql_upgrade` command
|
Analyse following RPM build log snippet. Describe contents accurately, without speculation or suggestions for resolution.
Your analysis must be as concise as possible, while keeping relevant information intact.
Snippet:
---> 13:47:20 Starting MySQL server with disabled networking ...
---> 13:47:20 Waiting for MySQL to start ...
2025-04-14 13:47:20 0 [Note] Starting MariaDB 10.11.10-MariaDB-log source revision 3d0fb150289716ca75cd64d62823cf715ee47646 server_uid 2DAP7+jSGnuV6itoSPgUbQxL1/c= as process 59
2025-04-14 13:47:20 0 [Note] InnoDB: Compressed tables use zlib 1.2.11
2025-04-14 13:47:20 0 [Note] InnoDB: Number of transaction pools: 1
2025-04-14 13:47:20 0 [Note] InnoDB: Using crc32 + pclmulqdq instructions
2025-04-14 13:47:20 0 [Note] mysqld: O_TMPFILE is not supported on /var/tmp (disabling future attempts)
2025-04-14 13:47:20 0 [Note] InnoDB: Using Linux native AIO
2025-04-14 13:47:20 0 [Note] InnoDB: Initializing buffer pool, total size = 16.000MiB, chunk size = 1.000MiB
2025-04-14 13:47:20 0 [Note] InnoDB: Completed initialization of buffer pool
2025-04-14 13:47:20 0 [Note] InnoDB: Buffered log writes (block size=512 bytes)
2025-04-14 13:47:20 0 [Note] InnoDB: End of log at LSN=46996
2025-04-14 13:47:20 0 [Note] InnoDB: 128 rollback segments are active.
2025-04-14 13:47:20 0 [Note] InnoDB: Setting file './ibtmp1' size to 12.000MiB. Physically writing the file full; Please wait ...
2025-04-14 13:47:20 0 [Note] InnoDB: File './ibtmp1' size is now 12.000MiB.
2025-04-14 13:47:20 0 [Note] InnoDB: log sequence number 46996; transaction id 14
2025-04-14 13:47:20 0 [Note] Plugin 'FEEDBACK' is disabled.
2025-04-14 13:47:20 0 [Note] InnoDB: Loading buffer pool(s) from /var/lib/mysql/data/ib_buffer_pool
2025-04-14 13:47:20 0 [Warning] 'user' entry 'root@f388376d23f7' ignored in --skip-name-resolve mode.
2025-04-14 13:47:20 0 [Warning] 'proxies_priv' entry '@% root@f388376d23f7' ignored in --skip-name-resolve mode.
2025-04-14 13:47:20 0 [Note] InnoDB: Buffer pool(s) load completed at 250414 13:47:20
2025-04-14 13:47:20 0 [Note] /usr/libexec/mysqld: ready for connections.
Version: '10.11.10-MariaDB-log' socket: '/tmp/mysql.sock' port: 0 MariaDB Server
---> 13:47:21 MySQL started successfully
/usr/share/container-scripts/mysql/common.sh: line 107: mysql_upgrade: command not found
Test for image 'quay.io/sclorg/mariadb-1011-c9s:1' FAILED (exit code: 1)
Error: can only create exec sessions on running containers: container state improper
Error: can only create exec sessions on running containers: container state improper
|
During the rpm package installation in container, someone removed package that provides 'mysql_upgrade' tool.
|
Given following log snippets, their explanation, and nothing else, explain what failure, if any, occurred during build of this package.
Snippets are in a format of [X] : [Y], where [X] is a log snippet, and [Y] is the explanation.
Snippets are delimited with '================'.
Drawing on information from all snippets, provide a concise explanation of the issue and recommend a solution.
Explanation of the issue, and recommended solution, should take a handful of sentences.
Snippets:
[
AttributeError: module 'importlib.resources' has no attribute 'content]: [It contains the exact Python error which has occurred with the package build.]
|
Issue: Many importlib.resources methods have been removed from Python 3.13. importlib.resources.contents() is one of them.
Resolution: The upstream code has to be ported to the supported importlib.resources.files() API.
|
Analyse following RPM build log snippet. Describe contents accurately, without speculation or suggestions for resolution.
Your analysis must be as concise as possible, while keeping relevant information intact.
Snippet:
AttributeError: module 'importlib.resources' has no attribute 'content
|
It contains the exact Python error which has occurred with the package build.
|
Given following log snippets, their explanation, and nothing else, explain what failure, if any, occurred during build of this package.
Snippets are in a format of [X] : [Y], where [X] is a log snippet, and [Y] is the explanation.
Snippets are delimited with '================'.
Drawing on information from all snippets, provide a concise explanation of the issue and recommend a solution.
Explanation of the issue, and recommended solution, should take a handful of sentences.
Snippets:
[
vendor/github.com/containers/storage/drivers/btrfs/btrfs.go:12:10: fatal error: btrfs/ioctl.h: No such file or directo]: [An error from gcc that clearly states why the compilation failed.
]
|
Issue: GCC cannot find a header file `btrfs/ioctl.h` which is needed in `storage/drivers/btrfs/btrfs.go`.
Resolution: Install package 'btrfs-progs-devel' that contains the header file ' btrfs/ioctl.h'.
|
Analyse following RPM build log snippet. Describe contents accurately, without speculation or suggestions for resolution.
Your analysis must be as concise as possible, while keeping relevant information intact.
Snippet:
vendor/github.com/containers/storage/drivers/btrfs/btrfs.go:12:10: fatal error: btrfs/ioctl.h: No such file or directo
|
An error from gcc that clearly states why the compilation failed.
|
Given following log snippets, their explanation, and nothing else, explain what failure, if any, occurred during build of this package.
Snippets are in a format of [X] : [Y], where [X] is a log snippet, and [Y] is the explanation.
Snippets are delimited with '================'.
Drawing on information from all snippets, provide a concise explanation of the issue and recommend a solution.
Explanation of the issue, and recommended solution, should take a handful of sentences.
Snippets:
[RPM build errors:
File not found: /builddir/build/BUILD/axmail-2.9-build/BUILDROOT/usr/bin/*
]: [The relevant error message saying that there are no files installed under the /usr/bin but mentioned in the %files section.]
|
Issue: The build failed due to Fedora /bin /sbin merge, because the source package is hard coding /usr/sbin path
Resolution: Patch the source package Makefile not tho hardcode /usr/sbin, but obey BINDIR variable.
|
Analyse following RPM build log snippet. Describe contents accurately, without speculation or suggestions for resolution.
Your analysis must be as concise as possible, while keeping relevant information intact.
Snippet:
RPM build errors:
File not found: /builddir/build/BUILD/axmail-2.9-build/BUILDROOT/usr/bin/*
|
The relevant error message saying that there are no files installed under the /usr/bin but mentioned in the %files section.
|
Given following log snippets, their explanation, and nothing else, explain what failure, if any, occurred during build of this package.
Snippets are in a format of [X] : [Y], where [X] is a log snippet, and [Y] is the explanation.
Snippets are delimited with '================'.
Drawing on information from all snippets, provide a concise explanation of the issue and recommend a solution.
Explanation of the issue, and recommended solution, should take a handful of sentences.
Snippets:
[CONFLICT (content): Merge conflict in deploy/helm/flightctl/templates/flightctl-api-config.yaml
Auto-merging deploy/helm/flightctl/templates/flightctl-api-deployment.yaml
CONFLICT (content): Merge conflict in deploy/helm/flightctl/templates/flightctl-api-deployment.yaml
Auto-merging deploy/helm/flightctl/values.yaml
Automatic merge failed; fix conflicts and then commit the result.']: [During the merge process, conflicts were encountered in two files:
flightctl-api-config.yaml
flightctl-api-deployment.yaml
These conflicts happen when changes were made to the same lines in both the pull request and the current branch. Git cannot automatically decide which version to keep, so it requires manual intervention.]
|
Issue: The build failed because Packit is not able to merge pull request #681 into main.
Resolution: Fix Conflicts: Open the mentioned files (flightctl-api-config.yaml and flightctl-api-deployment.yaml) in a text editor. You'll see markers indicating the conflicting lines. You need to manually decide which version (from the pull request or the current branch) to keep for each conflict and adjust the file content accordingly.
|
Analyse following RPM build log snippet. Describe contents accurately, without speculation or suggestions for resolution.
Your analysis must be as concise as possible, while keeping relevant information intact.
Snippet:
CONFLICT (content): Merge conflict in deploy/helm/flightctl/templates/flightctl-api-config.yaml
Auto-merging deploy/helm/flightctl/templates/flightctl-api-deployment.yaml
CONFLICT (content): Merge conflict in deploy/helm/flightctl/templates/flightctl-api-deployment.yaml
Auto-merging deploy/helm/flightctl/values.yaml
Automatic merge failed; fix conflicts and then commit the result.'
|
During the merge process, conflicts were encountered in two files:
flightctl-api-config.yaml
flightctl-api-deployment.yaml
These conflicts happen when changes were made to the same lines in both the pull request and the current branch. Git cannot automatically decide which version to keep, so it requires manual intervention.
|
Given following log snippets, their explanation, and nothing else, explain what failure, if any, occurred during build of this package.
Snippets are in a format of [X] : [Y], where [X] is a log snippet, and [Y] is the explanation.
Snippets are delimited with '================'.
Drawing on information from all snippets, provide a concise explanation of the issue and recommend a solution.
Explanation of the issue, and recommended solution, should take a handful of sentences.
Snippets:
[DEBUG util.py:459: Failed to resolve the transaction:
DEBUG util.py:459: No match for argument: pkgconfig(luajit)
DEBUG util.py:459: You can try to add to command line:
DEBUG util.py:459: --skip-unavailable to skip unavailable packages]: [The pkgconfig(luajit) package was not found by dnf.]
|
Issue: The pkgconfig(luajit) package was not found by dnf. Either it is misnamed in the BuildRequires, named differently in the dnf repositories or not supported on this achitecture.
Resolution: Ensure the BuildRequires of pkgconfig(luajit) is spelled correctly, is available on the dnf repos and is available on the architecture you are building for.
|
Analyse following RPM build log snippet. Describe contents accurately, without speculation or suggestions for resolution.
Your analysis must be as concise as possible, while keeping relevant information intact.
Snippet:
DEBUG util.py:459: Failed to resolve the transaction:
DEBUG util.py:459: No match for argument: pkgconfig(luajit)
DEBUG util.py:459: You can try to add to command line:
DEBUG util.py:459: --skip-unavailable to skip unavailable packages
|
The pkgconfig(luajit) package was not found by dnf.
|
Given following log snippets, their explanation, and nothing else, explain what failure, if any, occurred during build of this package.
Snippets are in a format of [X] : [Y], where [X] is a log snippet, and [Y] is the explanation.
Snippets are delimited with '================'.
Drawing on information from all snippets, provide a concise explanation of the issue and recommend a solution.
Explanation of the issue, and recommended solution, should take a handful of sentences.
Snippets:
[No match for argument: python3dist(cmocean)]: [The build dependency is missing. There is no package that provides python3dist(cmocean).]
=============
[No match for argument: python3dist(sphinx-book-theme)]: [The build dependency is missing. There is no package that provides python3dist(sphinx-book-theme).]
=============
[Problem 1: conflicting requests
- nothing provides python3.10dist(decorator) needed by python3-autodoc-0.5.0-1.fc36.noarch from copr_base
- nothing provides python3.10dist(webtest) needed by python3-autodoc-0.5.0-1.fc36.noarch from copr_base
- nothing provides python(abi) = 3.10 needed by python3-autodoc-0.5.0-1.fc36.noarch from copr_base
Problem 2: cannot install the best candidate for the job
- nothing provides python(abi) = 3.12 needed by python3-sphinx-autodoc-typehints-1.25.2-1.fc40.noarch from copr_base
- nothing provides python3.12dist(sphinx) >= 7.1.2 needed by python3-sphinx-autodoc-typehints-1.25.2-1.fc40.noarch from copr_base
Problem 3: cannot install the best candidate for the job
- nothing provides python(abi) = 3.12 needed by python3-xarray-2023.11.0-1.fc40.noarch from copr_base
- nothing provides python3.12dist(numpy) >= 1.22 needed by python3-xarray-2023.11.0-1.fc40.noarch from copr_base
- nothing provides python3.12dist(pandas) >= 1.4 needed by python3-xarray-2023.11.0-1.fc40.noarch from copr_base
- nothing provides python3.12dist(packaging) >= 21.3 needed by python3-xarray-2023.11.0-1.fc40.noarch from copr_base
]: [There are conflicting packages. It seems that some packages requires python 3.10 while other requires python3.12.]
|
Issue: The build dependency could not be satisfied.
Resolution: You have to build the missing dependency first and then rebuild the conflicting packages so they will use newer python. Then you can safely rebuild your package and it should proceed.
|
Analyse following RPM build log snippet. Describe contents accurately, without speculation or suggestions for resolution.
Your analysis must be as concise as possible, while keeping relevant information intact.
Snippet:
No match for argument: python3dist(cmocean)
|
The build dependency is missing. There is no package that provides python3dist(cmocean).
|
Analyse following RPM build log snippet. Describe contents accurately, without speculation or suggestions for resolution.
Your analysis must be as concise as possible, while keeping relevant information intact.
Snippet:
No match for argument: python3dist(sphinx-book-theme)
|
The build dependency is missing. There is no package that provides python3dist(sphinx-book-theme).
|
Analyse following RPM build log snippet. Describe contents accurately, without speculation or suggestions for resolution.
Your analysis must be as concise as possible, while keeping relevant information intact.
Snippet:
Problem 1: conflicting requests
- nothing provides python3.10dist(decorator) needed by python3-autodoc-0.5.0-1.fc36.noarch from copr_base
- nothing provides python3.10dist(webtest) needed by python3-autodoc-0.5.0-1.fc36.noarch from copr_base
- nothing provides python(abi) = 3.10 needed by python3-autodoc-0.5.0-1.fc36.noarch from copr_base
Problem 2: cannot install the best candidate for the job
- nothing provides python(abi) = 3.12 needed by python3-sphinx-autodoc-typehints-1.25.2-1.fc40.noarch from copr_base
- nothing provides python3.12dist(sphinx) >= 7.1.2 needed by python3-sphinx-autodoc-typehints-1.25.2-1.fc40.noarch from copr_base
Problem 3: cannot install the best candidate for the job
- nothing provides python(abi) = 3.12 needed by python3-xarray-2023.11.0-1.fc40.noarch from copr_base
- nothing provides python3.12dist(numpy) >= 1.22 needed by python3-xarray-2023.11.0-1.fc40.noarch from copr_base
- nothing provides python3.12dist(pandas) >= 1.4 needed by python3-xarray-2023.11.0-1.fc40.noarch from copr_base
- nothing provides python3.12dist(packaging) >= 21.3 needed by python3-xarray-2023.11.0-1.fc40.noarch from copr_base
|
There are conflicting packages. It seems that some packages requires python 3.10 while other requires python3.12.
|
Given following log snippets, their explanation, and nothing else, explain what failure, if any, occurred during build of this package.
Snippets are in a format of [X] : [Y], where [X] is a log snippet, and [Y] is the explanation.
Snippets are delimited with '================'.
Drawing on information from all snippets, provide a concise explanation of the issue and recommend a solution.
Explanation of the issue, and recommended solution, should take a handful of sentences.
Snippets:
[error: File not found: /builddir/build/BUILD/python-nanobind-2.7.0-build/BUILDROOT/not/existing/path]: [This indicates that a file listed in the %files section could not be found.]
|
Issue: The %files section lists a file that doesn't exist in the buildroot.
Resolution: Only list files in %files sections that do exist. Remove /not/existing/path from %files section.
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.