Bug#1078417: symfit: FTBFS: with pytest.raises(NameError):
Source: symfit Version: 0.5.6-3 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240809 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > make[1]: Entering directory '/<>' > dh_auto_test > I: pybuild base:311: cd /<>/.pybuild/cpython3_3.12/build; > python3.12 -m pytest tests > = test session starts > == > platform linux -- Python 3.12.5, pytest-8.3.2, pluggy-1.5.0 > rootdir: /<>/.pybuild/cpython3_3.12/build > configfile: pytest.ini > collected 123 items > > tests/test_argument.py [ > 3%] > tests/test_auto_fit.py ..[ > 8%] > tests/test_constrained.py .s [ > 22%] > tests/test_distributions.py .. [ > 24%] > tests/test_finite_difference.py [ > 30%] > tests/test_fit_result.py .. [ > 39%] > tests/test_general.py .s.Fs..[ > 64%] > tests/test_global_opt.py [ > 67%] > tests/test_minimize.py ..[ > 72%] > tests/test_minimizers.py ... [ > 78%] > tests/test_model.py [ > 87%] > tests/test_objectives.py . [ > 91%] > tests/test_ode.py [ > 98%] > tests/test_support.py .. > [100%] > > === FAILURES > === > __ test_likelihood_fitting_bivariate_gaussian > __ > > def test_likelihood_fitting_bivariate_gaussian(): > """ > Fit using the likelihood method. > """ > # Make variables and parameters > x = Variable('x') > y = Variable('y') > x0 = Parameter('x0', value=0.6, min=0.5, max=0.7) > sig_x = Parameter('sig_x', value=0.1, max=1.0) > y0 = Parameter('y0', value=0.7, min=0.6, max=0.9) > sig_y = Parameter('sig_y', value=0.05, max=1.0) > rho = Parameter('rho', value=0.001, min=-1, max=1) > > pdf = BivariateGaussian(x=x, mu_x=x0, sig_x=sig_x, y=y, mu_y=y0, > sig_y=sig_y, rho=rho) > > # Draw 10 samples from a bivariate distribution > mean = [0.59, 0.8] > r = 0.6 > cov = np.array([[0.11 ** 2, 0.11 * 0.23 * r], > [0.11 * 0.23 * r, 0.23 ** 2]]) > np.random.seed(42) > # TODO: Do we really need 100k points? > xdata, ydata = np.random.multivariate_normal(mean, cov, 10).T > > fit = Fit(pdf, x=xdata, y=ydata, objective=LogLikelihood) > fit_result = fit.execute() > > assert fit_result.value(x0) == pytest.approx(mean[0], 1e-2) > assert fit_result.value(y0) == pytest.approx(mean[1], 1e-2) > assert fit_result.value(sig_x) == pytest.approx(np.sqrt(cov[0, 0]), > 1e-2) > assert fit_result.value(sig_y) == pytest.approx(np.sqrt(cov[1, 1]), > 1e-2) > assert fit_result.value(rho) == pytest.approx(r, 1e-2) > > marginal = integrate(pdf, (y, -oo, oo), conds='none') > fit = Fit(marginal, x=xdata, objective=LogLikelihood) > > with pytest.raises(NameError): > # Should raise a NameError, not a TypeError, see #219 > > fit.execute() > > tests/test_general.py:615: > _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ > _ > symfit/core/fit.py:573: in execute > minimizer_ans = self.minimizer.execute(**minimize_options) > symfit/core/minimizers.py:400: in execute > return super(ScipyGradientMinimize, self).execute(jacobian=jacobian, > **minimize_options) > symfit/core/minimizers.py:419: in execute > return super(ScipyBoundedMinimizer, self).execute(bounds=self.bounds, > symfit/core/minimizers.py:339: in execute > ans = minimize( > /usr/lib/python3/dist-packages/scipy/optimize/_minimize.py:713: in minimize > res = _minimize_lbfgsb(fun, x0, args, jac, bounds, > /usr/lib/python3/dist-packages/scipy/optimize/_lbfgsb_py.py:347: in > _minimize_lbfgsb > sf = _prepare_scalar_function(fun, x0, jac=jac, args=args, epsilon=eps, > /usr/lib/python3/dist-packages/scipy/optimize/_optimize.py:288: in > _prepare_scalar_function > sf = ScalarFunction(fun, x0, args, grad, hess, > /usr/lib/python3/dist-packages/scipy/optimize/_differentiable_functions.py:166: > in __init__ > self._update_fun() > /usr/lib/python3/dist-packages/sc
Bug#1078418: upstream-ontologist: FTBFS: make[1]: *** [debian/rules:17: override_dh_auto_build] Error 25
Source: upstream-ontologist Version: 0.1.37-1 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240809 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > make[1]: Entering directory '/<>' > mv Cargo.lock Cargo.lock.saved > dh_auto_build > I: pybuild base:311: /usr/bin/python3 setup.py build > running build > running build_py > creating /<>/.pybuild/cpython3_3.12/build/upstream_ontologist > copying upstream_ontologist/__init__.py -> > /<>/.pybuild/cpython3_3.12/build/upstream_ontologist > copying upstream_ontologist/readme.py -> > /<>/.pybuild/cpython3_3.12/build/upstream_ontologist > copying upstream_ontologist/debian.py -> > /<>/.pybuild/cpython3_3.12/build/upstream_ontologist > copying upstream_ontologist/vcs.py -> > /<>/.pybuild/cpython3_3.12/build/upstream_ontologist > copying upstream_ontologist/guess.py -> > /<>/.pybuild/cpython3_3.12/build/upstream_ontologist > copying upstream_ontologist/_upstream_ontologist.pyi -> > /<>/.pybuild/cpython3_3.12/build/upstream_ontologist > copying upstream_ontologist/py.typed -> > /<>/.pybuild/cpython3_3.12/build/upstream_ontologist > running build_ext > running build_rust > error: failed to select a version for the requirement `pyo3 = "^0.20"` > candidate versions found which didn't match: 0.22.2 > location searched: directory source `/usr/share/cargo/registry` (which is > replacing registry `crates-io`) > required by package `upstream-ontologist-py v0.1.37 > (/<>/upstream-ontologist-py)` > perhaps a crate was updated and forgotten to be re-vendored? > error: `cargo metadata --manifest-path upstream-ontologist-py/Cargo.toml > --format-version 1` failed with code 101 > -- Output captured from stdout: > > E: pybuild pybuild:389: build: plugin distutils failed with: exit code=1: > /usr/bin/python3 setup.py build > dh_auto_build: error: pybuild --build -i python{version} -p 3.12 returned > exit code 13 > make[1]: *** [debian/rules:17: override_dh_auto_build] Error 25 The full build log is available from: http://qa-logs.debian.net/2024/08/09/upstream-ontologist_0.1.37-1_unstable.log All bugs filed during this archive rebuild are listed at: https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240809;users=lu...@debian.org or: https://udd.debian.org/bugs/?release=na&merged=ign&fnewerval=7&flastmodval=7&fusertag=only&fusertagtag=ftbfs-20240809&fusertaguser=lu...@debian.org&allbugs=1&cseverity=1&ctags=1&caffected=1#results A list of current common problems and possible solutions is available at http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute! If you reassign this bug to another package, please mark it as 'affects'-ing this package. See https://www.debian.org/Bugs/server-control#affects If you fail to reproduce this, please provide a build log and diff it with mine so that we can identify if something relevant changed in the meantime.
Bug#1078414: kotlinx-coroutines: FTBFS: make[1]: *** [debian/rules:10: override_dh_auto_build] Error 25
Source: kotlinx-coroutines Version: 1.0.1-2 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240809 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > make[1]: Entering directory '/<>' > dh_auto_build -- \ > -Dkotlin.compiler.execution.strategy=in-process \ > -Pkotlin_version=1.3.31 \ > -PatomicFU_version=0.11.12 \ > -Pversion=1.0.1 \ > install > mkdir -p .gradle/init.d > cp /usr/share/gradle-debian-helper/init.gradle .gradle/init.d/ > gradle --info --console plain --offline --stacktrace --no-daemon > --refresh-dependencies --gradle-user-home .gradle -Duser.home=. > -Duser.name=debian -Ddebian.package=kotlinx-coroutines -Dfile.encoding=UTF-8 > -Dkotlin.compiler.execution.strategy=in-process -Pkotlin_version=1.3.31 > -PatomicFU_version=0.11.12 -Pversion=1.0.1 install > openjdk version "21.0.4" 2024-07-16 > OpenJDK Runtime Environment (build 21.0.4+7-Debian-2) > OpenJDK 64-Bit Server VM (build 21.0.4+7-Debian-2, mixed mode, sharing) > Initialized native services in: /<>/.gradle/native > To honour the JVM settings for this build a new JVM will be forked. Please > consider using the daemon: > https://docs.gradle.org/4.4.1/userguide/gradle_daemon.html. > Starting process 'Gradle build daemon'. Working directory: > /<>/.gradle/daemon/4.4.1 Command: > /usr/lib/jvm/java-21-openjdk-amd64/bin/java --add-opens > java.base/java.lang=ALL-UNNAMED > -Xbootclasspath/a:/usr/share/java/gradle-helper-hook.jar:/usr/share/java/maven-repo-helper.jar > -Dfile.encoding=UTF-8 -Duser.country -Duser.language=en -Duser.variant -cp > /usr/share/gradle/lib/gradle-launcher-4.4.1.jar > org.gradle.launcher.daemon.bootstrap.GradleDaemon 4.4.1 > Successfully started process 'Gradle build daemon' > An attempt to start the daemon took 1.055 secs. > The client will now receive all logging from the daemon (pid: 2938145). The > daemon log file: /<>/.gradle/daemon/4.4.1/daemon-2938145.out.log > Daemon will be stopped at the end of the build stopping after processing > Closing daemon's stdin at end of input. > The daemon will no longer process any standard input. > Using 8 worker leases. > Creating new cache for fileHashes, path > /<>/.gradle/caches/4.4.1/fileHashes/fileHashes.bin, access > org.gradle.cache.internal.DefaultCacheAccess@61a3c2e3 > Creating new cache for resourceHashesCache, path > /<>/.gradle/caches/4.4.1/fileHashes/resourceHashesCache.bin, > access org.gradle.cache.internal.DefaultCacheAccess@61a3c2e3 > Creating new cache for fileHashes, path > /<>/.gradle/4.4.1/fileHashes/fileHashes.bin, access > org.gradle.cache.internal.DefaultCacheAccess@3a0c42fa > Starting Build > Compiling initialization script '/<>/.gradle/init.d/init.gradle' > using SubsetScriptTransformer. > Creating new cache for metadata-1.1/results, path > /<>/.gradle/caches/transforms-1/metadata-1.1/results.bin, access > org.gradle.cache.internal.DefaultCacheAccess@60a943e7 > Compiling initialization script '/<>/.gradle/init.d/init.gradle' > using BuildScriptTransformer. > Compiling settings file '/<>/settings.gradle' using > SubsetScriptTransformer. > Compiling settings file '/<>/settings.gradle' using > BuildScriptTransformer. > Settings evaluated using settings file '/<>/settings.gradle'. > Projects loaded. Root project using build file > '/<>/build.gradle'. > Included projects: [root project 'kotlinx.coroutines', project > ':kotlinx-coroutines-core', project ':kotlinx-coroutines-core-common'] > Keep-alive timer started > Adding Debian repository to project 'kotlinx.coroutines' > Adding Debian repository to project 'kotlinx-coroutines-core' > Adding Debian repository to project 'kotlinx-coroutines-core-common' > Evaluating root project 'kotlinx.coroutines' using build file > '/<>/build.gradle'. > Compiling build file '/<>/build.gradle' using > SubsetScriptTransformer. > Creating new cache for metadata-2.36/module-metadata, path > /<>/.gradle/caches/modules-2/metadata-2.36/module-metadata.bin, > access org.gradle.cache.internal.DefaultCacheAccess@5e57de23 > Loading the Maven rules... > Replacing org.jetbrains.kotlin:kotlin-gradle-plugin:jar:1.3.31 -> > org.jetbrains.kotlin:kotlin-gradle-plugin:jar:1.3.31 > Ignoring > org.jetbrains.kotlin:kotlin-native-gradle-plugin:jar:1.3.0-rc-208 > Ignoring > org.jetbrains.dokka:dokka-gradle-plugin:jar:0.9.16-rdev-2-mpp-hacks > Replacing org.jetbrains.kotlinx:atomicfu-gradle-plugin:jar:0.11.12 -> > org.jetbrains.kotlinx:atomicfu-gradle-plugin:jar:debian > Ignoring > com.jfrog.bintray.gradle:gradle-bintray-plugin:jar:1.8.2-SNAPSHOT > Ignoring com.moowork.gradle:gradle-node-plugin:jar:1.2.0 > Ignoring com.github.jengelman.gradle.plugins:shadow:jar:2.0.2 > Ignoring me.champeau.gradle:jmh-gradle-plugin:jar:0.4.7 > Ignoring net.ltgt.gradle:gradle
Bug#1078412: commons-jci: FTBFS: [ERROR] /<>/compilers/eclipse/src/main/java/org/apache/commons/jci/compilers/EclipseJavaCompilerSettings.java:[82,17] cannot find symbol
Source: commons-jci Version: 1.1-7 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240809 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > debian/rules build > dh build >dh_update_autotools_config >dh_autoreconf >dh_auto_configure > mh_patchpoms -plibcommons-jci-java --debian-build --keep-pom-version > --maven-repo=/<>/debian/maven-repo >dh_auto_build > /usr/lib/jvm/default-java/bin/java -noverify -cp > /usr/share/maven/boot/plexus-classworlds-2.x.jar > -Dmaven.home=/usr/share/maven > -Dmaven.multiModuleProjectDirectory=/<> > -Dclassworlds.conf=/etc/maven/m2-debian.conf > -Dproperties.file.manual=/<>/debian/maven.properties > org.codehaus.plexus.classworlds.launcher.Launcher > -s/etc/maven/settings-debian.xml -Ddebian.dir=/<>/debian > -Dmaven.repo.local=/<>/debian/maven-repo --batch-mode package > -DskipTests -Dnotimestamp=true -Dlocale=en_US > OpenJDK 64-Bit Server VM warning: Options -Xverify:none and -noverify were > deprecated in JDK 13 and will likely be removed in a future release. > [INFO] Scanning for projects... > [INFO] > > [INFO] Reactor Build Order: > [INFO] > [INFO] Apache Commons JCI > [pom] > [INFO] Apache Commons JCI FileAlterationMonitor > [jar] > [INFO] Apache Commons JCI core > [jar] > [INFO] Apache Commons JCI compiler-eclipse > [jar] > [INFO] Apache Commons JCI compiler-janino > [jar] > [INFO] Apache Commons JCI compiler-groovy > [jar] > [INFO] Apache Commons JCI compiler-rhino > [jar] > [INFO] > [INFO] ---< org.apache.commons:commons-jci > >--- > [INFO] Building Apache Commons JCI 1.1 > [1/7] > [INFO] from pom.xml > [INFO] [ pom > ]- > [INFO] > [INFO] --- maven-antrun-plugin:3.1.0:run (jci-jar-manifest) @ commons-jci --- > [INFO] Executing tasks > [INFO] [mkdir] Created dir: /<>/target/osgi > [INFO] [touch] Creating /<>/target/osgi/MANIFEST.MF > [INFO] Executed tasks > [INFO] > [INFO] -< org.apache.commons:commons-jci-fam > >- > [INFO] Building Apache Commons JCI FileAlterationMonitor 1.1 > [2/7] > [INFO] from fam/pom.xml > [INFO] [ jar > ]- > [WARNING] The artifact > org.apache.maven.plugins:maven-resources-plugin:jar:2.6 has been relocated to > org.apache.maven.plugins:maven-resources-plugin:jar:3.3.1 > [WARNING] The artifact org.apache.maven.plugins:maven-compiler-plugin:jar:3.1 > has been relocated to > org.apache.maven.plugins:maven-compiler-plugin:jar:3.10.1 > [WARNING] The artifact org.apache.maven.plugins:maven-jar-plugin:jar:2.4 has > been relocated to org.apache.maven.plugins:maven-jar-plugin:jar:3.3.0 > [INFO] > [INFO] --- maven-antrun-plugin:3.1.0:run (jci-jar-manifest) @ commons-jci-fam > --- > [INFO] Executing tasks > [INFO] [mkdir] Created dir: /<>/fam/target/osgi > [INFO] [touch] Creating /<>/fam/target/osgi/MANIFEST.MF > [INFO] Executed tasks > [INFO] > [INFO] --- maven-resources-plugin:3.3.1:resources (default-resources) @ > commons-jci-fam --- > [WARNING] Using platform encoding (UTF-8 actually) to copy filtered > resources, i.e. build is platform dependent! > [INFO] Copying 2 resources > [INFO] > [INFO] --- maven-compiler-plugin:3.10.1:compile (default-compile) @ > commons-jci-fam --- > [INFO] Changes detected - recompiling the module! > [WARNING] File encoding has not been set, using platform encoding UTF-8, i.e. > build is platform dependent! > [INFO] Compiling 5 source files to /<>/fam/target/classes > Use of target 1.5 is no longer supported, switching to 8 > Use of source 1.5 is no longer supported, switching to 8 > [INFO] > [INFO] --- maven-resources-plugin:3.3.1:testResources (default-testResources) > @ commons-jci-fam --- > [INFO] Not copying test resources > [INFO] > [INFO] --- maven-compiler-plugin:3.10.1:testCompile (default-testCompile) @ > commons-jci-fam --- > [INFO] Not compiling test sources > [INFO] > [INFO] --- maven-surefire-plugin:2.22.3:test (default-test) @ commons-jci-fam > --- > [INFO] Tests are skipped. > [INFO] > [INFO] --- maven-jar-plugin:3.3.0:jar (default-jar) @ commons-jci-fam --- > [INFO] Building jar: /<>/fam/target/commons-jci-fam-1.1.jar > [INFO] > [INFO] < org.apache.commons:commons-jci-core > >- > [INFO] Building Apache Commons JCI core 1.1 > [3/7] > [INFO] from core/pom.xml > [INFO] --
Bug#1078411: python-tornado: FTBFS: dh_auto_test: error: pybuild --test -i python{version} -p 3.12 returned exit code 13
Source: python-tornado Version: 6.4.1-1 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240809 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > make[1]: Entering directory '/<>' > # unset http[s]_proxy here, since otherwise pycurl picks these variables up > and tests fail > PYBUILD_SYSTEM=custom PYTHONPATH=. http_proxy= https_proxy= dh_auto_test > pybuild --test -i python{version} -p 3.12 > I: pybuild base:311: python3.12 ./tornado/test/runtests.py --verbose > HTTPHeaders (tornado.httputil) > Doctest: tornado.httputil.HTTPHeaders ... ok > parse (tornado.httputil.HTTPHeaders) > Doctest: tornado.httputil.HTTPHeaders.parse ... ok > parse_line (tornado.httputil.HTTPHeaders) > Doctest: tornado.httputil.HTTPHeaders.parse_line ... ok > _encode_header (tornado.httputil) > Doctest: tornado.httputil._encode_header ... ok > _get_content_range (tornado.httputil) > Doctest: tornado.httputil._get_content_range ... ok > _normalize_header (tornado.httputil) > Doctest: tornado.httputil._normalize_header ... ok > _parse_header (tornado.httputil) > Doctest: tornado.httputil._parse_header ... ok > _parse_request_range (tornado.httputil) > Doctest: tornado.httputil._parse_request_range ... ok > format_timestamp (tornado.httputil) > Doctest: tornado.httputil.format_timestamp ... ok > parse_request_start_line (tornado.httputil) > Doctest: tornado.httputil.parse_request_start_line ... ok > parse_response_start_line (tornado.httputil) > Doctest: tornado.httputil.parse_response_start_line ... ok > url_concat (tornado.httputil) > Doctest: tornado.httputil.url_concat ... ok > import_object (tornado.util) > Doctest: tornado.util.import_object ... ok > test_asyncio_accessor > (tornado.test.asyncio_test.AnyThreadEventLoopPolicyTest.test_asyncio_accessor) > ... ok > test_tornado_accessor > (tornado.test.asyncio_test.AnyThreadEventLoopPolicyTest.test_tornado_accessor) > ... ok > test_add_thread_close_idempotent > (tornado.test.asyncio_test.AsyncIOLoopTest.test_add_thread_close_idempotent) > ... ok > test_asyncio_adapter > (tornado.test.asyncio_test.AsyncIOLoopTest.test_asyncio_adapter) ... ok > test_asyncio_callback > (tornado.test.asyncio_test.AsyncIOLoopTest.test_asyncio_callback) ... ok > test_asyncio_future > (tornado.test.asyncio_test.AsyncIOLoopTest.test_asyncio_future) ... ok > test_asyncio_yield_from > (tornado.test.asyncio_test.AsyncIOLoopTest.test_asyncio_yield_from) ... ok > test_asyncio_close_leak > (tornado.test.asyncio_test.LeakTest.test_asyncio_close_leak) ... ok > test_ioloop_close_leak > (tornado.test.asyncio_test.LeakTest.test_ioloop_close_leak) ... ok > test_asyncio_manual > (tornado.test.asyncio_test.SelectorThreadLeakTest.test_asyncio_manual) ... ok > test_asyncio_run > (tornado.test.asyncio_test.SelectorThreadLeakTest.test_asyncio_run) ... ok > test_tornado (tornado.test.asyncio_test.SelectorThreadLeakTest.test_tornado) > ... ok > test_facebook_login (tornado.test.auth_test.AuthTest.test_facebook_login) ... > ok > test_oauth10_get_user (tornado.test.auth_test.AuthTest.test_oauth10_get_user) > ... ok > test_oauth10_redirect (tornado.test.auth_test.AuthTest.test_oauth10_redirect) > ... ok > test_oauth10_request_parameters > (tornado.test.auth_test.AuthTest.test_oauth10_request_parameters) ... ok > test_oauth10a_get_user > (tornado.test.auth_test.AuthTest.test_oauth10a_get_user) ... ok > test_oauth10a_get_user_coroutine_exception > (tornado.test.auth_test.AuthTest.test_oauth10a_get_user_coroutine_exception) > ... ok > test_oauth10a_redirect > (tornado.test.auth_test.AuthTest.test_oauth10a_redirect) ... ok > test_oauth10a_redirect_error > (tornado.test.auth_test.AuthTest.test_oauth10a_redirect_error) ... ok > test_oauth10a_request_parameters > (tornado.test.auth_test.AuthTest.test_oauth10a_request_parameters) ... ok > test_oauth2_redirect (tornado.test.auth_test.AuthTest.test_oauth2_redirect) > ... ok > test_openid_get_user (tornado.test.auth_test.AuthTest.test_openid_get_user) > ... ok > test_openid_redirect (tornado.test.auth_test.AuthTest.test_openid_redirect) > ... ok > test_twitter_authenticate_redirect > (tornado.test.auth_test.AuthTest.test_twitter_authenticate_redirect) ... ok > test_twitter_get_user (tornado.test.auth_test.AuthTest.test_twitter_get_user) > ... ok > test_twitter_redirect (tornado.test.auth_test.AuthTest.test_twitter_redirect) > ... ok > test_twitter_redirect_gen_coroutine > (tornado.test.auth_test.AuthTest.test_twitter_redirect_gen_coroutine) ... ok > test_twitter_show_user > (tornado.test.auth_test.AuthTest.test_twitter_show_user) ... ok > test_twitter_show_user_error > (tornado.test.auth_test.AuthTest.test_twitter_show_user_error) ... ok > test_google_login (tornado.test.auth_test.GoogleOAuth2Test.test_google_login) > ... ok > test_reload (tornado.test.autoreload_test.AutoreloadTest.test_reload) ... ok > test_reload_wra
Bug#1078413: pdns: FTBFS: make[6]: *** [Makefile:3871: test-suite.log] Error 1
Source: pdns Version: 4.9.1-2 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240809 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > make[6]: Entering directory '/<>/pdns' > FAIL: testrunner > > Testsuite summary for pdns 4.9.1 > > # TOTAL: 1 > # PASS: 0 > # SKIP: 0 > # XFAIL: 0 > # FAIL: 1 > # XPASS: 0 > # ERROR: 0 > > See pdns/test-suite.log > > make[6]: *** [Makefile:3871: test-suite.log] Error 1 The full build log is available from: http://qa-logs.debian.net/2024/08/09/pdns_4.9.1-2_unstable.log All bugs filed during this archive rebuild are listed at: https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240809;users=lu...@debian.org or: https://udd.debian.org/bugs/?release=na&merged=ign&fnewerval=7&flastmodval=7&fusertag=only&fusertagtag=ftbfs-20240809&fusertaguser=lu...@debian.org&allbugs=1&cseverity=1&ctags=1&caffected=1#results A list of current common problems and possible solutions is available at http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute! If you reassign this bug to another package, please mark it as 'affects'-ing this package. See https://www.debian.org/Bugs/server-control#affects If you fail to reproduce this, please provide a build log and diff it with mine so that we can identify if something relevant changed in the meantime.
Bug#1078410: findbugs: FTBFS: make[1]: *** [debian/rules:10: override_dh_auto_build] Error 1
Source: findbugs Version: 3.1.0~preview2-3 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240809 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > make[1]: Entering directory '/<>' > ant docs build -Dant.java.version=1.8 > Buildfile: /<>/build.xml > > properties: > > init: > [mkdir] Created dir: /<>/bin > [mkdir] Created dir: /<>/build > [mkdir] Created dir: /<>/build/doc > [mkdir] Created dir: /<>/web > [mkdir] Created dir: /<>/build/classes > [mkdir] Created dir: /<>/build/junitclasses > [mkdir] Created dir: /<>/apiJavaDoc > [mkdir] Created dir: /<>/annotationJavaDoc > [mkdir] Created dir: /<>/build/sampleoutput > > classes: > [echo] Requires JDK 8.x (not 7, not 9!), using: 1.8 > [echo] compiling findbugs > [javac] Compiling 1096 source files to /<>/build/classes > [javac] warning: [options] bootstrap class path not set in conjunction > with -source 8 > [javac] warning: [options] source value 8 is obsolete and will be removed > in a future release > [javac] warning: [options] target value 8 is obsolete and will be removed > in a future release > [javac] warning: [options] To suppress warnings about obsolete options, > use -Xlint:-options. > [javac] > /<>/src/java/edu/umd/cs/findbugs/StackMapAnalyzer.java:23: > warning: [removal] AccessController in java.security has been deprecated and > marked for removal > [javac] import java.security.AccessController; > [javac] ^ > [javac] > /<>/src/java/edu/umd/cs/findbugs/StackMapAnalyzer.java:142: > warning: [removal] AccessController in java.security has been deprecated and > marked for removal > [javac] f = AccessController.doPrivileged(new > PrivilegedAction() { > [javac] ^ > [javac] > /<>/src/java/edu/umd/cs/findbugs/ba/jsr305/TypeQualifierValue.java:151: > warning: [removal] SecurityManager in java.lang has been deprecated and > marked for removal > [javac] SecurityManager m = > System.getSecurityManager(); > [javac] ^ > [javac] > /<>/src/java/edu/umd/cs/findbugs/ba/jsr305/TypeQualifierValue.java:151: > warning: [removal] getSecurityManager() in System has been deprecated and > marked for removal > [javac] SecurityManager m = > System.getSecurityManager(); > [javac] ^ > [javac] > /<>/src/java/edu/umd/cs/findbugs/ba/jsr305/TypeQualifierValue.java:156: > warning: [removal] setSecurityManager(SecurityManager) in System has been > deprecated and marked for removal > [javac] > System.setSecurityManager(ValidationSecurityManager.INSTANCE); > [javac] ^ > [javac] > /<>/src/java/edu/umd/cs/findbugs/ba/jsr305/TypeQualifierValue.java:195: > warning: [removal] SecurityManager in java.lang has been deprecated and > marked for removal > [javac] SecurityManager m = System.getSecurityManager(); > [javac] ^ > [javac] > /<>/src/java/edu/umd/cs/findbugs/ba/jsr305/TypeQualifierValue.java:195: > warning: [removal] getSecurityManager() in System has been deprecated and > marked for removal > [javac] SecurityManager m = System.getSecurityManager(); > [javac] ^ > [javac] > /<>/src/java/edu/umd/cs/findbugs/ba/jsr305/TypeQualifierValue.java:200: > warning: [removal] setSecurityManager(SecurityManager) in System has been > deprecated and marked for removal > [javac] > System.setSecurityManager(ValidationSecurityManager.INSTANCE); > [javac] ^ > [javac] > /<>/src/java/edu/umd/cs/findbugs/PluginLoader.java:1457: > warning: [removal] setSecurityManager(SecurityManager) in System has been > deprecated and marked for removal > [javac] System.setSecurityManager(null); > [javac] ^ > [javac] > /<>/src/java/edu/umd/cs/findbugs/ba/jsr305/ValidationSecurityManager.java:29: > warning: [removal] SecurityManager in java.lang has been deprecated and > marked for removal > [javac] final class ValidationSecurityManager extends SecurityManager { > [javac] ^ > [javac] > /<>/src/gui/edu/umd/cs/findbugs/gui2/BugTreeModel.java:577: > warning: [removal] finalize() in Object has been deprecated and marked for > removal > [javac] protected void finalize() throws Throwable { > [javac]^ > [javac] > /<>/src/gui/edu/umd/cs/findbugs/gui2/BugTreeModel.java:578: > warning: [removal] finalize() in Object has been deprecated and marked for > removal > [javac] super.finalize(); > [jav
Bug#1078409: camlimages: FTBFS: gifread.c:46:9: error: implicit declaration of function ‘alloc_small’; did you mean ‘caml_alloc_small’? [-Wimplicit-function-declaration]
Source: camlimages Version: 1:5.0.4-4 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240809 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > debian/rules binary > dh binary --with ocaml --buildsystem ocaml_dune >dh_update_autotools_config -O--buildsystem=ocaml_dune >dh_autoreconf -O--buildsystem=ocaml_dune >dh_ocamlinit -O--buildsystem=ocaml_dune >dh_auto_configure -O--buildsystem=ocaml_dune >dh_auto_build -O--buildsystem=ocaml_dune > dune build -j 8 -p camlimages > (cd _build/default && /usr/bin/ocamlc.opt -w -3 -g -bin-annot > -bin-annot-occurrences -I core/.camlimages.objs/byte -no-alias-deps -o > core/.camlimages.objs/byte/units.cmo -c -impl core/units.ml) > File "core/units.ml", line 33, characters 19-35: > 33 | (List.assoc (String.lowercase unit) units) *. float_of_string digit > > Error: Unbound value "String.lowercase" > (cd _build/default && /usr/bin/ocamlc.opt -w -3 -g -bin-annot > -bin-annot-occurrences -I core/.camlimages.objs/byte -intf-suffix .ml > -no-alias-deps -o core/.camlimages.objs/byte/images.cmo -c -impl > core/images.ml) > File "core/images.ml", line 105, characters 10-26: > 105 | let s = String.lowercase s in > > Error: Unbound value "String.lowercase" > (cd _build/default && /usr/bin/ocamlopt.opt -w -40 -w -3-6 -g -I > config/.ciconfig.eobjs/byte -I config/.ciconfig.eobjs/native -I > /usr/lib/x86_64-linux-gnu/ocaml/5.2.0/base -I > /usr/lib/x86_64-linux-gnu/ocaml/5.2.0/base/base_internalhash_types -I > /usr/lib/x86_64-linux-gnu/ocaml/5.2.0/base/caml -I > /usr/lib/x86_64-linux-gnu/ocaml/5.2.0/base/shadow_stdlib -I > /usr/lib/x86_64-linux-gnu/ocaml/5.2.0/dune-configurator -I > /usr/lib/x86_64-linux-gnu/ocaml/5.2.0/findlib -I > /usr/lib/x86_64-linux-gnu/ocaml/5.2.0/sexplib0 -I > /usr/lib/x86_64-linux-gnu/ocaml/5.2.0/stdio -I > /usr/lib/x86_64-linux-gnu/ocaml/5.2.0/stdune/csexp -I > /usr/lib/x86_64-linux-gnu/ocaml/5.2.0/unix -intf-suffix .ml -no-alias-deps -o > config/.ciconfig.eobjs/native/xConfigurator.cmx -c -impl > config/xConfigurator.ml) > File "_none_", line 1: > Warning 58 [no-cmx-file]: no cmx file was found in path for module Findlib, > and its interface was not compiled with -opaque > (cd _build/default/config && ./ciconfig.exe) > Checking pkg-config in $PATH... (found) > Checking OCaml library lablgtk2... (not found) > Checking OCaml library graphics... (found : > /usr/lib/x86_64-linux-gnu/ocaml/5.2.0/graphics) > Checking program gs in $PATH... (found : /usr/bin/gs) > Checking pkg-config package libgif... (found : -lgif) > Checking pkg-config package libjpeg... (found : -ljpeg) > Checking pkg-config package libpng... (found : -lpng16 > -I/usr/include/libpng16) > Checking pkg-config package libtiff-4... (found : -ltiff > -I/usr/include/x86_64-linux-gnu -I/usr/include/webp) > Checking pkg-config package freetype2... (found : -lfreetype > -I/usr/include/freetype2 -I/usr/include/libpng16) > Checking pkg-config package libexif... (found : -lexif) > Checking pkg-config package xpm... (found : -lXpm -lX11) > Checking file rgb.txt...(found : /etc/X11/rgb.txt) > File "gif/dune", line 5, characters 19-26: > 5 | (c_names gifwrite gifread) >^^^ > (cd _build/default/gif && /usr/bin/x86_64-linux-gnu-gcc -O2 > -fno-strict-aliasing -fwrapv -pthread -fPIC -g -O2 > -Werror=implicit-function-declaration -fstack-protector-strong > -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection > -pthread -D_FILE_OFFSET_BITS=64 -Wdate-time -D_FORTIFY_SOURCE=2 -g -I > /usr/lib/x86_64-linux-gnu/ocaml/5.2.0 -I ../core -o gifread.o -c gifread.c) > gifread.c: In function ‘Val_GifColorType’: > gifread.c:46:9: error: implicit declaration of function ‘alloc_small’; did > you mean ‘caml_alloc_small’? [-Wimplicit-function-declaration] >46 | res = alloc_small(3,0); > | ^~~ > | caml_alloc_small > gifread.c: In function ‘Val_ColorMapObject’: > gifread.c:67:12: error: implicit declaration of function ‘alloc_tuple’; did > you mean ‘caml_alloc_tuple’? [-Wimplicit-function-declaration] >67 | cmap = alloc_tuple(colorMap->ColorCount); > |^~~ > |caml_alloc_tuple > gifread.c: In function ‘dGifOpenFileName’: > gifread.c:156:5: error: implicit declaration of function ‘failwith’; did you > mean ‘caml_failwith’? [-Wimplicit-function-declaration] > 156 | failwith("DGifOpenFileName"); > | ^~~~ > | caml_failwith > gifread.c: In function ‘dGifGetLine’: > gifread.c:215:9: error: implicit declaration of function ‘alloc_string’; did > you mean ‘caml_alloc_string’? [-Wimplicit-function-declaration] > 215 | buf = alloc_string( GifFile->Image.Width * sizeof(GifPixelType) ); > | ^
Bug#1078406: hkl: FTBFS: make[4]: *** [Makefile:833: binoculars-ng] Error 1
Source: hkl Version: 5.0.0.3462-1 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240809 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > make[4]: Entering directory '/<>/binoculars-ng' > touch empty-config-file > /usr/bin/cabal \ > --config-file=empty-config-file \ > build \ > -fuseHklDev \ > --disable-shared \ > --enable-optimization \ > --enable-static \ > --extra-include-dirs=/<> \ > --extra-include-dirs=/<>/binoculars-ng/binoculars \ > --extra-lib-dirs=/<>/hkl/.libs \ > --extra-lib-dirs=/<>/binoculars-ng/binoculars/.libs \ > --offline > Warning: No remote package servers have been specified. Usually you would have > one specified in the config file. > Resolving dependencies... > Build profile: -w ghc-9.4.7 -O1 > In order, the following will be built (use -v for more details): > - hkl-0.1.0.2 (lib) (first run) > - hkl-0.1.0.2 (exe:binoculars-ng) (first run) > Configuring library for hkl-0.1.0.2.. > Preprocessing library for hkl-0.1.0.2.. > Building library for hkl-0.1.0.2.. > [ 1 of 35] Compiling Hkl.C.Hkl( > /<>/binoculars-ng/dist-newstyle/build/x86_64-linux/ghc-9.4.7/hkl-0.1.0.2/build/Hkl/C/Hkl.hs, > > /<>/binoculars-ng/dist-newstyle/build/x86_64-linux/ghc-9.4.7/hkl-0.1.0.2/build/Hkl/C/Hkl.o, > > /<>/binoculars-ng/dist-newstyle/build/x86_64-linux/ghc-9.4.7/hkl-0.1.0.2/build/Hkl/C/Hkl.dyn_o > ) > [ 2 of 35] Compiling Hkl.DArray ( src/Hkl/DArray.hs, > /<>/binoculars-ng/dist-newstyle/build/x86_64-linux/ghc-9.4.7/hkl-0.1.0.2/build/Hkl/DArray.o, > > /<>/binoculars-ng/dist-newstyle/build/x86_64-linux/ghc-9.4.7/hkl-0.1.0.2/build/Hkl/DArray.dyn_o > ) > [ 3 of 35] Compiling Hkl.HKD ( src/Hkl/HKD.hs, > /<>/binoculars-ng/dist-newstyle/build/x86_64-linux/ghc-9.4.7/hkl-0.1.0.2/build/Hkl/HKD.o, > > /<>/binoculars-ng/dist-newstyle/build/x86_64-linux/ghc-9.4.7/hkl-0.1.0.2/build/Hkl/HKD.dyn_o > ) > [ 4 of 35] Compiling Hkl.Image( src/Hkl/Image.hs, > /<>/binoculars-ng/dist-newstyle/build/x86_64-linux/ghc-9.4.7/hkl-0.1.0.2/build/Hkl/Image.o, > > /<>/binoculars-ng/dist-newstyle/build/x86_64-linux/ghc-9.4.7/hkl-0.1.0.2/build/Hkl/Image.dyn_o > ) > [ 5 of 35] Compiling Hkl.Lattice ( src/Hkl/Lattice.hs, > /<>/binoculars-ng/dist-newstyle/build/x86_64-linux/ghc-9.4.7/hkl-0.1.0.2/build/Hkl/Lattice.o, > > /<>/binoculars-ng/dist-newstyle/build/x86_64-linux/ghc-9.4.7/hkl-0.1.0.2/build/Hkl/Lattice.dyn_o > ) > [ 6 of 35] Compiling Hkl.MyMatrix ( src/Hkl/MyMatrix.hs, > /<>/binoculars-ng/dist-newstyle/build/x86_64-linux/ghc-9.4.7/hkl-0.1.0.2/build/Hkl/MyMatrix.o, > > /<>/binoculars-ng/dist-newstyle/build/x86_64-linux/ghc-9.4.7/hkl-0.1.0.2/build/Hkl/MyMatrix.dyn_o > ) > [ 7 of 35] Compiling Hkl.Parameter( src/Hkl/Parameter.hs, > /<>/binoculars-ng/dist-newstyle/build/x86_64-linux/ghc-9.4.7/hkl-0.1.0.2/build/Hkl/Parameter.o, > > /<>/binoculars-ng/dist-newstyle/build/x86_64-linux/ghc-9.4.7/hkl-0.1.0.2/build/Hkl/Parameter.dyn_o > ) > [ 8 of 35] Compiling Hkl.Engine ( src/Hkl/Engine.hs, > /<>/binoculars-ng/dist-newstyle/build/x86_64-linux/ghc-9.4.7/hkl-0.1.0.2/build/Hkl/Engine.o, > > /<>/binoculars-ng/dist-newstyle/build/x86_64-linux/ghc-9.4.7/hkl-0.1.0.2/build/Hkl/Engine.dyn_o > ) > [ 9 of 35] Compiling Hkl.Repa ( src/Hkl/Repa.hs, > /<>/binoculars-ng/dist-newstyle/build/x86_64-linux/ghc-9.4.7/hkl-0.1.0.2/build/Hkl/Repa.o, > > /<>/binoculars-ng/dist-newstyle/build/x86_64-linux/ghc-9.4.7/hkl-0.1.0.2/build/Hkl/Repa.dyn_o > ) > > src/Hkl/Repa.hs:64:2: warning: [-Wunused-top-binds] > Defined but not used: ‘unsafeIndex’ >| > 64 | index, unsafeIndex >| ^^... > > src/Hkl/Repa.hs:64:2: warning: [-Wunused-top-binds] > Defined but not used: ‘index’ >| > 64 | index, unsafeIndex >| ^^... > > src/Hkl/Repa.hs:81:2: warning: [-Wunused-top-binds] > Defined but not used: ‘deepSeqArray’ >| > 81 | deepSeqArray >| ... > > src/Hkl/Repa.hs:114:1: warning: [-Wmissing-signatures] > Top-level binding with no type signature: stage :: String > | > 114 | stage = "Data.Array.Repa.Index" > | ^ > > src/Hkl/Repa.hs:159:9: warning: [-Wunused-top-binds] > Defined but not used: ‘sizeIsValid’ > | > 159 | sizeIsValid :: sh -> Bool > | ^ > [10 of 35] Compiling Hkl.C.Binoculars ( > /<>/binoculars-ng/dist-newstyle/build/x86_64-linux/ghc-9.4.7/hkl-0.1.0.2/build/Hkl/C/Binoculars.hs, > > /<>/binoculars-ng/dist-newstyle/build/x86_64-linux/ghc-9.4.7/hkl-0.1.0.2/build/Hkl/C/Binoculars.o, > > /<>/binoculars-ng/dist-newstyle/build/x86_64-linux/ghc-9.4.7/hkl-0.1.0.2/build/Hkl/C/Binoculars.dyn_o > ) > [11 of 35] Compiling Hkl.Orphan ( src/Hkl/Orphan.hs, > /<>/binoculars-ng/dist-newstyle/build/x86_64-linux/ghc-9.4.7/hkl-0.1.
Bug#1078408: autofs: FTBFS: cyrus-sasl.c:112:25: error: initialization of ‘int (*)(void)’ from incompatible pointer type ‘int (*)(void *, int, const char **, unsigned int *)’ [-Wincompatible-pointer-
Source: autofs Version: 5.1.9-1.1 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240809 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > gcc -g -O2 -Werror=implicit-function-declaration > -ffile-prefix-map=/<>=. -fstack-protector-strong > -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection > -Wdate-time -D_FORTIFY_SOURCE=2 -D_REENTRANT -D_FILE_OFFSET_BITS=64 > -I/usr/include/tirpc -D_REENTRANT -D_FILE_OFFSET_BITS=64 > -I/usr/include/tirpc > -DSSS_LIB_DIR=\"/usr/lib/x86_64-linux-gnu/sssd/modules\" -I../include > -I../lib -fPIC -D_GNU_SOURCE > -DAUTOFS_LIB_DIR=\"/usr/lib/x86_64-linux-gnu/autofs\" > -DAUTOFS_MAP_DIR=\"/etc\" -c amd_tok.c > cyrus-sasl.c:112:25: error: initialization of ‘int (*)(void)’ from > incompatible pointer type ‘int (*)(void *, int, const char **, unsigned int > *)’ [-Wincompatible-pointer-types] > 112 | { SASL_CB_USER, &getuser_func, NULL }, > | ^ > cyrus-sasl.c:112:25: note: (near initialization for ‘callbacks[0].proc’) > cyrus-sasl.c:113:29: error: initialization of ‘int (*)(void)’ from > incompatible pointer type ‘int (*)(void *, int, const char **, unsigned int > *)’ [-Wincompatible-pointer-types] > 113 | { SASL_CB_AUTHNAME, &getuser_func, NULL }, > | ^ > cyrus-sasl.c:113:29: note: (near initialization for ‘callbacks[1].proc’) > cyrus-sasl.c:114:25: error: initialization of ‘int (*)(void)’ from > incompatible pointer type ‘int (*)(sasl_conn_t *, void *, int, sasl_secret_t > **)’ {aka ‘int (*)(struct sasl_conn *, void *, int, struct sasl_secret **)’} > [-Wincompatible-pointer-types] > 114 | { SASL_CB_PASS, &getpass_func, NULL }, > | ^ > cyrus-sasl.c:114:25: note: (near initialization for ‘callbacks[2].proc’) > cyrus-sasl.c:119:24: error: initialization of ‘int (*)(void)’ from > incompatible pointer type ‘int (*)(void *, int, const char *)’ > [-Wincompatible-pointer-types] > 119 | { SASL_CB_LOG, &sasl_log_func, NULL }, > |^ > cyrus-sasl.c:119:24: note: (near initialization for ‘debug_callbacks[0].proc’) > cyrus-sasl.c:120:25: error: initialization of ‘int (*)(void)’ from > incompatible pointer type ‘int (*)(void *, int, const char **, unsigned int > *)’ [-Wincompatible-pointer-types] > 120 | { SASL_CB_USER, &getuser_func, NULL }, > | ^ > cyrus-sasl.c:120:25: note: (near initialization for ‘debug_callbacks[1].proc’) > cyrus-sasl.c:121:29: error: initialization of ‘int (*)(void)’ from > incompatible pointer type ‘int (*)(void *, int, const char **, unsigned int > *)’ [-Wincompatible-pointer-types] > 121 | { SASL_CB_AUTHNAME, &getuser_func, NULL }, > | ^ > cyrus-sasl.c:121:29: note: (near initialization for ‘debug_callbacks[2].proc’) > cyrus-sasl.c:122:25: error: initialization of ‘int (*)(void)’ from > incompatible pointer type ‘int (*)(sasl_conn_t *, void *, int, sasl_secret_t > **)’ {aka ‘int (*)(struct sasl_conn *, void *, int, struct sasl_secret **)’} > [-Wincompatible-pointer-types] > 122 | { SASL_CB_PASS, &getpass_func, NULL }, > | ^ > cyrus-sasl.c:122:25: note: (near initialization for ‘debug_callbacks[3].proc’) > make[3]: *** [Makefile:137: cyrus-sasl.o] Error 1 The full build log is available from: http://qa-logs.debian.net/2024/08/09/autofs_5.1.9-1.1_unstable.log All bugs filed during this archive rebuild are listed at: https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240809;users=lu...@debian.org or: https://udd.debian.org/bugs/?release=na&merged=ign&fnewerval=7&flastmodval=7&fusertag=only&fusertagtag=ftbfs-20240809&fusertaguser=lu...@debian.org&allbugs=1&cseverity=1&ctags=1&caffected=1#results A list of current common problems and possible solutions is available at http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute! If you reassign this bug to another package, please mark it as 'affects'-ing this package. See https://www.debian.org/Bugs/server-control#affects If you fail to reproduce this, please provide a build log and diff it with mine so that we can identify if something relevant changed in the meantime.
Bug#1078405: libhibernate3-java: FTBFS: make[1]: *** [debian/rules:23: override_dh_auto_build] Error 25
Source: libhibernate3-java Version: 3.6.10.Final-12 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240809 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > make[1]: Entering directory '/<>' > rm -Rf debian/maven-repo/org/hibernate/hibernate > rm -Rf debian/maven-repo/org/hibernate/hibernate-parent > rm -Rf debian/maven-repo/org/hibernate/hibernate-core > rm -Rf debian/maven-repo/org/hibernate/hibernate-ehcache > rm -Rf debian/maven-repo/org/hibernate/hibernate-oscache > rm -Rf debian/maven-repo/org/hibernate/hibernate-jbosscache > rm -Rf debian/maven-repo/org/hibernate/hibernate-swarmcache > rm -Rf debian/maven-repo/org/hibernate/hibernate-proxool > rm -Rf debian/maven-repo/org/hibernate/hibernate-testing > rm -Rf debian/maven-repo/org/hibernate/hibernate-testsuite > rm -Rf debian/maven-repo/org/hibernate/hibernate-c3p0 > rm -Rf debian/maven-repo/org/hibernate/hibernate-entitymanager > rm -Rf debian/maven-repo/org/hibernate/hibernate-envers > rm -Rf debian/maven-repo/org/hibernate/hibernate-jdbc3-testing > rm -Rf debian/maven-repo/org/hibernate/hibernate-jdbc4-testing > rm -Rf debian/maven-repo/org/hibernate/hibernate-infinispan > dh_auto_build -- --file project/pom.xml package > /usr/lib/jvm/default-java/bin/java -noverify -cp > /usr/share/maven/boot/plexus-classworlds-2.x.jar > -Dmaven.home=/usr/share/maven > -Dmaven.multiModuleProjectDirectory=/<> > -Dclassworlds.conf=/etc/maven/m2-debian.conf > -Dproperties.file.manual=/<>/debian/maven.properties > org.codehaus.plexus.classworlds.launcher.Launcher > -s/etc/maven/settings-debian.xml -Ddebian.dir=/<>/debian > -Dmaven.repo.local=/<>/debian/maven-repo --batch-mode --file > project/pom.xml package -DskipTests -Dnotimestamp=true -Dlocale=en_US > OpenJDK 64-Bit Server VM warning: Options -Xverify:none and -noverify were > deprecated in JDK 13 and will likely be removed in a future release. > [INFO] Scanning for projects... > [INFO] > > [INFO] Reactor Build Order: > [INFO] > [INFO] Hibernate Core Parent POM > [pom] > [INFO] Hibernate Core > [jar] > [INFO] Hibernate Testing > [jar] > [INFO] Hibernate Testsuite > [jar] > [INFO] Hibernate Ehcache Integration > [jar] > [INFO] Hibernate OSCache Integration > [jar] > [INFO] Hibernate SwarmCache Integration > [jar] > [INFO] Hibernate C3P0 ConnectionProvider > [jar] > [INFO] Hibernate Proxool ConnectionProvider > [jar] > [INFO] Hibernate JDBC3-JdbcSupport Testing > [jar] > [INFO] Hibernate Entity Manager > [jar] > [INFO] Hibernate JDBC4-JdbcSupport Testing > [jar] > [INFO] Hibernate Core Aggregator > [pom] > [INFO] > [INFO] ---< org.hibernate:hibernate-parent > >--- > [INFO] Building Hibernate Core Parent POM 3.6.10.Final > [1/13] > [INFO] from hibernate-parent/pom.xml > [INFO] [ pom > ]- > [INFO] > [INFO] < org.hibernate:hibernate-core > > > [INFO] Building Hibernate Core 3.6.10.Final > [2/13] > [INFO] from hibernate-core/pom.xml > [INFO] [ jar > ]- > [WARNING] The artifact > org.apache.maven.plugins:maven-resources-plugin:jar:2.6 has been relocated to > org.apache.maven.plugins:maven-resources-plugin:jar:3.3.1 > [WARNING] The artifact dom4j:dom4j:jar:debian has been relocated to > org.dom4j:dom4j:jar:debian > [WARNING] The artifact javassist:javassist:jar:debian has been relocated to > org.javassist:javassist:jar:debian > [INFO] > [INFO] --- antlr-maven-plugin:2.2:generate (default) @ hibernate-core --- > [INFO] performing grammar generation [hql.g] > [INFO] > > [INFO] Reactor Summary for Hibernate Core Aggregator 3.6.10.Final: > [INFO] > [INFO] Hibernate Core Parent POM .. SUCCESS [ 0.002 > s] > [INFO] Hibernate Core . FAILURE [ 0.580 > s] > [INFO] Hibernate Testing .. SKIPPED > [INFO] Hibernate Testsuite SKIPPED > [INFO] Hibernate Ehcache Integration .. SKIPPED > [INFO] Hibernate OSCache Integration .
Bug#1078404: sdcv: FTBFS: gunicode.h:809:34: error: invalid conversion from ‘const gchar*’ {aka ‘const char*’} to ‘gchar*’ {aka ‘char*’} [-fpermissive]
Source: sdcv Version: 0.5.2-2 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240809 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > /usr/bin/c++ -DHAVE_CONFIG_H -DVERSION=\"0.5.2\" -I/usr/include/glib-2.0 > -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/sysprof-6 > -I/<>/src/lib -I/<>/obj-x86_64-linux-gnu -g -O2 > -ffile-prefix-map=/<>=. -fstack-protector-strong > -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection > -Wdate-time -D_FORTIFY_SOURCE=2 -std=c++11 -Wall -MD -MT > CMakeFiles/sdcv.dir/src/stardict_lib.cpp.o -MF > CMakeFiles/sdcv.dir/src/stardict_lib.cpp.o.d -o > CMakeFiles/sdcv.dir/src/stardict_lib.cpp.o -c > /<>/src/stardict_lib.cpp > /<>/src/stardict_lib.cpp: In member function ‘bool > Dict::LookupWithRule(GPatternSpec*, glong*, int)’: > /<>/src/stardict_lib.cpp:943:35: warning: ‘gboolean > g_pattern_match_string(GPatternSpec*, const gchar*)’ is deprecated: Use > 'g_pattern_spec_match_string' instead [-Wdeprecated-declarations] > 943 | if (g_pattern_match_string(pspec, get_key(i))) > | ~~^~~ > In file included from /usr/include/glib-2.0/glib.h:68, > from /usr/include/glib-2.0/glib/gprintf.h:23, > from /usr/include/glib-2.0/glib/gstdio.h:24, > from /<>/src/stardict_lib.cpp:10: > /usr/include/glib-2.0/glib/gpattern.h:57:15: note: declared here >57 | gboolean g_pattern_match_string (GPatternSpec *pspec, > | ^~ > In file included from /usr/include/glib-2.0/glib/gstring.h:35, > from /usr/include/glib-2.0/glib/giochannel.h:36, > from /usr/include/glib-2.0/glib.h:56: > /<>/src/stardict_lib.cpp: In member function ‘bool > Libs::LookupSimilarWord(const gchar*, glong&, int)’: > /usr/include/glib-2.0/glib/gunicode.h:809:34: error: invalid conversion from > ‘const gchar*’ {aka ‘const char*’} to ‘gchar*’ {aka ‘char*’} [-fpermissive] > 809 | #define g_utf8_next_char(p) ((p) + g_utf8_skip[*(const guchar *)(p)]) > | ~^~~~ > | | > | const gchar* {aka const char*} > /<>/src/stardict_lib.cpp:1113:31: note: in expansion of macro > ‘g_utf8_next_char’ > 1113 | gchar *nextchar = g_utf8_next_char(sWord); > | ^~~~ > make[4]: *** [CMakeFiles/sdcv.dir/build.make:135: > CMakeFiles/sdcv.dir/src/stardict_lib.cpp.o] Error 1 The full build log is available from: http://qa-logs.debian.net/2024/08/09/sdcv_0.5.2-2_unstable.log All bugs filed during this archive rebuild are listed at: https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240809;users=lu...@debian.org or: https://udd.debian.org/bugs/?release=na&merged=ign&fnewerval=7&flastmodval=7&fusertag=only&fusertagtag=ftbfs-20240809&fusertaguser=lu...@debian.org&allbugs=1&cseverity=1&ctags=1&caffected=1#results A list of current common problems and possible solutions is available at http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute! If you reassign this bug to another package, please mark it as 'affects'-ing this package. See https://www.debian.org/Bugs/server-control#affects If you fail to reproduce this, please provide a build log and diff it with mine so that we can identify if something relevant changed in the meantime.
Bug#1078403: python-orjson: FTBFS: make[1]: *** [debian/rules:18: override_dh_auto_build] Error 25
Source: python-orjson Version: 3.9.15-1 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240809 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > make[1]: Entering directory '/<>' > mv Cargo.lock Cargo.lock.saved > dh_auto_build > I: pybuild plugin_pyproject:129: Building wheel for python3.12 with "build" > module > I: pybuild base:311: python3.12 -m build --skip-dependency-check > --no-isolation --wheel --outdir > /<>/.pybuild/cpython3_3.12_orjson > * Building wheel... > Running `maturin pep517 build-wheel -i /usr/bin/python3.12 --compatibility > off` > error: failed to select a version for the requirement `pyo3-ffi = "^0.20.2"` > candidate versions found which didn't match: 0.22.2 > location searched: directory source `/usr/share/cargo/registry` (which is > replacing registry `crates-io`) > required by package `orjson v3.9.15 (/<>)` > perhaps a crate was updated and forgotten to be re-vendored? > As a reminder, you're using offline mode (--offline) which can sometimes > cause surprising resolution failures, if this error is too confusing you may > wish to retry without the offline flag. > 💥 maturin failed > Caused by: Cargo metadata failed. Does your crate compile with `cargo > build`? > Caused by: `cargo metadata` exited with an error: > Error: command ['maturin', 'pep517', 'build-wheel', '-i', > '/usr/bin/python3.12', '--compatibility', 'off'] returned non-zero exit > status 1 > > ERROR Backend subprocess exited when trying to invoke build_wheel > E: pybuild pybuild:389: build: plugin pyproject failed with: exit code=1: > python3.12 -m build --skip-dependency-check --no-isolation --wheel --outdir > /<>/.pybuild/cpython3_3.12_orjson > dh_auto_build: error: pybuild --build -i python{version} -p 3.12 returned > exit code 13 > make[1]: *** [debian/rules:18: override_dh_auto_build] Error 25 The full build log is available from: http://qa-logs.debian.net/2024/08/09/python-orjson_3.9.15-1_unstable.log All bugs filed during this archive rebuild are listed at: https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240809;users=lu...@debian.org or: https://udd.debian.org/bugs/?release=na&merged=ign&fnewerval=7&flastmodval=7&fusertag=only&fusertagtag=ftbfs-20240809&fusertaguser=lu...@debian.org&allbugs=1&cseverity=1&ctags=1&caffected=1#results A list of current common problems and possible solutions is available at http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute! If you reassign this bug to another package, please mark it as 'affects'-ing this package. See https://www.debian.org/Bugs/server-control#affects If you fail to reproduce this, please provide a build log and diff it with mine so that we can identify if something relevant changed in the meantime.
Bug#1078402: gimp: FTBFS: dh_install: error: missing files, aborting
Source: gimp Version: 2.10.38-2 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240809 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > make[1]: Entering directory '/<>' > find debian/tmp -name '*.la' -print -delete > debian/tmp/usr/lib/libgimpcolor-2.0.la > debian/tmp/usr/lib/libgimpwidgets-2.0.la > debian/tmp/usr/lib/libgimpmath-2.0.la > debian/tmp/usr/lib/libgimpthumb-2.0.la > debian/tmp/usr/lib/libgimpui-2.0.la > debian/tmp/usr/lib/gimp/2.0/modules/libcolor-selector-cmyk.la > debian/tmp/usr/lib/gimp/2.0/modules/libcolor-selector-water.la > debian/tmp/usr/lib/gimp/2.0/modules/libdisplay-filter-high-contrast.la > debian/tmp/usr/lib/gimp/2.0/modules/libcolor-selector-wheel.la > debian/tmp/usr/lib/gimp/2.0/modules/libdisplay-filter-gamma.la > debian/tmp/usr/lib/gimp/2.0/modules/libcontroller-midi.la > debian/tmp/usr/lib/gimp/2.0/modules/libcontroller-linux-input.la > debian/tmp/usr/lib/gimp/2.0/modules/libdisplay-filter-color-blind.la > debian/tmp/usr/lib/gimp/2.0/modules/libdisplay-filter-clip-warning.la > debian/tmp/usr/lib/libgimpmodule-2.0.la > debian/tmp/usr/lib/libgimp-2.0.la > debian/tmp/usr/lib/libgimpconfig-2.0.la > debian/tmp/usr/lib/libgimpbase-2.0.la > make[1]: Leaving directory '/<>' >dh_install > dh_install: warning: Cannot find (any matches for) > "usr/lib/gimp/2.0/plug-ins/file-heif" (tried in ., debian/tmp) > > dh_install: warning: gimp missing files: usr/lib/gimp/2.0/plug-ins/file-heif > dh_install: error: missing files, aborting > make: *** [debian/rules:13: binary] Error 255 The full build log is available from: http://qa-logs.debian.net/2024/08/09/gimp_2.10.38-2_unstable.log All bugs filed during this archive rebuild are listed at: https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240809;users=lu...@debian.org or: https://udd.debian.org/bugs/?release=na&merged=ign&fnewerval=7&flastmodval=7&fusertag=only&fusertagtag=ftbfs-20240809&fusertaguser=lu...@debian.org&allbugs=1&cseverity=1&ctags=1&caffected=1#results A list of current common problems and possible solutions is available at http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute! If you reassign this bug to another package, please mark it as 'affects'-ing this package. See https://www.debian.org/Bugs/server-control#affects If you fail to reproduce this, please provide a build log and diff it with mine so that we can identify if something relevant changed in the meantime.
Bug#1078401: r-cran-psychtools: FTBFS: build-dependency not installable: r-cran-rtf
Source: r-cran-psychtools Version: 2.4.3-1 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240809 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > +--+ > | Install package build dependencies > | > +--+ > > > Setup apt archive > - > > Merged Build-Depends: debhelper-compat (= 13), dh-r, r-base-dev, > r-cran-psych, r-cran-foreign, r-cran-rtf, build-essential, fakeroot > Filtered Build-Depends: debhelper-compat (= 13), dh-r, r-base-dev, > r-cran-psych, r-cran-foreign, r-cran-rtf, build-essential, fakeroot > dpkg-deb: building package 'sbuild-build-depends-main-dummy' in > '/<>/apt_archive/sbuild-build-depends-main-dummy.deb'. > Ign:1 copy:/<>/apt_archive ./ InRelease > Get:2 copy:/<>/apt_archive ./ Release [609 B] > Ign:3 copy:/<>/apt_archive ./ Release.gpg > Get:4 copy:/<>/apt_archive ./ Sources [677 B] > Get:5 copy:/<>/apt_archive ./ Packages [709 B] > Fetched 1995 B in 0s (195 kB/s) > Reading package lists... > Reading package lists... > > Install main build dependencies (apt-based resolver) > > > Installing build dependencies > Reading package lists... > Building dependency tree... > Reading state information... > Some packages could not be installed. This may mean that you have > requested an impossible situation or if you are using the unstable > distribution that some required packages have not yet been created > or been moved out of Incoming. > The following information may help to resolve the situation: > > The following packages have unmet dependencies: > sbuild-build-depends-main-dummy : Depends: r-cran-rtf but it is not > installable > E: Unable to correct problems, you have held broken packages. > apt-get failed. The full build log is available from: http://qa-logs.debian.net/2024/08/09/r-cran-psychtools_2.4.3-1_unstable.log All bugs filed during this archive rebuild are listed at: https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240809;users=lu...@debian.org or: https://udd.debian.org/bugs/?release=na&merged=ign&fnewerval=7&flastmodval=7&fusertag=only&fusertagtag=ftbfs-20240809&fusertaguser=lu...@debian.org&allbugs=1&cseverity=1&ctags=1&caffected=1#results A list of current common problems and possible solutions is available at http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute! If you reassign this bug to another package, please mark it as 'affects'-ing this package. See https://www.debian.org/Bugs/server-control#affects If you fail to reproduce this, please provide a build log and diff it with mine so that we can identify if something relevant changed in the meantime.
Bug#1078400: python-bcrypt: FTBFS: make: *** [debian/rules:14: binary] Error 25
Source: python-bcrypt Version: 4.1.2-1 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240809 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > make[1]: Entering directory '/<>' > /usr/share/cargo/bin/cargo prepare-debian debian/cargo_registry > --link-from-system > debian cargo wrapper: options, profiles, parallel, lto: ['parallel=8'] [] > ['-j8'] 0 > debian cargo wrapper: rust_type, gnu_type: x86_64-unknown-linux-gnu, > x86_64-linux-gnu > debian cargo wrapper: linking /usr/share/cargo/registry/* into > /<>/debian/cargo_registry/ > make[1]: Leaving directory '/<>' >dh_auto_configure -O--buildsystem=pybuild > pybuild --configure -i python{version} -p 3.12 >dh_auto_build -O--buildsystem=pybuild > pybuild --build -i python{version} -p 3.12 > I: pybuild plugin_pyproject:129: Building wheel for python3.12 with "build" > module > I: pybuild base:311: python3.12 -m build --skip-dependency-check > --no-isolation --wheel --outdir > /<>/.pybuild/cpython3_3.12_bcrypt > * Building wheel... > running bdist_wheel > running build > running build_py > creating build > creating build/lib.linux-x86_64-cpython-312 > creating build/lib.linux-x86_64-cpython-312/bcrypt > copying src/bcrypt/__init__.py -> build/lib.linux-x86_64-cpython-312/bcrypt > running egg_info > creating src/bcrypt.egg-info > writing src/bcrypt.egg-info/PKG-INFO > writing dependency_links to src/bcrypt.egg-info/dependency_links.txt > writing requirements to src/bcrypt.egg-info/requires.txt > writing top-level names to src/bcrypt.egg-info/top_level.txt > writing manifest file 'src/bcrypt.egg-info/SOURCES.txt' > reading manifest file 'src/bcrypt.egg-info/SOURCES.txt' > reading manifest template 'MANIFEST.in' > warning: no files found matching 'Cargo.lock' under directory 'src/_bcrypt' > warning: no previously-included files found matching 'requirements.txt' > warning: no previously-included files found matching 'release.py' > warning: no previously-included files found matching 'mypy.ini' > warning: no previously-included files matching '*' found under directory > '.github' > warning: no previously-included files found matching 'src/_bcrypt/target' > warning: no previously-included files matching '*' found under directory > 'src/_bcrypt/target' > adding license file 'LICENSE' > writing manifest file 'src/bcrypt.egg-info/SOURCES.txt' > copying src/bcrypt/__init__.pyi -> build/lib.linux-x86_64-cpython-312/bcrypt > copying src/bcrypt/py.typed -> build/lib.linux-x86_64-cpython-312/bcrypt > running build_ext > running build_rust > debian cargo wrapper: options, profiles, parallel, lto: ['parallel=8'] [] > ['-j8'] 0 > debian cargo wrapper: rust_type, gnu_type: x86_64-unknown-linux-gnu, > x86_64-linux-gnu > debian cargo wrapper: running subprocess (['env', 'RUST_BACKTRACE=1', > '/usr/bin/cargo', 'metadata', '--manifest-path', 'src/_bcrypt/Cargo.toml', > '--format-version', '1'],) {} > error: failed to select a version for the requirement `pyo3 = "^0.20.0"` > candidate versions found which didn't match: 0.22.2 > location searched: directory source `/<>/debian/cargo_registry` > (which is replacing registry `crates-io`) > required by package `bcrypt-rust v0.1.0 (/<>/src/_bcrypt)` > perhaps a crate was updated and forgotten to be re-vendored? > > =DEBUG ASSISTANCE= > If you are seeing a compilation error please try the following steps to > successfully install bcrypt: > 1) Upgrade to the latest pip and try again. This will fix errors for most >users. See: https://pip.pypa.io/en/stable/installing/#upgrading-pip > 2) Ensure you have a recent Rust toolchain installed. bcrypt requires >rustc >= 1.64.0. (1.63 may be used by setting the BCRYPT_ALLOW_RUST_163 >environment variable) > > Python: 3.12.5 > platform: Linux-6.1.0-23-cloud-amd64-x86_64-with-glibc2.39 > pip: n/a > setuptools: 70.3.0 > setuptools_rust: 1.9.0 > rustc: 1.79.0 > =DEBUG ASSISTANCE= > > error: `/usr/share/cargo/bin/cargo metadata --manifest-path > src/_bcrypt/Cargo.toml --format-version 1` failed with code 101 > -- Output captured from stdout: > > > ERROR Backend subprocess exited when trying to invoke build_wheel > E: pybuild pybuild:389: build: plugin pyproject failed with: exit code=1: > python3.12 -m build --skip-dependency-check --no-isolation --wheel --outdir > /<>/.pybuild/cpython3_3.12_bcrypt > dh_auto_build: error: pybuild --build -i python{version} -p 3.12 returned > exit code 13 > make: *** [debian/rules:14: binary] Error 25 The full build log is available from: http://qa-logs.debian.net/2024/08/09/python-bcrypt_4.1.2-1_unstable.log All bugs filed during this archive rebuild are listed at: https://bugs.debian.org/cgi-bin/pkgr
Bug#1078399: plexus-compiler: FTBFS: [ERROR] /<>/plexus-compilers/plexus-compiler-eclipse/src/main/java/org/codehaus/plexus/compiler/eclipse/EclipseJavaCompiler.java:[55,37] cannot find s
Source: plexus-compiler Version: 2.12.1-2 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240809 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > debian/rules binary > dh binary >dh_update_autotools_config >dh_autoreconf >dh_auto_configure > mh_patchpoms -plibplexus-compiler-java --debian-build > --keep-pom-version --maven-repo=/<>/debian/maven-repo >dh_auto_build > /usr/lib/jvm/default-java/bin/java -noverify -cp > /usr/share/maven/boot/plexus-classworlds-2.x.jar > -Dmaven.home=/usr/share/maven > -Dmaven.multiModuleProjectDirectory=/<> > -Dclassworlds.conf=/etc/maven/m2-debian.conf > -Dproperties.file.manual=/<>/debian/maven.properties > org.codehaus.plexus.classworlds.launcher.Launcher > -s/etc/maven/settings-debian.xml -Ddebian.dir=/<>/debian > -Dmaven.repo.local=/<>/debian/maven-repo --batch-mode package > -DskipTests -Dnotimestamp=true -Dlocale=en_US > OpenJDK 64-Bit Server VM warning: Options -Xverify:none and -noverify were > deprecated in JDK 13 and will likely be removed in a future release. > [INFO] Scanning for projects... > [INFO] > > [INFO] Reactor Build Order: > [INFO] > [INFO] Plexus Compiler > [pom] > [INFO] Plexus Compiler Api > [jar] > [INFO] Plexus Compiler Manager > [jar] > [INFO] Plexus Compiler Test Harness > [jar] > [INFO] Plexus Compilers > [pom] > [INFO] Plexus C# Compiler > [jar] > [INFO] Plexus Eclipse Compiler > [jar] > [INFO] Plexus Javac Component > [jar] > [INFO] Plexus J2ObjC Compiler > [jar] > [INFO] > [INFO] < org.codehaus.plexus:plexus-compiler > >- > [INFO] Building Plexus Compiler 2.12.1 > [1/9] > [INFO] from pom.xml > [INFO] [ pom > ]- > [INFO] > [INFO] --- plexus-component-metadata:2.1.1:generate-metadata (default) @ > plexus-compiler --- > [INFO] > [INFO] --- plexus-component-metadata:2.1.1:merge-metadata (default) @ > plexus-compiler --- > [INFO] > [INFO] --< org.codehaus.plexus:plexus-compiler-api > >--- > [INFO] Building Plexus Compiler Api 2.12.1 > [2/9] > [INFO] from plexus-compiler-api/pom.xml > [INFO] [ jar > ]- > [WARNING] The artifact > org.apache.maven.plugins:maven-resources-plugin:jar:2.6 has been relocated to > org.apache.maven.plugins:maven-resources-plugin:jar:3.3.1 > [WARNING] The artifact org.apache.maven.plugins:maven-compiler-plugin:jar:3.1 > has been relocated to > org.apache.maven.plugins:maven-compiler-plugin:jar:3.10.1 > [WARNING] The artifact org.apache.maven.plugins:maven-jar-plugin:jar:2.4 has > been relocated to org.apache.maven.plugins:maven-jar-plugin:jar:3.3.0 > [INFO] > [INFO] --- maven-resources-plugin:3.3.1:resources (default-resources) @ > plexus-compiler-api --- > [INFO] skip non existing resourceDirectory > /<>/plexus-compiler-api/src/main/resources > [INFO] > [INFO] --- maven-compiler-plugin:3.10.1:compile (default-compile) @ > plexus-compiler-api --- > [INFO] Changes detected - recompiling the module! > [INFO] Compiling 18 source files to > /<>/plexus-compiler-api/target/classes > [INFO] > [INFO] --- plexus-component-metadata:2.1.1:generate-metadata (default) @ > plexus-compiler-api --- > [INFO] > [INFO] --- plexus-component-metadata:2.1.1:merge-metadata (default) @ > plexus-compiler-api --- > [INFO] > [INFO] --- maven-resources-plugin:3.3.1:testResources (default-testResources) > @ plexus-compiler-api --- > [INFO] Copying 1 resource > [INFO] > [INFO] --- maven-compiler-plugin:3.10.1:testCompile (default-testCompile) @ > plexus-compiler-api --- > [INFO] Changes detected - recompiling the module! > [INFO] Compiling 5 source files to > /<>/plexus-compiler-api/target/test-classes > [INFO] > [INFO] --- maven-surefire-plugin:2.22.3:test (default-test) @ > plexus-compiler-api --- > [INFO] Tests are skipped. > [INFO] > [INFO] --- maven-jar-plugin:3.3.0:jar (default-jar) @ plexus-compiler-api --- > [INFO] Building jar: > /<>/plexus-compiler-api/target/plexus-compiler-api-2.12.1.jar > [INFO] > [INFO] < org.codehaus.plexus:plexus-compiler-manager > >- > [INFO] Building Plexus Compiler Manager 2.12.1 > [3/9] > [INFO] from plexus-compiler-manager/
Bug#1078398: cubemap: FTBFS: ffmpeg_metacube_hack.c:259:33: error: assignment to ‘int (*)(void *, uint8_t *, int, enum AVIODataMarkerType, int64_t)’ {aka ‘int (*)(void *, unsigned char *, int, enum
Source: cubemap Version: 1.5.1-2 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240809 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > g++ -MMD -MP -Wdate-time -D_FORTIFY_SOURCE=2 -Itlse -DWITH_KTLS > -DNO_TLS_LEGACY_SUPPORT -DNO_SSL_COMPATIBLE_INTERFACE -DLTM_DESC > -DTLS_REEXPORTABLE -DNO_TLS_WITH_CHACHA20_POLY1305 -Wall -g -O2 > -ffile-prefix-map=/<>=. -fstack-protector-strong > -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection > -std=gnu++11-pthread -o serverpool.o -c serverpool.cpp > ffmpeg_metacube_hack.c: In function ‘avformat_write_header’: > ffmpeg_metacube_hack.c:259:33: error: assignment to ‘int (*)(void *, uint8_t > *, int, enum AVIODataMarkerType, int64_t)’ {aka ‘int (*)(void *, unsigned > char *, int, enum AVIODataMarkerType, long int)’} from incompatible pointer > type ‘int (*)(void *, const uint8_t *, int, enum AVIODataMarkerType, > int64_t)’ {aka ‘int (*)(void *, const unsigned char *, int, enum > AVIODataMarkerType, long int)’} [-Wincompatible-pointer-types] > 259 | ed->old_write_data_type = ctx->pb->write_data_type; > | ^ > ffmpeg_metacube_hack.c:261:34: error: assignment to ‘int (*)(void *, const > uint8_t *, int, enum AVIODataMarkerType, int64_t)’ {aka ‘int (*)(void *, > const unsigned char *, int, enum AVIODataMarkerType, long int)’} from > incompatible pointer type ‘int (*)(void *, uint8_t *, int, enum > AVIODataMarkerType, int64_t)’ {aka ‘int (*)(void *, unsigned char *, int, > enum AVIODataMarkerType, long int)’} [-Wincompatible-pointer-types] > 261 | ctx->pb->write_data_type = write_packet; > | ^ > make[1]: *** [Makefile:33: ffmpeg_metacube_hack.so] Error 1 The full build log is available from: http://qa-logs.debian.net/2024/08/09/cubemap_1.5.1-2_unstable.log All bugs filed during this archive rebuild are listed at: https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240809;users=lu...@debian.org or: https://udd.debian.org/bugs/?release=na&merged=ign&fnewerval=7&flastmodval=7&fusertag=only&fusertagtag=ftbfs-20240809&fusertaguser=lu...@debian.org&allbugs=1&cseverity=1&ctags=1&caffected=1#results A list of current common problems and possible solutions is available at http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute! If you reassign this bug to another package, please mark it as 'affects'-ing this package. See https://www.debian.org/Bugs/server-control#affects If you fail to reproduce this, please provide a build log and diff it with mine so that we can identify if something relevant changed in the meantime.
Bug#1078395: kotlinx-atomicfu: FTBFS: make[1]: *** [debian/rules:7: override_dh_auto_build] Error 25
Source: kotlinx-atomicfu Version: 0.11.12-2 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240809 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > make[1]: Entering directory '/<>' > dh_auto_build -- -Dkotlin.compiler.execution.strategy=in-process > -Pkotlin_version=1.3.31 -Pversion=0.11.12 install > mkdir -p .gradle/init.d > cp /usr/share/gradle-debian-helper/init.gradle .gradle/init.d/ > gradle --info --console plain --offline --stacktrace --no-daemon > --refresh-dependencies --gradle-user-home .gradle -Duser.home=. > -Duser.name=debian -Ddebian.package=kotlinx-atomicfu -Dfile.encoding=UTF-8 > --parallel --max-workers=8 -Dkotlin.compiler.execution.strategy=in-process > -Pkotlin_version=1.3.31 -Pversion=0.11.12 install > openjdk version "21.0.4" 2024-07-16 > OpenJDK Runtime Environment (build 21.0.4+7-Debian-2) > OpenJDK 64-Bit Server VM (build 21.0.4+7-Debian-2, mixed mode, sharing) > Initialized native services in: /<>/.gradle/native > To honour the JVM settings for this build a new JVM will be forked. Please > consider using the daemon: > https://docs.gradle.org/4.4.1/userguide/gradle_daemon.html. > Starting process 'Gradle build daemon'. Working directory: > /<>/.gradle/daemon/4.4.1 Command: > /usr/lib/jvm/java-21-openjdk-amd64/bin/java --add-opens > java.base/java.lang=ALL-UNNAMED > -Xbootclasspath/a:/usr/share/java/gradle-helper-hook.jar:/usr/share/java/maven-repo-helper.jar > -Dfile.encoding=UTF-8 -Duser.country -Duser.language=en -Duser.variant -cp > /usr/share/gradle/lib/gradle-launcher-4.4.1.jar > org.gradle.launcher.daemon.bootstrap.GradleDaemon 4.4.1 > Successfully started process 'Gradle build daemon' > An attempt to start the daemon took 1.248 secs. > The client will now receive all logging from the daemon (pid: 3356267). The > daemon log file: /<>/.gradle/daemon/4.4.1/daemon-3356267.out.log > Daemon will be stopped at the end of the build stopping after processing > Closing daemon's stdin at end of input. > The daemon will no longer process any standard input. > Using 8 worker leases. > Creating new cache for fileHashes, path > /<>/.gradle/caches/4.4.1/fileHashes/fileHashes.bin, access > org.gradle.cache.internal.DefaultCacheAccess@3cfa5d0f > Creating new cache for resourceHashesCache, path > /<>/.gradle/caches/4.4.1/fileHashes/resourceHashesCache.bin, > access org.gradle.cache.internal.DefaultCacheAccess@3cfa5d0f > Creating new cache for fileHashes, path > /<>/.gradle/4.4.1/fileHashes/fileHashes.bin, access > org.gradle.cache.internal.DefaultCacheAccess@175b02b8 > Starting Build > Compiling initialization script '/<>/.gradle/init.d/init.gradle' > using SubsetScriptTransformer. > Creating new cache for metadata-1.1/results, path > /<>/.gradle/caches/transforms-1/metadata-1.1/results.bin, access > org.gradle.cache.internal.DefaultCacheAccess@ef9c3ac > Compiling initialization script '/<>/.gradle/init.d/init.gradle' > using BuildScriptTransformer. > Compiling settings file '/<>/settings.gradle' using > SubsetScriptTransformer. > Compiling settings file '/<>/settings.gradle' using > BuildScriptTransformer. > Settings evaluated using settings file '/<>/settings.gradle'. > Settings file found (/<>/settings.gradle), but > rootProject.name isn't defined > Root project name not defined in settings.gradle, defaulting to > 'kotlinx-atomicfu' instead of the name of the root directory > 'kotlinx-atomicfu-0.11.12' > Projects loaded. Root project using build file > '/<>/build.gradle'. > Included projects: [root project 'kotlinx-atomicfu', project ':atomicfu', > project ':atomicfu-common', project ':atomicfu-gradle-plugin', project > ':atomicfu-transformer'] > Keep-alive timer started > Adding Debian repository to project 'kotlinx-atomicfu' > Adding Debian repository to project 'atomicfu' > Adding Debian repository to project 'atomicfu-common' > Adding Debian repository to project 'atomicfu-gradle-plugin' > Adding Debian repository to project 'atomicfu-transformer' > Parallel execution is an incubating feature. > Evaluating root project 'kotlinx-atomicfu' using build file > '/<>/build.gradle'. > Compiling build file '/<>/build.gradle' using > SubsetScriptTransformer. > Loading the Maven rules... > Replacing org.jetbrains.kotlin:kotlin-gradle-plugin:jar:1.3.31 -> > org.jetbrains.kotlin:kotlin-gradle-plugin:jar:1.3.31 > Passing through org.jetbrains.kotlin:kotlin-gradle-plugin-api:jar:debian > Passing through > org.jetbrains.kotlin:kotlin-gradle-plugin-model:jar:debian > Passing through org.jetbrains.kotlin:kotlin-stdlib:jar:debian > Passing through org.jetbrains.kotlin:kotlin-native-utils:jar:debian > Passing through > org.jetbrains.kotlin:kotlin-compiler-embeddable:jar:debian > Passing through > org.jetbrains.kotlin:ko
Bug#1078396: stardict: FTBFS: gunicode.h:809:34: error: invalid conversion from 'const gchar*' {aka 'const char*'} to 'gchar*' {aka 'char*'} [-fpermissive]
Source: stardict Version: 3.0.7+git20220909+dfsg-5 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240809 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > /bin/bash ../../libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I. > -I../.. -I/usr/include/sigc++-2.0 > -I/usr/lib/x86_64-linux-gnu/sigc++-2.0/include -Wall -Werror=format-security > -D_FORTIFY_SOURCE=2 -O1 -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 > -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include > -I/usr/include/sysprof-6 -I/usr/include/harfbuzz -I/usr/include/freetype2 > -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid > -I/usr/include/fribidi -I/usr/include/cairo -I/usr/include/pixman-1 > -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/x86_64-linux-gnu > -I/usr/include/webp -I/usr/include/gio-unix-2.0 -I/usr/include/cloudproviders > -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 > -I/usr/include/at-spi-2.0 -I/usr/include/dbus-1.0 > -I/usr/lib/x86_64-linux-gnu/dbus-1.0/include -I/usr/include/json-glib-1.0 > -D_REENTRANT -D_REENTRANT -pthread -I../.. -I../.. -I../../../lib/src > -Wdate-time -D_FORTIFY_SOURCE=2 -I/usr/include/speech_tools -g -O2 > -ffile-prefix-map=/<>=. -fstack-protector-strong > -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -c > -o http_client.lo http_client.cpp > stddict.cpp: In member function 'collation_file* > idxsyn_file::collate_load_impl(const std::string&, const std::string&, > CollateFunctions, show_progress_t*, CacheFileType)': > stddict.cpp:722:34: warning: 'void g_qsort_with_data(gconstpointer, gint, > gsize, GCompareDataFunc, gpointer)' is deprecated: Use 'g_sort_array' instead > [-Wdeprecated-declarations] > 722 | g_qsort_with_data(_clt_file->get_wordoffset(), > wordcount, sizeof(guint32), sort_collation_index, &data); > | > ~^~ > In file included from /usr/include/glib-2.0/glib.h:71: > /usr/include/glib-2.0/glib/gqsort.h:39:6: note: declared here >39 | void g_qsort_with_data (gconstpointerpbase, > | ^ > stddict.cpp: In member function 'bool Dict::LookupWithRule(GPatternSpec*, > glong*, int)': > stddict.cpp:1466:43: warning: 'gboolean g_pattern_match_string(GPatternSpec*, > const gchar*)' is deprecated: Use 'g_pattern_spec_match_string' instead > [-Wdeprecated-declarations] > 1466 | if (g_pattern_match_string(pspec, > idx_file->getWord(i, CollationLevel_NONE, 0))) > | > ~~^ > In file included from /usr/include/glib-2.0/glib.h:68: > /usr/include/glib-2.0/glib/gpattern.h:57:15: note: declared here >57 | gboolean g_pattern_match_string (GPatternSpec *pspec, > | ^~ > stddict.cpp: In member function 'bool > Dict::LookupWithRuleSynonym(GPatternSpec*, glong*, int)': > stddict.cpp:1479:43: warning: 'gboolean g_pattern_match_string(GPatternSpec*, > const gchar*)' is deprecated: Use 'g_pattern_spec_match_string' instead > [-Wdeprecated-declarations] > 1479 | if (g_pattern_match_string(pspec, > syn_file->getWord(i, CollationLevel_NONE, 0))) > | > ~~^ > /usr/include/glib-2.0/glib/gpattern.h:57:15: note: declared here >57 | gboolean g_pattern_match_string (GPatternSpec *pspec, > | ^~ > In file included from /usr/include/glib-2.0/glib/gstring.h:35: > stddict.cpp: In member function 'bool Libs::LookupSynonymSimilarWord(const > gchar*, glong&, glong&, size_t, int)': > /usr/include/glib-2.0/glib/gunicode.h:809:34: error: invalid conversion from > 'const gchar*' {aka 'const char*'} to 'gchar*' {aka 'char*'} [-fpermissive] > 809 | #define g_utf8_next_char(p) ((p) + g_utf8_skip[*(const guchar *)(p)]) > | ~^~~~ > | | > | const gchar* {aka const char*} > stddict.cpp:2541:43: note: in expansion of macro 'g_utf8_next_char' > 2541 | gchar *nextchar = g_utf8_next_char(sWord); > | ^~~~ > stddict.cpp: In member function 'bool Libs::LookupSimilarWord(const gchar*, > glong&, glong&, size_t, int)': > /usr/include/glib-2.0/glib/gunicode.h:809:34: error: invalid conversion from > 'const gchar*' {aka 'const char*'} to 'gchar*' {aka 'char*'} [-fpermissive] > 809 | #define g_utf8_next_char(p) ((p) + g_utf8_skip[*(const guchar *)(p)]) > |
Bug#1078392: rpds-py: FTBFS: make: *** [debian/rules:12: binary] Error 25
Source: rpds-py Version: 0.12.0-3 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240809 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > make[1]: Entering directory '/<>' > rm -f Cargo.lock > make[1]: Leaving directory '/<>' >dh_auto_build -O--buildsystem=pybuild > I: pybuild plugin_pyproject:129: Building wheel for python3.12 with "build" > module > I: pybuild base:311: python3.12 -m build --skip-dependency-check > --no-isolation --wheel --outdir > /<>/.pybuild/cpython3_3.12_rpds-py > * Building wheel... > Running `maturin pep517 build-wheel -i /usr/bin/python3.12 --compatibility > off` > error: failed to select a version for the requirement `pyo3 = "^0.20.2"` > candidate versions found which didn't match: 0.22.2 > location searched: directory source `/usr/share/cargo/registry` (which is > replacing registry `crates-io`) > required by package `rpds-py v0.12.0 (/<>)` > perhaps a crate was updated and forgotten to be re-vendored? > As a reminder, you're using offline mode (--offline) which can sometimes > cause surprising resolution failures, if this error is too confusing you may > wish to retry without the offline flag. > 💥 maturin failed > Caused by: Cargo metadata failed. Does your crate compile with `cargo > build`? > Caused by: `cargo metadata` exited with an error: > Error: command ['maturin', 'pep517', 'build-wheel', '-i', > '/usr/bin/python3.12', '--compatibility', 'off'] returned non-zero exit > status 1 > > ERROR Backend subprocess exited when trying to invoke build_wheel > E: pybuild pybuild:389: build: plugin pyproject failed with: exit code=1: > python3.12 -m build --skip-dependency-check --no-isolation --wheel --outdir > /<>/.pybuild/cpython3_3.12_rpds-py > dh_auto_build: error: pybuild --build -i python{version} -p 3.12 returned > exit code 13 > make: *** [debian/rules:12: binary] Error 25 The full build log is available from: http://qa-logs.debian.net/2024/08/09/rpds-py_0.12.0-3_unstable.log All bugs filed during this archive rebuild are listed at: https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240809;users=lu...@debian.org or: https://udd.debian.org/bugs/?release=na&merged=ign&fnewerval=7&flastmodval=7&fusertag=only&fusertagtag=ftbfs-20240809&fusertaguser=lu...@debian.org&allbugs=1&cseverity=1&ctags=1&caffected=1#results A list of current common problems and possible solutions is available at http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute! If you reassign this bug to another package, please mark it as 'affects'-ing this package. See https://www.debian.org/Bugs/server-control#affects If you fail to reproduce this, please provide a build log and diff it with mine so that we can identify if something relevant changed in the meantime.
Bug#1078389: tomcat9: FTBFS: [javac] /<>/java/org/apache/jasper/compiler/JDTCompiler.java:40: error: cannot find symbol
Source: tomcat9 Version: 9.0.70-2 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240809 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > make[1]: Entering directory '/<>' > dh_auto_build -- -Ddistribution.name=Debian embed-jars deploy > ant -propertyfile ./debian/ant.properties -Duser.name debian > -Ddistribution.name=Debian embed-jars deploy > Buildfile: /<>/build.xml >[tstamp] Honouring environment variable SOURCE_DATE_EPOCH which has been > set to 1685202692 > > build-prepare: > [mkdir] Created dir: /<>/output/classes > [mkdir] Created dir: /<>/output/build > [mkdir] Created dir: /<>/output/build/bin > [mkdir] Created dir: /<>/output/build/conf > [mkdir] Created dir: /<>/output/build/lib > [mkdir] Created dir: /<>/output/build/logs > [mkdir] Created dir: /<>/output/build/temp > [mkdir] Created dir: /<>/output/build/webapps > > build-manifests: > [mkdir] Created dir: /<>/output/manifests > [copy] Copying 21 files to /<>/output/manifests > > download-bnd: >[tstamp] Honouring environment variable SOURCE_DATE_EPOCH which has been > set to 1685202692 > > testexist: > [echo] Testing for /usr/share/java/bnd.jar > > setproxy: > > downloadfile: > > setup-bnd: > > compile-prepare: > [copy] Copying 1 file to > /<>/java/org/apache/catalina/startup > [copy] Copying 1 file to /<>/webapps/docs > > download-validate: > > validate: > > compile: > [javac] Compiling 1786 source files to /<>/output/classes > [javac] warning: [options] source value 8 is obsolete and will be removed > in a future release > [javac] warning: [options] target value 8 is obsolete and will be removed > in a future release > [javac] warning: [options] To suppress warnings about obsolete options, > use -Xlint:-options. > [javac] > /<>/java/org/apache/jasper/compiler/JDTCompiler.java:40: error: > cannot find symbol > [javac] import org.eclipse.jdt.core.compiler.IProblem; > [javac] ^ > [javac] symbol: class IProblem > [javac] location: package org.eclipse.jdt.core.compiler > [javac] > /<>/java/org/apache/jasper/compiler/JDTCompiler.java:41: error: > cannot find symbol > [javac] import org.eclipse.jdt.internal.compiler.ClassFile; > [javac] ^ > [javac] symbol: class ClassFile > [javac] location: package org.eclipse.jdt.internal.compiler > [javac] > /<>/java/org/apache/jasper/compiler/JDTCompiler.java:42: error: > cannot find symbol > [javac] import org.eclipse.jdt.internal.compiler.CompilationResult; > [javac] ^ > [javac] symbol: class CompilationResult > [javac] location: package org.eclipse.jdt.internal.compiler > [javac] > /<>/java/org/apache/jasper/compiler/JDTCompiler.java:43: error: > cannot find symbol > [javac] import org.eclipse.jdt.internal.compiler.Compiler; > [javac] ^ > [javac] symbol: class Compiler > [javac] location: package org.eclipse.jdt.internal.compiler > [javac] > /<>/java/org/apache/jasper/compiler/JDTCompiler.java:44: error: > cannot find symbol > [javac] import > org.eclipse.jdt.internal.compiler.DefaultErrorHandlingPolicies; > [javac] ^ > [javac] symbol: class DefaultErrorHandlingPolicies > [javac] location: package org.eclipse.jdt.internal.compiler > [javac] > /<>/java/org/apache/jasper/compiler/JDTCompiler.java:45: error: > cannot find symbol > [javac] import org.eclipse.jdt.internal.compiler.ICompilerRequestor; > [javac] ^ > [javac] symbol: class ICompilerRequestor > [javac] location: package org.eclipse.jdt.internal.compiler > [javac] > /<>/java/org/apache/jasper/compiler/JDTCompiler.java:46: error: > cannot find symbol > [javac] import org.eclipse.jdt.internal.compiler.IErrorHandlingPolicy; > [javac] ^ > [javac] symbol: class IErrorHandlingPolicy > [javac] location: package org.eclipse.jdt.internal.compiler > [javac] > /<>/java/org/apache/jasper/compiler/JDTCompiler.java:47: error: > cannot find symbol > [javac] import org.eclipse.jdt.internal.compiler.IProblemFactory; > [javac] ^ > [javac] symbol: class IProblemFactory > [javac] location: package org.eclipse.jdt.internal.compiler > [javac] > /<>/java/org/apache/jasper/compiler/JDTCompiler.java:48: error: > package org.eclipse.jdt.internal.compiler.classfmt does not exist > [javac] import org.eclipse.jdt.internal.compiler.classfmt.ClassFileReader; > [javac]
Bug#1078390: keyrings.alt: FTBFS: dh_auto_test: error: pybuild --test --test-pytest -i python{version} -p 3.12 returned exit code 13
Source: keyrings.alt Version: 5.0.1-1 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240809 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > debian/rules binary > dh binary --with python3 --buildsystem pybuild >dh_update_autotools_config -O--buildsystem=pybuild >dh_autoreconf -O--buildsystem=pybuild >dh_auto_configure -O--buildsystem=pybuild >dh_auto_build -O--buildsystem=pybuild > I: pybuild plugin_pyproject:129: Building wheel for python3.12 with "build" > module > I: pybuild base:311: python3.12 -m build --skip-dependency-check > --no-isolation --wheel --outdir > /<>/.pybuild/cpython3_3.12_keyrings.alt > * Building wheel... > running bdist_wheel > running build > running build_py > creating build > creating build/lib > creating build/lib/keyrings > copying keyrings/__init__.py -> build/lib/keyrings > creating build/lib/keyrings/alt > copying keyrings/alt/multi.py -> build/lib/keyrings/alt > copying keyrings/alt/escape.py -> build/lib/keyrings/alt > copying keyrings/alt/keyczar.py -> build/lib/keyrings/alt > copying keyrings/alt/Gnome.py -> build/lib/keyrings/alt > copying keyrings/alt/__init__.py -> build/lib/keyrings/alt > copying keyrings/alt/Google.py -> build/lib/keyrings/alt > copying keyrings/alt/file.py -> build/lib/keyrings/alt > copying keyrings/alt/file_base.py -> build/lib/keyrings/alt > copying keyrings/alt/Windows.py -> build/lib/keyrings/alt > copying keyrings/alt/_win_crypto.py -> build/lib/keyrings/alt > running egg_info > creating keyrings.alt.egg-info > writing keyrings.alt.egg-info/PKG-INFO > writing dependency_links to keyrings.alt.egg-info/dependency_links.txt > writing entry points to keyrings.alt.egg-info/entry_points.txt > writing requirements to keyrings.alt.egg-info/requires.txt > writing top-level names to keyrings.alt.egg-info/top_level.txt > writing manifest file 'keyrings.alt.egg-info/SOURCES.txt' > reading manifest file 'keyrings.alt.egg-info/SOURCES.txt' > adding license file 'LICENSE' > writing manifest file 'keyrings.alt.egg-info/SOURCES.txt' > installing to build/bdist.linux-x86_64/wheel > running install > running install_lib > creating build/bdist.linux-x86_64 > creating build/bdist.linux-x86_64/wheel > creating build/bdist.linux-x86_64/wheel/keyrings > creating build/bdist.linux-x86_64/wheel/keyrings/alt > copying build/lib/keyrings/alt/multi.py -> > build/bdist.linux-x86_64/wheel/keyrings/alt > copying build/lib/keyrings/alt/escape.py -> > build/bdist.linux-x86_64/wheel/keyrings/alt > copying build/lib/keyrings/alt/keyczar.py -> > build/bdist.linux-x86_64/wheel/keyrings/alt > copying build/lib/keyrings/alt/Gnome.py -> > build/bdist.linux-x86_64/wheel/keyrings/alt > copying build/lib/keyrings/alt/__init__.py -> > build/bdist.linux-x86_64/wheel/keyrings/alt > copying build/lib/keyrings/alt/Google.py -> > build/bdist.linux-x86_64/wheel/keyrings/alt > copying build/lib/keyrings/alt/file.py -> > build/bdist.linux-x86_64/wheel/keyrings/alt > copying build/lib/keyrings/alt/file_base.py -> > build/bdist.linux-x86_64/wheel/keyrings/alt > copying build/lib/keyrings/alt/Windows.py -> > build/bdist.linux-x86_64/wheel/keyrings/alt > copying build/lib/keyrings/alt/_win_crypto.py -> > build/bdist.linux-x86_64/wheel/keyrings/alt > copying build/lib/keyrings/__init__.py -> > build/bdist.linux-x86_64/wheel/keyrings > running install_egg_info > Copying keyrings.alt.egg-info to > build/bdist.linux-x86_64/wheel/keyrings.alt-5.0.1.egg-info > running install_scripts > creating build/bdist.linux-x86_64/wheel/keyrings.alt-5.0.1.dist-info/WHEEL > creating > '/<>/.pybuild/cpython3_3.12_keyrings.alt/.tmp-wgnod684/keyrings.alt-5.0.1-py3-none-any.whl' > and adding 'build/bdist.linux-x86_64/wheel' to it > adding 'keyrings/__init__.py' > adding 'keyrings/alt/Gnome.py' > adding 'keyrings/alt/Google.py' > adding 'keyrings/alt/Windows.py' > adding 'keyrings/alt/__init__.py' > adding 'keyrings/alt/_win_crypto.py' > adding 'keyrings/alt/escape.py' > adding 'keyrings/alt/file.py' > adding 'keyrings/alt/file_base.py' > adding 'keyrings/alt/keyczar.py' > adding 'keyrings/alt/multi.py' > adding 'keyrings.alt-5.0.1.dist-info/LICENSE' > adding 'keyrings.alt-5.0.1.dist-info/METADATA' > adding 'keyrings.alt-5.0.1.dist-info/WHEEL' > adding 'keyrings.alt-5.0.1.dist-info/entry_points.txt' > adding 'keyrings.alt-5.0.1.dist-info/top_level.txt' > adding 'keyrings.alt-5.0.1.dist-info/RECORD' > removing build/bdist.linux-x86_64/wheel > Successfully built keyrings.alt-5.0.1-py3-none-any.whl > I: pybuild plugin_pyproject:144: Unpacking wheel built for python3.12 with > "installer" module >dh_auto_test -O--buildsystem=pybuild > I: pybuild base:311: cd > /<>/.pybuild/cpython3_3.12_keyrings.alt/build; python3.12 -m > pytest --ignore=keyrings/alt/_win_crypto.py > = test session starts > ==
Bug#1078391: checkpolicy: FTBFS: checkpolicy.c:316:67: error: ‘cond_expr_t’ {aka ‘const struct cond_expr’} has no member named ‘bool’; did you mean ‘boolean’?
Source: checkpolicy Version: 3.5-1 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240809 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > cc -g -O2 -Werror=implicit-function-declaration > -ffile-prefix-map=/<>=. -fstack-protector-strong > -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection > -Wdate-time -D_FORTIFY_SOURCE=2 -Wall -Wextra -o checkmodule.o -c > checkmodule.c > checkpolicy.c: In function ‘display_expr’: > checkpolicy.c:316:67: error: ‘cond_expr_t’ {aka ‘const struct cond_expr’} has > no member named ‘bool’; did you mean ‘boolean’? > 316 | > policydbp->p_bool_val_to_name[cur->bool - 1]); > | ^~~~ > | > boolean > checkpolicy.c: In function ‘check_level’: > checkpolicy.c:373:46: error: ‘level_datum_t’ {aka ‘struct level_datum’} has > no member named ‘defined’; did you mean ‘notdefined’? > 373 | if (!levdatum->isalias && !levdatum->defined) { > | ^~~ > | notdefined > policy_define.c: In function ‘clone_level’: > policy_define.c:1009:27: error: ‘level_datum_t’ {aka ‘struct level_datum’} > has no member named ‘defined’; did you mean ‘notdefined’? > 1009 | levdatum->defined = 1; > | ^~~ > | notdefined > policy_define.c: In function ‘define_level’: > policy_define.c:1060:19: error: ‘level_datum_t’ {aka ‘struct level_datum’} > has no member named ‘defined’; did you mean ‘notdefined’? > 1060 | levdatum->defined = 1; > | ^~~ > | notdefined > make[1]: *** [Makefile:39: checkpolicy.o] Error 1 The full build log is available from: http://qa-logs.debian.net/2024/08/09/checkpolicy_3.5-1_unstable.log All bugs filed during this archive rebuild are listed at: https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240809;users=lu...@debian.org or: https://udd.debian.org/bugs/?release=na&merged=ign&fnewerval=7&flastmodval=7&fusertag=only&fusertagtag=ftbfs-20240809&fusertaguser=lu...@debian.org&allbugs=1&cseverity=1&ctags=1&caffected=1#results A list of current common problems and possible solutions is available at http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute! If you reassign this bug to another package, please mark it as 'affects'-ing this package. See https://www.debian.org/Bugs/server-control#affects If you fail to reproduce this, please provide a build log and diff it with mine so that we can identify if something relevant changed in the meantime.
Bug#1078388: python-cotengrust: FTBFS: make[1]: *** [debian/rules:13: override_dh_auto_build] Error 1
Source: python-cotengrust Version: 0.1.3-1 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240809 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > make[1]: Entering directory '/<>' > mv Cargo.lock Cargo.lock.saved > maturin build --release -v > Locking 30 packages to latest compatible versions > 🔗 Found pyo3 bindings > 🐍 Found CPython 3.12 at /usr/bin/python3 > 📡 Using build options features from pyproject.toml >Compiling target-lexicon v0.12.14 >Compiling once_cell v1.19.0 >Compiling autocfg v1.1.0 >Compiling libc v0.2.155 >Compiling proc-macro2 v1.0.86 >Compiling unicode-ident v1.0.12 >Compiling cfg-if v1.0.0 >Compiling heck v0.4.1 > Running `rustc --crate-name autocfg --edition=2015 > /usr/share/cargo/registry/autocfg-1.1.0/src/lib.rs --error-format=json > --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib > --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off -C > metadata=44a765c6dc1ea74f -C extra-filename=-44a765c6dc1ea74f --out-dir > /<>/target/release/deps -C strip=debuginfo -L > dependency=/<>/target/release/deps --cap-lints allow` > Running `rustc --crate-name once_cell --edition=2021 > /usr/share/cargo/registry/once_cell-1.19.0/src/lib.rs --error-format=json > --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib > --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off > --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="race"' > --cfg 'feature="std"' -C metadata=3c2ad81fa3987825 -C > extra-filename=-3c2ad81fa3987825 --out-dir > /<>/target/release/deps -C strip=debuginfo -L > dependency=/<>/target/release/deps --cap-lints allow` > Running `rustc --crate-name build_script_build --edition=2015 > /usr/share/cargo/registry/libc-0.2.155/build.rs --error-format=json > --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin > --emit=dep-info,link -C embed-bitcode=no -C debug-assertions=off --cfg > 'feature="default"' --cfg 'feature="std"' -C metadata=bde74ea5b7a59df3 -C > extra-filename=-bde74ea5b7a59df3 --out-dir > /<>/target/release/build/libc-bde74ea5b7a59df3 -C > strip=debuginfo -L dependency=/<>/target/release/deps > --cap-lints allow` > Running `rustc --crate-name build_script_build --edition=2018 > /usr/share/cargo/registry/target-lexicon-0.12.14/build.rs --error-format=json > --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin > --emit=dep-info,link -C embed-bitcode=no -C debug-assertions=off --cfg > 'feature="default"' -C metadata=19a5f6c6c5725804 -C > extra-filename=-19a5f6c6c5725804 --out-dir > /<>/target/release/build/target-lexicon-19a5f6c6c5725804 -C > strip=debuginfo -L dependency=/<>/target/release/deps > --cap-lints allow` > Running `rustc --crate-name build_script_build --edition=2021 > /usr/share/cargo/registry/proc-macro2-1.0.86/build.rs --error-format=json > --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin > --emit=dep-info,link -C embed-bitcode=no -C debug-assertions=off --cfg > 'feature="proc-macro"' -C metadata=234794a7f33fad1a -C > extra-filename=-234794a7f33fad1a --out-dir > /<>/target/release/build/proc-macro2-234794a7f33fad1a -C > strip=debuginfo -L dependency=/<>/target/release/deps > --cap-lints allow` > Running `rustc --crate-name unicode_ident --edition=2018 > /usr/share/cargo/registry/unicode-ident-1.0.12/src/lib.rs --error-format=json > --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib > --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off -C > metadata=7fab5c2b30610b4e -C extra-filename=-7fab5c2b30610b4e --out-dir > /<>/target/release/deps -C strip=debuginfo -L > dependency=/<>/target/release/deps --cap-lints allow` > Running `rustc --crate-name cfg_if --edition=2018 > /usr/share/cargo/registry/cfg-if-1.0.0/src/lib.rs --error-format=json > --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib > --emit=dep-info,metadata,link -C opt-level=3 -C linker-plugin-lto -C > codegen-units=1 -C metadata=91f5b7e19a918b82 -C > extra-filename=-91f5b7e19a918b82 --out-dir > /<>/target/release/deps -C strip=debuginfo -L > dependency=/<>/target/release/deps --cap-lints allow` > Running `rustc --crate-name heck --edition=2018 > /usr/share/cargo/registry/heck-0.4.1/src/lib.rs --error-format=json > --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib > --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off > --cfg 'feature="default"' -C metadata=5838c92a79c57e31 -C > extra-filename=-5838c92a79c57e31 --out-dir > /<>/target/release/deps -C strip=debuginfo -L > dependency=/<>/target/release/deps --cap-lints allow` >Compiling ppv-lite86 v0.2.16 > R
Bug#1078386: gnome-chemistry-utils: FTBFS: gunicode.h:809:34: error: invalid conversion from 'const char*' to 'char*' [-fpermissive]
Source: gnome-chemistry-utils Version: 0.14.17-6.2 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240809 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > /bin/bash ../../libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I. > -I../.. -I../.. -I../../libs -I/usr/include/libgoffice-0.10 > -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include > -I/usr/include/sysprof-6 -I/usr/include/libmount -I/usr/include/blkid > -I/usr/include/libgsf-1 -I/usr/include/libxml2 -I/usr/include/gtk-3.0 > -I/usr/include/pango-1.0 -I/usr/include/harfbuzz -I/usr/include/freetype2 > -I/usr/include/libpng16 -I/usr/include/fribidi -I/usr/include/cairo > -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 > -I/usr/include/x86_64-linux-gnu -I/usr/include/webp > -I/usr/include/gio-unix-2.0 -I/usr/include/cloudproviders > -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 > -I/usr/include/at-spi-2.0 -I/usr/include/dbus-1.0 > -I/usr/lib/x86_64-linux-gnu/dbus-1.0/include -I/usr/include/librsvg-2.0 > -pthread -Wall -Wextra -Werror=format-security -Wdate-time > -D_FORTIFY_SOURCE=2 -g -O2 -ffile-prefix-map=/<>=. > -fstack-protector-strong -fstack-clash-protection -Wformat > -Werror=format-security -fcf-protection -std=gnu++14 -c -o wedge.lo wedge.cc > libtool: compile: g++ -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../../libs > -I/usr/include/libgoffice-0.10 -I/usr/include/glib-2.0 > -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/sysprof-6 > -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/libgsf-1 > -I/usr/include/libxml2 -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 > -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 > -I/usr/include/fribidi -I/usr/include/cairo -I/usr/include/pixman-1 > -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/x86_64-linux-gnu > -I/usr/include/webp -I/usr/include/gio-unix-2.0 -I/usr/include/cloudproviders > -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 > -I/usr/include/at-spi-2.0 -I/usr/include/dbus-1.0 > -I/usr/lib/x86_64-linux-gnu/dbus-1.0/include -I/usr/include/librsvg-2.0 > -pthread -Wall -Wextra -Werror=format-security -Wdate-time > -D_FORTIFY_SOURCE=2 -g -O2 -ffile-prefix-map=/<>=. > -fstack-protector-strong -fstack-clash-protection -Wformat > -Werror=format-security -fcf-protection -std=gnu++14 -c wedge.cc -fPIC -DPIC > -o .libs/wedge.o > In file included from /usr/include/glib-2.0/glib/gstring.h:35, > from /usr/include/glib-2.0/glib/giochannel.h:36, > from /usr/include/glib-2.0/glib.h:56, > from /usr/include/libgoffice-0.10/goffice/goffice.h:24, > from ../../libs/gcu/macros.h:28, > from canvas.h:28, > from text.cc:26: > text.cc: In member function 'bool gccv::Text::OnKeyPressed(GdkEventKey*)': > /usr/include/glib-2.0/glib/gunicode.h:809:34: error: invalid conversion from > 'const char*' to 'char*' [-fpermissive] > 809 | #define g_utf8_next_char(p) ((p) + g_utf8_skip[*(const guchar *)(p)]) > | ~^~~~ > | | > | const char* > text.cc:1129:35: note: in expansion of macro 'g_utf8_next_char' > 1129 | char *p = g_utf8_next_char (s + m_CurPos); > | ^~~~ > /usr/include/glib-2.0/glib/gunicode.h:809:34: error: invalid conversion from > 'const char*' to 'char*' [-fpermissive] > 809 | #define g_utf8_next_char(p) ((p) + g_utf8_skip[*(const guchar *)(p)]) > | ~^~~~ > | | > | const char* > text.cc:1140:35: note: in expansion of macro 'g_utf8_next_char' > 1140 | char *p = g_utf8_next_char (s + m_CurPos); > | ^~~~ > /usr/include/glib-2.0/glib/gunicode.h:809:34: error: invalid conversion from > 'const char*' to 'char*' [-fpermissive] > 809 | #define g_utf8_next_char(p) ((p) + g_utf8_skip[*(const guchar *)(p)]) > | ~^~~~ > | | > | const char* > text.cc:1227:27: note: in expansion of macro 'g_utf8_next_char' > 1227 | char *p = g_utf8_next_char (s + m_CurPos); > | ^~~~ > make[4]: *** [Makefile:630: text.lo] Error 1 The full build log is available from: http://qa-logs.debian.net/2024/08/09/gnome-chemistry-utils_0.14.17-6.2_unstable.log All bugs filed during this archive rebuild are listed at: https://bugs.debian.org/cgi-bin/pkgr
Bug#1078385: qstardict: FTBFS: gunicode.h:809:34: error: invalid conversion from ‘const gchar*’ {aka ‘const char*’} to ‘gchar*’ {aka ‘char*’} [-fpermissive]
Source: qstardict Version: 1.4.1-2 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240809 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > g++ -c -pipe -g -O2 -ffile-prefix-map=/<>=. > -fstack-protector-strong -fstack-clash-protection -Wformat > -Werror=format-security -fcf-protection -Wdate-time -D_FORTIFY_SOURCE=2 > -std=gnu++2a -pthread -Wall -Wextra -D_REENTRANT -fPIC -DHAVE_MMAP > -DQSTARDICT_WITH_DBUS -DQSTARDICT_WITH_TRANSLATIONS > -DQSTARDICT_WITH_TRAY_ICON -DQSTARDICT_VERSION=\"1.4.1\" > -DQSTARDICT_INSTALL_PREFIX=\"/usr\" -DQSTARDICT_BIN_DIR=\"/usr/bin\" > -DQSTARDICT_DATA_DIR=\"/usr/share/qstardict\" > -DQSTARDICT_TRANSLATIONS_DIR=\"/usr/share/qstardict/translations\" > -DQSTARDICT_PLUGINS_DIR=\"/usr/lib/qstardict/plugins\" > -DQSTARDICT_DOCS_DIR=\"/usr/share/doc/qstardict\" -DPLUGIN_ID=\"kiwix\" > -DQT_NO_DEBUG -DQT_PLUGIN -DQT_PRINTSUPPORT_LIB -DQT_WIDGETS_LIB -DQT_GUI_LIB > -DQT_NETWORK_LIB -DQT_XML_LIB -DQT_DBUS_LIB -DQT_CORE_LIB -I. > -I../../../qstardict-1.4.1 -I/usr/include/glib-2.0 > -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/sysprof-6 > -I/usr/include/x86_64-linux-gnu/qt5 > -I/usr/include/x86_64-linux-gnu/qt5/QtPrintSupport > -I/usr/include/x86_64-linux-gnu/qt5/QtWidgets > -I/usr/include/x86_64-linux-gnu/qt5/QtGui > -I/usr/include/x86_64-linux-gnu/qt5/QtNetwork > -I/usr/include/x86_64-linux-gnu/qt5/QtXml > -I/usr/include/x86_64-linux-gnu/qt5/QtDBus > -I/usr/include/x86_64-linux-gnu/qt5/QtCore -I. -I. > -I/usr/lib/x86_64-linux-gnu/qt5/mkspecs/linux-g++ -o grayscale.o grayscale.cpp > stardict_lib.cpp: In member function ‘virtual bool > {anonymous}::WordListIndex::load(const std::string&, gulong, gulong, bool)’: > stardict_lib.cpp:761:80: warning: unused parameter ‘verbose’ > [-Wunused-parameter] > 761 | bool WordListIndex::load(const std::string &url, gulong wc, gulong > fsize, bool verbose) > | > ~^~~ > stardict_lib.cpp: In member function ‘bool > Dict::LookupWithRule(GPatternSpec*, glong*, int)’: > stardict_lib.cpp:943:35: warning: ‘gboolean > g_pattern_match_string(GPatternSpec*, const gchar*)’ is deprecated: Use > 'g_pattern_spec_match_string' instead [-Wdeprecated-declarations] > 943 | if (g_pattern_match_string(pspec, get_key(i))) > | ~~^~~ > In file included from /usr/include/glib-2.0/glib.h:68, > from /usr/include/glib-2.0/glib/gprintf.h:23, > from /usr/include/glib-2.0/glib/gstdio.h:24, > from stardict_lib.cpp:10: > /usr/include/glib-2.0/glib/gpattern.h:57:15: note: declared here >57 | gboolean g_pattern_match_string (GPatternSpec *pspec, > | ^~ > In file included from /usr/include/glib-2.0/glib/gstring.h:35, > from /usr/include/glib-2.0/glib/giochannel.h:36, > from /usr/include/glib-2.0/glib.h:56: > stardict_lib.cpp: In member function ‘bool Libs::LookupSimilarWord(const > gchar*, glong&, int)’: > /usr/include/glib-2.0/glib/gunicode.h:809:34: error: invalid conversion from > ‘const gchar*’ {aka ‘const char*’} to ‘gchar*’ {aka ‘char*’} [-fpermissive] > 809 | #define g_utf8_next_char(p) ((p) + g_utf8_skip[*(const guchar *)(p)]) > | ~^~~~ > | | > | const gchar* {aka const char*} > stardict_lib.cpp:1113:31: note: in expansion of macro ‘g_utf8_next_char’ > 1113 | gchar *nextchar = g_utf8_next_char(sWord); > | ^~~~ > make[3]: *** [Makefile:518: stardict_lib.o] Error 1 The full build log is available from: http://qa-logs.debian.net/2024/08/09/qstardict_1.4.1-2_unstable.log All bugs filed during this archive rebuild are listed at: https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240809;users=lu...@debian.org or: https://udd.debian.org/bugs/?release=na&merged=ign&fnewerval=7&flastmodval=7&fusertag=only&fusertagtag=ftbfs-20240809&fusertaguser=lu...@debian.org&allbugs=1&cseverity=1&ctags=1&caffected=1#results A list of current common problems and possible solutions is available at http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute! If you reassign this bug to another package, please mark it as 'affects'-ing this package. See https://www.debian.org/Bugs/server-control#affects If you fail to reproduce this, please provide a build log and diff it with mine so that we can identify if something relevant changed in the meantime.
Bug#1078384: python-watchfiles: FTBFS: make: *** [debian/rules:23: binary] Error 25
Source: python-watchfiles Version: 0.21.0-4 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240809 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > make[1]: Entering directory '/<>' > # Upstream doesn't set the version number... > sed -i 's/0.0.0/0.21.0/' Cargo.toml > make[1]: Leaving directory '/<>' >dh_auto_build -O--buildsystem=pybuild > I: pybuild plugin_pyproject:129: Building wheel for python3.12 with "build" > module > I: pybuild base:311: python3.12 -m build --skip-dependency-check > --no-isolation --wheel --outdir > /<>/.pybuild/cpython3_3.12_watchfiles > * Building wheel... > Running `maturin pep517 build-wheel -i /usr/bin/python3.12 --compatibility > off` > debian cargo wrapper: options, profiles, parallel, lto: ['parallel=8'] [] > ['-j8'] 0 > debian cargo wrapper: rust_type, gnu_type: x86_64-unknown-linux-gnu, > x86_64-linux-gnu > debian cargo wrapper: running subprocess (['env', 'RUST_BACKTRACE=1', > '/usr/bin/cargo', 'metadata', '--format-version', '1', '--manifest-path', > '/<>/Cargo.toml'],) {} > Locking 37 packages to latest compatible versions > Adding bitflags v1.3.2 (latest: v2.4.2) > 📦 Including license file "/<>/LICENSE" > 🍹 Building a mixed python/rust project > 🔗 Found pyo3 bindings > 🐍 Found CPython 3.12 at /usr/bin/python3.12 > 📡 Using build options bindings from pyproject.toml >Compiling target-lexicon v0.12.14 >Compiling python3-dll-a v0.2.6 >Compiling once_cell v1.19.0 >Compiling libc v0.2.155 >Compiling proc-macro2 v1.0.86 >Compiling unicode-ident v1.0.12 >Compiling crossbeam-utils v0.8.19 >Compiling autocfg v1.1.0 >Compiling heck v0.4.1 >Compiling cfg-if v1.0.0 >Compiling same-file v1.0.6 >Compiling bitflags v1.3.2 >Compiling log v0.4.21 >Compiling walkdir v2.5.0 >Compiling unindent v0.2.1 >Compiling memoffset v0.8.0 >Compiling indoc v2.0.3 >Compiling crossbeam-channel v0.5.11 >Compiling pyo3-build-config v0.22.2 >Compiling quote v1.0.36 >Compiling inotify-sys v0.1.5 >Compiling mio v0.8.11 >Compiling filetime v0.2.23 >Compiling inotify v0.9.6 >Compiling syn v2.0.68 >Compiling notify v6.1.1 >Compiling pyo3-ffi v0.22.2 >Compiling pyo3-macros-backend v0.22.2 >Compiling pyo3 v0.22.2 >Compiling pyo3-macros v0.22.2 >Compiling watchfiles_rust_notify v0.21.0 (/<>) > error[E0412]: cannot find type `PyCell` in this scope >--> src/lib.rs:246:15 > | > 246 | slf: &PyCell, > | ^^ not found in this scope > > error[E0277]: the trait bound `&pyo3::PyAny: FromPyObjectBound<'_, '_>` is > not satisfied > --> src/lib.rs:259:48 > | > 259 | let event: &PyAny = stop_event.extract(py)?; > |^^^ the trait > `PyClass` is not implemented for `&pyo3::PyAny`, which is required by > `&pyo3::PyAny: FromPyObjectBound<'_, '_>` > | > = help: the following other types implement trait `FromPyObjectBound<'a, > 'py>`: >&'a [u8] >&'a str >Cow<'a, [u8]> >Cow<'a, str> > = note: required for `&pyo3::PyAny` to implement `FromPyObject<'_>` > = note: required for `&pyo3::PyAny` to implement `FromPyObjectBound<'_, > '_>` > note: required by a bound in `pyo3::Pyextract` > --> /usr/share/cargo/registry/pyo3-0.22.2/src/instance.rs:1418:12 > | > 1416 | pub fn extract<'a, 'py, D>(&'a self, py: Python<'py>) -> > PyResult > |--- required by a bound in this associated function > 1417 | where > 1418 | D: crate::conversion::FromPyObjectBound<'a, 'py>, > |^ required by > this bound in `Pyextract` > > error[E0599]: no method named `getattr` found for reference `&pyo3::PyAny` in > the current scope >--> src/lib.rs:260:42 > | > 260 | let func: &PyAny = event.getattr("is_set")?.extract()?; > | ^^^ method not found in > `&PyAny` > > error[E0599]: no method named `call0` found for reference `&pyo3::PyAny` in > the current scope >--> src/lib.rs:291:27 > | > 291 | if is_set.call0()?.is_true()? { > | ^ method not found in `&PyAny` > > error[E0599]: no method named `add` found for reference > `&pyo3::types::PyModule` in the current scope >--> src/lib.rs:360:7 > | > 360 | m.add("__version__", version)?; > | ^^^ method not found in `&PyModule` > > error[E0599]: no method named `add` found for reference > `&pyo3::types::PyModule` in the current scope >--> src/lib.rs:361:7 > | > 361 | m.add( > | --^^^ method not found in `&PyModule` > > error[E0599]: no method named
Bug#1078382: apache-directory-api: FTBFS: make: *** [debian/rules:4: build] Error 25
Source: apache-directory-api Version: 2.1.2-1 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240809 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > debian/rules build > dh build >dh_update_autotools_config >dh_autoreconf >dh_auto_configure > mh_patchpoms -plibapache-directory-api-java --debian-build > --keep-pom-version --maven-repo=/<>/debian/maven-repo >dh_auto_build > /usr/lib/jvm/default-java/bin/java -noverify -cp > /usr/share/maven/boot/plexus-classworlds-2.x.jar > -Dmaven.home=/usr/share/maven > -Dmaven.multiModuleProjectDirectory=/<> > -Dclassworlds.conf=/etc/maven/m2-debian.conf > -Dproperties.file.manual=/<>/debian/maven.properties > org.codehaus.plexus.classworlds.launcher.Launcher > -s/etc/maven/settings-debian.xml -Ddebian.dir=/<>/debian > -Dmaven.repo.local=/<>/debian/maven-repo --batch-mode package > -DskipTests -Dnotimestamp=true -Dlocale=en_US > OpenJDK 64-Bit Server VM warning: Options -Xverify:none and -noverify were > deprecated in JDK 13 and will likely be removed in a future release. > [INFO] Scanning for projects... > [INFO] > > [INFO] Reactor Build Order: > [INFO] > [INFO] Apache Directory LDAP API > [pom] > [INFO] Apache Directory LDAP API I18n > [jar] > [INFO] Apache Directory LDAP API Utilities > [jar] > [INFO] Apache Directory API ASN.1 Parent > [pom] > [INFO] Apache Directory API ASN.1 API > [jar] > [INFO] Apache Directory API ASN.1 BER > [jar] > [INFO] Apache Directory LDAP API Parent > [pom] > [INFO] Apache Directory LDAP API Model > [jar] > [INFO] Apache Directory LDAP API Codec Parent > [pom] > [INFO] Apache Directory LDAP API Codec Core > [jar] > [INFO] Apache Directory LDAP API Net Parent > [pom] > [INFO] Apache Directory LDAP API Network MINA > [jar] > [INFO] Apache Directory LDAP API Extras Parent > [pom] > [INFO] Apache Directory LDAP API Extras Codec API > [jar] > [INFO] Apache Directory LDAP API Extras Codec > [jar] > [INFO] Apache Directory LDAP API Codec Standalone > [jar] > [INFO] Apache Directory LDAP API DSML Parent > [pom] > [INFO] Apache Directory LDAP API DSML Parser > [jar] > [INFO] Apache Directory LDAP API Extras ACI > [jar] > [INFO] Apache Directory LDAP API Schema Parent > [pom] > [INFO] Apache Directory LDAP API Schema Data > [jar] > [INFO] Apache Directory LDAP API Client Parent > [pom] > [INFO] Apache Directory LDAP API Client API > [jar] > [INFO] Apache Directory LDAP API DSML Engine > [jar] > [INFO] Apache Directory LDAP API Extras Util > [jar] > [INFO] Apache Directory LDAP API Extras Stored Procedures > [jar] > [INFO] Apache Directory LDAP API Extras Trigger > [jar] > [INFO] Apache Directory LDAP API Schema Converter > [jar] > [INFO] Apache Directory API All > [jar] > [INFO] > [INFO] < org.apache.directory.api:api-parent > >- > [INFO] Building Apache Directory LDAP API 2.1.2 > [1/29] > [INFO] from pom.xml > [INFO] [ pom > ]- > [INFO] > [INFO] -< org.apache.directory.api:api-i18n > >-- > [INFO] Building Apache Directory LDAP API I18n 2.1.2 > [2/29] > [INFO] from i18n/pom.xml > [INFO] [ jar > ]- > [WARNING] The artifact > org.apache.maven.plugins:maven-resources-plugin:jar:2.6 has been relocated to > org.apache.maven.plugins:maven-resources-plugin:jar:3.3.1 > [WARNING] The artifact org.apache.maven.plugins:maven-compiler-plugin:jar:3.1 > has been relocated to > org.apache.maven.plugins:maven-compiler-plugin:jar:3.10.1 > [WARNING] The artifact > org.apache.maven.plugins:maven-surefire-plugin:jar:2.12.4 has been relocated > to org.apache.maven.plugins:maven-surefire-plugin:jar:2.22.3 > [WARNING] The artifact org.apache.maven.plugins:maven-jar-plugin:jar:2.4 has > been relo
Bug#1078383: ppx-tools: FTBFS: make: *** [debian/rules:7: binary] Error 25
Source: ppx-tools Version: 6.6-4 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240809 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > debian/rules binary > dh binary --with ocaml --buildsystem ocaml_dune >dh_update_autotools_config -O--buildsystem=ocaml_dune >dh_autoreconf -O--buildsystem=ocaml_dune >dh_ocamlinit -O--buildsystem=ocaml_dune >dh_auto_configure -O--buildsystem=ocaml_dune >dh_auto_build -O--buildsystem=ocaml_dune > dune build -j 8 -p ppx_tools > (cd _build/default && /usr/bin/ocamlc.opt -w -40 -g -bin-annot > -bin-annot-occurrences -I src/.ppx_tools.objs/byte -I > /usr/lib/x86_64-linux-gnu/ocaml/5.2.0/compiler-libs -intf-suffix .ml > -no-alias-deps -o src/.ppx_tools.objs/byte/ast_convenience.cmo -c -impl > src/ast_convenience.pp.ml) > File "src/ast_convenience.ml", line 81, characters 51-92: > Error: This expression has type "Parsetree.case list" >but an expression was expected of type "Parsetree.function_param list" >Type "Parsetree.case" is not compatible with type > "Parsetree.function_param" > (cd _build/default && /usr/bin/ocamlc.opt -w -40 -g -bin-annot > -bin-annot-occurrences -I src/.ppx_tools.objs/byte -I > /usr/lib/x86_64-linux-gnu/ocaml/5.2.0/compiler-libs -intf-suffix .ml > -no-alias-deps -o src/.ppx_tools.objs/byte/ast_mapper_class.cmo -c -impl > src/ast_mapper_class.pp.ml) > File "src/ast_mapper_class.ml", lines 54-73, characters 4-67: > Warning 8 [partial-match]: this pattern-matching is not exhaustive. > Here is an example of a case that is not matched: > Ptyp_open (_, _) > > File "src/ast_mapper_class.ml", lines 262-281, characters 4-67: > Warning 8 [partial-match]: this pattern-matching is not exhaustive. > Here is an example of a case that is not matched: > Pmod_apply_unit _ > > File "src/ast_mapper_class.ml", line 326, characters 6-14: > Error: This variant pattern is expected to have type > "Parsetree.expression_desc" >There is no constructor "Pexp_fun" within type > "Parsetree.expression_desc" > Hint: Did you mean "Pexp_for"? > (cd _build/default && /usr/bin/ocamlopt.opt -w -40 -g -I > src/.ppx_tools.objs/byte -I src/.ppx_tools.objs/native -I > /usr/lib/x86_64-linux-gnu/ocaml/5.2.0/compiler-libs -intf-suffix .ml > -no-alias-deps -o src/.ppx_tools.objs/native/ast_convenience.cmx -c -impl > src/ast_convenience.pp.ml) > File "src/ast_convenience.ml", line 81, characters 51-92: > Error: This expression has type "Parsetree.case list" >but an expression was expected of type "Parsetree.function_param list" >Type "Parsetree.case" is not compatible with type > "Parsetree.function_param" > (cd _build/default && /usr/bin/ocamlc.opt -w -40 -g -bin-annot > -bin-annot-occurrences -I src/.genlifter.eobjs/byte -I > /usr/lib/x86_64-linux-gnu/ocaml/5.2.0/compiler-libs -I > src/.ppx_tools.objs/byte -no-alias-deps -o > src/.genlifter.eobjs/byte/genlifter.cmo -c -impl src/genlifter.pp.ml) > File "src/genlifter.ml", line 140, characters 8-21: > Error: The constructor "Type_abstract" expects 1 argument(s), >but is applied here to 0 argument(s) > (cd _build/default && /usr/bin/ocamlopt.opt -w -40 -g -I > src/.ppx_tools.objs/byte -I src/.ppx_tools.objs/native -I > /usr/lib/x86_64-linux-gnu/ocaml/5.2.0/compiler-libs -intf-suffix .ml > -no-alias-deps -o src/.ppx_tools.objs/native/ast_mapper_class.cmx -c -impl > src/ast_mapper_class.pp.ml) > File "src/ast_mapper_class.ml", lines 54-73, characters 4-67: > Warning 8 [partial-match]: this pattern-matching is not exhaustive. > Here is an example of a case that is not matched: > Ptyp_open (_, _) > > File "src/ast_mapper_class.ml", lines 262-281, characters 4-67: > Warning 8 [partial-match]: this pattern-matching is not exhaustive. > Here is an example of a case that is not matched: > Pmod_apply_unit _ > > File "src/ast_mapper_class.ml", line 326, characters 6-14: > Error: This variant pattern is expected to have type > "Parsetree.expression_desc" >There is no constructor "Pexp_fun" within type > "Parsetree.expression_desc" > Hint: Did you mean "Pexp_for"? > dh_auto_build: error: dune build -j 8 -p ppx_tools returned exit code 1 > make: *** [debian/rules:7: binary] Error 25 The full build log is available from: http://qa-logs.debian.net/2024/08/09/ppx-tools_6.6-4_unstable.log All bugs filed during this archive rebuild are listed at: https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240809;users=lu...@debian.org or: https://udd.debian.org/bugs/?release=na&merged=ign&fnewerval=7&flastmodval=7&fusertag=only&fusertagtag=ftbfs-20240809&fusertaguser=lu...@debian.org&allbugs=1&cseverity=1&ctags=1&caffected=1#results A list of current common problems and possible solutions is available at http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute! If you re
Bug#1078380: gradle-kotlin-dsl: FTBFS: make[1]: *** [debian/rules:10: override_dh_auto_build] Error 2
Source: gradle-kotlin-dsl Version: 0.13.2-5 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240809 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > make[1]: Entering directory '/<>' > # gradle-kotlin-dsl-tooling-models > kotlinc \ > -module-name gradle-kotlin-dsl-tooling-models \ > -d tooling-models/target/classes \ > tooling-models/src/main/kotlin/ > OpenJDK 64-Bit Server VM warning: Options -Xverify:none and -noverify were > deprecated in JDK 13 and will likely be removed in a future release. > exception: java.lang.IllegalStateException: Could not load module definition > from: VirtualFile: > /usr/lib/jvm/java-21-openjdk-amd64!/modules/java.base/module-info.class. The > file might be broken by incorrect post-processing via bytecode tools. Please > remove this file from the classpath. > at > org.jetbrains.kotlin.resolve.jvm.modules.JavaModuleInfo$Companion.read(JavaModuleInfo.kt:85) > at > org.jetbrains.kotlin.cli.jvm.modules.CliJavaModuleFinder.findSystemModule(CliJavaModuleFinder.kt:44) > at > org.jetbrains.kotlin.cli.jvm.modules.CliJavaModuleFinder.access$findSystemModule(CliJavaModuleFinder.kt:25) > at > org.jetbrains.kotlin.cli.jvm.modules.CliJavaModuleFinder$systemModules$1.invoke(CliJavaModuleFinder.kt:37) > at > org.jetbrains.kotlin.cli.jvm.modules.CliJavaModuleFinder$systemModules$1.invoke(CliJavaModuleFinder.kt:25) > at > kotlin.sequences.TransformingSequence$iterator$1.next(Sequences.kt:172) > at > kotlin.sequences.FilteringSequence$iterator$1.calcNext(Sequences.kt:132) > at > kotlin.sequences.FilteringSequence$iterator$1.hasNext(Sequences.kt:156) > at > kotlin.sequences.FlatteningSequence$iterator$1.ensureItemIterator(Sequences.kt:278) > at > kotlin.sequences.FlatteningSequence$iterator$1.hasNext(Sequences.kt:265) > at kotlin.sequences.SequencesKt___SequencesKt.none(_Sequences.kt:1298) > at > org.jetbrains.kotlin.cli.jvm.compiler.ClasspathRootsResolver.addModularRoots(ClasspathRootsResolver.kt:226) > at > org.jetbrains.kotlin.cli.jvm.compiler.ClasspathRootsResolver.computeRoots(ClasspathRootsResolver.kt:123) > at > org.jetbrains.kotlin.cli.jvm.compiler.ClasspathRootsResolver.convertClasspathRoots(ClasspathRootsResolver.kt:79) > at > org.jetbrains.kotlin.cli.jvm.compiler.KotlinCoreEnvironment.(KotlinCoreEnvironment.kt:228) > at > org.jetbrains.kotlin.cli.jvm.compiler.KotlinCoreEnvironment.(KotlinCoreEnvironment.kt:122) > at > org.jetbrains.kotlin.cli.jvm.compiler.KotlinCoreEnvironment$Companion.createForProduction(KotlinCoreEnvironment.kt:409) > at > org.jetbrains.kotlin.cli.jvm.K2JVMCompiler.createCoreEnvironment(K2JVMCompiler.kt:258) > at > org.jetbrains.kotlin.cli.jvm.K2JVMCompiler.doExecute(K2JVMCompiler.kt:165) > at > org.jetbrains.kotlin.cli.jvm.K2JVMCompiler.doExecute(K2JVMCompiler.kt:53) > at > org.jetbrains.kotlin.cli.common.CLICompiler.execImpl(CLICompiler.kt:84) > at > org.jetbrains.kotlin.cli.common.CLICompiler.execImpl(CLICompiler.kt:42) > at org.jetbrains.kotlin.cli.common.CLITool.exec(CLITool.kt:103) > at org.jetbrains.kotlin.cli.common.CLITool.exec(CLITool.kt:81) > at org.jetbrains.kotlin.cli.common.CLITool.exec(CLITool.kt:49) > at > org.jetbrains.kotlin.cli.common.CLITool$Companion.doMainNoExit(CLITool.kt:214) > at > org.jetbrains.kotlin.cli.common.CLITool$Companion.doMain(CLITool.kt:206) > at > org.jetbrains.kotlin.cli.jvm.K2JVMCompiler$Companion.main(K2JVMCompiler.kt:300) > at org.jetbrains.kotlin.cli.jvm.K2JVMCompiler.main(K2JVMCompiler.kt) > at > java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) > at java.base/java.lang.reflect.Method.invoke(Method.java:580) > at org.jetbrains.kotlin.preloading.Preloader.run(Preloader.java:81) > at org.jetbrains.kotlin.preloading.Preloader.main(Preloader.java:43) > Caused by: java.lang.IllegalArgumentException: Unsupported class file major > version 65 > at > org.jetbrains.org.objectweb.asm.ClassReader.(ClassReader.java:199) > at > org.jetbrains.org.objectweb.asm.ClassReader.(ClassReader.java:180) > at > org.jetbrains.org.objectweb.asm.ClassReader.(ClassReader.java:166) > at > org.jetbrains.kotlin.resolve.jvm.modules.JavaModuleInfo$Companion.read(JavaModuleInfo.kt:68) > ... 32 more > > make[1]: *** [debian/rules:10: override_dh_auto_build] Error 2 The full build log is available from: http://qa-logs.debian.net/2024/08/09/gradle-kotlin-dsl_0.13.2-5_unstable.log All bugs filed during this archive rebuild are listed at: https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240809;users=lu...@debian.org or: https://udd.debian.org/bugs/?release=na&merged=ign&fnewerval=7&flastmodval=7
Bug#1078381: php-amqplib: FTBFS: make[1]: *** [debian/rules:20: override_dh_auto_test] Error 141
Source: php-amqplib Version: 3.7.0-1 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240809 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > make[1]: Entering directory '/<>' > TEST_RABBIT_SERVER_DIR=$(mktemp -d --tmpdir rabbitmq.XX) ; \ > mkdir -p $TEST_RABBIT_SERVER_DIR/log ; \ > export RABBITMQ_NODENAME=test ; \ > env RABBITMQ_MNESIA_BASE=$TEST_RABBIT_SERVER_DIR/mnesia \ > RABBITMQ_CONFIG_FILE=debian/rabbitmq.conf \ > RABBITMQ_LOG_BASE=$TEST_RABBIT_SERVER_DIR/log \ > HOME=$TEST_RABBIT_SERVER_DIR \ > /usr/lib/rabbitmq/bin/rabbitmq-server > > $TEST_RABBIT_SERVER_DIR/log/output.txt 2>&1 & \ > TEST_RABBIT_SERVER_PID=$! ; \ > HOME=$TEST_RABBIT_SERVER_DIR /usr/lib/rabbitmq/bin/rabbitmqctl wait \ > -q --pid $TEST_RABBIT_SERVER_PID ; \ > phpunit ; \ > exit=$? ; \ > env RABBITMQ_MNESIA_BASE=$TEST_RABBIT_SERVER_DIR/mnesia \ > RABBITMQ_LOG_BASE=$TEST_RABBIT_SERVER_DIR/log \ > HOME=$TEST_RABBIT_SERVER_DIR \ > /usr/lib/rabbitmq/bin/rabbitmqctl stop > > $TEST_RABBIT_SERVER_DIR/log/stop_output.txt 2>&1 & \ > exit $exit > PHPUnit 9.6.20 by Sebastian Bergmann and contributors. > > Runtime: PHP 8.2.21 > Configuration: /<>/phpunit.xml.dist > Warning: No code coverage driver available > Warning: Your XML configuration validates against a deprecated schema. > Suggestion:Migrate your XML configuration using "--migrate-configuration"! > > ... 63 / 858 ( > 7%) > ... 126 / 858 ( > 14%) > ... 189 / 858 ( > 22%) > ... 252 / 858 ( > 29%) > ... 315 / 858 ( > 36%) > ... 378 / 858 ( > 44%) > ... 441 / 858 ( > 51%) > ... 504 / 858 ( > 58%) > ... 567 / 858 ( > 66%) > ... 630 / 858 ( > 73%) > ... 693 / 858 ( > 80%) > ... 756 / 858 ( > 88%) > SS. 819 / 858 ( > 95%) > .S. 858 / 858 > (100%) > > Time: 01:21.333, Memory: 534.00 MB > > There were 11 skipped tests: > > 1) > PhpAmqpLib\Tests\Functional\Connection\ConnectionAuthTest::plain_auth_passwordless_must_fail > Unable to connect to "https://localhost:15671/api/users/test_1932809751": 7 > Failed to connect to localhost port 15671 after 0 ms: Could not connect to > server > > /<>/tests/Functional/Connection/ConnectionAuthTest.php:86 > /<>/tests/Functional/Connection/ConnectionAuthTest.php:25 > > 2) > PhpAmqpLib\Tests\Functional\Connection\ConnectionClosedTest::must_throw_exception_broken_pipe_wait > with data set #0 ('stream', false) > TOXIPROXY_HOST is not set > > /<>/tests/Functional/AbstractConnectionTest.php:101 > /<>/tests/Functional/AbstractConnectionTest.php:91 > /<>/tests/Functional/Connection/ConnectionClosedTest.php:37 > > 3) > PhpAmqpLib\Tests\Functional\Connection\ConnectionClosedTest::must_throw_exception_broken_pipe_wait > with data set #1 ('stream', true) > TOXIPROXY_HOST is not set > > /<>/tests/Functional/AbstractConnectionTest.php:101 > /<>/tests/Functional/AbstractConnectionTest.php:91 > /<>/tests/Functional/Connection/ConnectionClosedTest.php:37 > > 4) > PhpAmqpLib\Tests\Functional\Connection\ConnectionClosedTest::must_throw_exception_broken_pipe_wait > with data set #2 ('socket', false) > TOXIPROXY_HOST is not set > > /<>/tests/Functional/AbstractConnectionTest.php:101 > /<>/tests/Functional/AbstractConnectionTest.php:91 > /<>/tests/Functional/Connection/ConnectionClosedTest.php:37 > > 5) > PhpAmqpLib\Tests\Functional\Connection\ConnectionClosedTest::must_throw_exception_broken_pipe_wait > with data set #3 ('socket', true) > TOXIPROXY_HOST is not set > > /<>/tests/Functional/AbstractConnectionTest.php:101 > /<>/tests/Functional/AbstractConnectionTest.php:91 > /<>/tests/Functional/Connection/ConnectionClosedTest.php:37 > > 6) > PhpAmqpLib\Tests\Functional\Connection\ConnectionClosedTest::must_throw_exception_broken_pipe_write > with data set #0 ('stream', 1024) > TOXIPROXY_HOST is not set > > /<>/tests/Functional/AbstractConnectionTest.php:101 > /<>/tests/Functional/AbstractConnectionTest.php:91 > /<>/tests/Functional/Connection/ConnectionClosedTest.php:85 > > 7) > PhpAmqpLib\Tests\Functional\Connection\ConnectionClosedTes
Bug#1078379: lombok-patcher: FTBFS: make[1]: *** [debian/rules:7: override_dh_auto_build] Error 25
Source: lombok-patcher Version: 0.50-1 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240809 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > make[1]: Entering directory '/<>' > dh_auto_build -- dist \ > -Divy.default.ivy.user.dir=/<>/.ivy \ > -DskipTests=true \ > -Divyplusplus.minimumAvailable=true > ant -Divy.settings.file=/usr/share/ivy-debian-helper/ivysettings.xml > -Divy.default.ivy.user.dir=/<>/.ivy2 dist > -Divy.default.ivy.user.dir=/<>/.ivy -DskipTests=true > -Divyplusplus.minimumAvailable=true > Buildfile: /<>/build.xml > > -pointlessCheck: > > -test.quiet: > > -test-setup: > > download-ipp: > > load-ipp: > > redownload-ipp: > > ensure-ipp: > > config-ivy: > [ivy:configure] :: Apache Ivy non official version - :: > https://ant.apache.org/ivy/ :: > [ivy:configure] :: loading settings :: file = > /usr/share/ivy-debian-helper/ivysettings.xml > [ivy:configure] [ivy-debian-helper] Loading the Maven rules... > > ensureRuntimeDeps: > [ivy:resolve] :: resolving dependencies :: > projectlombok.org#lombok.patcher;working@ip-10-84-234-242 > [ivy:resolve] confs: [runtime] > [ivy:resolve] [ivy-debian-helper] Replacing org.ow2.asm:asm:jar:9.6 -> > org.ow2.asm:asm:jar:debian > [ivy:resolve] found org.ow2.asm#asm;debian in debian > [ivy:resolve] [debian] org.ow2.asm#asm;9.6 (forced) > [ivy:resolve] [ivy-debian-helper] Replacing org.ow2.asm:asm-tree:jar:9.6 -> > org.ow2.asm:asm-tree:jar:debian > [ivy:resolve] found org.ow2.asm#asm-tree;debian in debian > [ivy:resolve] [debian] org.ow2.asm#asm-tree;9.6 (forced) > [ivy:resolve] [ivy-debian-helper] Replacing org.ow2.asm:asm-commons:jar:9.6 > -> org.ow2.asm:asm-commons:jar:debian > [ivy:resolve] found org.ow2.asm#asm-commons;debian in debian > [ivy:resolve] [debian] org.ow2.asm#asm-commons;9.6 (forced) > [ivy:resolve] downloading > file:/usr/share/maven-repo/org/ow2/asm/asm/debian/asm-debian.jar ... > [ivy:resolve] (129kB) > [ivy:resolve] [SUCCESSFUL ] org.ow2.asm#asm;debian!asm.jar (6ms) > [ivy:resolve] downloading > file:/usr/share/maven-repo/org/ow2/asm/asm-tree/debian/asm-tree-debian.jar ... > [ivy:resolve] .. (52kB) > [ivy:resolve] [SUCCESSFUL ] org.ow2.asm#asm-tree;debian!asm-tree.jar > (3ms) > [ivy:resolve] downloading > file:/usr/share/maven-repo/org/ow2/asm/asm-commons/debian/asm-commons-debian.jar > ... > [ivy:resolve] ... (84kB) > [ivy:resolve] [SUCCESSFUL ] > org.ow2.asm#asm-commons;debian!asm-commons.jar (3ms) > [ivy:resolve] :: resolution report :: resolve 260ms :: artifacts dl 20ms > - > | |modules|| artifacts | > | conf | number| search|dwnlded|evicted|| number|dwnlded| > - > | runtime | 3 | 3 | 3 | 0 || 3 | 3 | > - > [ivy:retrieve] :: retrieving :: projectlombok.org#lombok.patcher > [ivy:retrieve]confs: [runtime] > [ivy:retrieve]3 artifacts copied, 0 already retrieved (265kB/8ms) > > ensureRuntimeInjectorDeps: > [ivy:resolve] :: resolving dependencies :: > projectlombok.org#lombok.patcher;working@ip-10-84-234-242 > [ivy:resolve] confs: [runtimeInjector] > [ivy:resolve] [ivy-debian-helper] Replacing net.java.dev.jna:jna:jar:5.12.1 > -> net.java.dev.jna:jna:jar:debian > [ivy:resolve] found net.java.dev.jna#jna;debian in debian > [ivy:resolve] [debian] net.java.dev.jna#jna;5.12.1 (forced) > [ivy:resolve] downloading > file:/usr/share/maven-repo/net/java/dev/jna/jna/debian/jna-debian.jar ... > [ivy:resolve] . (207kB) > [ivy:resolve] [SUCCESSFUL ] net.java.dev.jna#jna;debian!jna.jar (3ms) > [ivy:resolve] :: resolution report :: resolve 34ms :: artifacts dl 12ms > - > | |modules|| artifacts | > | conf | number| search|dwnlded|evicted|| number|dwnlded| > - > | runtimeInjector | 1 | 1 | 1 | 0 || 1 | 1 | > - > [ivy:retrieve] :: retrieving :: projectlombok.org#lombok.patcher > [ivy:retrieve]confs: [runtimeInjector] > [ivy:retrieve]1 artifacts copied, 0 already retrieved (207kB/7ms) > > unpackLibs: > [unjar] Expanding: /<>/lib/runtime/asm-commons.jar into > /<>/build/pack > [unjar] Expanding: /<>/lib/runtime/asm-tree.jar into > /<>/build/pack > [unjar] Expanding: /<>/l
Bug#1078377: lombok-ast: FTBFS: [ivy:compile] /<>/src/main/lombok/ast/app/Main.java:54: error: cannot find symbol
Source: lombok-ast Version: 0.2+ds-7 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240809 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > make[1]: Entering directory '/<>' > mkdir -p build > cp -r src/main main_backup > cp -r lombok.ast_generatedSource/* src/main/ > cp -r lombok.ast_generatedSource build > ant dist > Buildfile: /<>/build.xml > > templateProcessor: > [compile:mkdir] Created dir: /<>/build/templateProcessor > [compile:javac] Compiling 10 source files to > /<>/build/templateProcessor > [ivy:compile] warning: [options] bootstrap class path not set in conjunction > with -source 8 > [ivy:compile] warning: [options] source value 8 is obsolete and will be > removed in a future release > [ivy:compile] warning: [options] target value 8 is obsolete and will be > removed in a future release > [ivy:compile] warning: [options] To suppress warnings about obsolete options, > use -Xlint:-options. > [ivy:compile] Note: > /<>/src/template/lombok/ast/template/TemplateProcessor.java uses > or overrides a deprecated API. > [ivy:compile] Note: Recompile with -Xlint:deprecation for details. > [ivy:compile] 4 warnings > [compile:javac] Creating empty > /<>/build/templateProcessor/lombok/ast/template/package-info.class > [mkdir] Created dir: /<>/build/templateProcessor/META-INF > [mkdir] Created dir: > /<>/build/templateProcessor/META-INF/services > [jar] Building jar: /<>/build/templateProcessor.jar > > compile: >[tstamp] Honouring environment variable SOURCE_DATE_EPOCH which has been > set to 1660300492 > [compile:mkdir] Created dir: /<>/build/lombok.ast > [compile:javac] Using javac -source 1.6 is no longer supported, switching to 8 > [compile:javac] Using javac -target 1.6 is no longer supported, switching to 8 > [compile:javac] Compiling 667 source files to > /<>/build/lombok.ast > [ivy:compile] warning: [options] bootstrap class path not set in conjunction > with -source 8 > [ivy:compile] warning: [options] source value 8 is obsolete and will be > removed in a future release > [ivy:compile] warning: [options] target value 8 is obsolete and will be > removed in a future release > [ivy:compile] warning: [options] To suppress warnings about obsolete options, > use -Xlint:-options. > [ivy:compile] /<>/src/main/lombok/ast/app/Main.java:54: error: > cannot find symbol > [ivy:compile] import org.eclipse.jdt.internal.compiler.CompilationResult; > [ivy:compile] ^ > [ivy:compile] symbol: class CompilationResult > [ivy:compile] location: package org.eclipse.jdt.internal.compiler > [ivy:compile] /<>/src/main/lombok/ast/app/Main.java:55: error: > cannot find symbol > [ivy:compile] import > org.eclipse.jdt.internal.compiler.DefaultErrorHandlingPolicies; > [ivy:compile] ^ > [ivy:compile] symbol: class DefaultErrorHandlingPolicies > [ivy:compile] location: package org.eclipse.jdt.internal.compiler > [ivy:compile] /<>/src/main/lombok/ast/app/Main.java:56: error: > package org.eclipse.jdt.internal.compiler.ast does not exist > [ivy:compile] import org.eclipse.jdt.internal.compiler.ast.ASTNode; > [ivy:compile] ^ > [ivy:compile] /<>/src/main/lombok/ast/app/Main.java:57: error: > package org.eclipse.jdt.internal.compiler.ast does not exist > [ivy:compile] import > org.eclipse.jdt.internal.compiler.ast.CompilationUnitDeclaration; > [ivy:compile] ^ > [ivy:compile] /<>/src/main/lombok/ast/app/Main.java:58: error: > package org.eclipse.jdt.internal.compiler.batch does not exist > [ivy:compile] import org.eclipse.jdt.internal.compiler.batch.CompilationUnit; > [ivy:compile] ^ > [ivy:compile] /<>/src/main/lombok/ast/app/Main.java:59: error: > package org.eclipse.jdt.internal.compiler.classfmt does not exist > [ivy:compile] import > org.eclipse.jdt.internal.compiler.classfmt.ClassFileConstants; > [ivy:compile] ^ > [ivy:compile] /<>/src/main/lombok/ast/app/Main.java:60: error: > package org.eclipse.jdt.internal.compiler.impl does not exist > [ivy:compile] import org.eclipse.jdt.internal.compiler.impl.CompilerOptions; > [ivy:compile] ^ > [ivy:compile] /<>/src/main/lombok/ast/app/Main.java:61: error: > cannot find symbol > [ivy:compile] import org.eclipse.jdt.internal.compiler.parser.Parser; > [ivy:compile]^ > [ivy:compile] symbol: class Parser > [ivy:compile] location: package org.eclipse.jdt.internal.compiler.parser > [ivy:compile] /<>/src/main/lombok/ast/app/Main.java:62: error: > package org.eclipse.jdt.internal.compiler.problem does not exist > [ivy:compile] import > org.eclipse.jdt.in
Bug#1078378: silkaj: FTBFS: dh_auto_test: error: pybuild --test --test-pytest -i python{version} -p 3.12 returned exit code 13
Source: silkaj Version: 0.11.0-2 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240809 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > debian/rules binary > dh binary --buildsystem=pybuild >dh_update_autotools_config -O--buildsystem=pybuild >dh_autoreconf -O--buildsystem=pybuild >dh_auto_configure -O--buildsystem=pybuild >dh_auto_build -O--buildsystem=pybuild > I: pybuild plugin_pyproject:129: Building wheel for python3.12 with "build" > module > I: pybuild base:311: python3.12 -m build --skip-dependency-check > --no-isolation --wheel --outdir /<>/.pybuild/cpython3_3.12 > * Building wheel... > Successfully built silkaj-0.11.0-py3-none-any.whl > I: pybuild plugin_pyproject:144: Unpacking wheel built for python3.12 with > "installer" module >dh_auto_test -O--buildsystem=pybuild > I: pybuild base:311: cd /<>/.pybuild/cpython3_3.12/build; > python3.12 -m pytest --ignore=tests/integration/test_end_to_end.py > --ignore=tests/integration/blockchain/test_verify.py > = test session starts > == > platform linux -- Python 3.12.5, pytest-8.3.2, pluggy-1.5.0 > rootdir: /<>/.pybuild/cpython3_3.12/build > configfile: pyproject.toml > collected 41 items / 12 errors > > ERRORS > > __ ERROR collecting tests/integration/wot/test_membership.py > ___ > ImportError while importing test module > '/<>/.pybuild/cpython3_3.12/build/tests/integration/wot/test_membership.py'. > Hint: make sure your test modules/packages have valid Python names. > Traceback: > /usr/lib/python3.12/importlib/__init__.py:90: in import_module > return _bootstrap._gcd_import(name[level:], package, level) > tests/integration/wot/test_membership.py:25: in > from silkaj.cli import cli > silkaj/cli.py:23: in > from silkaj.blockchain.blocks import list_blocks > silkaj/blockchain/blocks.py:23: in > from pendulum import from_timestamp > /usr/lib/python3/dist-packages/pendulum/__init__.py:38: in > from pendulum.testing.traveller import Traveller > E ModuleNotFoundError: No module named 'pendulum.testing' > __ ERROR collecting tests/unit/money/test_history.py > ___ > ImportError while importing test module > '/<>/.pybuild/cpython3_3.12/build/tests/unit/money/test_history.py'. > Hint: make sure your test modules/packages have valid Python names. > Traceback: > /usr/lib/python3.12/importlib/__init__.py:90: in import_module > return _bootstrap._gcd_import(name[level:], package, level) > tests/unit/money/test_history.py:19: in > from silkaj.money import history > silkaj/money/history.py:25: in > from pendulum import from_timestamp, now > /usr/lib/python3/dist-packages/pendulum/__init__.py:38: in > from pendulum.testing.traveller import Traveller > E ModuleNotFoundError: No module named 'pendulum.testing' > ___ ERROR collecting tests/unit/money/test_tools.py > > ImportError while importing test module > '/<>/.pybuild/cpython3_3.12/build/tests/unit/money/test_tools.py'. > Hint: make sure your test modules/packages have valid Python names. > Traceback: > /usr/lib/python3.12/importlib/__init__.py:90: in import_module > return _bootstrap._gcd_import(name[level:], package, level) > tests/unit/money/test_tools.py:20: in > from silkaj.cli import cli > silkaj/cli.py:23: in > from silkaj.blockchain.blocks import list_blocks > silkaj/blockchain/blocks.py:23: in > from pendulum import from_timestamp > /usr/lib/python3/dist-packages/pendulum/__init__.py:38: in > from pendulum.testing.traveller import Traveller > E ModuleNotFoundError: No module named 'pendulum.testing' > __ ERROR collecting tests/unit/money/test_transfer.py > __ > ImportError while importing test module > '/<>/.pybuild/cpython3_3.12/build/tests/unit/money/test_transfer.py'. > Hint: make sure your test modules/packages have valid Python names. > Traceback: > /usr/lib/python3.12/importlib/__init__.py:90: in import_module > return _bootstrap._gcd_import(name[level:], package, level) > tests/unit/money/test_transfer.py:31: in > from silkaj.cli import cli > silkaj/cli.py:23: in > from silkaj.blockchain.blocks import list_blocks > silkaj/blockchain/blocks.py:23: in > from pendulum import from_timestamp > /usr/lib/python3/dist-packages/pendulum/__init__.py:38: in > from pendulum.testing.traveller import Traveller > E ModuleNotFoundError: No module named 'pendulum.testing' > ERROR collecting tests/unit/money/test_transfer_cli.py > > ImportError while importing test module > '/<>/.pybuild/cpython3_3.12/build/tests/unit/money/test_transfer_cli.py'. > Hint: make sure your test modules/packages have valid Pyth
Bug#1078375: python-jellyfish: FTBFS: make: *** [debian/rules:24: binary] Error 25
Source: python-jellyfish Version: 1.0.4-1 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240809 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > make[1]: Entering directory '/<>' > mv Cargo.lock Cargo.lock.saved > cp debian/cargo_home/config.toml debian/cargo_home_config.toml.saved > /usr/share/cargo/bin/cargo prepare-debian debian/cargo_registry > --link-from-system > debian cargo wrapper: options, profiles, parallel, lto: ['parallel=8'] [] > ['-j8'] 0 > debian cargo wrapper: rust_type, gnu_type: x86_64-unknown-linux-gnu, > x86_64-linux-gnu > debian cargo wrapper: linking /usr/share/cargo/registry/* into > /<>/debian/cargo_registry/ > rm -f Cargo.lock > make[1]: Leaving directory '/<>' >dh_auto_configure -O--buildsystem=pybuild >dh_auto_build -O--buildsystem=pybuild > I: pybuild plugin_pyproject:129: Building wheel for python3.12 with "build" > module > I: pybuild base:311: python3.12 -m build --skip-dependency-check > --no-isolation --wheel --outdir > /<>/.pybuild/cpython3_3.12_jellyfish > * Building wheel... > Running `maturin pep517 build-wheel -i /usr/bin/python3.12 --compatibility > off` > debian cargo wrapper: options, profiles, parallel, lto: ['parallel=8'] [] > ['-j8'] 0 > debian cargo wrapper: rust_type, gnu_type: x86_64-unknown-linux-gnu, > x86_64-linux-gnu > debian cargo wrapper: running subprocess (['env', 'RUST_BACKTRACE=1', > '/usr/bin/cargo', 'metadata', '--format-version', '1', '--manifest-path', > '/<>/Cargo.toml', '--features', 'pyo3/extension-module', > '--features', 'python'],) {} > error: failed to select a version for the requirement `pyo3 = "^0.20.0"` > candidate versions found which didn't match: 0.22.2 > location searched: directory source `/<>/debian/cargo_registry` > (which is replacing registry `crates-io`) > required by package `jellyfish v1.0.4 (/<>)` > perhaps a crate was updated and forgotten to be re-vendored? > 💥 maturin failed > Caused by: Cargo metadata failed. Does your crate compile with `cargo > build`? > Caused by: `cargo metadata` exited with an error: > Error: command ['maturin', 'pep517', 'build-wheel', '-i', > '/usr/bin/python3.12', '--compatibility', 'off'] returned non-zero exit > status 1 > > ERROR Backend subprocess exited when trying to invoke build_wheel > E: pybuild pybuild:389: build: plugin pyproject failed with: exit code=1: > python3.12 -m build --skip-dependency-check --no-isolation --wheel --outdir > /<>/.pybuild/cpython3_3.12_jellyfish > dh_auto_build: error: pybuild --build -i python{version} -p 3.12 returned > exit code 13 > make: *** [debian/rules:24: binary] Error 25 The full build log is available from: http://qa-logs.debian.net/2024/08/09/python-jellyfish_1.0.4-1_unstable.log All bugs filed during this archive rebuild are listed at: https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240809;users=lu...@debian.org or: https://udd.debian.org/bugs/?release=na&merged=ign&fnewerval=7&flastmodval=7&fusertag=only&fusertagtag=ftbfs-20240809&fusertaguser=lu...@debian.org&allbugs=1&cseverity=1&ctags=1&caffected=1#results A list of current common problems and possible solutions is available at http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute! If you reassign this bug to another package, please mark it as 'affects'-ing this package. See https://www.debian.org/Bugs/server-control#affects If you fail to reproduce this, please provide a build log and diff it with mine so that we can identify if something relevant changed in the meantime.
Bug#1078376: rustc: FTBFS: build-dependency not installable: gdb (>= 7.12)
Source: rustc Version: 1.79.0+dfsg1-2 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240809 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > +--+ > | Install package build dependencies > | > +--+ > > > Setup apt archive > - > > Merged Build-Depends: debhelper (>= 9), debhelper-compat (= 13), dpkg-dev (>= > 1.17.14), python3, cargo (>= 1.78.0+dfsg), rustc (>= 1.78.0+dfsg), rustc (<= > 1.79.0++), llvm-17-dev, llvm-17-tools, gcc-mingw-w64-x86-64-posix, > libllvm17t64 (>= 1:17.0.0), libclang-rt-17-dev, libclang-rt-17-dev, cmake (>= > 3.0), pkgconf, pkgconf, zlib1g-dev, zlib1g-dev, liblzma-dev, bash-completion, > libcurl4-openssl-dev | libcurl4-gnutls-dev, libssh2-1-dev, libssl-dev, > libsqlite3-dev, libgit2-dev (>= 1.7.2), libgit2-dev (<< 1.8~~), > libhttp-parser-dev, binutils (>= 2.26) | binutils-2.26, git, procps, gdb (>= > 7.12), build-essential, fakeroot, wasi-libc (>= 0.0~git20240411.9e8c542~~), > wasi-libc (<= 0.0~git20240411.9e8c542++), clang-17 > Merged Build-Conflicts: gdb-minimal > Filtered Build-Depends: debhelper (>= 9), debhelper-compat (= 13), dpkg-dev > (>= 1.17.14), python3, cargo (>= 1.78.0+dfsg), rustc (>= 1.78.0+dfsg), rustc > (<= 1.79.0++), llvm-17-dev, llvm-17-tools, gcc-mingw-w64-x86-64-posix, > libllvm17t64 (>= 1:17.0.0), libclang-rt-17-dev, libclang-rt-17-dev, cmake (>= > 3.0), pkgconf, pkgconf, zlib1g-dev, zlib1g-dev, liblzma-dev, bash-completion, > libcurl4-openssl-dev, libssh2-1-dev, libssl-dev, libsqlite3-dev, libgit2-dev > (>= 1.7.2), libgit2-dev (<< 1.8~~), libhttp-parser-dev, binutils (>= 2.26), > git, procps, gdb (>= 7.12), build-essential, fakeroot, wasi-libc (>= > 0.0~git20240411.9e8c542~~), wasi-libc (<= 0.0~git20240411.9e8c542++), clang-17 > Filtered Build-Conflicts: gdb-minimal > dpkg-deb: building package 'sbuild-build-depends-main-dummy' in > '/<>/apt_archive/sbuild-build-depends-main-dummy.deb'. > Ign:1 copy:/<>/apt_archive ./ InRelease > Get:2 copy:/<>/apt_archive ./ Release [615 B] > Ign:3 copy:/<>/apt_archive ./ Release.gpg > Get:4 copy:/<>/apt_archive ./ Sources [1688 B] > Get:5 copy:/<>/apt_archive ./ Packages [1279 B] > Fetched 3582 B in 0s (0 B/s) > Reading package lists... > Reading package lists... > > Install main build dependencies (apt-based resolver) > > > Installing build dependencies > Reading package lists... > Building dependency tree... > Reading state information... > Some packages could not be installed. This may mean that you have > requested an impossible situation or if you are using the unstable > distribution that some required packages have not yet been created > or been moved out of Incoming. > The following information may help to resolve the situation: > > The following packages have unmet dependencies: > sbuild-build-depends-main-dummy : Depends: gdb (>= 7.12) but it is not > installable > E: Unable to correct problems, you have held broken packages. > apt-get failed. The full build log is available from: http://qa-logs.debian.net/2024/08/09/rustc_1.79.0+dfsg1-2_unstable.log All bugs filed during this archive rebuild are listed at: https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240809;users=lu...@debian.org or: https://udd.debian.org/bugs/?release=na&merged=ign&fnewerval=7&flastmodval=7&fusertag=only&fusertagtag=ftbfs-20240809&fusertaguser=lu...@debian.org&allbugs=1&cseverity=1&ctags=1&caffected=1#results A list of current common problems and possible solutions is available at http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute! If you reassign this bug to another package, please mark it as 'affects'-ing this package. See https://www.debian.org/Bugs/server-control#affects If you fail to reproduce this, please provide a build log and diff it with mine so that we can identify if something relevant changed in the meantime.
Bug#1078374: pinot: FTBFS: ../IndexSearch/cjkv/CJKVTokenizer.cc:31:42: error: invalid conversion from 'const char*' to 'char*' [-fpermissive]
Source: pinot Version: 1.21-1 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240809 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > /bin/bash ../libtool --tag=CXX --mode=link g++ -D_FILE_OFFSET_BITS=64 > -std=c++11 -I../Utils -Ifilters -I/usr/include/gmime-3.0 > -D_LARGEFILE64_SOURCE -I/usr/include/glib-2.0 > -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/sysprof-6 > -I/usr/include/libmount -I/usr/include/blkid -pthread > -I/usr/include/libxml++-2.6 -I/usr/lib/x86_64-linux-gnu/libxml++-2.6/include > -I/usr/include/libxml2 -I/usr/include/glibmm-2.4 > -I/usr/lib/x86_64-linux-gnu/glibmm-2.4/include -I/usr/include/glib-2.0 > -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/sysprof-6 > -pthread -I/usr/include/sigc++-2.0 > -I/usr/lib/x86_64-linux-gnu/sigc++-2.0/include -I/usr/include/taglib > -D_DYNAMIC_DIJON_FILTERS > -D_DIJON_EXTERNALFILTER_CONFFILE=\"/etc/pinot/external-filters.xml\" -fPIC -g > -O2 -ffile-prefix-map=/<>=. -fstack-protector-strong > -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection > -DNDEBUG -module -avoid-version -Wl,-z,relro -Wl,--as-needed -o > libexiv2imagefilter.la -rpath /usr/lib/x86_64-linux-gnu > ../Tokenize/filters/Exiv2ImageFilter.lo -lexiv2 > ../Tokenize/filters/ArchiveFilter.cc: In member function 'virtual void > Dijon::ArchiveFilter::rewind()': > ../Tokenize/filters/ArchiveFilter.cc:425:36: warning: 'int > archive_read_finish(archive*)' is deprecated [-Wdeprecated-declarations] > 425 | archive_read_finish(m_pHandle); > | ~~~^~~ > /usr/include/archive.h:726:26: note: declared here > 726 | __LA_DECL intarchive_read_finish(struct archive *) > __LA_DEPRECATED; > | ^~~ > ../IndexSearch/cjkv/CJKVTokenizer.cc: In function 'char* > unicode_get_utf8(const char*, gunichar*)': > ../IndexSearch/cjkv/CJKVTokenizer.cc:31:42: error: invalid conversion from > 'const char*' to 'char*' [-fpermissive] >31 | return (*result == (gunichar)-1) ? NULL : g_utf8_next_char(p); > libtool: link: g++ -fPIC -DPIC -shared -nostdlib > /usr/lib/gcc/x86_64-linux-gnu/14/../../../x86_64-linux-gnu/crti.o > /usr/lib/gcc/x86_64-linux-gnu/14/crtbeginS.o > ../Tokenize/filters/.libs/Exiv2ImageFilter.o -lexiv2 > -L/usr/lib/gcc/x86_64-linux-gnu/14 > -L/usr/lib/gcc/x86_64-linux-gnu/14/../../../x86_64-linux-gnu > -L/usr/lib/gcc/x86_64-linux-gnu/14/../../../../lib -L/lib/x86_64-linux-gnu > -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib > -L/usr/lib/gcc/x86_64-linux-gnu/14/../../.. -lstdc++ -lm -lc -lgcc_s > /usr/lib/gcc/x86_64-linux-gnu/14/crtendS.o > /usr/lib/gcc/x86_64-linux-gnu/14/../../../x86_64-linux-gnu/crtn.o -g -O2 > -fstack-protector-strong -Wl,-z -Wl,relro -Wl,--as-needed -pthread > -Wl,-soname -Wl,libexiv2imagefilter.so -o .libs/libexiv2imagefilter.so > make[3]: *** [Makefile:823: ../IndexSearch/cjkv/CJKVTokenizer.lo] Error 1 The full build log is available from: http://qa-logs.debian.net/2024/08/09/pinot_1.21-1_unstable.log All bugs filed during this archive rebuild are listed at: https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240809;users=lu...@debian.org or: https://udd.debian.org/bugs/?release=na&merged=ign&fnewerval=7&flastmodval=7&fusertag=only&fusertagtag=ftbfs-20240809&fusertaguser=lu...@debian.org&allbugs=1&cseverity=1&ctags=1&caffected=1#results A list of current common problems and possible solutions is available at http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute! If you reassign this bug to another package, please mark it as 'affects'-ing this package. See https://www.debian.org/Bugs/server-control#affects If you fail to reproduce this, please provide a build log and diff it with mine so that we can identify if something relevant changed in the meantime.
Bug#1078372: tomcat10: FTBFS: [javac] /<>/java/org/apache/jasper/compiler/JDTCompiler.java:40: error: cannot find symbol
Source: tomcat10 Version: 10.1.25-1 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240809 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > make[1]: Entering directory '/<>' > dh_auto_build -- -Ddistribution.name=Debian embed-jars deploy > ant -propertyfile ./debian/ant.properties -Duser.name debian > -Ddistribution.name=Debian embed-jars deploy > Buildfile: /<>/build.xml >[tstamp] Honouring environment variable SOURCE_DATE_EPOCH which has been > set to 1720043851 > > build-prepare: > [mkdir] Created dir: /<>/output/classes > [mkdir] Created dir: /<>/output/build > [mkdir] Created dir: /<>/output/build/bin > [mkdir] Created dir: /<>/output/build/conf > [mkdir] Created dir: /<>/output/build/lib > [mkdir] Created dir: /<>/output/build/logs > [mkdir] Created dir: /<>/output/build/temp > [mkdir] Created dir: /<>/output/build/webapps > [mkdir] Created dir: /<>/output/build/webapps-javaee > > build-manifests: > [mkdir] Created dir: /<>/output/manifests > [copy] Copying 22 files to /<>/output/manifests > > download-bnd: >[tstamp] Honouring environment variable SOURCE_DATE_EPOCH which has been > set to 1720043851 > > testexist: > [echo] Testing for /usr/share/java/bnd.jar > > setproxy: > > downloadfile: > > setup-bnd: > > compile-prepare: > [copy] Copying 1 file to > /<>/java/org/apache/catalina/startup > [copy] Copying 1 file to /<>/webapps/docs > > download-validate: > > validate: > > compile: > [javac] Compiling 1758 source files to /<>/output/classes > [javac] > /<>/java/org/apache/jasper/compiler/JDTCompiler.java:40: error: > cannot find symbol > [javac] import org.eclipse.jdt.core.compiler.IProblem; > [javac] ^ > [javac] symbol: class IProblem > [javac] location: package org.eclipse.jdt.core.compiler > [javac] > /<>/java/org/apache/jasper/compiler/JDTCompiler.java:41: error: > cannot find symbol > [javac] import org.eclipse.jdt.internal.compiler.ClassFile; > [javac] ^ > [javac] symbol: class ClassFile > [javac] location: package org.eclipse.jdt.internal.compiler > [javac] > /<>/java/org/apache/jasper/compiler/JDTCompiler.java:42: error: > cannot find symbol > [javac] import org.eclipse.jdt.internal.compiler.CompilationResult; > [javac] ^ > [javac] symbol: class CompilationResult > [javac] location: package org.eclipse.jdt.internal.compiler > [javac] > /<>/java/org/apache/jasper/compiler/JDTCompiler.java:43: error: > cannot find symbol > [javac] import org.eclipse.jdt.internal.compiler.Compiler; > [javac] ^ > [javac] symbol: class Compiler > [javac] location: package org.eclipse.jdt.internal.compiler > [javac] > /<>/java/org/apache/jasper/compiler/JDTCompiler.java:44: error: > cannot find symbol > [javac] import > org.eclipse.jdt.internal.compiler.DefaultErrorHandlingPolicies; > [javac] ^ > [javac] symbol: class DefaultErrorHandlingPolicies > [javac] location: package org.eclipse.jdt.internal.compiler > [javac] > /<>/java/org/apache/jasper/compiler/JDTCompiler.java:45: error: > cannot find symbol > [javac] import org.eclipse.jdt.internal.compiler.ICompilerRequestor; > [javac] ^ > [javac] symbol: class ICompilerRequestor > [javac] location: package org.eclipse.jdt.internal.compiler > [javac] > /<>/java/org/apache/jasper/compiler/JDTCompiler.java:46: error: > cannot find symbol > [javac] import org.eclipse.jdt.internal.compiler.IErrorHandlingPolicy; > [javac] ^ > [javac] symbol: class IErrorHandlingPolicy > [javac] location: package org.eclipse.jdt.internal.compiler > [javac] > /<>/java/org/apache/jasper/compiler/JDTCompiler.java:47: error: > cannot find symbol > [javac] import org.eclipse.jdt.internal.compiler.IProblemFactory; > [javac] ^ > [javac] symbol: class IProblemFactory > [javac] location: package org.eclipse.jdt.internal.compiler > [javac] > /<>/java/org/apache/jasper/compiler/JDTCompiler.java:48: error: > package org.eclipse.jdt.internal.compiler.classfmt does not exist > [javac] import org.eclipse.jdt.internal.compiler.classfmt.ClassFileReader; > [javac] ^ > [javac] > /<>/java/org/apache/jasper/compiler/JDTCompiler.java:49: error: > package org.eclipse.jdt.internal.compiler.classfmt does not exist > [javac] import > org.eclipse.jdt.internal.compiler.classfmt.ClassFormatE
Bug#1078373: ruby-concurrent: FTBFS: make[1]: *** [debian/rules:18: execute_after_dh_auto_build-indep] Error 123
Source: ruby-concurrent Version: 1.2.3-2 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240809 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > make[1]: Entering directory '/<>' > # build jruby native extension (jar) > mkdir -p tmp/java/concurrent_ruby > find ext/concurrent-ruby -name \*.java | \ > xargs javac -target 1.7 -source 1.7 -Xlint:none -d > tmp/java/concurrent_ruby -cp /usr/share/jruby/lib/jruby.jar > error: Source option 7 is no longer supported. Use 8 or later. > error: Target option 7 is no longer supported. Use 8 or later. > make[1]: *** [debian/rules:18: execute_after_dh_auto_build-indep] Error 123 The full build log is available from: http://qa-logs.debian.net/2024/08/09/ruby-concurrent_1.2.3-2_unstable.log All bugs filed during this archive rebuild are listed at: https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240809;users=lu...@debian.org or: https://udd.debian.org/bugs/?release=na&merged=ign&fnewerval=7&flastmodval=7&fusertag=only&fusertagtag=ftbfs-20240809&fusertaguser=lu...@debian.org&allbugs=1&cseverity=1&ctags=1&caffected=1#results A list of current common problems and possible solutions is available at http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute! If you reassign this bug to another package, please mark it as 'affects'-ing this package. See https://www.debian.org/Bugs/server-control#affects If you fail to reproduce this, please provide a build log and diff it with mine so that we can identify if something relevant changed in the meantime.
Bug#1078369: dogtail: FTBFS: AssertionError: False is not true
Source: dogtail Version: 0.9.11-12 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240809 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > make[1]: Entering directory '/<>' > GTK_MODULES=gail:atk-bridge LC_ALL=C xvfb-run -s -noreset -a dbus-run-session > -- nose2-3 -v > /<>/dogtail/i18n.py:136: SyntaxWarning: invalid escape sequence > '\(' > inString = re.sub('([\(\)])', r'\\\1', inString) > dbus-daemon[1240085]: [session uid=1001 pid=1240085] Activating service > name='org.a11y.Bus' requested by ':1.0' (uid=1001 pid=1240086 > comm="/usr/bin/python3 /usr/bin/nose2-3 -v") > > (process:1240088): dconf-CRITICAL **: 18:09:14.481: unable to create > directory '/sbuild-nonexistent/.cache/dconf': Permission denied. dconf will > not work properly. > > (process:1240088): dconf-CRITICAL **: 18:09:14.482: unable to create > directory '/sbuild-nonexistent/.cache/dconf': Permission denied. dconf will > not work properly. > > (process:1240088): dconf-CRITICAL **: 18:09:14.482: unable to create > directory '/sbuild-nonexistent/.cache/dconf': Permission denied. dconf will > not work properly. > > (process:1240088): dconf-CRITICAL **: 18:09:14.482: unable to create > directory '/sbuild-nonexistent/.cache/dconf': Permission denied. dconf will > not work properly. > > (process:1240088): dconf-CRITICAL **: 18:09:14.483: unable to create > directory '/sbuild-nonexistent/.cache/dconf': Permission denied. dconf will > not work properly. > dbus-daemon[1240085]: [session uid=1001 pid=1240085] Successfully activated > service 'org.a11y.Bus' > > (process:1240088): dconf-CRITICAL **: 18:09:14.484: unable to create > directory '/sbuild-nonexistent/.cache/dconf': Permission denied. dconf will > not work properly. > > (nose2-3:1240086): dconf-CRITICAL **: 18:09:14.513: unable to create > directory '/sbuild-nonexistent/.cache/dconf': Permission denied. dconf will > not work properly. > > (nose2-3:1240086): dconf-CRITICAL **: 18:09:14.513: unable to create > directory '/sbuild-nonexistent/.cache/dconf': Permission denied. dconf will > not work properly. > dbus-daemon[1240094]: Activating service name='org.a11y.atspi.Registry' > requested by ':1.0' (uid=1001 pid=1240086 comm="/usr/bin/python3 > /usr/bin/nose2-3 -v") > > (nose2-3:1240086): dconf-CRITICAL **: 18:09:14.515: unable to create > directory '/sbuild-nonexistent/.cache/dconf': Permission denied. dconf will > not work properly. > dbus-daemon[1240094]: Successfully activated service 'org.a11y.atspi.Registry' > SpiRegistry daemon is running with well-known name - org.a11y.atspi.Registry > /usr/bin/gedit > test_abstract_class (test_predicate.TestPredicate.test_abstract_class) ... ok > test_capitalization (test_predicate.TestPredicate.test_capitalization) ... ok > test_correct_equality (test_predicate.TestPredicate.test_correct_equality) > ... ok > test_incorrect_equality > (test_predicate.TestPredicate.test_incorrect_equality) ... ok > test_predicates_application > (test_predicate.TestPredicate.test_predicates_application) ... ok > test_predicates_button_named > (test_predicate.TestPredicate.test_predicates_button_named) ... ok > test_predicates_dialog_named > (test_predicate.TestPredicate.test_predicates_dialog_named) ... ok > test_predicates_generic_by_description > (test_predicate.TestPredicate.test_predicates_generic_by_description) ... ok > test_predicates_generic_by_label > (test_predicate.TestPredicate.test_predicates_generic_by_label) ... ok > test_predicates_generic_by_name > (test_predicate.TestPredicate.test_predicates_generic_by_name) ... ok > test_predicates_generic_by_roleName > (test_predicate.TestPredicate.test_predicates_generic_by_roleName) ... ok > test_predicates_labelled_as > (test_predicate.TestPredicate.test_predicates_labelled_as) ... ok > test_predicates_menu_item_named > (test_predicate.TestPredicate.test_predicates_menu_item_named) ... ok > test_predicates_menu_named > (test_predicate.TestPredicate.test_predicates_menu_named) ... ok > test_predicates_named (test_predicate.TestPredicate.test_predicates_named) > ... ok > test_predicates_page_tab_named > (test_predicate.TestPredicate.test_predicates_page_tab_named) ... ok > test_predicates_text_entry_named > (test_predicate.TestPredicate.test_predicates_text_entry_named) ... ok > test_predicates_window (test_predicate.TestPredicate.test_predicates_window) > ... ok > test_predicates_window_named > (test_predicate.TestPredicate.test_predicates_window_named) ... ok > test_correct_error_if_log_dir_does_not_exist > (test_logging.TestLogging.test_correct_error_if_log_dir_does_not_exist) ... ok > test_entryStamp_is_not_empty > (test_logging.TestLogging.test_entryStamp_is_not_empty) ... ok > test_force_to_file (test_logging.TestLogging.test_force_to_file) ... ok > test_no_new_line_to_both_file_and_stdout > (test_logging.Te
Bug#1078370: checkstyle: FTBFS: [WARNING] Failed to retrieve plugin descriptor for org.pitest:pitest-maven:1.4.9
Source: checkstyle Version: 8.36.1-1 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240809 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > make[1]: Entering directory '/<>' > dh_auto_build > /usr/lib/jvm/default-java/bin/java -noverify -cp > /usr/share/maven/boot/plexus-classworlds-2.x.jar > -Dmaven.home=/usr/share/maven > -Dmaven.multiModuleProjectDirectory=/<> > -Dclassworlds.conf=/etc/maven/m2-debian.conf > -Dproperties.file.manual=/<>/debian/maven.properties > org.codehaus.plexus.classworlds.launcher.Launcher > -s/etc/maven/settings-debian.xml -Ddebian.dir=/<>/debian > -Dmaven.repo.local=/<>/debian/maven-repo --batch-mode package > javadoc:jar javadoc:aggregate -DskipTests -Dnotimestamp=true -Dlocale=en_US > OpenJDK 64-Bit Server VM warning: Options -Xverify:none and -noverify were > deprecated in JDK 13 and will likely be removed in a future release. > [INFO] Scanning for projects... > [WARNING] The POM for > org.apache.maven.plugins:maven-checkstyle-plugin:jar:3.1.1 is missing, no > dependency information available > [WARNING] Failed to retrieve plugin descriptor for > org.apache.maven.plugins:maven-checkstyle-plugin:3.1.1: Plugin > org.apache.maven.plugins:maven-checkstyle-plugin:3.1.1 or one of its > dependencies could not be resolved: Cannot access nexus-codehaus-snapshot > (https://oss.sonatype.org/content/repositories/codehaus-snapshots/) in > offline mode and the artifact > org.apache.maven.plugins:maven-checkstyle-plugin:jar:3.1.1 has not been > downloaded from it before. > [WARNING] The POM for org.apache.maven.plugins:maven-install-plugin:jar:2.4 > is missing, no dependency information available > [WARNING] Failed to retrieve plugin descriptor for > org.apache.maven.plugins:maven-install-plugin:2.4: Plugin > org.apache.maven.plugins:maven-install-plugin:2.4 or one of its dependencies > could not be resolved: Cannot access nexus-codehaus-snapshot > (https://oss.sonatype.org/content/repositories/codehaus-snapshots/) in > offline mode and the artifact > org.apache.maven.plugins:maven-install-plugin:jar:2.4 has not been downloaded > from it before. > [WARNING] The POM for org.apache.maven.plugins:maven-deploy-plugin:jar:2.7 is > missing, no dependency information available > [WARNING] Failed to retrieve plugin descriptor for > org.apache.maven.plugins:maven-deploy-plugin:2.7: Plugin > org.apache.maven.plugins:maven-deploy-plugin:2.7 or one of its dependencies > could not be resolved: Cannot access nexus-codehaus-snapshot > (https://oss.sonatype.org/content/repositories/codehaus-snapshots/) in > offline mode and the artifact > org.apache.maven.plugins:maven-deploy-plugin:jar:2.7 has not been downloaded > from it before. > [WARNING] The POM for > org.apache.maven.plugins:maven-assembly-plugin:jar:3.3.0 is missing, no > dependency information available > [WARNING] Failed to retrieve plugin descriptor for > org.apache.maven.plugins:maven-assembly-plugin:3.3.0: Plugin > org.apache.maven.plugins:maven-assembly-plugin:3.3.0 or one of its > dependencies could not be resolved: Cannot access nexus-codehaus-snapshot > (https://oss.sonatype.org/content/repositories/codehaus-snapshots/) in > offline mode and the artifact > org.apache.maven.plugins:maven-assembly-plugin:jar:3.3.0 has not been > downloaded from it before. > [WARNING] The POM for > org.apache.maven.plugins:maven-dependency-plugin:jar:3.1.2 is missing, no > dependency information available > [WARNING] Failed to retrieve plugin descriptor for > org.apache.maven.plugins:maven-dependency-plugin:3.1.2: Plugin > org.apache.maven.plugins:maven-dependency-plugin:3.1.2 or one of its > dependencies could not be resolved: Cannot access nexus-codehaus-snapshot > (https://oss.sonatype.org/content/repositories/codehaus-snapshots/) in > offline mode and the artifact > org.apache.maven.plugins:maven-dependency-plugin:jar:3.1.2 has not been > downloaded from it before. > [WARNING] The POM for org.apache.maven.plugins:maven-release-plugin:jar:2.1 > is missing, no dependency information available > [WARNING] Failed to retrieve plugin descriptor for > org.apache.maven.plugins:maven-release-plugin:2.1: Plugin > org.apache.maven.plugins:maven-release-plugin:2.1 or one of its dependencies > could not be resolved: Cannot access nexus-codehaus-snapshot > (https://oss.sonatype.org/content/repositories/codehaus-snapshots/) in > offline mode and the artifact > org.apache.maven.plugins:maven-release-plugin:jar:2.1 has not been downloaded > from it before. > [WARNING] The POM for org.codehaus.mojo:sonar-maven-plugin:jar:3.7.0.1746 is > missing, no dependency information available > [WARNING] Failed to retrieve plugin descriptor for > org.codehaus.mojo:sonar-maven-plugin:3.7.0.1746: Plugin > org.codehaus.mojo:sonar-maven-plugin:3.7.0.1746 or one of its dependencies > co
Bug#1078367: python-jenkins: FTBFS: ModuleNotFoundError: No module named 'six'
Source: python-jenkins Version: 1.4.0-4 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240809 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > make[1]: Entering directory '/<>' > make[1]: pyversions: No such file or directory > py3versions: no X-Python3-Version in control file, using supported versions > pkgos-dh_auto_install --no-py2 > + PKGOS_IN_TMP=no > + echo WARNING: --no-py2 is deprecated and always on. > WARNING: --no-py2 is deprecated and always on. > + shift > + dpkg-parsechangelog -SSource > + SRC_PKG_NAME=python-jenkins > + echo python-jenkins > + sed s/python-// > + PY_MODULE_NAME=jenkins > + py3versions -vr > + PYTHON3S=3.12 > + [ no = yes ] > + TARGET_DIR=python3-jenkins > + pwd > + python3.12 setup.py install --install-layout=deb --root > /<>/debian/python3-jenkins > /usr/lib/python3/dist-packages/setuptools/dist.py:476: > SetuptoolsDeprecationWarning: Invalid dash-separated options > !! > > > > Usage of dash-separated 'description-file' will not be supported in > future > versions. Please use the underscore name 'description_file' instead. > > By 2024-Sep-26, you need to update your project and remove deprecated > calls > or your builds will no longer be supported. > > See > https://setuptools.pypa.io/en/latest/userguide/declarative_config.html for > details. > > > > !! > opt = self.warn_dash_deprecation(opt, section) > /usr/lib/python3/dist-packages/setuptools/dist.py:476: > SetuptoolsDeprecationWarning: Invalid dash-separated options > !! > > > > Usage of dash-separated 'home-page' will not be supported in future > versions. Please use the underscore name 'home_page' instead. > > By 2024-Sep-26, you need to update your project and remove deprecated > calls > or your builds will no longer be supported. > > See > https://setuptools.pypa.io/en/latest/userguide/declarative_config.html for > details. > > > > !! > opt = self.warn_dash_deprecation(opt, section) > /usr/lib/python3/dist-packages/setuptools/__init__.py:80: > _DeprecatedInstaller: setuptools.installer and fetch_build_eggs are > deprecated. > !! > > > > Requirements should be satisfied by a PEP 517 installer. > If you are using pip, you can try `pip install --use-pep517`. > > > > !! > dist.fetch_build_eggs(dist.setup_requires) > /usr/lib/python3/dist-packages/setuptools/command/develop.py:42: > EasyInstallDeprecationWarning: easy_install command is deprecated. > !! > > > > Please avoid running ``setup.py`` and ``easy_install``. > Instead, use pypa/build, pypa/installer or other > standards-based tools. > > See https://github.com/pypa/setuptools/issues/917 for details. > > > > !! > easy_install.initialize_options(self) > /usr/lib/python3/dist-packages/setuptools/_distutils/cmd.py:66: > SetuptoolsDeprecationWarning: setup.py install is deprecated. > !! > > > > Please avoid running ``setup.py`` directly. > Instead, use pypa/build, pypa/installer or other > standards-based tools. > > See https://blog.ganssle.io/articles/2021/10/setup-py-deprecated.html > for details. > > > > !! > self.initialize_options() > /usr/lib/python3/dist-packages/setuptools/dist.py:476: > SetuptoolsDeprecationWarning: Invalid dash-separated options > !! > > > > Usage of dash-separated 'description-file' will not be supported in > future > versions. Please use the underscore name 'description_file' instead. > > By 2024-Sep-26, you need to update your project and remove deprecated > calls > or your builds will no longer be supported. > > See > https://setuptools.pypa.io/en/latest/userguide/declarative_config.html for > details. > >
Bug#1078368: schleuder-gitlab-ticketing: FTBFS: ERROR: Test "ruby3.1" failed: /usr/lib/ruby/vendor_ruby/rubygems/specification.rb:1477:in `rescue in block in activate_dependencies': Could not find 'sq
Source: schleuder-gitlab-ticketing Version: 1.0.0-4 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240809 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > /usr/lib/ruby/vendor_ruby/rubygems/specification.rb:1477:in `rescue in block > in activate_dependencies': Could not find 'sqlite3' (~> 1.4.2) among 132 > total gem(s) (Gem::MissingSpecError) > Checked in > 'GEM_PATH=/<>/debian/schleuder-gitlab-ticketing/usr/share/rubygems-integration/all:/<>/debian/.debhelper/generated/_source/home/.local/share/gem/ruby/3.1.0:/var/lib/gems/3.1.0:/usr/local/lib/ruby/gems/3.1.0:/usr/lib/ruby/gems/3.1.0:/usr/lib/x86_64-linux-gnu/ruby/gems/3.1.0:/usr/share/rubygems-integration/3.1.0:/usr/share/rubygems-integration/all:/usr/lib/x86_64-linux-gnu/rubygems-integration/3.1.0' > at: > /usr/share/rubygems-integration/all/specifications/schleuder-4.0.3.gemspec, > execute `gem env` for more information > from /usr/lib/ruby/vendor_ruby/rubygems/specification.rb:1474:in `block > in activate_dependencies' > from /usr/lib/ruby/vendor_ruby/rubygems/specification.rb:1463:in `each' > from /usr/lib/ruby/vendor_ruby/rubygems/specification.rb:1463:in > `activate_dependencies' > from /usr/lib/ruby/vendor_ruby/rubygems/specification.rb:1445:in > `activate' > from /usr/lib/ruby/vendor_ruby/rubygems/specification.rb:1481:in `block > in activate_dependencies' > from /usr/lib/ruby/vendor_ruby/rubygems/specification.rb:1463:in `each' > from /usr/lib/ruby/vendor_ruby/rubygems/specification.rb:1463:in > `activate_dependencies' > from /usr/lib/ruby/vendor_ruby/rubygems/specification.rb:1445:in > `activate' > from /usr/lib/ruby/vendor_ruby/rubygems/core_ext/kernel_gem.rb:63:in > `block in gem' > from /usr/lib/ruby/vendor_ruby/rubygems/core_ext/kernel_gem.rb:63:in > `synchronize' > from /usr/lib/ruby/vendor_ruby/rubygems/core_ext/kernel_gem.rb:63:in > `gem' > from -e:1:in `' > /usr/lib/ruby/vendor_ruby/rubygems/dependency.rb:317:in `to_specs': Could not > find 'sqlite3' (~> 1.4.2) - did find: [sqlite3-1.6.9] > (Gem::MissingSpecVersionError) > Checked in > 'GEM_PATH=/<>/debian/schleuder-gitlab-ticketing/usr/share/rubygems-integration/all:/<>/debian/.debhelper/generated/_source/home/.local/share/gem/ruby/3.1.0:/var/lib/gems/3.1.0:/usr/local/lib/ruby/gems/3.1.0:/usr/lib/ruby/gems/3.1.0:/usr/lib/x86_64-linux-gnu/ruby/gems/3.1.0:/usr/share/rubygems-integration/3.1.0:/usr/share/rubygems-integration/all:/usr/lib/x86_64-linux-gnu/rubygems-integration/3.1.0' > , execute `gem env` for more information > from /usr/lib/ruby/vendor_ruby/rubygems/specification.rb:1475:in `block > in activate_dependencies' > from /usr/lib/ruby/vendor_ruby/rubygems/specification.rb:1463:in `each' > from /usr/lib/ruby/vendor_ruby/rubygems/specification.rb:1463:in > `activate_dependencies' > from /usr/lib/ruby/vendor_ruby/rubygems/specification.rb:1445:in > `activate' > from /usr/lib/ruby/vendor_ruby/rubygems/specification.rb:1481:in `block > in activate_dependencies' > from /usr/lib/ruby/vendor_ruby/rubygems/specification.rb:1463:in `each' > from /usr/lib/ruby/vendor_ruby/rubygems/specification.rb:1463:in > `activate_dependencies' > from /usr/lib/ruby/vendor_ruby/rubygems/specification.rb:1445:in > `activate' > from /usr/lib/ruby/vendor_ruby/rubygems/core_ext/kernel_gem.rb:63:in > `block in gem' > from /usr/lib/ruby/vendor_ruby/rubygems/core_ext/kernel_gem.rb:63:in > `synchronize' > from /usr/lib/ruby/vendor_ruby/rubygems/core_ext/kernel_gem.rb:63:in > `gem' > from -e:1:in `' > abbrev (default: 0.1.0) > activemodel (6.1.7.3) > activerecord (6.1.7.3) > activesupport (6.1.7.3) > base64 (default: 0.1.1) > bcrypt (3.1.18) > benchmark (default: 0.2.0) > bigdecimal (default: 3.1.1) > bundler (default: 2.3.7) > cgi (default: 0.3.5) > charlock_holmes (0.7.7) > concurrent-ruby (1.2.3) > concurrent-ruby-edge (0.7.0) > csv (default: 3.2.2) > daemons (1.4.1) > date (default: 3.2.2) > debug (1.4.0) > delegate (default: 0.2.0) > did_you_mean (default: 1.6.1) > diff-lcs (1.5.1) > digest (default: 3.1.0) > drb (default: 2.1.0) > english (default: 0.7.1) > erb (default: 2.2.3) > error_highlight (default: 0.3.0) > etc (default: 1.3.0) > eventmachine (1.3.0.dev.1) > fcntl (default: 1.0.1) > fiddle (default: 1.1.0) > fileutils (default: 1.6.0) > find (default: 0.1.1) > forwardable (default: 1.3.2) > getoptlong (default: 0.1.1) > gitlab (4.17.0) > gpgme (2.0.23) > httparty (0.21.0) > i18n (1.14.5) > io-console (default: 0.5.11) > io-nonblock (default: 0.1.0) > io-wait (default: 0.2.1) > ipaddr (default: 1.2.4) > irb (default: 1.4.1) > json (default: 2.6.1) > logger (default: 1.5.0) > mail (2.8.1) > mail-gpg (0.4.4) > matrix (0.4.2) > mini_mime (1.1.5) > mini_portile2 (2.8.5) > minitest (5.15.0) > multi_jso
Bug#1078365: geophar: FTBFS: TypeError: Fonction(variable = x, expression = x^2+3x-1, ensemble = ]-oo;+oo[) should be of type (, , ,
Source: geophar Version: 18.10+dfsg1-4 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240809 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > make[1]: Entering directory '/<>' > export QT_QPA_PLATFORM=offscreen; \ > export QTWEBENGINE_DISABLE_SANDBOX=1; \ > export MPLCONFIGDIR=.pybuild/tmp; \ > ln -s ../../../../tools wxgeometrie/modules/tablatex/tests/; \ > ln -s ../../../../tools wxgeometrie/modules/probabilites/tests/; \ > ln -s ../../../tools wxgeometrie/geolib/tests/; \ > ln -s ../../../tools wxgeometrie/mathlib/tests/; \ > python3 -m unittest discover -v --pattern="test_*.py" > /<>/wxgeometrie/geolib/tests/test_meta.py:7: > SymPyDeprecationWarning: > > The sympy.utilities.pytest submodule is deprecated. Use sympy.testing.pytest > instead. > > See > https://docs.sympy.org/latest/explanation/active-deprecations.html#deprecated-sympy-utilities-submodules > for details. > > This has been deprecated since SymPy version 1.6. It > will be removed in a future version of SymPy. > > from sympy.utilities.pytest import XFAIL > /<>/wxgeometrie/mathlib/tests/test_interprete.py:73: > SyntaxWarning: invalid escape sequence '\i' > self.assert_resultat('limit(x^2-x, oo)', '+oo', '+\infty') > /<>/wxgeometrie/mathlib/tests/test_interprete.py:93: > SyntaxWarning: invalid escape sequence '\l' > '\left(x + 1\\right)^{2} \\mathrm{e}^{x}') > /<>/wxgeometrie/mathlib/tests/test_interprete.py:155: > SyntaxWarning: invalid escape sequence '\i' > r, l = i.evaluer("resoudre(2+\i=\dfrac{2\i z}{z-1}") > /<>/wxgeometrie/mathlib/tests/test_interprete.py:331: > SyntaxWarning: invalid escape sequence '\i' > i.evaluer("-1+\i\sqrt{3}") > /<>/wxgeometrie/mathlib/tests/test_interprete.py:473: > SyntaxWarning: invalid escape sequence '\*' > self.assertTrue(re.match("5,[0-9]+\*10\^\-16$", r)) > /<>/wxgeometrie/mathlib/tests/test_parsers.py:170: > SyntaxWarning: invalid escape sequence '\g' > self.assert_latex("x\ge1\le3", "x>=1<=3") > /<>/wxgeometrie/mathlib/tests/test_parsers.py:191: > SyntaxWarning: invalid escape sequence '\(' > self.assert_match('\(' + NBR_SIGNE, "(-2.3") > QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-user42' > /<>/wxgeometrie/API/filtres.py:68: SyntaxWarning: invalid escape > sequence '\w' > figures[i] = > re.sub("(?PIntersection_droite_cercle[(])(?P[a-zA-Z_]\w*)[,](?P[A-Za-z_]\w*)[,](?P[a-zA-Z_]\w*)", > corrige1, figures[i]) > /<>/wxgeometrie/API/filtres.py:84: SyntaxWarning: invalid escape > sequence '\w' > figures[i] = > re.sub("(?PDroite_vectorielle[(])(?P[a-zA-Z_]\w*)[,](?P[A-Za-z_]\w*)", > corrige2, figures[i]) > /<>/wxgeometrie/modules/exercice_inequations_produits/__init__.py:230: > SyntaxWarning: invalid escape sequence '\(' > if not re.match('-?(%s)?x?(\(.+\)(\^%s)?)?$' % (NBR, NBR), expression): > /<>/wxgeometrie/modules/exercice_tableau_signes/__init__.py:112: > SyntaxWarning: invalid escape sequence '\(' > if not re.match('-?(%s)?x?(\(.+\)(\^%s)?)?$' % (NBR, NBR), expression): > /<>/wxgeometrie/modules/tablatex/tabvar.py:281: SyntaxWarning: > invalid escape sequence '\,' > ligne_variable = '\,\,%s\,\,' % ligne_variable > /<>/wxgeometrie/modules/tablatex/tests/test_tabsign.py:140: > SyntaxWarning: invalid escape sequence '\d' > s = '\dfrac{3x-2}{(x-1)^2}' > /<>/wxgeometrie/modules/tablatex/tests/test_tabsign.py:161: > SyntaxWarning: invalid escape sequence '\d' > s = "g(x)=\dfrac{-x+1}{\e^{x}}" > /<>/wxgeometrie/modules/tablatex/tests/test_tabsign.py:181: > SyntaxWarning: invalid escape sequence '\e' > s= "f'(x)=1-\e^{-x+2}" > /<>/wxgeometrie/modules/tablatex/tests/test_tabsign.py:279: > SyntaxWarning: invalid escape sequence '\e' > s = "(1 - x)\e^{ 2x}" > /<>/wxgeometrie/modules/tablatex/tests/test_tabvar.py:212: > SyntaxWarning: invalid escape sequence '\e' > s = "$f(x)=(2x+3)\e^x$ sur $[0\,;\,+\oo[$" > /<>/wxgeometrie/modules/tablatex/tests/test_tabvar.py:288: > SyntaxWarning: invalid escape sequence '\e' > s = 'f(x) = (x -4)\e^{-0,25x+5} sur [4;20]' > /<>/wxgeometrie/modules/traceur/suites.py:139: SyntaxWarning: > invalid escape sequence '\ ' > d.label("$y\ =\ x$") > test_Angle (wxgeometrie.geolib.tests.test_angles.GeolibTest.test_Angle) ... ok > test_Angle_libre > (wxgeometrie.geolib.tests.test_angles.GeolibTest.test_Angle_libre) ... FAIL > test_Angle_oriente > (wxgeometrie.geolib.tests.test_angles.GeolibTest.test_Angle_oriente) ... ok > test_Angle_vectoriel > (wxgeometrie.geolib.tests.test_angles.GeolibTest.test_Angle_vectoriel) ... ok > test_Secteur_angulaire > (wxgeometrie.geolib.tests.test_angles.GeolibTest.test_Secteur_angulaire) ... > ok > test_contexte_degre > (wxgeometrie.geolib.tests.test_angles.GeolibTest.test_contexte_degre) ... ok > test_info (wxgeometrie.geolib.tests.test_angles.GeolibTest.test_info) ... ok > test_Segment > (wxgeometrie.geolib.tests.te
Bug#1078366: hdf-eos5: FTBFS: ld: cannot find -lgctp: No such file or directory
Source: hdf-eos5 Version: 2:2.0-4 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240809 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > /bin/bash ../libtool --tag=CC --mode=link /usr/bin/h5cc -g -O2 > -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. > -fstack-protector-strong -fstack-clash-protection -Wformat > -Werror=format-security -fcf-protection -D_HDFEOS5_THREADSAFE -Df2cFortran > -Wl,-z,relro -lpthread -L/usr/lib/x86_64-linux-gnu -shrext .so -o > libhe5_hdfeos.la -rpath /usr/lib/x86_64-linux-gnu EHapi.lo GDapi.lo PTapi.lo > SWapi.lo TSapi.lo ZAapi.lo HE5common.lo -lgctp -lhdf5_hl -lhdf5 -lm > libtool: link: /usr/bin/h5cc -shared -fPIC -DPIC .libs/EHapi.o > .libs/GDapi.o .libs/PTapi.o .libs/SWapi.o .libs/TSapi.o .libs/ZAapi.o > .libs/HE5common.o -lpthread -L/usr/lib/x86_64-linux-gnu -lgctp -lhdf5_hl > -lhdf5 -lm -g -O2 -fstack-protector-strong -Wl,-z -Wl,relro -Wl,-soname > -Wl,libhe5_hdfeos.so.0 -o .libs/libhe5_hdfeos.so.0.0.0 > /usr/bin/ld: cannot find -lgctp: No such file or directory > collect2: error: ld returned 1 exit status The full build log is available from: http://qa-logs.debian.net/2024/08/09/hdf-eos5_2.0-4_unstable.log All bugs filed during this archive rebuild are listed at: https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240809;users=lu...@debian.org or: https://udd.debian.org/bugs/?release=na&merged=ign&fnewerval=7&flastmodval=7&fusertag=only&fusertagtag=ftbfs-20240809&fusertaguser=lu...@debian.org&allbugs=1&cseverity=1&ctags=1&caffected=1#results A list of current common problems and possible solutions is available at http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute! If you reassign this bug to another package, please mark it as 'affects'-ing this package. See https://www.debian.org/Bugs/server-control#affects If you fail to reproduce this, please provide a build log and diff it with mine so that we can identify if something relevant changed in the meantime.
Bug#1078363: systemfixtures: FTBFS: ModuleNotFoundError: No module named 'six'
Source: systemfixtures Version: 0.6.7-1 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240809 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > debian/rules binary > dh binary --buildsystem=pybuild >dh_update_autotools_config -O--buildsystem=pybuild >dh_autoreconf -O--buildsystem=pybuild >dh_auto_configure -O--buildsystem=pybuild > I: pybuild base:311: python3.12 setup.py config > /usr/lib/python3/dist-packages/setuptools/dist.py:476: > SetuptoolsDeprecationWarning: Invalid dash-separated options > !! > > > > Usage of dash-separated 'home-page' will not be supported in future > versions. Please use the underscore name 'home_page' instead. > > By 2024-Sep-26, you need to update your project and remove deprecated > calls > or your builds will no longer be supported. > > See > https://setuptools.pypa.io/en/latest/userguide/declarative_config.html for > details. > > > > !! > opt = self.warn_dash_deprecation(opt, section) > /usr/lib/python3/dist-packages/setuptools/dist.py:476: > SetuptoolsDeprecationWarning: Invalid dash-separated options > !! > > > > Usage of dash-separated 'description-file' will not be supported in > future > versions. Please use the underscore name 'description_file' instead. > > By 2024-Sep-26, you need to update your project and remove deprecated > calls > or your builds will no longer be supported. > > See > https://setuptools.pypa.io/en/latest/userguide/declarative_config.html for > details. > > > > !! > opt = self.warn_dash_deprecation(opt, section) > /usr/lib/python3/dist-packages/setuptools/dist.py:476: > SetuptoolsDeprecationWarning: Invalid dash-separated options > !! > > > > Usage of dash-separated 'author-email' will not be supported in future > versions. Please use the underscore name 'author_email' instead. > > By 2024-Sep-26, you need to update your project and remove deprecated > calls > or your builds will no longer be supported. > > See > https://setuptools.pypa.io/en/latest/userguide/declarative_config.html for > details. > > > > !! > opt = self.warn_dash_deprecation(opt, section) > /usr/lib/python3/dist-packages/setuptools/__init__.py:80: > _DeprecatedInstaller: setuptools.installer and fetch_build_eggs are > deprecated. > !! > > > > Requirements should be satisfied by a PEP 517 installer. > If you are using pip, you can try `pip install --use-pep517`. > > > > !! > dist.fetch_build_eggs(dist.setup_requires) > WARNING: The wheel package is not available. > /usr/lib/python3/dist-packages/setuptools/command/develop.py:42: > EasyInstallDeprecationWarning: easy_install command is deprecated. > !! > > > > Please avoid running ``setup.py`` and ``easy_install``. > Instead, use pypa/build, pypa/installer or other > standards-based tools. > > See https://github.com/pypa/setuptools/issues/917 for details. > > > > !! > easy_install.initialize_options(self) > /usr/lib/python3/dist-packages/setuptools/_distutils/cmd.py:66: > SetuptoolsDeprecationWarning: setup.py install is deprecated. > !! > > > > Please avoid running ``setup.py`` directly. > Instead, use pypa/build, pypa/installer or other > standards-based tools. > > See https://blog.ganssle.io/articles/2021/10/setup-py-deprecated.html > for details. > > > > !! > self.initialize_options() > /usr/lib/python3/dist-packages/setuptools/dist.py:476: > SetuptoolsDeprecationWarning: Invalid dash-separated options > !! > > > > Usage of dash-separated 'home-page' will not be supported in fut
Bug#1078362: python-measurement: FTBFS: AssertionError: 294.261111111111 != 294.261111100000 within 7 places (1.11110693978844e-8 difference)
Source: python-measurement Version: 3.2.2-2 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240809 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > make[1]: Entering directory '/<>' > dh_auto_build > I: pybuild plugin_pyproject:129: Building wheel for python3.12 with "build" > module > I: pybuild base:311: python3.12 -m build --skip-dependency-check > --no-isolation --wheel --outdir > /<>/.pybuild/cpython3_3.12_measurement > * Building wheel... > Successfully built measurement-3.2.2-py3-none-any.whl > I: pybuild plugin_pyproject:144: Unpacking wheel built for python3.12 with > "installer" module > make[1]: Leaving directory '/<>' >dh_auto_test -O--buildsystem=pybuild > I: pybuild base:311: cd > /<>/.pybuild/cpython3_3.12_measurement/build; python3.12 -m > unittest discover -v > test_area_sq_km (tests.test_distance.DistanceTest.test_area_sq_km) ... ok > test_attrib_conversion > (tests.test_distance.DistanceTest.test_attrib_conversion) ... ok > test_auto_si_attrs (tests.test_distance.DistanceTest.test_auto_si_attrs) ... > ok > test_auto_si_kwargs (tests.test_distance.DistanceTest.test_auto_si_kwargs) > ... ok > test_conversion_equivalence > (tests.test_distance.DistanceTest.test_conversion_equivalence) ... ok > test_identity_conversion > (tests.test_distance.DistanceTest.test_identity_conversion) ... ok > test_set_value (tests.test_distance.DistanceTest.test_set_value) ... ok > test_dietary_calories_kwarg > (tests.test_energy.EnergyTest.test_dietary_calories_kwarg) ... ok > test_abbreviations (tests.test_speed.SpeedTest.test_abbreviations) ... ok > test_addition (tests.test_speed.SpeedTest.test_addition) ... ok > test_aliases (tests.test_speed.SpeedTest.test_aliases) ... ok > test_attrconversion (tests.test_speed.SpeedTest.test_attrconversion) ... ok > test_attrconversion_nonstandard > (tests.test_speed.SpeedTest.test_attrconversion_nonstandard) ... ok > test_bool_false (tests.test_speed.SpeedTest.test_bool_false) ... ok > test_bool_true (tests.test_speed.SpeedTest.test_bool_true) ... ok > test_different_units_addition > (tests.test_speed.SpeedTest.test_different_units_addition) ... ok > test_div (tests.test_speed.SpeedTest.test_div) ... ok > test_equals (tests.test_speed.SpeedTest.test_equals) ... ok > test_iadd (tests.test_speed.SpeedTest.test_iadd) ... ok > test_idiv (tests.test_speed.SpeedTest.test_idiv) ... ok > test_imul (tests.test_speed.SpeedTest.test_imul) ... ok > test_isub (tests.test_speed.SpeedTest.test_isub) ... ok > test_lt (tests.test_speed.SpeedTest.test_lt) ... ok > test_mul (tests.test_speed.SpeedTest.test_mul) ... ok > test_set_unit (tests.test_speed.SpeedTest.test_set_unit) ... ok > test_sub (tests.test_speed.SpeedTest.test_sub) ... ok > test_conversion_to_non_si > (tests.test_temperature.TemperatureTest.test_conversion_to_non_si) ... ok > test_ensure_that_we_always_output_float > (tests.test_temperature.TemperatureTest.test_ensure_that_we_always_output_float) > ... ok > test_sanity (tests.test_temperature.TemperatureTest.test_sanity) ... FAIL > test_guess_distance (tests.test_utils.UtilsTest.test_guess_distance) ... ok > test_guess_temperature (tests.test_utils.UtilsTest.test_guess_temperature) > ... ok > test_guess_weight (tests.test_utils.UtilsTest.test_guess_weight) ... ok > test_sub_one_base_si_measure > (tests.test_volume.VolumeTest.test_sub_one_base_si_measure) ... ok > > == > FAIL: test_sanity (tests.test_temperature.TemperatureTest.test_sanity) > -- > Traceback (most recent call last): > File > "/<>/.pybuild/cpython3_3.12_measurement/build/tests/test_temperature.py", > line 12, in test_sanity > self.assertAlmostEqual( > AssertionError: 294.2611 != 294.2610 within 7 places > (1.0693978844e-8 difference) > > -- > Ran 33 tests in 0.018s > > FAILED (failures=1) > E: pybuild pybuild:389: test: plugin pyproject failed with: exit code=1: cd > /<>/.pybuild/cpython3_3.12_measurement/build; python3.12 -m > unittest discover -v > dh_auto_test: error: pybuild --test -i python{version} -p 3.12 returned exit > code 13 The full build log is available from: http://qa-logs.debian.net/2024/08/09/python-measurement_3.2.2-2_unstable.log All bugs filed during this archive rebuild are listed at: https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240809;users=lu...@debian.org or: https://udd.debian.org/bugs/?release=na&merged=ign&fnewerval=7&flastmodval=7&fusertag=only&fusertagtag=ftbfs-20240809&fusertaguser=lu...@debian.org&allbugs=1&cseverity=1&ctags=1&caffected=1#results A list of current common problems and possible solutions is available at http://wiki.debian.org/qa.debian.org/FTBFS . You're
Bug#1078361: glib-networking: FTBFS: dh_auto_test: error: cd obj-x86_64-linux-gnu && DEB_PYTHON_INSTALL_LAYOUT=deb LC_ALL=C.UTF-8 MESON_TESTTHREADS=8 meson test --timeout-multiplier 3 returned exit co
Source: glib-networking Version: 2.80.0-1 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240809 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > make[1]: Entering directory '/<>' > dh_auto_test -- --timeout-multiplier 3 > cd obj-x86_64-linux-gnu && DEB_PYTHON_INSTALL_LAYOUT=deb LC_ALL=C.UTF-8 > MESON_TESTTHREADS=8 meson test --timeout-multiplier 3 > ninja: Entering directory `/<>/obj-x86_64-linux-gnu' > ninja: no work to do. > 1/6 gnomeOK 0.03s > 2/6 file-database-gnutls OK 0.05s > 3/6 environment-libproxy OK 0.10s > 4/6 certificate-gnutls OK 0.11s > 5/6 connection-gnutls-tls1.2 FAIL0.18s killed by signal 6 > SIGABRT > >>> MALLOC_PERTURB_=150 > >>> G_TEST_BUILDDIR=/<>/obj-x86_64-linux-gnu/tls/tests > >>> G_TLS_GNUTLS_PRIORITY='NORMAL:%COMPAT:!VERS-TLS1.3' > >>> UBSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 > >>> ASAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1 > >>> GIO_MODULE_DIR=/<>/obj-x86_64-linux-gnu/tls/gnutls > >>> G_TEST_SRCDIR=/<>/tls/tests > >>> MSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 > >>> MESON_TEST_ITERATION=1 > >>> /<>/obj-x86_64-linux-gnu/tls/tests/connection-gnutls > > 6/6 connection-gnutlsOK 3.27s > > Ok: 5 > Expected Fail: 0 > Fail: 1 > Unexpected Pass:0 > Skipped:0 > Timeout:0 > > Full log written to > /<>/obj-x86_64-linux-gnu/meson-logs/testlog.txt > cd obj-x86_64-linux-gnu && tail -v -n \+0 meson-logs/testlog.txt > ==> meson-logs/testlog.txt <== > Log of Meson test suite run on 2024-08-09T18:37:40.775838 > > Inherited environment: SCHROOT_GID=1001 DEB_HOST_MULTIARCH=x86_64-linux-gnu > DEB_HOST_GNU_SYSTEM=linux-gnu DEB_BUILD_GNU_TYPE=x86_64-linux-gnu > DEB_LDFLAGS_MAINT_APPEND='-Wl,-O1 -Wl,-z,defs' DEB_TARGET_ARCH_LIBC=gnu > FFLAGS='-g -O2 -ffile-prefix-map=/<>=. -fstack-protector-strong > -fstack-clash-protection -fcf-protection' DEB_BUILD_ARCH_ENDIAN=little > DEB_BUILD_GNU_SYSTEM=linux-gnu CFLAGS_FOR_BUILD='-g -O2 > -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. > -fstack-protector-strong -fstack-clash-protection -Wformat > -Werror=format-security -fcf-protection' OBJCXXFLAGS_FOR_BUILD='-g -O2 > -ffile-prefix-map=/<>=. -fstack-protector-strong > -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection' > DEB_BUILD_ARCH_BITS=64 DEB_BUILD_OPTIONS=parallel=8 DEB_HOST_ARCH=amd64 > LDFLAGS_FOR_BUILD='-Wl,-z,relro -Wl,-z,now' DEB_TARGET_ARCH_ENDIAN=little > SOURCE_DATE_EPOCH=1711580343 OBJCFLAGS_FOR_BUILD='-g -O2 > -ffile-prefix-map=/<>=. -fstack-protector-strong > -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection' > OBJCXXFLAGS='-g -O2 -ffile-prefix-map=/<>=. > -fstack-protector-strong -fstack-clash-protection -Wformat > -Werror=format-security -fcf-protection' DEB_HOST_ARCH_BITS=64 LANG=C.UTF-8 > MAKEFLAGS=w SCHROOT_GROUP=user42 DEB_TARGET_ARCH=amd64 DH_INTERNAL_OPTIONS='' > DEB_HOST_GNU_CPU=x86_64 DEB_BUILD_ARCH_LIBC=gnu MFLAGS=-w > DEB_TARGET_ARCH_BITS=64 CXXFLAGS_FOR_BUILD='-g -O2 > -ffile-prefix-map=/<>=. -fstack-protector-strong > -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection' > ASFLAGS='' DEB_BUILD_ARCH_CPU=amd64 LC_COLLATE=C.UTF-8 > SCHROOT_ALIAS_NAME=unstable DEB_HOST_ARCH_OS=linux SHELL=/bin/sh FCFLAGS='-g > -O2 -ffile-prefix-map=/<>=. -fstack-protector-strong > -fstack-clash-protection -fcf-protection' DEB_HOST_ARCH_CPU=amd64 > SCHROOT_USER=user42 > PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games > DEB_BUILD_ARCH_ABI=base CPPFLAGS_FOR_BUILD='-Wdate-time -D_FORTIFY_SOURCE=2' > DEB_BUILD_ARCH=amd64 FFLAGS_FOR_BUILD='-g -O2 > -ffile-prefix-map=/<>=. -fstack-protector-strong > -fstack-clash-protection -fcf-protection' DEB_HOST_ARCH_LIBC=gnu > SCHROOT_SESSION_ID=sid-amd64-sbuild-67613e0f-e51b-4770-8470-a23541e3b696 > DEB_TARGET_ARCH_CPU=amd64 DEB_HOST_GNU_TYPE=x86_64-linux-gnu > DEB_BUILD_ARCH_OS=linux FCFLAGS_FOR_BUILD='-g -O2 > -ffile-prefix-map=/<>=. -fstack-protector-strong > -fstack-clash-protection -fcf-protection' DFLAGS_FOR_BUILD=-frelease > LOGNAME=user42 CPPFLAGS='-Wdate-time -D_FORTIFY_SOURCE=2' > DEB_TARGET_MULTIARCH=x86_64-linux-gnu DEB_BUILD_GNU_CPU=x86_64 > DEB_TARGET_ARCH_OS=linux USER=user42 DEB_HOST_ARCH_ABI=base > DEB_BUILD_MULTIARCH=x86_64-linux-gnu LDFLAGS='-Wl,-z,relro -Wl,-z,now -Wl,-O1 > -Wl,-z,defs' DEB_TARGET_GNU_TYPE=x86_64-linux-gnu DEB_TARGET_ARCH_ABI=base > CFLAGS='-g -O2 -Werror=implicit-function-declaration > -ffile-prefix-map=/<>=. -fstack-protector-strong > -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection' > SCHROOT_UID=
Bug#1078359: mutter: FTBFS: dh_auto_test: error: cd obj-x86_64-linux-gnu && DEB_PYTHON_INSTALL_LAYOUT=deb LC_ALL=C.UTF-8 MESON_TESTTHREADS=8 meson test -C /<>/obj-x86_64-linux-gnu --no-re
Source: mutter Version: 46.4-1 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240809 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > == 151/185 === > test: mutter:core+mutter/stacking / closed-transient-no-default-focus > start time: 18:15:21 > duration: 1.79s > result: (exit status 251 or signal 123 SIGinvalid) > command: > LD_LIBRARY_PATH=/<>/obj-x86_64-linux-gnu/cogl/cogl-pango:/<>/obj-x86_64-linux-gnu/mtk/mtk:/<>/obj-x86_64-linux-gnu/cogl/cogl:/<>/obj-x86_64-linux-gnu/src:/<>/obj-x86_64-linux-gnu/clutter/clutter:/<>/obj-x86_64-linux-gnu/src/tests > ASAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1 > XDG_CONFIG_HOME=/<>/obj-x86_64-linux-gnu/.config > GSETTINGS_SCHEMA_DIR=/<>/obj-x86_64-linux-gnu/src/tests:/<>/obj-x86_64-linux-gnu/data > G_TEST_BUILDDIR=/<>/obj-x86_64-linux-gnu > MUTTER_TEST_PLUGIN_PATH=/<>/obj-x86_64-linux-gnu/src/compositor/plugins/libdefault.so > MALLOC_PERTURB_=153 > UBSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 > G_TEST_SRCDIR=/<>/src > MSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 > MESON_TEST_ITERATION=1 /<>/src/tests/meta-dbus-runner.py -- > /<>/obj-x86_64-linux-gnu/src/tests/mutter-test-runner > /<>/obj-x86_64-linux-gnu/../src/tests/stacking/closed-transient-no-default-focus.metatest > --- output --- > Starting D-Bus daemons (session & system)... > Launching required services... > Starting mocked services... > Running test case... > TAP version 13 > # random seed: R02S2e6e5a73a010244e2b7c740d55fbd7ef > # GLib-GIO-DEBUG: _g_io_module_get_default: Found default implementation > memory (GMemorySettingsBackend) for ‘gsettings-backend’ > # libmutter-MESSAGE: Running Mutter Test (using mutter 46.4) as a Wayland > display server > # GLib-GIO-DEBUG: Using cross-namespace EXTERNAL authentication (this will > deadlock if server is GDBus < 2.73.3) > # libmutter-MESSAGE: Created surfaceless renderer without GPU > # GLib-GIO-DEBUG: _g_io_module_get_default: Found default implementation > local (GLocalVfs) for ‘gio-vfs’ > # libmutter-DEBUG: WL: loaded > libnvidia-egl-wayland.so.1:wl_eglstream_controller. > # libmutter-MESSAGE: Using public X11 display :512, (using :513 for managed > services) > # libmutter-MESSAGE: Using Wayland display name 'mutter-test-display' > Window manager warning: Failed to set environment variable > GNOME_SETUP_DISPLAY for gnome-session: > GDBus.Error:org.freedesktop.DBus.Error.NameHasNoOwner: Name > "org.gnome.SessionManager" does not exist > Window manager warning: Failed to set environment variable DISPLAY for > gnome-session: GDBus.Error:org.freedesktop.DBus.Error.NameHasNoOwner: Name > "org.gnome.SessionManager" does not exist > Window manager warning: Failed to set environment variable XAUTHORITY for > gnome-session: GDBus.Error:org.freedesktop.DBus.Error.NameHasNoOwner: Name > "org.gnome.SessionManager" does not exist > Window manager warning: Failed to set environment variable WAYLAND_DISPLAY > for gnome-session: GDBus.Error:org.freedesktop.DBus.Error.NameHasNoOwner: > Name "org.gnome.SessionManager" does not exist > # 1..1 > # libmutter-MESSAGE: Added virtual monitor Meta-0 > # mutter-test-runner-DEBUG: closed-transient-no-default-focus.metatest:1: > 'new_client 1 x11' > # libmutter-INFO: Acquired name org.gnome.Mutter.InputMapping > # libmutter-INFO: Acquired name org.gnome.Mutter.ServiceChannel > Xwayland glamor: GBM Wayland interfaces not available > Failed to initialize glamor, falling back to sw > # mutter-test-runner-DEBUG: closed-transient-no-default-focus.metatest:2: > 'create 1/1' > MESA: error: ZINK: vkCreateInstance failed (VK_ERROR_INCOMPATIBLE_DRIVER) > libEGL warning: egl: failed to create dri2 screen > # mutter-test-runner-DEBUG: closed-transient-no-default-focus.metatest:3: > 'accept_focus 1/1 false' > # mutter-test-runner-DEBUG: closed-transient-no-default-focus.metatest:4: > 'show 1/1' > # mutter-test-runner-DEBUG: closed-transient-no-default-focus.metatest:6: > 'create 1/2 csd' > *** BUG *** > In pixman_region32_init_rect: Invalid rectangle passed > Set a breakpoint on '_pixman_log_error' to debug > > *** BUG *** > In pixman_region32_init_rect: Invalid rectangle passed > Set a breakpoint on '_pixman_log_error' to debug > > Bail out! FATAL-CRITICAL: cogl_texture_2d_new_from_data: assertion 'data != > NULL' failed > (EE) failed to read Wayland events: Connection reset by peer > == The full build log is available from: http://qa-logs.debian.net/2024/08/09/mutter_46.4-1_unstable.log All bugs filed during this archive rebuild are listed at: https://bugs.debian.org/
Bug#1078358: thin: FTBFS: ERROR: Test "ruby3.1" failed: Failure/Error: expect{sleep 0.1 until File.exist?(subject.pid_file)}.to take_less_then(10)
Source: thin Version: 1.8.2-1 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240809 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > Failure/Error: expect{sleep 0.1 until File.exist?(subject.pid_file)}.to > take_less_then(10) >should take less then 10 sec to run > # ./spec/daemonizing_spec.rb:186:in `wait_for_server_to_start' > # ./spec/daemonizing_spec.rb:89:in `block (2 levels) in ' > > Finished in 24.52 seconds (files took 0.34361 seconds to load) > 224 examples, 1 failure > > Failed examples: > > rspec ./spec/daemonizing_spec.rb:81 # Daemonizing should kill process in pid > file > > /usr/bin/ruby3.1 > -I/usr/share/rubygems-integration/all/gems/rspec-support-3.13.1/lib:/usr/share/rubygems-integration/all/gems/rspec-core-3.13.0/lib > /usr/share/rubygems-integration/all/gems/rspec-core-3.13.0/exe/rspec > --pattern ./spec/\*\*/\*_spec.rb --exclude-pattern > ./spec/\{controllers/service_spec.rb,\*/\*_perf_spec.rb\} --format > documentation failed > ERROR: Test "ruby3.1" failed: The full build log is available from: http://qa-logs.debian.net/2024/08/09/thin_1.8.2-1_unstable.log All bugs filed during this archive rebuild are listed at: https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240809;users=lu...@debian.org or: https://udd.debian.org/bugs/?release=na&merged=ign&fnewerval=7&flastmodval=7&fusertag=only&fusertagtag=ftbfs-20240809&fusertaguser=lu...@debian.org&allbugs=1&cseverity=1&ctags=1&caffected=1#results A list of current common problems and possible solutions is available at http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute! If you reassign this bug to another package, please mark it as 'affects'-ing this package. See https://www.debian.org/Bugs/server-control#affects If you fail to reproduce this, please provide a build log and diff it with mine so that we can identify if something relevant changed in the meantime.
Bug#1077524: [debian-mysql] Bug#1077524: mariadb: FTBFS: make[1]: *** [debian/rules:146: override_dh_auto_test] Error 1
On 29/07/24 at 14:03 -0700, Otto Kekäläinen wrote: > Hi! > > Thanks for reporting. The failures are highlighted below. These issues > seem like a duplicate of > https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1052838 "mariadb: > FTBFS multiple archs: Post-build tests randomly fail on reserved port > due to lacking builder isolation" and are sporadic by nature, so they > will go away on a new rebuild when the build host is less congested. Hi Otto, I don't think this is an issue with congestion on the build host: the mariadb build was running alone on that host when it failed. Lucas
Bug#1077530: python-jenkins: FTBFS: AssertionError: TestsTimeoutException not raised.
Source: python-jenkins Version: 1.4.0-4 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240728 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > make[1]: Entering directory '/<>' > make[1]: pyversions: No such file or directory > py3versions: no X-Python3-Version in control file, using supported versions > pkgos-dh_auto_install --no-py2 > + PKGOS_IN_TMP=no > + echo WARNING: --no-py2 is deprecated and always on. > WARNING: --no-py2 is deprecated and always on. > + shift > + dpkg-parsechangelog -SSource > + SRC_PKG_NAME=python-jenkins > + echo python-jenkins > + sed s/python-// > + PY_MODULE_NAME=jenkins > + py3versions -vr > + PYTHON3S=3.12 > + [ no = yes ] > + TARGET_DIR=python3-jenkins > + pwd > + python3.12 setup.py install --install-layout=deb --root > /<>/debian/python3-jenkins > /usr/lib/python3/dist-packages/setuptools/dist.py:476: > SetuptoolsDeprecationWarning: Invalid dash-separated options > !! > > > > Usage of dash-separated 'description-file' will not be supported in > future > versions. Please use the underscore name 'description_file' instead. > > By 2024-Sep-26, you need to update your project and remove deprecated > calls > or your builds will no longer be supported. > > See > https://setuptools.pypa.io/en/latest/userguide/declarative_config.html for > details. > > > > !! > opt = self.warn_dash_deprecation(opt, section) > /usr/lib/python3/dist-packages/setuptools/dist.py:476: > SetuptoolsDeprecationWarning: Invalid dash-separated options > !! > > > > Usage of dash-separated 'home-page' will not be supported in future > versions. Please use the underscore name 'home_page' instead. > > By 2024-Sep-26, you need to update your project and remove deprecated > calls > or your builds will no longer be supported. > > See > https://setuptools.pypa.io/en/latest/userguide/declarative_config.html for > details. > > > > !! > opt = self.warn_dash_deprecation(opt, section) > /usr/lib/python3/dist-packages/setuptools/__init__.py:80: > _DeprecatedInstaller: setuptools.installer and fetch_build_eggs are > deprecated. > !! > > > > Requirements should be satisfied by a PEP 517 installer. > If you are using pip, you can try `pip install --use-pep517`. > > > > !! > dist.fetch_build_eggs(dist.setup_requires) > /usr/lib/python3/dist-packages/setuptools/command/develop.py:42: > EasyInstallDeprecationWarning: easy_install command is deprecated. > !! > > > > Please avoid running ``setup.py`` and ``easy_install``. > Instead, use pypa/build, pypa/installer or other > standards-based tools. > > See https://github.com/pypa/setuptools/issues/917 for details. > > > > !! > easy_install.initialize_options(self) > /usr/lib/python3/dist-packages/setuptools/_distutils/cmd.py:66: > SetuptoolsDeprecationWarning: setup.py install is deprecated. > !! > > > > Please avoid running ``setup.py`` directly. > Instead, use pypa/build, pypa/installer or other > standards-based tools. > > See https://blog.ganssle.io/articles/2021/10/setup-py-deprecated.html > for details. > > > > !! > self.initialize_options() > /usr/lib/python3/dist-packages/setuptools/dist.py:476: > SetuptoolsDeprecationWarning: Invalid dash-separated options > !! > > > > Usage of dash-separated 'description-file' will not be supported in > future > versions. Please use the underscore name 'description_file' instead. > > By 2024-Sep-26, you need to update your project and remove deprecated > calls > or your builds will no longer be supported. > > See > https://setuptools.pypa.io/en/latest/userguide/declarative_config.html for > details. > >
Bug#1077529: elfeed: FTBFS: make: *** [debian/rules:4: binary] Error 25
Source: elfeed Version: 3.4.1-3 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240728 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > make[1]: Entering directory '/<>' > emacs -batch -Q -L . -L tests -f batch-byte-compile elfeed-lib.el > emacs -batch -Q -L . -L tests -f batch-byte-compile elfeed-log.el > emacs -batch -Q -L . -L tests -f batch-byte-compile xml-query.el > emacs -batch -Q -L . -L tests -f batch-byte-compile > tests/elfeed-search-tests.el > > In elfeed-expose: > elfeed-lib.el:19:2: Warning: docstring has wrong usage of unescaped single > quotes (use \= or different quoting) > elfeed-lib.el:139:10: Warning: ‘point’ is an obsolete generalized variable; > use ‘goto-char’ instead. > elfeed-lib.el:282:12: Warning: ‘point’ is an obsolete generalized variable; > use ‘goto-char’ instead. > elfeed-lib.el:284:14: Warning: ‘point’ is an obsolete generalized variable; > use ‘goto-char’ instead. > emacs -batch -Q -L . -L tests -f batch-byte-compile elfeed-db.el > emacs -batch -Q -L . -L tests -f batch-byte-compile tests/elfeed-lib-tests.el > > In xml-query-all: > xml-query.el:78:2: Warning: docstring has wrong usage of unescaped single > quotes (use \= or different quoting) > emacs -batch -Q -L . -L tests -f batch-byte-compile elfeed-curl.el > emacs -batch -Q -L . -L tests -f batch-byte-compile tests/xml-query-tests.el > > In toplevel form: > tests/elfeed-search-tests.el: Warning: ‘point’ is an obsolete generalized > variable; use ‘goto-char’ instead. > tests/elfeed-search-tests.el: Warning: ‘point’ is an obsolete generalized > variable; use ‘goto-char’ instead. > tests/elfeed-search-tests.el: Warning: ‘point’ is an obsolete generalized > variable; use ‘goto-char’ instead. > tests/elfeed-search-tests.el:4:11: Warning: ‘point’ is an obsolete > generalized variable; use ‘goto-char’ instead. > tests/elfeed-search-tests.el:4:11: Warning: ‘point’ is an obsolete > generalized variable; use ‘goto-char’ instead. > tests/elfeed-search-tests.el:4:11: Warning: ‘point’ is an obsolete > generalized variable; use ‘goto-char’ instead. > tests/elfeed-search-tests.el: Warning: ‘point’ is an obsolete generalized > variable; use ‘goto-char’ instead. > tests/elfeed-search-tests.el:4:11: Warning: ‘point’ is an obsolete > generalized variable; use ‘goto-char’ instead. > tests/elfeed-search-tests.el:4:11: Warning: ‘point’ is an obsolete > generalized variable; use ‘goto-char’ instead. > tests/elfeed-search-tests.el:4:11: Warning: ‘point’ is an obsolete > generalized variable; use ‘goto-char’ instead. > tests/elfeed-search-tests.el:4:11: Warning: ‘point’ is an obsolete > generalized variable; use ‘goto-char’ instead. > > In toplevel form: > elfeed-curl.el:197:25: Warning: ‘point’ is an obsolete generalized variable; > use ‘goto-char’ instead. > elfeed-curl.el:202:25: Warning: ‘point’ is an obsolete generalized variable; > use ‘goto-char’ instead. > elfeed-curl.el:207:25: Warning: ‘point’ is an obsolete generalized variable; > use ‘goto-char’ instead. > elfeed-curl.el:235:10: Warning: ‘point’ is an obsolete generalized variable; > use ‘goto-char’ instead. > elfeed-curl.el:239:15: Warning: ‘point’ is an obsolete generalized variable; > use ‘goto-char’ instead. > elfeed-curl.el:242:16: Warning: ‘point’ is an obsolete generalized variable; > use ‘goto-char’ instead. > elfeed-curl.el:246:18: Warning: ‘point’ is an obsolete generalized variable; > use ‘goto-char’ instead. > elfeed-curl.el:271:12: Warning: ‘point’ is an obsolete generalized variable; > use ‘goto-char’ instead. > elfeed-curl.el:274:31: Warning: ‘point’ is an obsolete generalized variable; > use ‘goto-char’ instead. > emacs -batch -Q -L . -L tests -f batch-byte-compile elfeed-csv.el > emacs -batch -Q -L . -L tests -f batch-byte-compile elfeed.el > emacs -batch -Q -L . -L tests -f batch-byte-compile tests/elfeed-db-tests.el > > In toplevel form: > tests/elfeed-lib-tests.el:169:12: Warning: ‘point’ is an obsolete generalized > variable; use ‘goto-char’ instead. > > In toplevel form: > elfeed.el:36:2: Warning: custom-declare-variable `elfeed-feeds' docstring has > wrong usage of unescaped single quotes (use \= or different quoting) > > In elfeed-make-tagger: > elfeed.el:563:2: Warning: docstring has wrong usage of unescaped single > quotes (use \= or different quoting) > emacs -batch -Q -L . -L tests -f batch-byte-compile elfeed-search.el > emacs -batch -Q -L . -L tests -f batch-byte-compile tests/elfeed-tests.el > > In toplevel form: > elfeed-search.el:121:10: Warning: ‘point’ is an obsolete generalized > variable; use ‘goto-char’ instead. > elfeed-search.el:127:10: Warning: ‘point’ is an obsolete generalized > variable; use ‘goto-char’ instead. > > In toplevel form: > tests/elfeed-tests.el:11:11: Warning: ‘point’ is an obsolete generalized > variable; use ‘goto-char’ instead. > tests/elfeed-tests.
Bug#1077527: abseil: FTBFS: civil_time_test.cc:875:29: error: ‘setfill’ is not a member of ‘std’
Source: abseil Version: 20230802.1-4 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240728 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > /usr/bin/c++ -g -O2 -ffile-prefix-map=/<>=. > -fstack-protector-strong -fstack-clash-protection -Wformat > -Werror=format-security -fcf-protection -Wdate-time -D_FORTIFY_SOURCE=2 > -Wl,-z,relro -Wl,-z,now > CMakeFiles/absl_notification_test.dir/notification_test.cc.o -o > ../../bin/absl_notification_test libabsl_synchronization.a > ../time/libabsl_time.a ../../lib/libgmock_main.a > libabsl_graphcycles_internal.a libabsl_kernel_timeout_internal.a > ../time/libabsl_time.a ../time/libabsl_civil_time.a > ../time/libabsl_time_zone.a ../debugging/libabsl_stacktrace.a > ../debugging/libabsl_symbolize.a ../base/libabsl_malloc_internal.a > ../strings/libabsl_strings.a ../numeric/libabsl_int128.a > ../strings/libabsl_string_view.a ../strings/libabsl_strings_internal.a > ../base/libabsl_throw_delegate.a ../debugging/libabsl_debugging_internal.a > ../debugging/libabsl_demangle_internal.a ../base/libabsl_base.a > ../base/libabsl_raw_logging_internal.a ../base/libabsl_log_severity.a > ../base/libabsl_spinlock_wait.a -lrt -Wl,--push-state,--as-needed -latomic > -Wl,--pop-state ../../lib/libgmock.a ../../lib/libgtest.a > /<>/absl/time/civil_time_test.cc: In member function ‘virtual > void {anonymous}::CivilTime_OutputStream_Test::TestBody()’: > /<>/absl/time/civil_time_test.cc:875:29: error: ‘setfill’ is not > a member of ‘std’ > 875 | ss << std::left << std::setfill('.'); > | ^~~ > /<>/absl/time/civil_time_test.cc:23:1: note: ‘std::setfill’ is > defined in header ‘’; this is probably fixable by adding ‘#include > ’ >22 | #include "gtest/gtest.h" > +++ |+#include >23 | > /<>/absl/time/civil_time_test.cc:876:16: error: ‘setw’ is not a > member of ‘std’ > 876 | ss << std::setw(3) << 'X'; > |^~~~ > /<>/absl/time/civil_time_test.cc:876:16: note: ‘std::setw’ is > defined in header ‘’; this is probably fixable by adding ‘#include > ’ > /<>/absl/time/civil_time_test.cc:877:16: error: ‘setw’ is not a > member of ‘std’ > 877 | ss << std::setw(21) << absl::CivilYear(cs); > |^~~~ > /<>/absl/time/civil_time_test.cc:877:16: note: ‘std::setw’ is > defined in header ‘’; this is probably fixable by adding ‘#include > ’ > /<>/absl/time/civil_time_test.cc:878:16: error: ‘setw’ is not a > member of ‘std’ > 878 | ss << std::setw(3) << 'X'; > |^~~~ > /<>/absl/time/civil_time_test.cc:878:16: note: ‘std::setw’ is > defined in header ‘’; this is probably fixable by adding ‘#include > ’ > /<>/absl/time/civil_time_test.cc:883:29: error: ‘setfill’ is not > a member of ‘std’ > 883 | ss << std::left << std::setfill('.'); > | ^~~ > /<>/absl/time/civil_time_test.cc:883:29: note: ‘std::setfill’ is > defined in header ‘’; this is probably fixable by adding ‘#include > ’ > /<>/absl/time/civil_time_test.cc:884:16: error: ‘setw’ is not a > member of ‘std’ > 884 | ss << std::setw(3) << 'X'; > |^~~~ > /<>/absl/time/civil_time_test.cc:884:16: note: ‘std::setw’ is > defined in header ‘’; this is probably fixable by adding ‘#include > ’ > /<>/absl/time/civil_time_test.cc:885:16: error: ‘setw’ is not a > member of ‘std’ > 885 | ss << std::setw(21) << absl::CivilMonth(cs); > |^~~~ > /<>/absl/time/civil_time_test.cc:885:16: note: ‘std::setw’ is > defined in header ‘’; this is probably fixable by adding ‘#include > ’ > /<>/absl/time/civil_time_test.cc:886:16: error: ‘setw’ is not a > member of ‘std’ > 886 | ss << std::setw(3) << 'X'; > |^~~~ > /<>/absl/time/civil_time_test.cc:886:16: note: ‘std::setw’ is > defined in header ‘’; this is probably fixable by adding ‘#include > ’ > /<>/absl/time/civil_time_test.cc:891:29: error: ‘setfill’ is not > a member of ‘std’ > 891 | ss << std::left << std::setfill('.'); > | ^~~ > /<>/absl/time/civil_time_test.cc:891:29: note: ‘std::setfill’ is > defined in header ‘’; this is probably fixable by adding ‘#include > ’ > /<>/absl/time/civil_time_test.cc:892:16: error: ‘setw’ is not a > member of ‘std’ > 892 | ss << std::setw(3) << 'X'; > |^~~~ > /<>/absl/time/civil_time_test.cc:892:16: note: ‘std::setw’ is > defined in header ‘’; this is probably fixable by adding ‘#include > ’ > /<>/absl/time/civil_time_test.cc:893:16: error: ‘setw’ is not a > member of ‘std’ > 893 | ss << std::setw(21) << absl::CivilDay(cs); > |^~~~ > /<>/absl/time/civil_time_test.cc:893:16: note: ‘std::setw’ is > defined in header ‘’; this is probably fixable by adding ‘#include >
Bug#1077528: getfem: FTBFS: getfem_python_c.c:142:5: error: initialization of ‘PyAsyncMethods *’ from incompatible pointer type ‘int (*)(PyGetfemObject *, PyGetfemObject *)’ [-Wincompatible-pointer-ty
Source: getfem Version: 5.4.2+dfsg1-4 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240728 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > make[5]: Entering directory '/<>/interface/src/python' > cp ./getfem_python.c getfem_python_c.c > ../../../bin/extract_doc ./.. python-com > getfem.py || ( rm getfem.py ; > /bin/false ) > touch _getfem.cpython-312-x86_64-linux-gnu.so && rm > _getfem.cpython-312-x86_64-linux-gnu.so > ARCHFLAGS="" CC="gcc" CFLAGS="-Wall -g -O2 > -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. > -fstack-protector-strong -fstack-clash-protection -Wformat > -Werror=format-security -fcf-protection -O3 -fPIC" /usr/bin/python3 setup.py > -v build --build-temp . --build-base . --build-lib . --force > getfem_python_c.c:142:5: error: initialization of ‘PyAsyncMethods *’ from > incompatible pointer type ‘int (*)(PyGetfemObject *, PyGetfemObject *)’ > [-Wincompatible-pointer-types] > 142 | GetfemObject_compare, /* tp_compare, necessary for > dictionary*/ > | ^~~~ > getfem_python_c.c:142:5: note: (near initialization for > ‘PyGetfemObject_Type.tp_as_async’) > getfem_python_c.c: In function ‘PyObject_to_gfi_array’: > getfem_python_c.c:38:30: warning: initialization discards ‘const’ qualifier > from pointer target type [-Wdiscarded-qualifiers] >38 | #define PyString_AsString(o) PyUnicode_AsUTF8(o) > | ^~~~ > getfem_python_c.c:345:15: note: in expansion of macro ‘PyString_AsString’ > 345 | char *s = PyString_AsString(o); > | ^ > getfem_python_c.c:476:17: warning: comparison of integer expressions of > different signedness: ‘int’ and ‘u_int’ {aka ‘unsigned int’} [-Wsign-compare] > 476 | for (i=0; i < t->dim.dim_len; ++i) > | ^ > getfem_python_c.c:493:17: warning: comparison of integer expressions of > different signedness: ‘int’ and ‘u_int’ {aka ‘unsigned int’} [-Wsign-compare] > 493 | for (i=0; i < TGFISTORE(cell,len); ++i) { > | ^ > getfem_python_c.c: In function ‘PyGetfemObject_FromObjId’: > getfem_python_c.c:535:5: warning: ‘PyEval_CallObjectWithKeywords’ is > deprecated [-Wdeprecated-declarations] > 535 | o = PyEval_CallObject(python_factory, arg); > | ^ > In file included from /usr/include/python3.12/Python.h:95, > from getfem_python_c.c:27: > /usr/include/python3.12/ceval.h:27:43: note: declared here >27 | Py_DEPRECATED(3.9) PyAPI_FUNC(PyObject *) > PyEval_CallObjectWithKeywords( > | > ^ > getfem_python_c.c: In function ‘build_gfi_array_list’: > getfem_python_c.c:554:19: warning: assignment discards ‘const’ qualifier from > pointer target type [-Wdiscarded-qualifiers] > 554 | *pfunction_name = PyString_AsString(PyTuple_GET_ITEM(tuple,0)); > | ^ > getfem_python_c.c: In function ‘gfi_array_to_PyObject’: > getfem_python_c.c:580:18: warning: comparison of integer expressions of > different signedness: ‘int’ and ‘u_int’ {aka ‘unsigned int’} [-Wsign-compare] > 580 | for(i=0; i < t->dim.dim_len; i++) > | ^ > getfem_python_c.c:599:19: warning: comparison of integer expressions of > different signedness: ‘int’ and ‘u_int’ {aka ‘unsigned int’} [-Wsign-compare] > 599 | for(i=0; i< t->dim.dim_len; i++) > | ^ > getfem_python_c.c:612:19: warning: comparison of integer expressions of > different signedness: ‘int’ and ‘u_int’ {aka ‘unsigned int’} [-Wsign-compare] > 612 | for(i=0; i< t->dim.dim_len; i++) > | ^ > error: command '/usr/bin/gcc' failed with exit code 1 > make[5]: *** [Makefile:677: _getfem.cpython-312-x86_64-linux-gnu.so] Error 1 The full build log is available from: http://qa-logs.debian.net/2024/07/28/getfem_5.4.2+dfsg1-4_unstable.log All bugs filed during this archive rebuild are listed at: https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240728;users=lu...@debian.org or: https://udd.debian.org/bugs/?release=na&merged=ign&fnewerval=7&flastmodval=7&fusertag=only&fusertagtag=ftbfs-20240728&fusertaguser=lu...@debian.org&allbugs=1&cseverity=1&ctags=1&caffected=1#results A list of current common problems and possible solutions is available at http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute! If you reassign this bug to another package, please mark it as 'affects'-ing this package. See https://www.debian.org/Bugs/server-control#affects If you fail to reproduce this, please provide a build log and diff it with mine so that we can identify if something relevant changed in the meantime.
Bug#1077525: osc: FTBFS: PermissionError: [Errno 13] Permission denied: '/home/user42'
Source: osc Version: 1.7.0-4 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240728 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > make[1]: Entering directory '/<>' > for d in .pybuild/*/build; do ln -sr doc $d; done > make[1]: Leaving directory '/<>' >dh_auto_test -O--buildsystem=pybuild > I: pybuild base:311: cd /<>/.pybuild/cpython3_3.12/build; > python3.12 -m unittest discover -v > test_amp (tests.test__private_api.TestXmlEscape.test_amp) ... ok > test_apos (tests.test__private_api.TestXmlEscape.test_apos) ... ok > test_gt (tests.test__private_api.TestXmlEscape.test_gt) ... ok > test_lt (tests.test__private_api.TestXmlEscape.test_lt) ... ok > test_quot (tests.test__private_api.TestXmlEscape.test_quot) ... ok > test_load (tests.test__private_package.TestApiPackage.test_load) ... ok > test_load (tests.test__private_package.TestLocalPackage.test_load) ... ok > test_eq (tests.test__private_package.TestPackageBase.test_eq) ... ok > test_hash (tests.test__private_package.TestPackageBase.test_hash) ... ok > test_lt (tests.test__private_package.TestPackageBase.test_lt) ... ok > test_repr (tests.test__private_package.TestPackageBase.test_repr) ... ok > test_str (tests.test__private_package.TestPackageBase.test_str) ... ok > testAddNonExistentFile > (tests.test_addfiles.TestAddFiles.testAddNonExistentFile) > add a non existent file ... ok > testAddUnversionedFileTwice > (tests.test_addfiles.TestAddFiles.testAddUnversionedFileTwice) > add the same file twice ... ok > testAddVersionedFile (tests.test_addfiles.TestAddFiles.testAddVersionedFile) > add a versioned file ... ok > testReplace (tests.test_addfiles.TestAddFiles.testReplace) > replace a deleted file ('foo') ... ok > testSimpleAdd (tests.test_addfiles.TestAddFiles.testSimpleAdd) > add one file ('toadd1') to the wc ... ok > testSimpleMultipleAdd (tests.test_addfiles.TestAddFiles.testSimpleMultipleAdd) > add multiple files ('toadd1', 'toadd2') to the wc ... ok > test_glob (tests.test_build.TestTrustedProjects.test_glob) ... ok > test_name (tests.test_build.TestTrustedProjects.test_name) ... ok > test_default_apiurl > (tests.test_commandline.TestCommandClasses.test_default_apiurl) ... ok > test_intermixing (tests.test_commandline.TestCommandClasses.test_intermixing) > ... ok > test_invalid_parent > (tests.test_commandline.TestCommandClasses.test_invalid_parent) ... Failed to > load command class 'test.osc.commands.Child' because it references parent > 'test.osc.commands.DoesNotExist' that doesn't exist > ok > test_load_command > (tests.test_commandline.TestCommandClasses.test_load_command) ... ok > test_load_commands > (tests.test_commandline.TestCommandClasses.test_load_commands) ... ok > test_load_twice (tests.test_commandline.TestCommandClasses.test_load_twice) > ... ok > test_parent (tests.test_commandline.TestCommandClasses.test_parent) ... ok > test_unknown_options > (tests.test_commandline.TestCommandClasses.test_unknown_options) ... usage: > osc-test [global opts] [--help] [opts] [args] > osc-test: error: unrecognized arguments: --unknown-option > ok > test_default_package > (tests.test_commandline.TestPopProjectPackageFromArgs.test_default_package) > ... ok > test_default_project > (tests.test_commandline.TestPopProjectPackageFromArgs.test_default_project) > ... ok > test_default_project_package > (tests.test_commandline.TestPopProjectPackageFromArgs.test_default_project_package) > ... ok > test_individual_args > (tests.test_commandline.TestPopProjectPackageFromArgs.test_individual_args) > ... ok > test_missing_package > (tests.test_commandline.TestPopProjectPackageFromArgs.test_missing_package) > ... ok > test_missing_project > (tests.test_commandline.TestPopProjectPackageFromArgs.test_missing_project) > ... ok > test_no_working_copy > (tests.test_commandline.TestPopProjectPackageFromArgs.test_no_working_copy) > ... ok > test_optional_package > (tests.test_commandline.TestPopProjectPackageFromArgs.test_optional_package) > ... ok > test_optional_project > (tests.test_commandline.TestPopProjectPackageFromArgs.test_optional_project) > ... ok > test_project_and_package_from_package_working_copy > (tests.test_commandline.TestPopProjectPackageFromArgs.test_project_and_package_from_package_working_copy) > ... ok > test_project_and_package_from_project_working_copy > (tests.test_commandline.TestPopProjectPackageFromArgs.test_project_and_package_from_project_working_copy) > ... ok > test_project_requires_to_specify_package > (tests.test_commandline.TestPopProjectPackageFromArgs.test_project_requires_to_specify_package) > ... ok > test_slash_separator > (tests.test_commandline.TestPopProjectPackageFromArgs.test_slash_separator) > ... ok > test_default_arch > (tests.test_commandline.TestPopProjectPackageRepositoryArchFromArgs.test_default_arch) > ... ok > test_default_package >
Bug#1077526: node-ajv: FTBFS: dh_auto_test: error: /bin/sh -ex debian/tests/pkg-js/test returned exit code 1
Source: node-ajv Version: 8.12.0~ds+~2.1.1-4 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240728 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > make[1]: Entering directory '/<>' > tsc > cp -r lib/refs dist > rm dist/refs/json-schema-2019-09/index.ts > rm dist/refs/json-schema-2020-12/index.ts > rm dist/refs/jtd-schema.ts > dh_auto_build --buildsystem=nodejs > Found debian/nodejs/ajv-formats/build > cd ./ajv-formats && sh -ex ../debian/nodejs/ajv-formats/build > + mkdir -p node_modules > + ln -s ../.. node_modules/ajv > + tsc > + rm -rf node_modules > make[1]: Leaving directory '/<>' >dh_auto_test --buildsystem=nodejs > ln -s ../debian/tests/test_modules/fast-uri node_modules/fast-uri > ln -s ../debian/tests/test_modules/json-schema-test > node_modules/json-schema-test > ln -s ../debian/tests/test_modules/module-from-string > node_modules/module-from-string > ln -s ../. node_modules/ajv > /bin/sh -ex debian/tests/pkg-js/test > + rm -f spec/_json/*.js > + node scripts/jsontests > + test != > + TS_NODE_PROJECT=spec/tsconfig.json mocha --bail --exit --timeout 10 -r > ts-node/register spec/**/*.spec.{ts,js} > > Exception during run: Error: Package subpath './async' is not defined by > "exports" in /usr/share/nodejs/nanoid/package.json > at exportsNotFound (node:internal/modules/esm/resolve:304:10) > at packageExportsResolve (node:internal/modules/esm/resolve:651:9) > at resolveExports (node:internal/modules/cjs/loader:592:36) > at Function.Module._findPath (node:internal/modules/cjs/loader:669:31) > at Function.Module._resolveFilename > (node:internal/modules/cjs/loader:1131:27) > at > Function.Module._resolveFilename.sharedData.moduleResolveFilenameHook.installedValue > [as _resolveFilename] > (/usr/share/nodejs/@cspotcode/source-map-support/source-map-support.js:811:30) > at Function.Module._load (node:internal/modules/cjs/loader:986:27) > at Module.require (node:internal/modules/cjs/loader:1233:19) > at require (node:internal/modules/helpers:179:18) > at Module. > (/<>/debian/tests/test_modules/module-from-string/dist/index.js:9:15) > at Module._compile (node:internal/modules/cjs/loader:1358:14) > at Module.m._compile (/usr/share/nodejs/ts-node/src/index.ts:1624:23) > at Module._extensions..js (node:internal/modules/cjs/loader:1416:10) > at Object.require.extensions. [as .js] > (/usr/share/nodejs/ts-node/src/index.ts:1627:12) > at Module.load (node:internal/modules/cjs/loader:1208:32) > at Function.Module._load (node:internal/modules/cjs/loader:1024:12) > at Module.require (node:internal/modules/cjs/loader:1233:19) > at require (node:internal/modules/helpers:179:18) > at Object. (/<>/spec/standalone.spec.ts:7:1) > at Module._compile (node:internal/modules/cjs/loader:1358:14) > at Module.m._compile (/usr/share/nodejs/ts-node/src/index.ts:1624:23) > at Module._extensions..js (node:internal/modules/cjs/loader:1416:10) > at Object.require.extensions. [as .ts] > (/usr/share/nodejs/ts-node/src/index.ts:1627:12) > at Module.load (node:internal/modules/cjs/loader:1208:32) > at Function.Module._load (node:internal/modules/cjs/loader:1024:12) > at Module.require (node:internal/modules/cjs/loader:1233:19) > at require (node:internal/modules/helpers:179:18) > at Object.exports.requireOrImport > (/usr/share/nodejs/mocha/lib/nodejs/esm-utils.js:53:16) > at async Object.exports.loadFilesAsync > (/usr/share/nodejs/mocha/lib/nodejs/esm-utils.js:100:20) > at async singleRun (/usr/share/nodejs/mocha/lib/cli/run-helpers.js:125:3) > at async Object.exports.handler > (/usr/share/nodejs/mocha/lib/cli/run.js:370:5) { > code: 'ERR_PACKAGE_PATH_NOT_EXPORTED' > } > dh_auto_test: error: /bin/sh -ex debian/tests/pkg-js/test returned exit code 1 The full build log is available from: http://qa-logs.debian.net/2024/07/28/node-ajv_8.12.0~ds+~2.1.1-4_unstable.log All bugs filed during this archive rebuild are listed at: https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240728;users=lu...@debian.org or: https://udd.debian.org/bugs/?release=na&merged=ign&fnewerval=7&flastmodval=7&fusertag=only&fusertagtag=ftbfs-20240728&fusertaguser=lu...@debian.org&allbugs=1&cseverity=1&ctags=1&caffected=1#results A list of current common problems and possible solutions is available at http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute! If you reassign this bug to another package, please mark it as 'affects'-ing this package. See https://www.debian.org/Bugs/server-control#affects If you fail to reproduce this, please provide a build log and diff it with mine so that we can identify if something relevant changed in the meantime.
Bug#1077523: python-requests-mock: FTBFS: AttributeError: 'NoneType' object has no attribute 'get'
Source: python-requests-mock Version: 1.12.1-1 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240728 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > debian/rules build > make: pyversions: No such file or directory > py3versions: no X-Python3-Version in control file, using supported versions > dh build --buildsystem=pybuild --with python3,sphinxdoc >dh_update_autotools_config -O--buildsystem=pybuild >dh_autoreconf -O--buildsystem=pybuild >dh_auto_configure -O--buildsystem=pybuild >dh_auto_build -O--buildsystem=pybuild > I: pybuild plugin_pyproject:129: Building wheel for python3.12 with "build" > module > I: pybuild base:311: python3.12 -m build --skip-dependency-check > --no-isolation --wheel --outdir > /<>/.pybuild/cpython3_3.12_requests-mock > * Building wheel... > /usr/lib/python3/dist-packages/setuptools/config/_apply_pyprojecttoml.py:72: > _MissingDynamic: `description` defined outside of `pyproject.toml` is ignored. > !! > > > > The following seems to be defined outside of `pyproject.toml`: > > `description = 'Mock out responses from the requests package'` > > According to the spec (see the link below), however, setuptools CANNOT > consider this value unless `description` is listed as `dynamic`. > > > https://packaging.python.org/en/latest/specifications/pyproject-toml/#declaring-project-metadata-the-project-table > > To prevent this problem, you can list `description` under `dynamic` > or alternatively > remove the `[project]` table from your file and rely entirely on > other means of > configuration. > > > > !! > _handle_missing_dynamic(dist, project_table) > /usr/lib/python3/dist-packages/setuptools/config/_apply_pyprojecttoml.py:72: > _MissingDynamic: `readme` defined outside of `pyproject.toml` is ignored. > !! > > > > The following seems to be defined outside of `pyproject.toml`: > > `readme = > '===\nrequests-mock\n===\n\nIntro\n=\n\n`requests-mock` > provides a building block to stub out the HTTP `requests`_ portions of your > testing code.\nYou should checkout the `docs`_ for more information.\n\nThe > Basics\n==\n\nEverything in `requests`_ eventually goes through an > adapter to do the transport work.\n`requests-mock` creates a custom `adapter` > that allows you to predefine responses when certain URIs are called.\n\nThere > are then a number of methods provided to get the adapter used.\n\nA simple > example:\n\n.. code:: python\n\n>>> import requests\n>>> import > requests_mock\n\n>>> session = requests.Session()\n>>> adapter = > requests_mock.Adapter()\n>>> session.mount(\'mock://\', adapter)\n\n > >>> adapter.register_uri(\'GET\', \'mock://test.com\', text=\'data\')\n > >>> resp = session.get(\'mock://test.com\')\n>>> resp.status_code, > resp.text\n(200, \'data\')\n\nObviously having all URLs be `mock://` > prefixed isn\'t going to be useful,\nso you can use `requests_mock.Mocker` to > get the adapter into place.\n\nAs a context manager:\n\n.. code:: python\n\n > >>> with requests_mock.Mocker() as m:\n... > m.get(\'http://test.com\', text=\'data\')\n... > requests.get(\'http://test.com\').text\n...\n\'data\'\n\nOr as a > decorator:\n\n.. code:: python\n\n>>> @requests_mock.Mocker()\n... > def test_func(m):\n... m.get(\'http://test.com\', text=\'data\')\n > ... return requests.get(\'http://test.com\').text\n...\n>>> > test_func()\n\'data\'\n\nOr as a pytest fixture:\n\n.. code:: python\n\n > >>> def test_simple(requests_mock):\n... > requests_mock.get(\'http://test.com\', text=\'data\')\n...assert > \'data\' == requests.get(\'http://test.com\').text\n\nFor more information > checkout the `docs`_.\n\nReporting Bugs\n==\n\nDevelopment and > bug tracking is performed on `GitHub`_.\n\nQuestions\n=\n\nThere is a > tag dedicated to `requests-mock` on `StackOverflow`_ where you can ask usage > questions.\n\nLicense\n===\n\nLicensed under the Apache License, Version > 2.0 (the "License"); you may\nnot use this file except in compliance with the > License. You may obtain\na copy of the License at\n\n > https://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable > law or agreed to in writing, software\ndistributed under the License is > distributed on an "AS IS" BASIS, WITHOUT\nWARRANTIES OR CONDITIONS OF ANY > KIND, either e
Bug#1077522: crossfire: FTBFS: cfpython_archetype.c:136:5: error: initialization of 'long int' from 'void *' makes integer from pointer without a cast [-Wint-conversion]
Source: crossfire Version: 1.75.0-7 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240728 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > /bin/bash ../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. > -I../../include -I./include -I../../plugins/common/include -I../../include > -I/usr/include/python3.12 -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 > -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. > -fstack-protector-strong -fstack-clash-protection -Wformat > -Werror=format-security -fcf-protection -fvisibility=hidden -c -o > ../common/hashtable.lo ../common/hashtable.c > libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../include -I./include > -I../../plugins/common/include -I../../include -I/usr/include/python3.12 > -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -Werror=implicit-function-declaration > -ffile-prefix-map=/<>=. -fstack-protector-strong > -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection > -fvisibility=hidden -c cfpython_object.c -fPIC -DPIC -o > .libs/cfpython_object.o > libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../include -I./include > -I../../plugins/common/include -I../../include -I/usr/include/python3.12 > -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -Werror=implicit-function-declaration > -ffile-prefix-map=/<>=. -fstack-protector-strong > -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection > -fvisibility=hidden -c cfpython.c -fPIC -DPIC -o .libs/cfpython.o > libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../include -I./include > -I../../plugins/common/include -I../../include -I/usr/include/python3.12 > -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -Werror=implicit-function-declaration > -ffile-prefix-map=/<>=. -fstack-protector-strong > -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection > -fvisibility=hidden -c cfpython_region.c -fPIC -DPIC -o > .libs/cfpython_region.o > libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../include -I./include > -I../../plugins/common/include -I../../include -I/usr/include/python3.12 > -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -Werror=implicit-function-declaration > -ffile-prefix-map=/<>=. -fstack-protector-strong > -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection > -fvisibility=hidden -c cfpython_archetype.c -fPIC -DPIC -o > .libs/cfpython_archetype.o > libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../include -I./include > -I../../plugins/common/include -I../../include -I/usr/include/python3.12 > -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -Werror=implicit-function-declaration > -ffile-prefix-map=/<>=. -fstack-protector-strong > -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection > -fvisibility=hidden -c cfpython_party.c -fPIC -DPIC -o .libs/cfpython_party.o > libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../include -I./include > -I../../plugins/common/include -I../../include -I/usr/include/python3.12 > -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -Werror=implicit-function-declaration > -ffile-prefix-map=/<>=. -fstack-protector-strong > -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection > -fvisibility=hidden -c cfpython_map.c -fPIC -DPIC -o .libs/cfpython_map.o > libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../include -I./include > -I../../plugins/common/include -I../../include -I/usr/include/python3.12 > -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -Werror=implicit-function-declaration > -ffile-prefix-map=/<>=. -fstack-protector-strong > -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection > -fvisibility=hidden -c cjson.c -fPIC -DPIC -o .libs/cjson.o > libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../include -I./include > -I../../plugins/common/include -I../../include -I/usr/include/python3.12 > -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -Werror=implicit-function-declaration > -ffile-prefix-map=/<>=. -fstack-protector-strong > -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection > -fvisibility=hidden -c ../common/hashtable.c -fPIC -DPIC -o > ../common/.libs/hashtable.o > libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../include -I./include > -I../../plugins/common/include -I../../include -I/usr/include/python3.12 > -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -Werror=implicit-function-declaration > -ffile-prefix-map=/<>=. -fstack-protector-strong > -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection > -fvisibility=hidden -c ../common/hashtable.c -o ../common/hashtable.o > >/dev/null 2>&1 > cfpython_archetype.c:136:5: error: initialization of 'long int' from 'void *' > makes integer from pointer without a cast [-Wint-conversion] > 136 | NULL, /* tp_print*/ > | ^~~~ > cfpython_archetype.c:136:5: note: (near initialization for > 'C
Bug#1077521: pydevd: FTBFS: make[1]: *** [debian/rules:24: _pydevd_bundle/pydevd_runpy.py] Error 1
Source: pydevd Version: 3.1.0+ds-2 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240728 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > debian/rules clean > dh clean --buildsystem=pybuild >debian/rules execute_before_dh_auto_clean > make[1]: Entering directory '/<>' > libdir=/usr/lib/$(py3versions --min-supported); \ > cp $libdir/runpy.py _pydevd_bundle/pydevd_runpy.py > patch -p1 < debian/runpy.patch > patching file _pydevd_bundle/pydevd_runpy.py > Hunk #3 FAILED at 312. > 1 out of 3 hunks FAILED -- saving rejects to file > _pydevd_bundle/pydevd_runpy.py.rej > make[1]: *** [debian/rules:24: _pydevd_bundle/pydevd_runpy.py] Error 1 The full build log is available from: http://qa-logs.debian.net/2024/07/28/pydevd_3.1.0+ds-2_unstable.log All bugs filed during this archive rebuild are listed at: https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240728;users=lu...@debian.org or: https://udd.debian.org/bugs/?release=na&merged=ign&fnewerval=7&flastmodval=7&fusertag=only&fusertagtag=ftbfs-20240728&fusertaguser=lu...@debian.org&allbugs=1&cseverity=1&ctags=1&caffected=1#results A list of current common problems and possible solutions is available at http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute! If you reassign this bug to another package, please mark it as 'affects'-ing this package. See https://www.debian.org/Bugs/server-control#affects If you fail to reproduce this, please provide a build log and diff it with mine so that we can identify if something relevant changed in the meantime.
Bug#1077520: nix: FTBFS: ld: cannot find -lunistring: No such file or directory
Source: nix Version: 2.23.3+dfsg-1 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240728 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > g++ -o tests/unit/libutil/libnixutil-tests -L/usr/lib/x86_64-linux-gnu > -Wl,-z,relro -Wl,-z,now -L/usr/lib/x86_64-linux-gnu -Wl,-z,relro -Wl,-z,now > tests/unit/libutil/args.o tests/unit/libutil/canon-path.o > tests/unit/libutil/chunked-vector.o tests/unit/libutil/closure.o > tests/unit/libutil/compression.o tests/unit/libutil/config.o > tests/unit/libutil/file-content-address.o tests/unit/libutil/git.o > tests/unit/libutil/hash.o tests/unit/libutil/hilite.o > tests/unit/libutil/json-utils.o tests/unit/libutil/logging.o > tests/unit/libutil/lru-cache.o tests/unit/libutil/nix_api_util.o > tests/unit/libutil/pool.o tests/unit/libutil/references.o > tests/unit/libutil/suggestions.o tests/unit/libutil/tests.o > tests/unit/libutil/url.o tests/unit/libutil/xml-writer.o -lrapidcheck > -lgtest_main -lgmock_main -lgmock -lgtest > tests/unit/libutil-support/libnixutil-test-support.a -pthread -lrapidcheck > src/libutil/libnixutil.a -pthread -lcurl -lidn2 -lssh2 -lnettle -lgssapi_krb5 > -llber -lldap -llber -lunistring -lz -lbrotlidec -lbrotlicommon -lzstd > -pthread -lgnutls -lgmp -lunistring -latomic -lnettle -lnettle -lunistring > -lpsl -lssh2 -lssl -lcrypto -lgpg-error -lssl -lz -lzstd -ldl -pthread > -lcrypto -lzstd -ldl -pthread -lz -lrtmp -lz -lgmp -lgnutls -lgmp -lunistring > -latomic -lnettle -lgmp -lnettle -ltasn1 -lidn2 -lunistring -lp11-kit > -lhogweed -lgmp -lnettle -lnghttp2 -lngtcp2 -lngtcp2_crypto_gnutls -lnghttp3 > -lsodium -pthread -lcrypto -lz -lzstd -ldl -pthread -lbrotlienc > -lbrotlicommon -lbrotlidec -lbrotlicommon -larchive -lnettle -lacl -llzma > -lzstd -llz4 -lbz2 -lz -lxml2 -lz -L/usr/lib/x86_64-linux-gnu -lboost_context > -lcpuid src/libutil/libnixutil.a -pthread -lcurl -lidn2 -lssh2 -lnettle > -lgssapi_krb5 -llber -lldap -llber -lunistring -lz -lbrotlidec -lbrotlicommon > -lzstd -pthread -lgnutls -lgmp -lunistring -latomic -lnettle -lnettle > -lunistring -lpsl -lssh2 -lssl -lcrypto -lgpg-error -lssl -lz -lzstd -ldl > -pthread -lcrypto -lzstd -ldl -pthread -lz -lrtmp -lz -lgmp -lgnutls -lgmp > -lunistring -latomic -lnettle -lgmp -lnettle -ltasn1 -lidn2 -lunistring > -lp11-kit -lhogweed -lgmp -lnettle -lnghttp2 -lngtcp2 -lngtcp2_crypto_gnutls > -lnghttp3 -lsodium -pthread -lcrypto -lz -lzstd -ldl -pthread -lbrotlienc > -lbrotlicommon -lbrotlidec -lbrotlicommon -larchive -lnettle -lacl -llzma > -lzstd -llz4 -lbz2 -lz -lxml2 -lz -L/usr/lib/x86_64-linux-gnu -lboost_context > -lcpuid src/libutil-c/libnixutilc.a -pthread src/libutil/libnixutil.a > -pthread -lcurl -lidn2 -lssh2 -lnettle -lgssapi_krb5 -llber -lldap -llber > -lunistring -lz -lbrotlidec -lbrotlicommon -lzstd -pthread -lgnutls -lgmp > -lunistring -latomic -lnettle -lnettle -lunistring -lpsl -lssh2 -lssl > -lcrypto -lgpg-error -lssl -lz -lzstd -ldl -pthread -lcrypto -lzstd -ldl > -pthread -lz -lrtmp -lz -lgmp -lgnutls -lgmp -lunistring -latomic -lnettle > -lgmp -lnettle -ltasn1 -lidn2 -lunistring -lp11-kit -lhogweed -lgmp -lnettle > -lnghttp2 -lngtcp2 -lngtcp2_crypto_gnutls -lnghttp3 -lsodium -pthread > -lcrypto -lz -lzstd -ldl -pthread -lbrotlienc -lbrotlicommon -lbrotlidec > -lbrotlicommon -larchive -lnettle -lacl -llzma -lzstd -llz4 -lbz2 -lz -lxml2 > -lz -L/usr/lib/x86_64-linux-gnu -lboost_context -lcpuid > /usr/bin/ld: cannot find -lunistring: No such file or directory > /usr/bin/ld: cannot find -lunistring: No such file or directory > /usr/bin/ld: cannot find -lunistring: No such file or directory > /usr/bin/ld: cannot find -lgpg-error: No such file or directory > /usr/bin/ld: cannot find -lunistring: No such file or directory > /usr/bin/ld: cannot find -lunistring: No such file or directory > /usr/bin/ld: cannot find -lunistring: No such file or directory > /usr/bin/ld: cannot find -lunistring: No such file or directory > /usr/bin/ld: cannot find -lunistring: No such file or directory > /usr/bin/ld: cannot find -lgpg-error: No such file or directory > /usr/bin/ld: cannot find -lunistring: No such file or directory > /usr/bin/ld: cannot find -lunistring: No such file or directory > /usr/bin/ld: cannot find -lunistring: No such file or directory > /usr/bin/ld: cannot find -lunistring: No such file or directory > /usr/bin/ld: cannot find -lunistring: No such file or directory > /usr/bin/ld: cannot find -lgpg-error: No such file or directory > /usr/bin/ld: cannot find -lunistring: No such file or directory > /usr/bin/ld: cannot find -lunistring: No such file or directory > collect2: error: ld returned 1 exit status The full build log is available from: http://qa-logs.debian.net/2024/07/28/nix_2.23.3+dfsg-1_unstable.log All bugs filed during this archive rebuild are listed at: https://bugs.debian.org/cgi-bin
Bug#1077459: python-yamlfix: FTBFS: dh_auto_test: error: pybuild --test --test-pytest -i python{version} -p 3.12 returned exit code 13
Source: python-yamlfix Version: 1.16.0-1 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240728 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > debian/rules binary > dh binary --buildsystem=pybuild >dh_update_autotools_config -O--buildsystem=pybuild >dh_autoreconf -O--buildsystem=pybuild >dh_auto_configure -O--buildsystem=pybuild >dh_auto_build -O--buildsystem=pybuild > I: pybuild plugin_pyproject:129: Building wheel for python3.12 with "build" > module > I: pybuild base:311: python3.12 -m build --skip-dependency-check > --no-isolation --wheel --outdir > /<>/.pybuild/cpython3_3.12_yamlfix > * Building wheel... > - Adding .pdm-build/yamlfix-1.16.0.dist-info/METADATA -> > yamlfix-1.16.0.dist-info/METADATA > - Adding .pdm-build/yamlfix-1.16.0.dist-info/WHEEL -> > yamlfix-1.16.0.dist-info/WHEEL > - Adding .pdm-build/yamlfix-1.16.0.dist-info/entry_points.txt -> > yamlfix-1.16.0.dist-info/entry_points.txt > - Adding .pdm-build/yamlfix-1.16.0.dist-info/licenses/LICENSE -> > yamlfix-1.16.0.dist-info/licenses/LICENSE > - Adding src/yamlfix/__init__.py -> yamlfix/__init__.py > - Adding src/yamlfix/adapters.py -> yamlfix/adapters.py > - Adding src/yamlfix/config.py -> yamlfix/config.py > - Adding src/yamlfix/entrypoints/__init__.py -> > yamlfix/entrypoints/__init__.py > - Adding src/yamlfix/entrypoints/cli.py -> yamlfix/entrypoints/cli.py > - Adding src/yamlfix/model.py -> yamlfix/model.py > - Adding src/yamlfix/py.typed -> yamlfix/py.typed > - Adding src/yamlfix/services.py -> yamlfix/services.py > - Adding src/yamlfix/version.py -> yamlfix/version.py > - Adding yamlfix-1.16.0.dist-info/RECORD -> yamlfix-1.16.0.dist-info/RECORD > Successfully built yamlfix-1.16.0-py3-none-any.whl > I: pybuild plugin_pyproject:144: Unpacking wheel built for python3.12 with > "installer" module >dh_auto_test -O--buildsystem=pybuild > I: pybuild base:311: cd > /<>/.pybuild/cpython3_3.12_yamlfix/build; python3.12 -m pytest > tests > = test session starts > == > platform linux -- Python 3.12.4, pytest-8.3.1, pluggy-1.5.0 > rootdir: /<>/.pybuild/cpython3_3.12_yamlfix/build > configfile: pyproject.toml > plugins: xdist-3.6.1, cov-5.0.0 > created: 8/8 workers > 8 workers [139 items] > > ...FF.F..F.FF.F.F...FFF...F..F.F [ > 51%] > .F...F. > [100%] > === FAILURES > === > _ test_verbose_option[1-False] > _ > [gw2] linux -- Python 3.12.4 /usr/bin/python3.12 > > runner = , verbose = 1 > requires_fixing = False > > @pytest.mark.secondary() > @pytest.mark.parametrize( > ("verbose", "requires_fixing"), product([0, 1, 2], [True, False]) > ) > def test_verbose_option(runner: CliRunner, verbose: int, requires_fixing: > bool) -> None: > """Prints debug level logs only when called with --verbose""" > # Clear logging handlers for logs to work with CliRunner > # For more info see https://github.com/pallets/click/issues/1053) > logging.getLogger().handlers = [] > source = "program: yamlfix" if requires_fixing else "---\nprogram: > yamlfix\n" > args = ["-"] > if verbose >= 1: > args.append("--verbose") > if verbose >= 2: > args.append("-v") > > result = runner.invoke(cli, args, input=source) > > debug_log_format = "[\033[37m+\033[0m]" > unchanged_log_format = "[\033[32m+\033[0m]" > info_log_format = "[\033[36m+\033[0m]" > # Check that changes are printed at info level > assert (f"{info_log_format} Fixed " in result.stderr) == > requires_fixing > if verbose == 0: > assert debug_log_format not in result.stderr > assert unchanged_log_format not in result.stderr > if verbose >= 1: > # If no changes are required, unchanged log should not be printed > > assert (unchanged_log_format in result.stderr) != requires_fixing > E AssertionError: assert ('[\x1b[32m+\x1b[0m]' in > '[\x1b[36m+\x1b[0m] YamlFix: Fixing files\n') != False > E+ where '[\x1b[36m+\x1b[0m] YamlFix: Fixing files\n' = PydanticDeprecatedSince20('The `dict` method is deprecated; use `model_dump` > instead.')>.stderr > > tests/e2e/test_cli.py:160: AssertionError > __ test_include_exclude_files > __ > [gw1] linux -- Python 3.12.4 /usr/bin/python3.12 > > runner = > tmp_path = > PosixPath('/tmp/pytest-of-user42/pytest-1/popen-gw1/test_include_exclude_files0') > > def test_include_exclude_files(runner: CliRunner, tmp_path: Path) -> None
Bug#1077460: python-refurb: FTBFS: dh_auto_test: error: pybuild --test --test-pytest -i python{version} -p 3.12 returned exit code 13
Source: python-refurb Version: 1.27.0-1 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240728 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > debian/rules binary > dh binary --buildsystem=pybuild >dh_update_autotools_config -O--buildsystem=pybuild >dh_autoreconf -O--buildsystem=pybuild >dh_auto_configure -O--buildsystem=pybuild >dh_auto_build -O--buildsystem=pybuild > I: pybuild plugin_pyproject:129: Building wheel for python3.12 with "build" > module > I: pybuild base:311: python3.12 -m build --skip-dependency-check > --no-isolation --wheel --outdir /<>/.pybuild/cpython3_3.12 > * Building wheel... > Successfully built refurb-1.27.0-py3-none-any.whl > I: pybuild plugin_pyproject:144: Unpacking wheel built for python3.12 with > "installer" module >dh_auto_test -O--buildsystem=pybuild > I: pybuild base:311: cd /<>/.pybuild/cpython3_3.12/build; > python3.12 -m pytest -k "not test_checks_are_formatted_properly" > = test session starts > == > platform linux -- Python 3.12.4, pytest-8.3.1, pluggy-1.5.0 > rootdir: /<>/.pybuild/cpython3_3.12/build > configfile: pyproject.toml > testpaths: test > plugins: anyio-4.4.0, cov-5.0.0 > collected 137 items / 1 deselected / 136 selected > > test/test_arg_parsing.py ... [ > 34%] > [ > 52%] > test/test_checks.py .. [ > 68%] > test/test_explain.py [ > 71%] > test/test_gen.py ... [ > 73%] > test/test_github_annotations.py .. [ > 75%] > test/test_loader.py ... [ > 80%] > test/test_main.py .s... [ > 98%] > test/test_visitor.py .F > [100%] > > === FAILURES > === > test_mypy_consistence > _ > > def test_mypy_consistence() -> None: > """ > Ensure the visitor method name to node type mappings used in refurb > are > in sync with the ones of mypy. > > This is meant as a failsafe, especially when the mypy dependency is > upgraded. > > If this fails, review the mappings in > refurb.visitor.METHOD_NODE_MAPPINGS. > """ > > mypy_visitor_mapping = get_mypy_visitor_mapping() > > assert mypy_visitor_mapping == METHOD_NODE_MAPPINGS > E AssertionError: assert {'visit__prom...peExpr'>, ...} == > {'visit__prom...peExpr'>, ...} > E > E Omitting 83 identical items, use -vv to show > E Left contains 1 more item: > E {'visit_type_alias_stmt': } > E Use -v to get more diff > > test/test_visitor.py:82: AssertionError > > -- coverage: platform linux, python 3.12.4-final-0 --- > NameStmts Miss Cover Missing > - > TOTAL3015 0 100% > > 121 files skipped due to complete coverage. > Coverage HTML written to dir htmlcov > > Required test coverage of 100% reached. Total coverage: 100.00% > === short test summary info > > FAILED test/test_visitor.py::test_mypy_consistence - AssertionError: assert > {... > == 1 failed, 134 passed, 1 skipped, 1 deselected in 86.72s (0:01:26) > === > E: pybuild pybuild:389: test: plugin pyproject failed with: exit code=1: cd > /<>/.pybuild/cpython3_3.12/build; python3.12 -m pytest -k "not > test_checks_are_formatted_properly" > dh_auto_test: error: pybuild --test --test-pytest -i python{version} -p 3.12 > returned exit code 13 The full build log is available from: http://qa-logs.debian.net/2024/07/28/python-refurb_1.27.0-1_unstable.log All bugs filed during this archive rebuild are listed at: https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240728;users=lu...@debian.org or: https://udd.debian.org/bugs/?release=na&merged=ign&fnewerval=7&flastmodval=7&fusertag=only&fusertagtag=ftbfs-20240728&fusertaguser=lu...@debian.org&allbugs=1&cseverity=1&ctags=1&caffected=1#results A list of current common problems and possible solutions is available at http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute! If you reassign this bug to another package, please mark it as 'affects'-ing this package. See https://www.debian.org/Bugs/server-control#affects If you fail to reproduce this, please provide a build log and diff it with mine so that we can identify if something relevant changed in t
Bug#1077458: sentry-python: FTBFS: Could not import extension sphinx.domains.c (exception: cannot import name 'ASTDeclaration' from partially initialized module 'sphinx.domains.c._ast' (most likely du
Source: sentry-python Version: 1.40.4-3 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240728 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > make[1]: Entering directory '/<>' > PYTHONPATH=. python3 -m sphinx -b html -E -N -D html_last_updated_fmt="22 > April 2024" docs/ > /<>/debian/python-sentry-sdk-doc/usr/share/doc/python-sentry-sdk-doc/html > Running Sphinx v7.3.7 > > Extension error: > Could not import extension sphinx.domains.c (exception: cannot import name > 'ASTDeclaration' from partially initialized module 'sphinx.domains.c._ast' > (most likely due to a circular import) > (/usr/lib/python3/dist-packages/sphinx/domains/c/_ast.py)) > make[1]: *** [debian/rules:88: override_dh_sphinxdoc] Error 2 The full build log is available from: http://qa-logs.debian.net/2024/07/28/sentry-python_1.40.4-3_unstable.log All bugs filed during this archive rebuild are listed at: https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240728;users=lu...@debian.org or: https://udd.debian.org/bugs/?release=na&merged=ign&fnewerval=7&flastmodval=7&fusertag=only&fusertagtag=ftbfs-20240728&fusertaguser=lu...@debian.org&allbugs=1&cseverity=1&ctags=1&caffected=1#results A list of current common problems and possible solutions is available at http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute! If you reassign this bug to another package, please mark it as 'affects'-ing this package. See https://www.debian.org/Bugs/server-control#affects If you fail to reproduce this, please provide a build log and diff it with mine so that we can identify if something relevant changed in the meantime.
Bug#1077457: python-pytest-toolbox: FTBFS: dh_auto_test: error: pybuild --test --test-pytest -i python{version} -p 3.12 returned exit code 13
Source: python-pytest-toolbox Version: 0.4-4 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240728 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > debian/rules binary > dh binary --with python3 --buildsystem=pybuild >dh_update_autotools_config -O--buildsystem=pybuild >dh_autoreconf -O--buildsystem=pybuild >dh_auto_configure -O--buildsystem=pybuild > I: pybuild base:311: python3.12 setup.py config > /usr/lib/python3/dist-packages/setuptools/dist.py:476: > SetuptoolsDeprecationWarning: Invalid dash-separated options > !! > > > > Usage of dash-separated 'python-tag' will not be supported in future > versions. Please use the underscore name 'python_tag' instead. > > By 2024-Sep-26, you need to update your project and remove deprecated > calls > or your builds will no longer be supported. > > See > https://setuptools.pypa.io/en/latest/userguide/declarative_config.html for > details. > > > > !! > opt = self.warn_dash_deprecation(opt, section) > running config >dh_auto_build -O--buildsystem=pybuild > I: pybuild base:311: /usr/bin/python3 setup.py build > /usr/lib/python3/dist-packages/setuptools/dist.py:476: > SetuptoolsDeprecationWarning: Invalid dash-separated options > !! > > > > Usage of dash-separated 'python-tag' will not be supported in future > versions. Please use the underscore name 'python_tag' instead. > > By 2024-Sep-26, you need to update your project and remove deprecated > calls > or your builds will no longer be supported. > > See > https://setuptools.pypa.io/en/latest/userguide/declarative_config.html for > details. > > > > !! > opt = self.warn_dash_deprecation(opt, section) > running build > running build_py > creating > /<>/.pybuild/cpython3_3.12_pytest-toolbox/build/pytest_toolbox > copying pytest_toolbox/version.py -> > /<>/.pybuild/cpython3_3.12_pytest-toolbox/build/pytest_toolbox > copying pytest_toolbox/comparison.py -> > /<>/.pybuild/cpython3_3.12_pytest-toolbox/build/pytest_toolbox > copying pytest_toolbox/__init__.py -> > /<>/.pybuild/cpython3_3.12_pytest-toolbox/build/pytest_toolbox > copying pytest_toolbox/main.py -> > /<>/.pybuild/cpython3_3.12_pytest-toolbox/build/pytest_toolbox > running egg_info > creating pytest_toolbox.egg-info > writing pytest_toolbox.egg-info/PKG-INFO > writing dependency_links to pytest_toolbox.egg-info/dependency_links.txt > writing entry points to pytest_toolbox.egg-info/entry_points.txt > writing requirements to pytest_toolbox.egg-info/requires.txt > writing top-level names to pytest_toolbox.egg-info/top_level.txt > writing manifest file 'pytest_toolbox.egg-info/SOURCES.txt' > reading manifest file 'pytest_toolbox.egg-info/SOURCES.txt' > adding license file 'LICENSE' > writing manifest file 'pytest_toolbox.egg-info/SOURCES.txt' >dh_auto_test -O--buildsystem=pybuild > I: pybuild base:311: cd > /<>/.pybuild/cpython3_3.12_pytest-toolbox/build; python3.12 -m > pytest tests > = test session starts > == > platform linux -- Python 3.12.4, pytest-8.3.1, pluggy-1.5.0 > rootdir: /<> > configfile: setup.cfg > plugins: timeout-2.3.1 > timeout: 10.0s > timeout method: signal > timeout func_only: False > collected 20 items > > tests/test_comparison.py F.F... [ > 50%] > tests/test_methods.py .. > [100%] > > === FAILURES > === > test_close_to_now_true > > > self = > other = '2024-07-28T18:10:37' > > def __eq__(self, other): > self.other = other > if not isinstance(other, datetime): > try: > > from pydantic.datetime_parse import parse_datetime > > pytest_toolbox/comparison.py:19: > _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ > _ > > name = 'parse_datetime' > > def wrapper(name: str) -> object: > """Raise an error if the object is not found, or warn if it was moved. > > In case it was moved, it still returns the object. > > Args: > name: The object name. > > Returns: > The object. > """ > if name == '__path__': > raise AttributeError(f'module {__name__!r} has no attribute > {name!r}') > >
Bug#1077456: python-itemadapter: FTBFS: dh_auto_test: error: pybuild --test --test-pytest -i python{version} -p 3.12 returned exit code 13
Source: python-itemadapter Version: 0.9.0-1 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240728 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > debian/rules binary > dh binary --buildsystem=pybuild >dh_update_autotools_config -O--buildsystem=pybuild >dh_autoreconf -O--buildsystem=pybuild >dh_auto_configure -O--buildsystem=pybuild > I: pybuild base:311: python3.12 setup.py config > running config >dh_auto_build -O--buildsystem=pybuild > I: pybuild base:311: /usr/bin/python3 setup.py build > running build > running build_py > creating /<>/.pybuild/cpython3_3.12_itemadapter/build/itemadapter > copying itemadapter/adapter.py -> > /<>/.pybuild/cpython3_3.12_itemadapter/build/itemadapter > copying itemadapter/utils.py -> > /<>/.pybuild/cpython3_3.12_itemadapter/build/itemadapter > copying itemadapter/__init__.py -> > /<>/.pybuild/cpython3_3.12_itemadapter/build/itemadapter > copying itemadapter/_imports.py -> > /<>/.pybuild/cpython3_3.12_itemadapter/build/itemadapter > running egg_info > creating itemadapter.egg-info > writing itemadapter.egg-info/PKG-INFO > writing dependency_links to itemadapter.egg-info/dependency_links.txt > writing top-level names to itemadapter.egg-info/top_level.txt > writing manifest file 'itemadapter.egg-info/SOURCES.txt' > reading manifest file 'itemadapter.egg-info/SOURCES.txt' > reading manifest template 'MANIFEST.in' > adding license file 'LICENSE' > writing manifest file 'itemadapter.egg-info/SOURCES.txt' > copying itemadapter/py.typed -> > /<>/.pybuild/cpython3_3.12_itemadapter/build/itemadapter >dh_auto_test -O--buildsystem=pybuild > I: pybuild base:311: cd > /<>/.pybuild/cpython3_3.12_itemadapter/build; python3.12 -m > pytest -v > = test session starts > == > platform linux -- Python 3.12.4, pytest-8.3.1, pluggy-1.5.0 -- > /usr/bin/python3.12 > cachedir: .pytest_cache > rootdir: /<>/.pybuild/cpython3_3.12_itemadapter/build > configfile: pytest.ini > collecting ... collected 131 items > > tests/test_adapter.py::ItemAdapterReprTestCase::test_repr_attrs PASSED [ > 0%] > tests/test_adapter.py::ItemAdapterReprTestCase::test_repr_attrs_init_false > PASSED [ 1%] > tests/test_adapter.py::ItemAdapterReprTestCase::test_repr_dataclass PASSED [ > 2%] > tests/test_adapter.py::ItemAdapterReprTestCase::test_repr_dataclass_init_false > PASSED [ 3%] > tests/test_adapter.py::ItemAdapterReprTestCase::test_repr_dict PASSED[ > 3%] > tests/test_adapter.py::ItemAdapterReprTestCase::test_repr_pydantic PASSED [ > 4%] > tests/test_adapter.py::ItemAdapterReprTestCase::test_repr_scrapy_item PASSED > [ 5%] > tests/test_adapter.py::ItemAdapterInitError::test_non_item PASSED[ > 6%] > tests/test_adapter.py::DictTestCase::test_as_dict PASSED [ > 6%] > tests/test_adapter.py::DictTestCase::test_as_dict_nested PASSED [ > 7%] > tests/test_adapter.py::DictTestCase::test_empty_metadata PASSED [ > 8%] > tests/test_adapter.py::DictTestCase::test_field_names PASSED [ > 9%] > tests/test_adapter.py::DictTestCase::test_field_names_from_class PASSED [ > 9%] > tests/test_adapter.py::DictTestCase::test_field_names_updated PASSED [ > 10%] > tests/test_adapter.py::DictTestCase::test_get_set_value PASSED [ > 11%] > tests/test_adapter.py::DictTestCase::test_get_value_keyerror PASSED [ > 12%] > tests/test_adapter.py::DictTestCase::test_get_value_keyerror_item_dict PASSED > [ 12%] > tests/test_adapter.py::ScrapySubclassedItemTestCase::test_as_dict PASSED [ > 13%] > tests/test_adapter.py::ScrapySubclassedItemTestCase::test_as_dict_nested > PASSED [ 14%] > tests/test_adapter.py::ScrapySubclassedItemTestCase::test_delitem_len_iter > PASSED [ 15%] > tests/test_adapter.py::ScrapySubclassedItemTestCase::test_field_names PASSED > [ 16%] > tests/test_adapter.py::ScrapySubclassedItemTestCase::test_field_names_from_class > PASSED [ 16%] > tests/test_adapter.py::ScrapySubclassedItemTestCase::test_field_names_from_class_empty > PASSED [ 17%] > tests/test_adapter.py::ScrapySubclassedItemTestCase::test_field_names_from_class_nested > PASSED [ 18%] > tests/test_adapter.py::ScrapySubclassedItemTestCase::test_get_field_meta_defined_fields > PASSED [ 19%] > tests/test_adapter.py::ScrapySubclassedItemTestCase::test_get_set_value > PASSED [ 19%] > tests/test_adapter.py::ScrapySubclassedItemTestCase::test_get_value_keyerror > PASSED [ 20%] > tests/test_adapter.py::ScrapySubclassedItemTestCase::test_get_value_keyerror_item_dict > PASSED [ 21%] > tests/test_adapter.py::ScrapySubclassedItemTestCase::test_metadata_common > PASSED [ 22%] > tests/test_adapter.py::ScrapySubclassedItemTestCase::test_set_value_keyerror > PASSED [ 22%] > tests/test_adapter.py::PydanticModelTestCase::test_as_dict PASSED[ > 23
Bug#1077454: bioperl-run: FTBFS: dh_auto_test: error: /usr/bin/perl Build test --verbose 1 returned exit code 255
Source: bioperl-run Version: 1.7.3-11 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240728 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > make[1]: Entering directory '/<>' > mkdir t.skip > for t in Blat Eponine Glimmer2 RepeatMasker Phyml Hyphy MCS ; do mv t/${t}.t > t.skip ; done > PATH=$PATH:/usr/lib/emboss:/usr/lib/phylip/bin/:/usr/lib/tigr-glimmer:debian/test_hack_bin > \ > PHYLIPDIR=/usr/lib/phylip/bin HOME_4_TCOFFEE=/tmp COILSDIR=/usr/share/ncoils/ > \ > dh_auto_test --no-parallel > /usr/bin/perl Build test --verbose 1 > > AMAP version AMAP.2.2 - align multiple protein sequences and print to > standard output > PROBCONS Written by Chuong Do > AMAP algorithm implemented by Ariel Schwartz > > Using parameter set: > initDistrib[] = { 0.40006 0.300119 0.300119 } > gapOpen[] = { 0.01993141696 0.01993141696 } > gapExtend[] = { 0.7943345308 0.7943345308 } > > Loading sequence file: t/data/cysprot.fa > Computing posterior matrices > Building DAG > Starting the sequence annealing process > Creating candidate edge list > Adding edges to the DAG > > AMAP version AMAP.2.2 - align multiple protein sequences and print to > standard output > PROBCONS Written by Chuong Do > AMAP algorithm implemented by Ariel Schwartz > > Using parameter set: > initDistrib[] = { 0.40006 0.300119 0.300119 } > gapOpen[] = { 0.01993141696 0.01993141696 } > gapExtend[] = { 0.7943345308 0.7943345308 } > > Loading sequence file: /tmp/fX0DPN3b3w > Computing posterior matrices > Building DAG > Starting the sequence annealing process > Creating candidate edge list > Adding edges to the DAG > t/Amap.t .. > 1..18 > ok 1 - use Bio::Tools::Run::Alignment::Amap; > ok 2 - use Bio::SeqIO; > ok 3 - use File::Spec; > ok 4 - Found input file > ok 5 - An object of class 'Bio::Tools::Run::Alignment::Amap' isa > 'Bio::Tools::Run::Alignment::Amap' > ok 6 - program_dir returned correct default > ok 7 - error_string returned correct default > ok 8 - aformat returned correct default > ok 9 - outfile_name returned correct default > ok 10 - Correct exe default name > ok 11 - Correct minimum program version > ok 12 - No error occured > ok 13 - outfile_name returned something > ok 14 - An object of class 'Bio::SimpleAlign' isa 'Bio::SimpleAlign' > ok 15 - Correct number of seqs returned > ok 16 - An object of class 'Bio::SimpleAlign' isa 'Bio::SimpleAlign' > ok 17 - Correct number of seqs returned > ok 18 - Got the correct ave % identity > ok > t/BEDTools.t .. > 1..423 > ok 1 - make a default factory > ok 2 - default to command 'bam_to_bed' > ok 3 - make a factory using command 'annotate' > ok 4 - factory command for 'annotate' is correct > ok 5 - all available options for 'annotate' > ok 6 - available parameters for 'annotate' > ok 7 - available switches for 'annotate' > ok 8 - get version for 'annotate' > ok 9 - can run command 'annotate' > ok 10 - result files exists for command 'annotate' > ok 11 - can return output format for command 'annotate' > ok 12 - result claims to be in correct format for command 'annotate' > ok 13 - can return output file for command 'annotate' > ok 14 - file format of '/tmp/kkC7ThWHQe/wnoZSRbChD.bed' consistent with claim > for 'annotate' > ok 15 - can set want to IO object for command 'annotate' > ok 16 - can get the basic object result for command 'annotate' > ok 17 - 'returned object is correct for command 'annotate'' isa > 'Bio::Root::IO' > ok 18 - can get the specific object result for command 'annotate' > ok 19 - 'returned object is correct for command 'annotate'' isa > 'Bio::SeqFeature::Collection' > ok 20 - correct number of features for command 'annotate' # TODO maybe adapt > reference results to Debian specific dataset > ok 21 - make a factory using command 'fasta_from_bed' > ok 22 - factory command for 'fasta_from_bed' is correct > ok 23 - all available options for 'fasta_from_bed' > ok 24 - available parameters for 'fasta_from_bed' > ok 25 - available switches for 'fasta_from_bed' > ok 26 - get version for 'fasta_from_bed' > ok 27 - can run command 'fasta_from_bed' > ok 28 - result files exists for command 'fasta_from_bed' > ok 29 - can return output format for command 'fasta_from_bed' > ok 30 - result claims to be in correct format for command 'fasta_from_bed' > ok 31 - can return output file for command 'fasta_from_bed' > ok 32 - file format consistent with claim for 'fasta_from_bed' > ok 33 - can set want to IO object for command 'fasta_from_bed' > ok 34 - can get the basic object result for command 'fasta_from_bed' > ok 35 - 'returned object is correct for command 'fasta_from_bed'' isa > 'Bio::Root::IO' > ok 36 - can get the specific object result for command 'fasta_from_bed' > ok 37 - 'returned object is correct for command 'fasta_from_bed'' isa > 'Bio::
Bug#1077453: deheader: FTBFS: dh_auto_test: error: make -j8 check returned exit code 2
Source: deheader Version: 1.10-2 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240728 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > make[2]: Entering directory '/<>/test' > make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make > rule. > Testing deheader: no output is good news. > python -> /usr/bin/python3 > deheader: basic compilation failed on a64l.c > deheader: basic compilation failed on abort.c > deheader: basic compilation failed on abs.c > deheader: basic compilation failed on access.c > deheader: basic compilation failed on acos.c > deheader: basic compilation failed on acosh.c > deheader: basic compilation failed on advance.c > deheader: basic compilation failed on alarm.c > deheader: basic compilation failed on asin.c > deheader: basic compilation failed on asinh.c > deheader: basic compilation failed on atan.c > deheader: basic compilation failed on atan2.c > deheader: basic compilation failed on atanh.c > deheader: basic compilation failed on atexit.c > deheader: basic compilation failed on atof.c > deheader: basic compilation failed on atoi.c > deheader: basic compilation failed on atol.c > deheader: basic compilation failed on basename.c > deheader: basic compilation failed on bcmp.c > deheader: basic compilation failed on bcopy.c > deheader: basic compilation failed on brk.c > deheader: basic compilation failed on bsd_signal.c > deheader: basic compilation failed on bsort.c > deheader: basic compilation failed on btowc.c > deheader: basic compilation failed on bzero.c > deheader: basic compilation failed on calloc.c > deheader: basic compilation failed on catclose.c > deheader: basic compilation failed on catgets.c > deheader: basic compilation failed on catopen.c > deheader: basic compilation failed on cbrt.c > deheader: basic compilation failed on ceil.c > deheader: basic compilation failed on cfgetispeed.c > deheader: basic compilation failed on cfgetospeed.c > deheader: basic compilation failed on cfsetispeed.c > deheader: basic compilation failed on cfsetospeed.c > deheader: basic compilation failed on chdir.c > deheader: basic compilation failed on chmod.c > deheader: basic compilation failed on chown.c > deheader: basic compilation failed on chroot.c > deheader: basic compilation failed on clearerr.c > deheader: basic compilation failed on clock.c > deheader: basic compilation failed on clock_getres.c > deheader: basic compilation failed on clock_gettime.c > deheader: basic compilation failed on clock_settime.c > deheader: basic compilation failed on close.c > deheader: basic compilation failed on closedir.c > deheader: basic compilation failed on crypt.c > deheader: basic compilation failed on ctime.c > deheader: basic compilation failed on duplicate.c > deheader: basic compilation failed on fchmod.c > deheader: basic compilation failed on fchown.c > deheader: basic compilation failed on fclose.c > deheader: basic compilation failed on fstat.c > deheader: basic compilation failed on noheaders.c > deheader: basic compilation failed on sbrk.c > deheader: basic compilation failed on string.c > deheader: basic compilation failed on umask.c > --- regress.chk 2023-01-31 00:41:42.0 + > +++ /tmp/regress 2024-07-28 18:13:28.376713659 + > @@ -68,136 +68,120 @@ > deheader: ./string.c includes > deheader: ./umask.c includes > deheader: ./umask.c includes > -deheader: ./a64l.c succeeded. > -deheader: in ./a64l.c, a64l() prevents uninclusion of > -deheader: ./abort.c succeeded. > -deheader: in ./abort.c, abort() prevents uninclusion of > -deheader: ./abs.c succeeded. > -deheader: in ./abs.c, abs() prevents uninclusion of > -deheader: ./access.c succeeded. > -deheader: in ./access.c, access() prevents uninclusion of > -deheader: ./acos.c succeeded. > -deheader: in ./acos.c, acos() prevents uninclusion of > -deheader: ./acosh.c succeeded. > -deheader: in ./acosh.c, acosh() prevents uninclusion of > -deheader: ./advance.c succeeded. > -deheader: in ./advance.c, advance() prevents uninclusion of > -deheader: in ./advance.c, getc() portability requires . > -deheader: ./alarm.c succeeded. > -deheader: in ./alarm.c, alarm() prevents uninclusion of > -deheader: ./asin.c succeeded. > -deheader: in ./asin.c, asin() prevents uninclusion of > -deheader: ./asinh.c succeeded. > -deheader: in ./asinh.c, asinh() prevents uninclusion of > -deheader: ./atan.c succeeded. > -deheader: in ./atan.c, atan() prevents uninclusion of > -deheader: ./atan2.c succeeded. > -deheader: in ./atan2.c, atan2() prevents uninclusion of > -deheader: ./atanh.c succeeded. > -deheader: in ./atanh.c, atanh() prevents uninclusion of > -deheader: ./atexit.c succeeded. > -deheader: in ./atexit.c, atexit() prevents uninclusion of > -deheader: ./atof.c succeeded. > -deheader: in ./atof.c, l64a() prevents uninclusion of > -deheader: ./a
Bug#1077455: aflplusplus: FTBFS: make[3]: *** [GNUmakefile.gcc_plugin:127: test_deps] Error 1
Source: aflplusplus Version: 4.21c-2 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240728 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > make[3]: Entering directory '/<>' > [+] shmat seems to be working. > [*] Checking for working 'cc'... > [*] Checking for gcc plugin development header files... > [-] Oops, can't find gcc header files. Be sure to install 'gcc-X-plugin-dev'. > make[3]: *** [GNUmakefile.gcc_plugin:127: test_deps] Error 1 The full build log is available from: http://qa-logs.debian.net/2024/07/28/aflplusplus_4.21c-2_unstable.log All bugs filed during this archive rebuild are listed at: https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240728;users=lu...@debian.org or: https://udd.debian.org/bugs/?release=na&merged=ign&fnewerval=7&flastmodval=7&fusertag=only&fusertagtag=ftbfs-20240728&fusertaguser=lu...@debian.org&allbugs=1&cseverity=1&ctags=1&caffected=1#results A list of current common problems and possible solutions is available at http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute! If you reassign this bug to another package, please mark it as 'affects'-ing this package. See https://www.debian.org/Bugs/server-control#affects If you fail to reproduce this, please provide a build log and diff it with mine so that we can identify if something relevant changed in the meantime.
Bug#1077446: cmake: FTBFS: dh_auto_test: error: cd Build && make -j8 test ARGS\+=--verbose ARGS\+=-j8 -j1 "ARGS=-E CTestTestUpload\\|curl --timeout 5000 -j8" returned exit code 2
Source: cmake Version: 3.30.1-1 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240728 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > make[2]: Entering directory '/<>/Build' > Running tests... > bin/ctest --force-new-ctest-process -E CTestTestUpload\|curl --timeout 5000 > -j8 > Test project /<>/Build > Guessing configuration NoConfig > Start 88: LinkFlags-prepare > Start 198: wrapping > Start 105: SubProject > Start 151: complexOneConfig > Start 191: Guide.ImportExport.MyExe > Start 193: Guide.ImportExport.MathFunctions > Start 195: Guide.ImportExport.MathFunctionsComponents > Start 210: linkorder1 > 1/721 Test #88: LinkFlags-prepare > ... Passed1.27 sec > Start 89: LinkFlags-lib > 2/721 Test #193: Guide.ImportExport.MathFunctions > Passed1.30 sec > Start 265: CTestTestTimeout > 3/721 Test #105: SubProject > .. Passed1.41 sec > Start 1: SystemInformationNew > 4/721 Test #89: LinkFlags-lib > ... Passed0.28 sec > Start 90: LinkFlags-dll > 5/721 Test #195: Guide.ImportExport.MathFunctionsComponents > .. Passed1.54 sec > Start 2: kwsys.testEncode > 6/721 Test #2: kwsys.testEncode > Passed0.00 sec > Start 3: kwsys.testTerminal > 7/721 Test #3: kwsys.testTerminal > .. Passed0.00 sec > Start 4: kwsys.testConfigure > 8/721 Test #4: kwsys.testConfigure > . Passed0.00 sec > Start 5: kwsys.testStatus > 9/721 Test #5: kwsys.testStatus > Passed0.00 sec > Start 6: kwsys.testSystemTools > 10/721 Test #6: kwsys.testSystemTools > ... Passed0.02 sec > Start 7: kwsys.testCommandLineArguments > 11/721 Test #7: kwsys.testCommandLineArguments > .. Passed0.02 sec > Start 8: kwsys.testCommandLineArguments1 > 12/721 Test #8: kwsys.testCommandLineArguments1 > . Passed0.01 sec > Start 9: kwsys.testDirectory > 13/721 Test #9: kwsys.testDirectory > . Passed0.01 sec > Start 10: kwsys.testEncoding > 14/721 Test #10: kwsys.testEncoding > .. Passed0.01 sec > Start 11: kwsys.testFStream > 15/721 Test #11: kwsys.testFStream > ... Passed0.02 sec > Start 12: kwsys.testConsoleBuf > 16/721 Test #12: kwsys.testConsoleBuf > Passed0.00 sec > Start 13: kwsys.testSystemInformation > 17/721 Test #13: kwsys.testSystemInformation > . Passed0.03 sec > Start 14: kwsys.testDynamicLoader > 18/721 Test #14: kwsys.testDynamicLoader > . Passed0.01 sec > Start 15: kwsys.testProcess-1 > 19/721 Test #90: LinkFlags-dll > ... Passed0.22 sec > Start 91: LinkFlags-mod > 20/721 Test #191: Guide.ImportExport.MyExe > Passed1.81 sec > Start 16: kwsys.testProcess-2 > 21/721 Test #16: kwsys.testProcess-2 > . Passed0.00 sec > Start 17: kwsys.testProcess-3 > 22/721 Test #91: LinkFlags-mod > ... Passed0.20 sec > Start 92: LinkFlags-exe > 23/721 Test #15: kwsys.testProcess-1 > . Passed0.29 sec > Start 18: kwsys.testProcess-4 > 24/721 Test #18: kwsys.testProcess-4 > . Passed0.02 sec > Start 19: kwsys.testProcess-5 > 25/721 Test #19: kwsys.testProcess-5 > . Passed0.02 sec > Start 20: kwsys.testProcess-6 > 26/721 Test #1: SystemInformationNew > Passed0.76 sec > Start 21: kwsys.testProcess-9 > 27/721 Test #92: LinkFlags-exe > ... Passed0.22 sec > Start 93: LinkFlags-lib_config > 28/721 Test #93: LinkFlags-lib_config > Passed0.20 sec > Start 94: LinkFlags-dll_config > 29/721 Test #198: wrapping >
Bug#1077451: golang-github-gopacket-gopacket: FTBFS: make: *** [debian/rules:10: binary] Error 25
Source: golang-github-gopacket-gopacket Version: 1.2.0-2 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240728 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > make[1]: Entering directory '/<>' > dh_auto_configure > chmod -x _build/src/github.com/gopacket/gopacket/pcapgo/write.go > rm -rf _build/src/github.com/gopacket/gopacket/routing/routing_test.go > rm -rf _build/src/github.com/gopacket/gopacket/pcapgo/ngwrite_dsb_test.go > make[1]: Leaving directory '/<>' >dh_auto_build -O--builddirectory=_build -O--buildsystem=golang > cd _build && go install -trimpath -v -p 8 github.com/gopacket/gopacket > github.com/gopacket/gopacket/afpacket github.com/gopacket/gopacket/bytediff > github.com/gopacket/gopacket/defrag/lcmdefrag > github.com/gopacket/gopacket/dumpcommand > github.com/gopacket/gopacket/ip4defrag github.com/gopacket/gopacket/layers > github.com/gopacket/gopacket/macs github.com/gopacket/gopacket/pcap > github.com/gopacket/gopacket/pcapgo github.com/gopacket/gopacket/reassembly > github.com/gopacket/gopacket/routing github.com/gopacket/gopacket/tcpassembly > github.com/gopacket/gopacket/tcpassembly/tcpreader > internal/goarch > internal/goos > internal/goexperiment > internal/unsafeheader > internal/godebugs > internal/coverage/rtcov > runtime/internal/atomic > internal/cpu > runtime/internal/syscall > internal/race > internal/abi > internal/chacha8rand > runtime/internal/math > runtime/internal/sys > sync/atomic > unicode > unicode/utf8 > internal/itoa > math/bits > cmp > internal/nettrace > encoding > internal/bytealg > log/internal > container/list > slices > github.com/gopacket/gopacket/macs > math > runtime > internal/reflectlite > sync > internal/testlog > internal/singleflight > internal/bisect > runtime/cgo > errors > internal/godebug > sort > io > internal/oserror > strconv > internal/safefilepath > path > vendor/golang.org/x/net/dns/dnsmessage > syscall > internal/intern > bytes > strings > hash > hash/crc32 > net/netip > reflect > bufio > internal/syscall/execenv > internal/syscall/unix > time > context > io/fs > internal/poll > internal/fmtsort > encoding/binary > os > golang.org/x/sys/unix > fmt > net > encoding/hex > github.com/gopacket/gopacket/bytediff > flag > golang.org/x/net/bpf > log > runtime/debug > compress/flate > compress/gzip > github.com/gopacket/gopacket > github.com/gopacket/gopacket/routing > github.com/gopacket/gopacket/afpacket > github.com/gopacket/gopacket/layers > github.com/gopacket/gopacket/defrag/lcmdefrag > github.com/gopacket/gopacket/ip4defrag > github.com/gopacket/gopacket/pcap > github.com/gopacket/gopacket/tcpassembly > github.com/gopacket/gopacket/reassembly > github.com/gopacket/gopacket/pcapgo > github.com/gopacket/gopacket/dumpcommand > github.com/gopacket/gopacket/tcpassembly/tcpreader > # github.com/gopacket/gopacket/pcap > src/github.com/gopacket/gopacket/pcap/pcap_unix.go:350:18: could not > determine kind of name for C.gopacket_time_secs_t > dh_auto_build: error: cd _build && go install -trimpath -v -p 8 > github.com/gopacket/gopacket github.com/gopacket/gopacket/afpacket > github.com/gopacket/gopacket/bytediff > github.com/gopacket/gopacket/defrag/lcmdefrag > github.com/gopacket/gopacket/dumpcommand > github.com/gopacket/gopacket/ip4defrag github.com/gopacket/gopacket/layers > github.com/gopacket/gopacket/macs github.com/gopacket/gopacket/pcap > github.com/gopacket/gopacket/pcapgo github.com/gopacket/gopacket/reassembly > github.com/gopacket/gopacket/routing github.com/gopacket/gopacket/tcpassembly > github.com/gopacket/gopacket/tcpassembly/tcpreader returned exit code 1 > make: *** [debian/rules:10: binary] Error 25 The full build log is available from: http://qa-logs.debian.net/2024/07/28/golang-github-gopacket-gopacket_1.2.0-2_unstable.log All bugs filed during this archive rebuild are listed at: https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240728;users=lu...@debian.org or: https://udd.debian.org/bugs/?release=na&merged=ign&fnewerval=7&flastmodval=7&fusertag=only&fusertagtag=ftbfs-20240728&fusertaguser=lu...@debian.org&allbugs=1&cseverity=1&ctags=1&caffected=1#results A list of current common problems and possible solutions is available at http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute! If you reassign this bug to another package, please mark it as 'affects'-ing this package. See https://www.debian.org/Bugs/server-control#affects If you fail to reproduce this, please provide a build log and diff it with mine so that we can identify if something relevant changed in the meantime.
Bug#1077449: glycin-loaders: FTBFS: make: *** [debian/rules:16: binary] Error 25
Source: glycin-loaders Version: 0.1.2+dfsg-2 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240728 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > make[1]: Entering directory '/<>' > /usr/share/cargo/bin/cargo prepare-debian debian/cargo_registry > --link-from-system > debian cargo wrapper: options, profiles, parallel, lto: ['parallel=8'] [] > ['-j8'] 0 > debian cargo wrapper: rust_type, gnu_type: x86_64-unknown-linux-gnu, > x86_64-linux-gnu > debian cargo wrapper: linking /usr/share/cargo/registry/* into > /<>/debian/cargo_registry/ > rm -f Cargo.lock > dh_auto_configure -- \ > -Dloaders="glycin-heif, glycin-image-rs" \ > -Dhost_arch="x86_64-unknown-linux-gnu" > cd obj-x86_64-linux-gnu && DEB_PYTHON_INSTALL_LAYOUT=deb LC_ALL=C.UTF-8 > meson setup .. --wrap-mode=nodownload --buildtype=plain --prefix=/usr > --sysconfdir=/etc --localstatedir=/var --libdir=lib/x86_64-linux-gnu > -Dpython.bytecompile=-1 "-Dloaders=glycin-heif, glycin-image-rs" > -Dhost_arch=x86_64-unknown-linux-gnu > The Meson build system > Version: 1.5.1 > Source dir: /<> > Build dir: /<>/obj-x86_64-linux-gnu > Build type: native build > Project name: glycin-loaders > Project version: 0.1.2 > Rust compiler for the host machine: rustc -C linker=cc (rustc 1.79.0) > Rust linker for the host machine: rustc -C linker=cc ld.bfd 2.42.90.20240720 > Host machine cpu family: x86_64 > Host machine cpu: x86_64 > Found pkg-config: YES (/usr/bin/pkg-config) 1.8.1 > Run-time dependency gtk4 found: YES 4.12.5 > Run-time dependency libheif found: YES 1.17.6 > Program cargo found: YES (/usr/share/cargo/bin/cargo) > Configuring tmp-glycin-heif using configuration > Program msgfmt found: YES (/usr/bin/msgfmt) > Configuring tmp-glycin-image-rs using configuration > Program meson found: YES > Build targets in project: 6 > > glycin-loaders 0.1.2 > > User defined options > buildtype : plain > libdir: lib/x86_64-linux-gnu > localstatedir : /var > prefix: /usr > sysconfdir: /etc > wrap_mode : nodownload > python.bytecompile: -1 > host_arch : x86_64-unknown-linux-gnu > loaders : glycin-heif, glycin-image-rs > > Found ninja-1.12.1 at /usr/bin/ninja > make[1]: Leaving directory '/<>' >dh_auto_build > cd obj-x86_64-linux-gnu && LC_ALL=C.UTF-8 ninja -j8 -v > [0/6] env LOCALEDIR=/usr/share/locale /usr/share/cargo/bin/cargo build > --target-dir /<>/obj-x86_64-linux-gnu/loaders --profile release > --manifest-path /<>/Cargo.toml --package glycin-heif > debian cargo wrapper: options, profiles, parallel, lto: ['parallel=8'] [] > ['-j8'] 0 > debian cargo wrapper: rust_type, gnu_type: x86_64-unknown-linux-gnu, > x86_64-linux-gnu > debian cargo wrapper: running subprocess (['env', 'RUST_BACKTRACE=1', > '/usr/bin/cargo', '-Zavoid-dev-deps', 'build', '--verbose', '--verbose', > '-j8', '--target', 'x86_64-unknown-linux-gnu', '--target-dir', > '/<>/obj-x86_64-linux-gnu/loaders', '--profile', 'release', > '--manifest-path', '/<>/Cargo.toml', '--package', > 'glycin-heif'],) {} > error: failed to select a version for the requirement `glycin-utils = > "^0.1.0"` > candidate versions found which didn't match: 1.0.1 > location searched: directory source `/<>/debian/cargo_registry` > (which is replacing registry `crates-io`) > required by package `glycin-heif v0.1.0 > (/<>/loaders/glycin-heif)` > perhaps a crate was updated and forgotten to be re-vendored? > [1/6] /usr/bin/meson --internal msgfmthelper --msgfmt=/usr/bin/msgfmt > loaders/tmp-glycin-heif loaders/glycin-heif.conf desktop ../loaders/../po > /usr/bin/msgfmt: ../loaders/../po/LINGUAS does not exist > [2/6] /usr/bin/meson --internal msgfmthelper --msgfmt=/usr/bin/msgfmt > loaders/tmp-glycin-image-rs loaders/glycin-image-rs.conf desktop > ../loaders/../po > /usr/bin/msgfmt: ../loaders/../po/LINGUAS does not exist > loaders/tmp-glycin-image-rs:17:0: warning: invalid non-blank line > loaders/tmp-glycin-image-rs:21:0: warning: invalid non-blank line > FAILED: loaders/glycin-heif-bin > env LOCALEDIR=/usr/share/locale /usr/share/cargo/bin/cargo build --target-dir > /<>/obj-x86_64-linux-gnu/loaders --profile release > --manifest-path /<>/Cargo.toml --package glycin-heif > ninja: build stopped: subcommand failed. > dh_auto_build: error: cd obj-x86_64-linux-gnu && LC_ALL=C.UTF-8 ninja -j8 -v > returned exit code 1 > make: *** [debian/rules:16: binary] Error 25 The full build log is available from: http://qa-logs.debian.net/2024/07/28/glycin-loaders_0.1.2+dfsg-2_unstable.log All bugs filed during this archive rebuild are listed at: https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240728;users=lu...@debian.org or: https://udd.debian.org/bugs/?release=na&merged=ign&fnewerval=7&flastmodval=7&fusertag=only&fusertagtag=ftbfs-20240728&fusertaguser=lu
Bug#1077448: cryfs: FTBFS: make[1]: *** [debian/rules:9: override_dh_auto_configure] Error 1
Source: cryfs Version: 0.11.4-1 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240728 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > make[1]: Entering directory '/<>' > mkdir -p build > dpkg-architecture > DEB_BUILD_ARCH=amd64 > DEB_BUILD_ARCH_ABI=base > DEB_BUILD_ARCH_BITS=64 > DEB_BUILD_ARCH_CPU=amd64 > DEB_BUILD_ARCH_ENDIAN=little > DEB_BUILD_ARCH_LIBC=gnu > DEB_BUILD_ARCH_OS=linux > DEB_BUILD_GNU_CPU=x86_64 > DEB_BUILD_GNU_SYSTEM=linux-gnu > DEB_BUILD_GNU_TYPE=x86_64-linux-gnu > DEB_BUILD_MULTIARCH=x86_64-linux-gnu > DEB_HOST_ARCH=amd64 > DEB_HOST_ARCH_ABI=base > DEB_HOST_ARCH_BITS=64 > DEB_HOST_ARCH_CPU=amd64 > DEB_HOST_ARCH_ENDIAN=little > DEB_HOST_ARCH_LIBC=gnu > DEB_HOST_ARCH_OS=linux > DEB_HOST_GNU_CPU=x86_64 > DEB_HOST_GNU_SYSTEM=linux-gnu > DEB_HOST_GNU_TYPE=x86_64-linux-gnu > DEB_HOST_MULTIARCH=x86_64-linux-gnu > DEB_TARGET_ARCH=amd64 > DEB_TARGET_ARCH_ABI=base > DEB_TARGET_ARCH_BITS=64 > DEB_TARGET_ARCH_CPU=amd64 > DEB_TARGET_ARCH_ENDIAN=little > DEB_TARGET_ARCH_LIBC=gnu > DEB_TARGET_ARCH_OS=linux > DEB_TARGET_GNU_CPU=x86_64 > DEB_TARGET_GNU_SYSTEM=linux-gnu > DEB_TARGET_GNU_TYPE=x86_64-linux-gnu > DEB_TARGET_MULTIARCH=x86_64-linux-gnu > if `dpkg-architecture -e armel` || `dpkg-architecture -e armhf` || > `dpkg-architecture -e s390x`; then \ > echo "Performing armel build"; \ > (cd build && cmake .. -DDISABLE_ASM=ON > -DDEPENDENCY_CONFIG=../cmake-utils/DependenciesFromLocalSystem.cmake > -DBUILD_TESTING=ON -DCRYFS_UPDATE_CHECKS=OFF); \ > else \ > (cd build && cmake .. > -DDEPENDENCY_CONFIG=../cmake-utils/DependenciesFromLocalSystem.cmake > -DBUILD_TESTING=ON -DCRYFS_UPDATE_CHECKS=OFF); \ > fi > CMake Deprecation Warning at CMakeLists.txt:7 (cmake_policy): > The OLD behavior for policy CMP0065 will be removed from a future version > of CMake. > > The cmake-policies(7) manual explains that the OLD behaviors of all > policies are deprecated and that a policy should be set to OLD only under > specific short-term circumstances. Projects should be ported to the NEW > behavior and not rely on setting a policy to OLD. > > > -- The C compiler identification is unknown > -- The CXX compiler identification is unknown > CMake Error at CMakeLists.txt:13 (project): > The CMAKE_C_COMPILER: > > /usr/bin/gcc-13 > > is not a full path to an existing compiler tool. > > Tell CMake where to find the compiler by setting either the environment > variable "CC" or the CMake cache entry CMAKE_C_COMPILER to the full path to > the compiler, or to the compiler name if it is in the PATH. > > > CMake Error at CMakeLists.txt:13 (project): > The CMAKE_CXX_COMPILER: > > /usr/bin/g++-13 > > is not a full path to an existing compiler tool. > > Tell CMake where to find the compiler by setting either the environment > variable "CXX" or the CMake cache entry CMAKE_CXX_COMPILER to the full path > to the compiler, or to the compiler name if it is in the PATH. > > > -- Configuring incomplete, errors occurred! > make[1]: *** [debian/rules:9: override_dh_auto_configure] Error 1 The full build log is available from: http://qa-logs.debian.net/2024/07/28/cryfs_0.11.4-1_unstable.log All bugs filed during this archive rebuild are listed at: https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240728;users=lu...@debian.org or: https://udd.debian.org/bugs/?release=na&merged=ign&fnewerval=7&flastmodval=7&fusertag=only&fusertagtag=ftbfs-20240728&fusertaguser=lu...@debian.org&allbugs=1&cseverity=1&ctags=1&caffected=1#results A list of current common problems and possible solutions is available at http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute! If you reassign this bug to another package, please mark it as 'affects'-ing this package. See https://www.debian.org/Bugs/server-control#affects If you fail to reproduce this, please provide a build log and diff it with mine so that we can identify if something relevant changed in the meantime.
Bug#1077447: libsyntax-infix-smartmatch-perl: FTBFS: make: *** [debian/rules:6: binary] Error 25
Source: libsyntax-infix-smartmatch-perl Version: 0.005-2 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240728 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > debian/rules binary > dh binary >dh_update_autotools_config >dh_autoreconf >dh_auto_configure > /usr/bin/perl Build.PL --installdirs vendor --config "optimize=-g -O2 > -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. > -fstack-protector-strong -fstack-clash-protection -Wformat > -Werror=format-security -fcf-protection -Wdate-time -D_FORTIFY_SOURCE=2" > --config "ld=x86_64-linux-gnu-gcc -g -O2 > -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. > -fstack-protector-strong -fstack-clash-protection -Wformat > -Werror=format-security -fcf-protection -Wl,-z,relro -Wl,-z,now" > Creating new 'Build' script for 'Syntax-Infix-Smartmatch' version '0.005' >dh_auto_build > /usr/bin/perl Build > Undefined subroutine &XS::Parse::Infix::Builder_data::XSPARSEINFIX_H called > at lib/Syntax/Infix/XSParseInfix.h.PL line 9. > lib/Syntax/Infix/XSParseInfix.h.PL returned 6400 > dh_auto_build: error: /usr/bin/perl Build returned exit code 25 > make: *** [debian/rules:6: binary] Error 25 The full build log is available from: http://qa-logs.debian.net/2024/07/28/libsyntax-infix-smartmatch-perl_0.005-2_unstable.log All bugs filed during this archive rebuild are listed at: https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240728;users=lu...@debian.org or: https://udd.debian.org/bugs/?release=na&merged=ign&fnewerval=7&flastmodval=7&fusertag=only&fusertagtag=ftbfs-20240728&fusertaguser=lu...@debian.org&allbugs=1&cseverity=1&ctags=1&caffected=1#results A list of current common problems and possible solutions is available at http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute! If you reassign this bug to another package, please mark it as 'affects'-ing this package. See https://www.debian.org/Bugs/server-control#affects If you fail to reproduce this, please provide a build log and diff it with mine so that we can identify if something relevant changed in the meantime.
Bug#1077445: php-dompdf: FTBFS: PHP Warning: require_once(/usr/share/php/Phenx/PhpFontLib/autoload.php): Failed to open stream: No such file or directory in /<>/vendor/autoload.php on lin
Source: php-dompdf Version: 2.0.7+dfsg-1 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240728 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > make[1]: Entering directory '/<>' > phpabtpl --require-file ../lib/Cpdf.php composer.json > > debian/autoload.php.tpl > mkdir -p vendor > phpab --output vendor/autoload.php \ > --template debian/autoload.php.tpl \ > src/ > phpab %development% - Copyright (C) 2009 - 2024 by Arne Blankerts and > Contributors > > Scanning directory src/ > > Autoload file vendor/autoload.php generated. > > phpabtpl --require mockery/mockery --require-file ../vendor/autoload.php > > debian/autoload.tests.php.tpl > Proceeding without a composer.json file.phpab --output tests/autoload.php \ > --template debian/autoload.tests.php.tpl \ > tests/ > phpab %development% - Copyright (C) 2009 - 2024 by Arne Blankerts and > Contributors > > Scanning directory tests/ > > Autoload file tests/autoload.php generated. > > phpunit --no-coverage --bootstrap tests/autoload.php > PHP Warning: require_once(/usr/share/php/Phenx/PhpFontLib/autoload.php): > Failed to open stream: No such file or directory in > /<>/vendor/autoload.php on line 5 > PHPUnit 9.6.20 by Sebastian Bergmann and contributors. > > Error in bootstrap script: Error: > Failed opening required '/usr/share/php/Phenx/PhpFontLib/autoload.php' > (include_path='.:/usr/share/php') > #0 /<>/tests/autoload.php(44): require_once() > #1 /usr/share/php/PHPUnit/Util/FileLoader.php(66): include_once('...') > #2 /usr/share/php/PHPUnit/Util/FileLoader.php(49): > PHPUnit\Util\FileLoader::load() > #3 /usr/share/php/PHPUnit/TextUI/Command.php(567): > PHPUnit\Util\FileLoader::checkAndLoad() > #4 /usr/share/php/PHPUnit/TextUI/Command.php(345): > PHPUnit\TextUI\Command->handleBootstrap() > #5 /usr/share/php/PHPUnit/TextUI/Command.php(114): > PHPUnit\TextUI\Command->handleArguments() > #6 /usr/share/php/PHPUnit/TextUI/Command.php(99): > PHPUnit\TextUI\Command->run() > #7 /usr/bin/phpunit(107): PHPUnit\TextUI\Command::main() > #8 {main} > make[1]: *** [debian/rules:60: override_dh_auto_test] Error 1 The full build log is available from: http://qa-logs.debian.net/2024/07/28/php-dompdf_2.0.7+dfsg-1_unstable.log All bugs filed during this archive rebuild are listed at: https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240728;users=lu...@debian.org or: https://udd.debian.org/bugs/?release=na&merged=ign&fnewerval=7&flastmodval=7&fusertag=only&fusertagtag=ftbfs-20240728&fusertaguser=lu...@debian.org&allbugs=1&cseverity=1&ctags=1&caffected=1#results A list of current common problems and possible solutions is available at http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute! If you reassign this bug to another package, please mark it as 'affects'-ing this package. See https://www.debian.org/Bugs/server-control#affects If you fail to reproduce this, please provide a build log and diff it with mine so that we can identify if something relevant changed in the meantime.
Bug#1077444: node-ajv: FTBFS: dh_auto_test: error: /bin/sh -ex debian/tests/pkg-js/test returned exit code 1
Source: node-ajv Version: 8.12.0~ds+~2.1.1-4 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240728 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > make[1]: Entering directory '/<>' > tsc > cp -r lib/refs dist > rm dist/refs/json-schema-2019-09/index.ts > rm dist/refs/json-schema-2020-12/index.ts > rm dist/refs/jtd-schema.ts > dh_auto_build --buildsystem=nodejs > Found debian/nodejs/ajv-formats/build > cd ./ajv-formats && sh -ex ../debian/nodejs/ajv-formats/build > + mkdir -p node_modules > + ln -s ../.. node_modules/ajv > + tsc > + rm -rf node_modules > make[1]: Leaving directory '/<>' >dh_auto_test --buildsystem=nodejs > ln -s ../debian/tests/test_modules/fast-uri node_modules/fast-uri > ln -s ../debian/tests/test_modules/json-schema-test > node_modules/json-schema-test > ln -s ../debian/tests/test_modules/module-from-string > node_modules/module-from-string > ln -s ../. node_modules/ajv > /bin/sh -ex debian/tests/pkg-js/test > + rm -f spec/_json/*.js > + node scripts/jsontests > + test != > + TS_NODE_PROJECT=spec/tsconfig.json mocha --bail --exit --timeout 10 -r > ts-node/register spec/**/*.spec.{ts,js} > > Exception during run: Error: Package subpath './async' is not defined by > "exports" in /usr/share/nodejs/nanoid/package.json > at exportsNotFound (node:internal/modules/esm/resolve:304:10) > at packageExportsResolve (node:internal/modules/esm/resolve:651:9) > at resolveExports (node:internal/modules/cjs/loader:592:36) > at Function.Module._findPath (node:internal/modules/cjs/loader:669:31) > at Function.Module._resolveFilename > (node:internal/modules/cjs/loader:1131:27) > at > Function.Module._resolveFilename.sharedData.moduleResolveFilenameHook.installedValue > [as _resolveFilename] > (/usr/share/nodejs/@cspotcode/source-map-support/source-map-support.js:811:30) > at Function.Module._load (node:internal/modules/cjs/loader:986:27) > at Module.require (node:internal/modules/cjs/loader:1233:19) > at require (node:internal/modules/helpers:179:18) > at Module. > (/<>/debian/tests/test_modules/module-from-string/dist/index.js:9:15) > at Module._compile (node:internal/modules/cjs/loader:1358:14) > at Module.m._compile (/usr/share/nodejs/ts-node/src/index.ts:1624:23) > at Module._extensions..js (node:internal/modules/cjs/loader:1416:10) > at Object.require.extensions. [as .js] > (/usr/share/nodejs/ts-node/src/index.ts:1627:12) > at Module.load (node:internal/modules/cjs/loader:1208:32) > at Function.Module._load (node:internal/modules/cjs/loader:1024:12) > at Module.require (node:internal/modules/cjs/loader:1233:19) > at require (node:internal/modules/helpers:179:18) > at Object. (/<>/spec/standalone.spec.ts:7:1) > at Module._compile (node:internal/modules/cjs/loader:1358:14) > at Module.m._compile (/usr/share/nodejs/ts-node/src/index.ts:1624:23) > at Module._extensions..js (node:internal/modules/cjs/loader:1416:10) > at Object.require.extensions. [as .ts] > (/usr/share/nodejs/ts-node/src/index.ts:1627:12) > at Module.load (node:internal/modules/cjs/loader:1208:32) > at Function.Module._load (node:internal/modules/cjs/loader:1024:12) > at Module.require (node:internal/modules/cjs/loader:1233:19) > at require (node:internal/modules/helpers:179:18) > at Object.exports.requireOrImport > (/usr/share/nodejs/mocha/lib/nodejs/esm-utils.js:53:16) > at async Object.exports.loadFilesAsync > (/usr/share/nodejs/mocha/lib/nodejs/esm-utils.js:100:20) > at async singleRun (/usr/share/nodejs/mocha/lib/cli/run-helpers.js:125:3) > at async Object.exports.handler > (/usr/share/nodejs/mocha/lib/cli/run.js:370:5) { > code: 'ERR_PACKAGE_PATH_NOT_EXPORTED' > } > dh_auto_test: error: /bin/sh -ex debian/tests/pkg-js/test returned exit code 1 The full build log is available from: http://qa-logs.debian.net/2024/07/28/node-ajv_8.12.0~ds+~2.1.1-4_unstable.log All bugs filed during this archive rebuild are listed at: https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240728;users=lu...@debian.org or: https://udd.debian.org/bugs/?release=na&merged=ign&fnewerval=7&flastmodval=7&fusertag=only&fusertagtag=ftbfs-20240728&fusertaguser=lu...@debian.org&allbugs=1&cseverity=1&ctags=1&caffected=1#results A list of current common problems and possible solutions is available at http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute! If you reassign this bug to another package, please mark it as 'affects'-ing this package. See https://www.debian.org/Bugs/server-control#affects If you fail to reproduce this, please provide a build log and diff it with mine so that we can identify if something relevant changed in the meantime.
Bug#1077443: flask-babel: FTBFS: dh_auto_test: error: pybuild --test --test-pytest -i python{version} -p 3.12 returned exit code 13
Source: flask-babel Version: 4.1.0-1 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240728 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > debian/rules binary > dh binary --with sphinxdoc,python3 --buildsystem=pybuild >dh_update_autotools_config -O--buildsystem=pybuild >dh_autoreconf -O--buildsystem=pybuild >dh_auto_configure -O--buildsystem=pybuild >dh_auto_build -O--buildsystem=pybuild > I: pybuild plugin_pyproject:129: Building wheel for python3.12 with "build" > module > I: pybuild base:311: python3.12 -m build --skip-dependency-check > --no-isolation --wheel --outdir > /<>/.pybuild/cpython3_3.12_flask-babel > * Building wheel... > Successfully built flask_babel-4.1.0-py3-none-any.whl > I: pybuild plugin_pyproject:144: Unpacking wheel built for python3.12 with > "installer" module >dh_auto_test -O--buildsystem=pybuild > I: pybuild base:311: cd > /<>/.pybuild/cpython3_3.12_flask-babel/build; python3.12 -m > pytest tests > = test session starts > == > platform linux -- Python 3.12.4, pytest-8.3.1, pluggy-1.5.0 > rootdir: /<>/.pybuild/cpython3_3.12_flask-babel/build > configfile: pyproject.toml > plugins: mock-3.14.0 > collected 33 items > > tests/test_app_factory.py . [ > 3%] > tests/test_date_formatting.py [ > 15%] > tests/test_force_locale.py [ > 27%] > tests/test_gettext.py .FF[ > 72%] > tests/test_integration.py .F.[ > 93%] > tests/test_multiple_apps.py .[ > 96%] > tests/test_number_formatting.py . > [100%] > > === FAILURES > === > test_list_translations > > > def test_list_translations(): > app = flask.Flask(__name__) > b = babel.Babel(app, default_locale="de_DE") > > with app.app_context(): > translations = b.list_translations() > assert len(translations) == 3 > > assert str(translations[0]) == "de" > E AssertionError: assert 'ja' == 'de' > E > E - de > E + ja > > tests/test_gettext.py:96: AssertionError > _ test_list_translations_default_locale_exists > _ > > def test_list_translations_default_locale_exists(): > app = flask.Flask(__name__) > b = babel.Babel(app, default_locale="de") > > with app.app_context(): > translations = b.list_translations() > assert len(translations) == 2 > > assert str(translations[0]) == "de" > E AssertionError: assert 'ja' == 'de' > E > E - de > E + ja > > tests/test_gettext.py:108: AssertionError > __ test_multiple_directories > ___ > > def test_multiple_directories(): > """ > Ensure we can load translations from multiple directories. > > This also ensures that directories without any translation files > are not taken into account. > """ > b = babel.Babel() > app = flask.Flask(__name__) > > app.config.update( > { > "BABEL_TRANSLATION_DIRECTORIES": ";".join( > ("translations", "renamed_translations") > ), > "BABEL_DEFAULT_LOCALE": "de_DE", > } > ) > > b.init_app(app) > > with app.test_request_context(): > translations = b.list_translations() > > assert len(translations) == 4 > > assert str(translations[0]) == "de" > E AssertionError: assert 'ja' == 'de' > E > E - de > E + ja > > tests/test_integration.py:44: AssertionError > === short test summary info > > FAILED tests/test_gettext.py::test_list_translations - AssertionError: > assert... > FAILED tests/test_gettext.py::test_list_translations_default_locale_exists - > ... > FAILED tests/test_integration.py::test_multiple_directories - > AssertionError:... > = 3 failed, 30 passed in 0.38s > = > E: pybuild pybuild:389: test: plugin pyproject failed with: exit code=1: cd > /<>/.pybuild/cpython3_3.12_flask-babel/build; python3.12 -m > pytest tests > dh_auto_test: error: pybuild --test --test-pytest -i python{version} -p 3.12 > returned exit code 13 The full build log
Bug#1077442: libzen: FTBFS: dpkg-gensymbols: error: some symbols or patterns disappeared in the symbols file: see diff output below
Source: libzen Version: 0.4.41-2.1 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240728 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > make[1]: Entering directory '/<>' > dh_makeshlibs -- -c4 > dpkg-gensymbols: error: some new symbols appeared in the symbols file: see > diff output below > dpkg-gensymbols: error: some symbols or patterns disappeared in the symbols > file: see diff output below > dpkg-gensymbols: warning: debian/libzen0t64/DEBIAN/symbols doesn't match > completely debian/libzen0t64.symbols > --- debian/libzen0t64.symbols (libzen0t64_0.4.41-2.1_amd64) > +++ dpkg-gensymbolsxpI3IE 2024-07-28 18:10:00.527830114 + > @@ -70,7 +70,7 @@ > (c++)"ZenLib::Format::Html::Request::~Request()@Base" 0.4.23 > (c++)"ZenLib::Format::Http::Char2Hex(unsigned char)@Base" 0.4.23 > (c++)"ZenLib::Format::Http::Char2Hex(wchar_t)@Base" 0.4.23 > - (optional|c++)"ZenLib::Format::Http::Cookie::~Cookie()@Base" 0.4.23 > +#MISSING: 0.4.41-2.1# > (optional|c++)"ZenLib::Format::Http::Cookie::~Cookie()@Base" 0.4.23 > (c++)"ZenLib::Format::Http::Cookies::Cookies()@Base" 0.4.23 > (c++)"ZenLib::Format::Http::Cookies::Create_Lines(std::basic_ostream std::char_traits >&)@Base" 0.4.23 > > (c++|regex)"ZenLib::Format::Http::Cookies::Set\(std::__cxx11::basic_string std::char_traits, std::allocator > const&, > std::__cxx11::basic_string, std::allocator > > const&, long( long)?, std::__cxx11::basic_string std::char_traits, std::allocator > const&, > std::__cxx11::basic_string, std::allocator > > const&, bool\)@Base" 0.4.31-2~ > @@ -329,7 +329,7 @@ > (c++)"ZenLib::int128::operator--()@Base" 0.4.23 > (c++)"ZenLib::int128::operator--(int)@Base" 0.4.23 > (c++)"ZenLib::int128::operator<<=(unsigned int)@Base" 0.4.23 > - (c++)"ZenLib::int128::operator>>=(unsigned int)@Base" 0.4.23 > +#MISSING: 0.4.41-2.1# (c++)"ZenLib::int128::operator>>=(unsigned int)@Base" > 0.4.23 > (c++)"ZenLib::int128::operator^=(ZenLib::int128 const&)@Base" 0.4.23 > (c++)"ZenLib::int128::operator|=(ZenLib::int128 const&)@Base" 0.4.23 > (c++)"ZenLib::int128::operator~() const@Base" 0.4.23 > @@ -398,7 +398,7 @@ > (c++)"ZenLib::uint128::operator--()@Base" 0.4.23 > (c++)"ZenLib::uint128::operator--(int)@Base" 0.4.23 > (c++)"ZenLib::uint128::operator<<=(unsigned int)@Base" 0.4.23 > - (c++)"ZenLib::uint128::operator>>=(unsigned int)@Base" 0.4.23 > +#MISSING: 0.4.41-2.1# (c++)"ZenLib::uint128::operator>>=(unsigned int)@Base" > 0.4.23 > (c++)"ZenLib::uint128::operator^=(ZenLib::uint128 const&)@Base" 0.4.23 > (c++)"ZenLib::uint128::operator|=(ZenLib::uint128 const&)@Base" 0.4.23 > (c++)"ZenLib::uint128::operator~() const@Base" 0.4.23 > @@ -411,9 +411,11 @@ > (c++)"ZenLib::uint128::uint128(float)@Base" 0.4.23 > (c++|regex)"ZenLib::uint128::uint128\((long double|__float128) > const&\)@Base" 0.4.23 > > (optional|c++|regex)"^(void|ZenLib::ZtringList\*|ZenLib::Ztring\*|bool|wchar_t\*) > std::" 0.4.23 > - (optional|c++|regex)"^ZenLib::Ztring::ToZtring" 0.4.23 > - (optional|c++|regex)"^__gnu_cxx::" 0.4.23 > +#MISSING: 0.4.41-2.1# (optional|c++|regex)"^ZenLib::Ztring::ToZtring" 0.4.23 > +#MISSING: 0.4.41-2.1# (optional|c++|regex)"^__gnu_cxx::" 0.4.23 > (optional|c++|regex)"^std::" 0.4.23 > + _ZN6ZenLib6int128rSEj@Base 0.4.41-2.1 > + _ZN6ZenLib7uint128rSEj@Base 0.4.41-2.1 > (c++)"typeinfo for ZenLib::Thread@Base" 0.4.23 > (c++)"typeinfo name for ZenLib::Thread@Base" 0.4.23 > (c++)"vtable for ZenLib::Thread@Base" 0.4.23 > dh_makeshlibs: error: failing due to earlier errors > make[1]: *** [debian/rules:36: override_dh_makeshlibs] Error 25 The full build log is available from: http://qa-logs.debian.net/2024/07/28/libzen_0.4.41-2.1_unstable.log All bugs filed during this archive rebuild are listed at: https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240728;users=lu...@debian.org or: https://udd.debian.org/bugs/?release=na&merged=ign&fnewerval=7&flastmodval=7&fusertag=only&fusertagtag=ftbfs-20240728&fusertaguser=lu...@debian.org&allbugs=1&cseverity=1&ctags=1&caffected=1#results A list of current common problems and possible solutions is available at http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute! If you reassign this bug to another package, please mark it as 'affects'-ing this package. See https://www.debian.org/Bugs/server-control#affects If you fail to reproduce this, please provide a build log and diff it with mine so that we can identify if something relevant changed in the meantime.
Bug#1077440: libsys-hostip-perl: FTBFS: Can't exec "/usr/sbin/ip": No such file or directory at /<>/blib/lib/Sys/HostIP.pm line 171.
Source: libsys-hostip-perl Version: 2.120-4 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240728 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > make[1]: Entering directory '/<>' > PERL_DL_NONLAZY=1 "/usr/bin/perl" "-MExtUtils::Command::MM" "-MTest::Harness" > "-e" "undef *Test::Harness::Switches; test_harness(1, 'blib/lib', > 'blib/arch')" t/*.t > t/00-compile.t .. > 1..1 > ok 1 - Sys/HostIP.pm loaded ok > ok > Can't exec "/usr/sbin/ip": No such file or directory at > /<>/blib/lib/Sys/HostIP.pm line 171. > Unable to detect interface information! > Please open an issue on https://github.com/xsawyerx/sys-hostip/issues with > your 'ipconfig' or 'ifconfig' output at > /<>/blib/lib/Sys/HostIP.pm line 136. > Can't exec "/usr/sbin/ip": No such file or directory at > /<>/blib/lib/Sys/HostIP.pm line 171. > Unable to detect interface information! > Please open an issue on https://github.com/xsawyerx/sys-hostip/issues with > your 'ipconfig' or 'ifconfig' output at > /<>/blib/lib/Sys/HostIP.pm line 136. > # Class IP: > > # Failed test 'IP by class looks ok' > # at t/lib/Utils.pm line 70. > # '' > # doesn't match '(?^x:^ \d+ (?: \. \d+ ){3} $)' > Can't exec "/usr/sbin/ip": No such file or directory at > /<>/blib/lib/Sys/HostIP.pm line 171. > Unable to detect interface information! > Please open an issue on https://github.com/xsawyerx/sys-hostip/issues with > your 'ipconfig' or 'ifconfig' output at > /<>/blib/lib/Sys/HostIP.pm line 136. > > # Failed test 'Found IP in IPs by class' > # at t/lib/Utils.pm line 78. > Can't exec "/usr/sbin/ip": No such file or directory at > /<>/blib/lib/Sys/HostIP.pm line 171. > Unable to detect interface information! > Please open an issue on https://github.com/xsawyerx/sys-hostip/issues with > your 'ipconfig' or 'ifconfig' output at > /<>/blib/lib/Sys/HostIP.pm line 136. > # Looks like you failed 2 tests of 11. > t/01-base.t . > 1..11 > not ok 1 - IP by class looks ok > ok 2 - IP by class matches IP by sub > ok 3 - 'scalar context ips() gets arrayref' isa 'ARRAY' > not ok 4 - Found IP in IPs by class > ok 5 - Length of class and sub ips() output is equal > ok 6 - IPs by class match IPs by sub > ok 7 - 'scalar context interfaces() gets hashref' isa 'HASH' > ok 8 - Matching number of interfaces and ips > ok 9 - interfaces() output by class and sub are equal > ok 10 - 'scalar context if_info() gets hashref' isa 'HASH' > ok 11 - if_info set as attribute > Dubious, test returned 2 (wstat 512, 0x200) > Failed 2/11 subtests > # Class IP: 169.254.109.232 > # Class IP: 192.168.1.100 > # Class IP: 192.168.40.241 > # Class IP: 10.0.2.15 > # Class IP: 192.168.1.101 > # Class IP: 192.168.2.118 > # Class IP: 192.168.2.118 > # Class IP: 192.168.2.118 > # Class IP: 192.168.56.1 > # Class IP: 192.168.0.10 > # Class IP: 0.0.0.0 > # Class IP: 10.0.2.15 > t/02-base-mocked-windows.t .. > 1..180 > # ipconfig-2k.txt > ok 1 - Windows was called > ok 2 - Windows was called > ok 3 - IP by class looks ok > ok 4 - IP by class matches IP by sub > ok 5 - Windows was called > ok 6 - 'scalar context ips() gets arrayref' isa 'ARRAY' > ok 7 - Found IP in IPs by class > ok 8 - Length of class and sub ips() output is equal > ok 9 - IPs by class match IPs by sub > ok 10 - Windows was called > ok 11 - 'scalar context interfaces() gets hashref' isa 'HASH' > ok 12 - Matching number of interfaces and ips > ok 13 - interfaces() output by class and sub are equal > ok 14 - 'scalar context if_info() gets hashref' isa 'HASH' > ok 15 - if_info set as attribute > # ipconfig-win10.txt > ok 16 - Windows was called > ok 17 - Windows was called > ok 18 - IP by class looks ok > ok 19 - IP by class matches IP by sub > ok 20 - Windows was called > ok 21 - 'scalar context ips() gets arrayref' isa 'ARRAY' > ok 22 - Found IP in IPs by class > ok 23 - Length of class and sub ips() output is equal > ok 24 - IPs by class match IPs by sub > ok 25 - Windows was called > ok 26 - 'scalar context interfaces() gets hashref' isa 'HASH' > ok 27 - Matching number of interfaces and ips > ok 28 - interfaces() output by class and sub are equal > ok 29 - 'scalar context if_info() gets hashref' isa 'HASH' > ok 30 - if_info set as attribute > # ipconfig-win2008-sv_SE.txt > ok 31 - Windows was called > ok 32 - Windows was called > ok 33 - IP by class looks ok > ok 34 - IP by class matches IP by sub > ok 35 - Windows was called > ok 36 - 'scalar context ips() gets arrayref' isa 'ARRAY' > ok 37 - Found IP in IPs by class > ok 38 - Length of class and sub ips() output is equal > ok 39 - IPs by class match IPs by sub > ok 40 - Windows was called > ok 41 - 'scalar context interfaces() gets hashref' isa 'HASH' > ok 42 - Matching number of interfaces and ips > ok 43 - interfaces() output by class and sub are equal > ok 44 - 'scalar context if_info() gets h
Bug#1077441: cmtk: FTBFS: dh_auto_test: error: cd obj-x86_64-linux-gnu && make -j8 test ARGS\+=--verbose ARGS\+=-j8 returned exit code 2
Source: cmtk Version: 3.3.1p2+dfsg-2 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240728 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > make[2]: Entering directory '/<>/obj-x86_64-linux-gnu' > Running tests... > /usr/bin/ctest --force-new-ctest-process --auto-servernum --server-num '20' > -- 'dh_auto_test' --verbose -j8 > CMake Error: Unknown argument: --auto-servernum > CMake Error: Run 'ctest --help' for all supported options. > make[2]: *** [Makefile:94: test] Error 1 > make[2]: Leaving directory '/<>/obj-x86_64-linux-gnu' > rm -fr -- /tmp/dh-xdg-rundir-upa1fqGk > dh_auto_test: error: cd obj-x86_64-linux-gnu && make -j8 test > ARGS\+=--verbose ARGS\+=-j8 returned exit code 2 The full build log is available from: http://qa-logs.debian.net/2024/07/28/cmtk_3.3.1p2+dfsg-2_unstable.log All bugs filed during this archive rebuild are listed at: https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240728;users=lu...@debian.org or: https://udd.debian.org/bugs/?release=na&merged=ign&fnewerval=7&flastmodval=7&fusertag=only&fusertagtag=ftbfs-20240728&fusertaguser=lu...@debian.org&allbugs=1&cseverity=1&ctags=1&caffected=1#results A list of current common problems and possible solutions is available at http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute! If you reassign this bug to another package, please mark it as 'affects'-ing this package. See https://www.debian.org/Bugs/server-control#affects If you fail to reproduce this, please provide a build log and diff it with mine so that we can identify if something relevant changed in the meantime.
Bug#1077439: latex-cjk-japanese-wadalab: FTBFS: wftodm.c:57:1: error: return type defaults to ‘int’ [-Wimplicit-int]
Source: latex-cjk-japanese-wadalab Version: 0.20050817-18 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240728 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > cc -Wall -g -O2 -o build/wftodm wftodm.c > wftodm.c:57:1: error: return type defaults to ‘int’ [-Wimplicit-int] >57 | compute_fc(ku, ten, f, c) > | ^~ > wftodm.c: In function ‘compute_fc’: > wftodm.c:69:9: error: ‘return’ with no value, in function returning non-void > [-Wreturn-mismatch] >69 | return; > | ^~ > wftodm.c:57:1: note: declared here >57 | compute_fc(ku, ten, f, c) > | ^~ > wftodm.c:73:9: error: ‘return’ with no value, in function returning non-void > [-Wreturn-mismatch] >73 | return; > | ^~ > wftodm.c:57:1: note: declared here >57 | compute_fc(ku, ten, f, c) > | ^~ > wftodm.c: At top level: > wftodm.c:99:1: error: return type defaults to ‘int’ [-Wimplicit-int] >99 | readfiles(filename) > | ^ > wftodm.c: In function ‘readfiles’: > wftodm.c:104:7: warning: unused variable ‘kcode_low’ [-Wunused-variable] > 104 | int kcode_low,i,len,kcode,c1; > | ^ > wftodm.c: At top level: > wftodm.c:128:1: error: return type defaults to ‘int’ [-Wimplicit-int] > 128 | main(ac,ag) > | ^~~~ > wftodm.c: In function ‘main’: > wftodm.c:128:1: error: type of ‘ac’ defaults to ‘int’ [-Wimplicit-int] > wftodm.c:158:7: error: implicit declaration of function ‘output_pfa’ > [-Wimplicit-function-declaration] > 158 | output_pfa(i); > | ^~ > wftodm.c:159:7: error: implicit declaration of function ‘output_afm’ > [-Wimplicit-function-declaration] > 159 | output_afm(i); > | ^~ > wftodm.c: At top level: > wftodm.c:164:1: error: return type defaults to ‘int’ [-Wimplicit-int] > 164 | output_afm(file) > | ^~ > wftodm.c: In function ‘output_afm’: > wftodm.c:164:1: error: type of ‘file’ defaults to ‘int’ [-Wimplicit-int] > wftodm.c: At top level: > wftodm.c:196:1: error: return type defaults to ‘int’ [-Wimplicit-int] > 196 | output_header(file) > | ^ > wftodm.c: In function ‘output_header’: > wftodm.c:196:1: error: type of ‘file’ defaults to ‘int’ [-Wimplicit-int] > wftodm.c: At top level: > wftodm.c:230:1: error: return type defaults to ‘int’ [-Wimplicit-int] > 230 | output_pfa(file) > | ^~ > wftodm.c: In function ‘output_pfa’: > wftodm.c:230:1: error: type of ‘file’ defaults to ‘int’ [-Wimplicit-int] > wftodm.c:243:3: error: implicit declaration of function ‘init_crypt’ > [-Wimplicit-function-declaration] > 243 | init_crypt(); > | ^~ > wftodm.c:244:3: error: implicit declaration of function ‘e_putchar’; did you > mean ‘putchar’? [-Wimplicit-function-declaration] > 244 | e_putchar(0); > | ^ > | putchar > wftodm.c:248:3: error: implicit declaration of function ‘e_printf’; did you > mean ‘dprintf’? [-Wimplicit-function-declaration] > 248 | e_printf("dup /Private 17 dict dup begin\n"); > | ^~~~ > | dprintf > wftodm.c:232:15: warning: unused variable ‘charlen’ [-Wunused-variable] > 232 | int i,j,len,charlen; > | ^~~ > wftodm.c:232:11: warning: unused variable ‘len’ [-Wunused-variable] > 232 | int i,j,len,charlen; > | ^~~ > wftodm.c: At top level: > wftodm.c:301:1: error: return type defaults to ‘int’ [-Wimplicit-int] > 301 | e_printf(form,i0,i1,i2,i3,i4,i5,i6,i7,i8,i9) > | ^~~~ > wftodm.c: In function ‘e_printf’: > wftodm.c:301:1: error: type of ‘i1’ defaults to ‘int’ [-Wimplicit-int] > wftodm.c:301:1: error: type of ‘i2’ defaults to ‘int’ [-Wimplicit-int] > wftodm.c:301:1: error: type of ‘i3’ defaults to ‘int’ [-Wimplicit-int] > wftodm.c:301:1: error: type of ‘i4’ defaults to ‘int’ [-Wimplicit-int] > wftodm.c:301:1: error: type of ‘i5’ defaults to ‘int’ [-Wimplicit-int] > wftodm.c:301:1: error: type of ‘i6’ defaults to ‘int’ [-Wimplicit-int] > wftodm.c:301:1: error: type of ‘i7’ defaults to ‘int’ [-Wimplicit-int] > wftodm.c:301:1: error: type of ‘i8’ defaults to ‘int’ [-Wimplicit-int] > wftodm.c:301:1: error: type of ‘i9’ defaults to ‘int’ [-Wimplicit-int] > wftodm.c:307:11: warning: pointer targets in passing argument 1 of ‘sprintf’ > differ in signedness [-Wpointer-sign] > 307 | sprintf(buf,form,i0,i1,i2,i3,i4,i5,i6,i7,i8,i9); > | ^~~ > | | > | unsigned char * > In file included from wftodm.c:1: > /usr/include/stdio.h:365:38: note: expected ‘char * restrict’ but argument is > of type ‘unsigned char *’ > 365 | extern int sprintf (char *__restrict __s, > | ~^~~ > wftodm.c:308:14: warning: pointer targets in passing argument 1 of ‘strlen’ > diffe
Bug#1077438: lazygal: FTBFS: TypeError: 'tuple' object does not support item assignment
Source: lazygal Version: 0.10.9-1 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240728 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > debian/rules binary > dh binary --with=python3 --buildsystem=pybuild >dh_update_autotools_config -O--buildsystem=pybuild >dh_autoreconf -O--buildsystem=pybuild >dh_auto_configure -O--buildsystem=pybuild > I: pybuild base:311: python3.12 setup.py config > running config >dh_auto_build -O--buildsystem=pybuild > I: pybuild base:311: /usr/bin/python3 setup.py build > running build > running build_py > running build_manpages > /usr/bin/pandoc -s -t man -o /<>/man/lazygal.conf.5 > /<>/man/lazygal.conf.5.md > Traceback (most recent call last): > File "/<>/setup.py", line 201, in > setuptools.setup( > File "/usr/lib/python3/dist-packages/setuptools/__init__.py", line 103, in > setup > return distutils.core.setup(**attrs) >^ > File "/usr/lib/python3/dist-packages/setuptools/_distutils/core.py", line > 184, in setup > return run_commands(dist) >^^ > File "/usr/lib/python3/dist-packages/setuptools/_distutils/core.py", line > 200, in run_commands > dist.run_commands() > File "/usr/lib/python3/dist-packages/setuptools/_distutils/dist.py", line > 970, in run_commands > self.run_command(cmd) > File "/usr/lib/python3/dist-packages/setuptools/dist.py", line 974, in > run_command > super().run_command(command) > File "/usr/lib/python3/dist-packages/setuptools/_distutils/dist.py", line > 989, in run_command > cmd_obj.run() > File > "/usr/lib/python3/dist-packages/setuptools/_distutils/command/build.py", line > 135, in run > self.run_command(cmd_name) > File "/usr/lib/python3/dist-packages/setuptools/_distutils/cmd.py", line > 316, in run_command > self.distribution.run_command(command) > File "/usr/lib/python3/dist-packages/setuptools/dist.py", line 974, in > run_command > super().run_command(command) > File "/usr/lib/python3/dist-packages/setuptools/_distutils/dist.py", line > 989, in run_command > cmd_obj.run() > File "/<>/setup.py", line 186, in run > self.run_command('build_manpages') > File "/usr/lib/python3/dist-packages/setuptools/_distutils/cmd.py", line > 316, in run_command > self.distribution.run_command(command) > File "/usr/lib/python3/dist-packages/setuptools/dist.py", line 974, in > run_command > super().run_command(command) > File "/usr/lib/python3/dist-packages/setuptools/_distutils/dist.py", line > 989, in run_command > cmd_obj.run() > File "/<>/setup.py", line 136, in run > self.spawn(cmd) > File "/usr/lib/python3/dist-packages/setuptools/_distutils/cmd.py", line > 394, in spawn > spawn(cmd, search_path, dry_run=self.dry_run) > File "/usr/lib/python3/dist-packages/setuptools/_distutils/spawn.py", line > 68, in spawn > cmd[0] = executable > ~~~^^^ > TypeError: 'tuple' object does not support item assignment > E: pybuild pybuild:389: build: plugin distutils failed with: exit code=1: > /usr/bin/python3 setup.py build > dh_auto_build: error: pybuild --build -i python{version} -p 3.12 returned > exit code 13 > make: *** [debian/rules:4: binary] Error 25 The full build log is available from: http://qa-logs.debian.net/2024/07/28/lazygal_0.10.9-1_unstable.log All bugs filed during this archive rebuild are listed at: https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240728;users=lu...@debian.org or: https://udd.debian.org/bugs/?release=na&merged=ign&fnewerval=7&flastmodval=7&fusertag=only&fusertagtag=ftbfs-20240728&fusertaguser=lu...@debian.org&allbugs=1&cseverity=1&ctags=1&caffected=1#results A list of current common problems and possible solutions is available at http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute! If you reassign this bug to another package, please mark it as 'affects'-ing this package. See https://www.debian.org/Bugs/server-control#affects If you fail to reproduce this, please provide a build log and diff it with mine so that we can identify if something relevant changed in the meantime.
Bug#1077437: photocollage: FTBFS: AttributeError: module 'distutils' has no attribute 'dep_util'. Did you mean: 'dir_util'?
Source: photocollage Version: 1.4.5-0.2 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240728 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > debian/rules binary > dh binary --buildsystem=pybuild >dh_update_autotools_config -O--buildsystem=pybuild >dh_autoreconf -O--buildsystem=pybuild >dh_auto_configure -O--buildsystem=pybuild > I: pybuild base:311: python3.12 setup.py config >dh_auto_build -O--buildsystem=pybuild > I: pybuild base:311: /usr/bin/python3 setup.py build > /<>/setup.py:34: DeprecationWarning: Use shutil.which instead of > find_executable > if not distutils.spawn.find_executable("msgfmt"): > Traceback (most recent call last): > File "/<>/setup.py", line 67, in > distutils.core.setup( > File "/usr/lib/python3/dist-packages/setuptools/_distutils/core.py", line > 184, in setup > return run_commands(dist) >^^ > File "/usr/lib/python3/dist-packages/setuptools/_distutils/core.py", line > 200, in run_commands > dist.run_commands() > File "/usr/lib/python3/dist-packages/setuptools/_distutils/dist.py", line > 970, in run_commands > self.run_command(cmd) > File "/usr/lib/python3/dist-packages/setuptools/dist.py", line 974, in > run_command > super().run_command(command) > File "/usr/lib/python3/dist-packages/setuptools/_distutils/dist.py", line > 989, in run_command > cmd_obj.run() > File > "/usr/lib/python3/dist-packages/setuptools/_distutils/command/build.py", line > 135, in run > self.run_command(cmd_name) > File "/usr/lib/python3/dist-packages/setuptools/_distutils/cmd.py", line > 316, in run_command > self.distribution.run_command(command) > File "/usr/lib/python3/dist-packages/setuptools/dist.py", line 974, in > run_command > super().run_command(command) > File "/usr/lib/python3/dist-packages/setuptools/_distutils/dist.py", line > 989, in run_command > cmd_obj.run() > File "/<>/setup.py", line 49, in run > if distutils.dep_util.newer(po, mo): >^^ > AttributeError: module 'distutils' has no attribute 'dep_util'. Did you mean: > 'dir_util'? > E: pybuild pybuild:389: build: plugin distutils failed with: exit code=1: > /usr/bin/python3 setup.py build > dh_auto_build: error: pybuild --build -i python{version} -p 3.12 returned > exit code 13 > make: *** [debian/rules:4: binary] Error 25 The full build log is available from: http://qa-logs.debian.net/2024/07/28/photocollage_1.4.5-0.2_unstable.log All bugs filed during this archive rebuild are listed at: https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240728;users=lu...@debian.org or: https://udd.debian.org/bugs/?release=na&merged=ign&fnewerval=7&flastmodval=7&fusertag=only&fusertagtag=ftbfs-20240728&fusertaguser=lu...@debian.org&allbugs=1&cseverity=1&ctags=1&caffected=1#results A list of current common problems and possible solutions is available at http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute! If you reassign this bug to another package, please mark it as 'affects'-ing this package. See https://www.debian.org/Bugs/server-control#affects If you fail to reproduce this, please provide a build log and diff it with mine so that we can identify if something relevant changed in the meantime.
Bug#1077436: python-autocommand: FTBFS: ERROR Backend subprocess exited when trying to invoke build_wheel
Source: python-autocommand Version: 2.2.2-2 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240728 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > debian/rules binary > dh binary --with python3 --buildsystem=pybuild --test-pytest >dh_update_autotools_config -O--buildsystem=pybuild -O--test-pytest >dh_autoreconf -O--buildsystem=pybuild -O--test-pytest >dh_auto_configure -O--buildsystem=pybuild -O--test-pytest >dh_auto_build -O--buildsystem=pybuild -O--test-pytest > I: pybuild plugin_pyproject:129: Building wheel for python3.12 with "build" > module > I: pybuild base:311: python3.12 -m build --skip-dependency-check > --no-isolation --wheel --outdir > /<>/.pybuild/cpython3_3.12_autocommand > * Building wheel... > /usr/lib/python3/dist-packages/setuptools/config/_apply_pyprojecttoml.py:72: > _MissingDynamic: `license` defined outside of `pyproject.toml` is ignored. > !! > > > > The following seems to be defined outside of `pyproject.toml`: > > `license = 'LGPLv3'` > > According to the spec (see the link below), however, setuptools CANNOT > consider this value unless `license` is listed as `dynamic`. > > > https://packaging.python.org/en/latest/specifications/pyproject-toml/#declaring-project-metadata-the-project-table > > To prevent this problem, you can list `license` under `dynamic` or > alternatively > remove the `[project]` table from your file and rely entirely on > other means of > configuration. > > > > !! > _handle_missing_dynamic(dist, project_table) > Traceback (most recent call last): > File > "/usr/lib/python3/dist-packages/pyproject_hooks/_in_process/_in_process.py", > line 373, in > main() > File > "/usr/lib/python3/dist-packages/pyproject_hooks/_in_process/_in_process.py", > line 357, in main > json_out["return_val"] = hook(**hook_input["kwargs"]) > > File > "/usr/lib/python3/dist-packages/pyproject_hooks/_in_process/_in_process.py", > line 271, in build_wheel > return _build_backend().build_wheel( >^ > File "/usr/lib/python3/dist-packages/setuptools/build_meta.py", line 415, > in build_wheel > return self._build_with_temp_dir( >^^ > File "/usr/lib/python3/dist-packages/setuptools/build_meta.py", line 397, > in _build_with_temp_dir > self.run_setup() > File "/usr/lib/python3/dist-packages/setuptools/build_meta.py", line 497, > in run_setup > super().run_setup(setup_script=setup_script) > File "/usr/lib/python3/dist-packages/setuptools/build_meta.py", line 313, > in run_setup > exec(code, locals()) > File "", line 8, in > File "/usr/lib/python3/dist-packages/setuptools/__init__.py", line 103, in > setup > return distutils.core.setup(**attrs) >^ > File "/usr/lib/python3/dist-packages/setuptools/_distutils/core.py", line > 158, in setup > dist.parse_config_files() > File "/usr/lib/python3/dist-packages/setuptools/dist.py", line 632, in > parse_config_files > pyprojecttoml.apply_configuration(self, filename, ignore_option_errors) > File "/usr/lib/python3/dist-packages/setuptools/config/pyprojecttoml.py", > line 71, in apply_configuration > return _apply(dist, config, filepath) >^^ > File > "/usr/lib/python3/dist-packages/setuptools/config/_apply_pyprojecttoml.py", > line 53, in apply > _apply_project_table(dist, config, root_dir) > File > "/usr/lib/python3/dist-packages/setuptools/config/_apply_pyprojecttoml.py", > line 79, in _apply_project_table > corresp(dist, value, root_dir) > File > "/usr/lib/python3/dist-packages/setuptools/config/_apply_pyprojecttoml.py", > line 181, in _license > _set_config(dist, "license", val["text"]) > ~~~ > KeyError: 'text' > > ERROR Backend subprocess exited when trying to invoke build_wheel > E: pybuild pybuild:389: build: plugin pyproject failed with: exit code=1: > python3.12 -m build --skip-dependency-check --no-isolation --wheel --outdir > /<>/.pybuild/cpython3_3.12_autocommand > dh_auto_build: error: pybuild --build -i python{version} -p 3.12 returned > exit code 13 > make: *** [debian/rules:7: binary] Error 25 The full build log is available from: http://qa-logs.debian.net/2024/07/28/python-autocommand_2.2.2-2_unstable.log All bugs filed during this archive rebuild are listed at: https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240728;users=lu...@debian.org or: https://udd.debian.
Bug#1077435: perlnavigator: FTBFS: unsatisfiable build-dependency: node-nanoid (< 5) (versioned dep on a virtual pkg?)
Source: perlnavigator Version: 0.6.0~dfsg-2 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240728 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > +--+ > | Install package build dependencies > | > +--+ > > > Setup apt archive > - > > Merged Build-Depends: cmark-gfm, debhelper-compat (= 13), jq, > libcapture-tiny-perl, libclass-inspector-perl, libdevel-symdump-perl, > node-nanoid (<< 5), node-typescript, node-vscode-languageserver (<< 9), > node-vscode-languageserver-textdocument (<< 2), node-types-whatwg-url, > node-undici-types, perl, build-essential, fakeroot > Filtered Build-Depends: cmark-gfm, debhelper-compat (= 13), jq, > libcapture-tiny-perl, libclass-inspector-perl, libdevel-symdump-perl, > node-nanoid (<< 5), node-typescript, node-vscode-languageserver (<< 9), > node-vscode-languageserver-textdocument (<< 2), node-types-whatwg-url, > node-undici-types, perl, build-essential, fakeroot > dpkg-deb: building package 'sbuild-build-depends-main-dummy' in > '/<>/apt_archive/sbuild-build-depends-main-dummy.deb'. > Ign:1 copy:/<>/apt_archive ./ InRelease > Get:2 copy:/<>/apt_archive ./ Release [609 B] > Ign:3 copy:/<>/apt_archive ./ Release.gpg > Get:4 copy:/<>/apt_archive ./ Sources [923 B] > Get:5 copy:/<>/apt_archive ./ Packages [903 B] > Fetched 2435 B in 0s (0 B/s) > Reading package lists... > Reading package lists... > > Install main build dependencies (apt-based resolver) > > > Installing build dependencies > Reading package lists... > Building dependency tree... > Some packages could not be installed. This may mean that you have > requested an impossible situation or if you are using the unstable > distribution that some required packages have not yet been created > or been moved out of Incoming. > The following information may help to resolve the situation: > > The following packages have unmet dependencies: > sbuild-build-depends-main-dummy : Depends: node-nanoid (< 5) > E: Unable to correct problems, you have held broken packages. > apt-get failed. The full build log is available from: http://qa-logs.debian.net/2024/07/28/perlnavigator_0.6.0~dfsg-2_unstable.log All bugs filed during this archive rebuild are listed at: https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240728;users=lu...@debian.org or: https://udd.debian.org/bugs/?release=na&merged=ign&fnewerval=7&flastmodval=7&fusertag=only&fusertagtag=ftbfs-20240728&fusertaguser=lu...@debian.org&allbugs=1&cseverity=1&ctags=1&caffected=1#results A list of current common problems and possible solutions is available at http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute! If you reassign this bug to another package, please mark it as 'affects'-ing this package. See https://www.debian.org/Bugs/server-control#affects If you fail to reproduce this, please provide a build log and diff it with mine so that we can identify if something relevant changed in the meantime.
Bug#1077434: unittest2: FTBFS: TypeError: expected string or bytes-like object, got 'late_version'
Source: unittest2 Version: 1.1.0-11 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240728 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > fakeroot debian/rules clean > dh clean --with=python3 --buildsystem=pybuild >dh_auto_clean -O--buildsystem=pybuild > I: pybuild base:311: python3.12 setup.py clean > /usr/lib/python3/dist-packages/setuptools/dist.py:476: > SetuptoolsDeprecationWarning: Invalid dash-separated options > !! > > > > Usage of dash-separated 'force-manifest' will not be supported in > future > versions. Please use the underscore name 'force_manifest' instead. > > By 2024-Sep-26, you need to update your project and remove deprecated > calls > or your builds will no longer be supported. > > See > https://setuptools.pypa.io/en/latest/userguide/declarative_config.html for > details. > > > > !! > opt = self.warn_dash_deprecation(opt, section) > /usr/lib/python3/dist-packages/setuptools/__init__.py:80: > _DeprecatedInstaller: setuptools.installer and fetch_build_eggs are > deprecated. > !! > > > > Requirements should be satisfied by a PEP 517 installer. > If you are using pip, you can try `pip install --use-pep517`. > > > > !! > dist.fetch_build_eggs(dist.setup_requires) > WARNING: The wheel package is not available. > Traceback (most recent call last): > File "/<>/setup.py", line 86, in > setup(**params) > File "/usr/lib/python3/dist-packages/setuptools/__init__.py", line 103, in > setup > return distutils.core.setup(**attrs) >^ > File "/usr/lib/python3/dist-packages/setuptools/_distutils/core.py", line > 146, in setup > _setup_distribution = dist = klass(attrs) > > File "/usr/lib/python3/dist-packages/setuptools/dist.py", line 318, in > __init__ > self.metadata.version = self._normalize_version(self.metadata.version) > ^^ > File "/usr/lib/python3/dist-packages/setuptools/dist.py", line 354, in > _normalize_version > normalized = str(Version(version)) > > File > "/usr/lib/python3/dist-packages/setuptools/_vendor/packaging/version.py", > line 198, in __init__ > match = self._regex.search(version) > ^^^ > TypeError: expected string or bytes-like object, got 'late_version' > E: pybuild pybuild:389: clean: plugin distutils failed with: exit code=1: > python3.12 setup.py clean > dh_auto_clean: error: pybuild --clean -i python{version} -p 3.12 returned > exit code 13 > make: *** [debian/rules:5: clean] Error 25 The full build log is available from: http://qa-logs.debian.net/2024/07/28/unittest2_1.1.0-11_unstable.log All bugs filed during this archive rebuild are listed at: https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240728;users=lu...@debian.org or: https://udd.debian.org/bugs/?release=na&merged=ign&fnewerval=7&flastmodval=7&fusertag=only&fusertagtag=ftbfs-20240728&fusertaguser=lu...@debian.org&allbugs=1&cseverity=1&ctags=1&caffected=1#results A list of current common problems and possible solutions is available at http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute! If you reassign this bug to another package, please mark it as 'affects'-ing this package. See https://www.debian.org/Bugs/server-control#affects If you fail to reproduce this, please provide a build log and diff it with mine so that we can identify if something relevant changed in the meantime.
Bug#1077433: range-v3: FTBFS: type_traits:2575:12: error: template parameters not deducible in partial specialization:
Source: range-v3 Version: 0.12.0-1 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240728 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > /usr/bin/c++ -I/<>/include -g -O2 > -ffile-prefix-map=/<>=. -fstack-protector-strong > -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection > -Wdate-time -D_FORTIFY_SOURCE=2 -O3 -DNDEBUG -std=c++14 -Wall -Wextra -Werror > -fdiagnostics-show-template-tree -ftemplate-backtrace-limit=0 > -fomit-frame-pointer -Ofast -fstrict-aliasing -ffast-math > -fsized-deallocation -DRANGES_CXX_ALIGNED_NEW=0 -fconcepts -MD -MT > CMakeFiles/test.range.v3.headers.dir/headers/concepts/concepts.cpp.o -MF > CMakeFiles/test.range.v3.headers.dir/headers/concepts/concepts.cpp.o.d -o > CMakeFiles/test.range.v3.headers.dir/headers/concepts/concepts.cpp.o -c > /<>/obj-x86_64-linux-gnu/headers/concepts/concepts.cpp > In file included from /usr/include/c++/14/bits/stl_pair.h:60, > from /usr/include/c++/14/utility:69, > from /<>/include/concepts/concepts.hpp:25, > from /<>/test/bug1322.cpp:1: > /usr/include/c++/14/type_traits:2575:12: error: template parameters not > deducible in partial specialization: > 2575 | struct __result_of_memobj<_Res _Class::*, _Arg> > |^~~~ > /usr/include/c++/14/type_traits:2575:12: note: ‘_Class’ > /usr/include/c++/14/type_traits:2590:12: error: template parameters not > deducible in partial specialization: > 2590 | struct __result_of_memfun<_Res _Class::*, _Arg, _Args...> > |^~ > /usr/include/c++/14/type_traits:2590:12: note: ‘_Class’ > In file included from /<>/include/meta/meta_fwd.hpp:18, > from /<>/include/range/v3/detail/config.hpp:67, > from /<>/test/config.cpp:12: > /usr/include/c++/14/type_traits:2575:12: error: template parameters not > deducible in partial specialization: > 2575 | struct __result_of_memobj<_Res _Class::*, _Arg> > |^~~~ > /usr/include/c++/14/type_traits:2575:12: note: ‘_Class’ > /usr/include/c++/14/type_traits:2590:12: error: template parameters not > deducible in partial specialization: > 2590 | struct __result_of_memfun<_Res _Class::*, _Arg, _Args...> > |^~ > /usr/include/c++/14/type_traits:2590:12: note: ‘_Class’ > /<>/include/meta/meta_fwd.hpp:351:40: error: expected type-name > before ‘invocable’ > 351 | template > |^ > /<>/include/meta/meta_fwd.hpp:155:35: note: in definition of > macro ‘META_TYPE_CONSTRAINT’ > 155 | #define META_TYPE_CONSTRAINT(...) __VA_ARGS__ > | ^~~ > /<>/include/meta/meta_fwd.hpp:351:40: error: ISO C++ forbids > declaration of ‘invocable’ with no type [-fpermissive] > 351 | template > |^ > /<>/include/meta/meta_fwd.hpp:155:35: note: in definition of > macro ‘META_TYPE_CONSTRAINT’ > 155 | #define META_TYPE_CONSTRAINT(...) __VA_ARGS__ > | ^~~ > /<>/include/meta/meta_fwd.hpp:351:51: error: expected ‘>’ before > ‘F’ > 351 | template > | ^ > In file included from /<>/include/meta/meta.hpp:20, > from /<>/include/concepts/swap.hpp:19, > from /<>/include/concepts/concepts.hpp:27: > /<>/include/meta/meta_fwd.hpp:351:40: error: expected type-name > before ‘invocable’ > 351 | template > |^ > /<>/include/meta/meta_fwd.hpp:155:35: note: in definition of > macro ‘META_TYPE_CONSTRAINT’ > 155 | #define META_TYPE_CONSTRAINT(...) __VA_ARGS__ > | ^~~ > make[4]: *** [test/CMakeFiles/range.v3.config.dir/build.make:79: > test/CMakeFiles/range.v3.config.dir/config.cpp.o] Error 1 The full build log is available from: http://qa-logs.debian.net/2024/07/28/range-v3_0.12.0-1_unstable.log All bugs filed during this archive rebuild are listed at: https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240728;users=lu...@debian.org or: https://udd.debian.org/bugs/?release=na&merged=ign&fnewerval=7&flastmodval=7&fusertag=only&fusertagtag=ftbfs-20240728&fusertaguser=lu...@debian.org&allbugs=1&cseverity=1&ctags=1&caffected=1#results A list of current common problems and possible solutions is available at http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute! If you reassign this bug to another package, please mark it as 'affects'-ing this pack
Bug#1077432: mrpt: FTBFS: LieTraits_unittest.cpp:137:33: error: ‘setprecision’ is not a member of ‘std’
Source: mrpt Version: 1:2.12.0+ds-1.1 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240728 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > cd /<>/.pybuild/cpython3_3.12/build/libs/tfest && /usr/bin/c++ > -Dtfest_EXPORTS > -I/<>/.pybuild/cpython3_3.12/build/include/mrpt-configuration > -I/usr/include/suitesparse -I/<>/libs/tfest/src > -I/<>/libs/tfest/include -I/<>/libs/poses/include > -I/<>/libs/bayes/include -I/<>/libs/math/include > -I/<>/libs/serialization/include > -I/<>/libs/rtti/include -I/<>/libs/core/include > -I/<>/libs/typemeta/include > -I/<>/libs/random/include -I/<>/libs/system/include > -I/<>/libs/containers/include > -I/<>/libs/config/include -I/<>/libs/expr/include > -isystem /usr/include/eigen3 -g -O2 -ffile-prefix-map=/<>=. > -fstack-protector-strong -fstack-clash-protection -Wformat > -Werror=format-security -fcf-protection -Wdate-time -D_FORTIFY_SOURCE=2 > -fPIC -Wall -Wno-long-long -Wno-variadic-macros -Wshadow -Wreturn-local-addr > -Werror=return-local-addr -Wno-psabi -Wno-write-strings -Wreturn-type > -Werror=return-type -Wformat -Werror=format-security -Wextra -Wtype-limits > -Wcast-align -Wparentheses -Wno-unused-parameter -fPIC -msse2 -MD -MT > libs/tfest/CMakeFiles/tfest.dir/src/se2_l2.SSE2.cpp.o -MF > CMakeFiles/tfest.dir/src/se2_l2.SSE2.cpp.o.d -o > CMakeFiles/tfest.dir/src/se2_l2.SSE2.cpp.o -c > /<>/libs/tfest/src/se2_l2.SSE2.cpp > /<>/libs/poses/src/Lie/LieTraits_unittest.cpp: In member > function ‘void SE_traits_tests::test_jacobs_DinvP1InvP2(const > mrpt::poses::CPose3D&, const mrpt::poses::CPose3D&, const > mrpt::poses::CPose3D&)’: > /<>/libs/poses/src/Lie/LieTraits_unittest.cpp:137:33: error: > ‘setprecision’ is not a member of ‘std’ > 137 | << std::setprecision(3) << "p1: " << P1 << > endl > | ^~~~ > /<>/libs/poses/src/Lie/LieTraits_unittest.cpp:18:1: note: > ‘std::setprecision’ is defined in header ‘’; this is probably > fixable by adding ‘#include ’ >17 | #include > +++ |+#include >18 | > /<>/libs/poses/src/Lie/LieTraits_unittest.cpp: In member > function ‘void SE_traits_tests::test_jacobs_AB(const > mrpt::poses::CPose3D&, const mrpt::poses::CPose3D&)’: > /<>/libs/poses/src/Lie/LieTraits_unittest.cpp:239:33: error: > ‘setprecision’ is not a member of ‘std’ > 239 | << std::setprecision(3) << "A: " << A << endl > | ^~~~ > /<>/libs/poses/src/Lie/LieTraits_unittest.cpp:239:33: note: > ‘std::setprecision’ is defined in header ‘’; this is probably > fixable by adding ‘#include ’ > /<>/libs/poses/src/Lie/LieTraits_unittest.cpp:249:33: error: > ‘setprecision’ is not a member of ‘std’ > 249 | << std::setprecision(3) << "A: " << A << endl > | ^~~~ > /<>/libs/poses/src/Lie/LieTraits_unittest.cpp:249:33: note: > ‘std::setprecision’ is defined in header ‘’; this is probably > fixable by adding ‘#include ’ > [ 43%] Building CXX object > tests/CMakeFiles/test_mrpt_serialization.dir/__/libs/serialization/src/CSerializable_unittest.cpp.o > cd /<>/.pybuild/cpython3_3.12/build/tests && /usr/bin/c++ > -DCMAKE_UNITTEST_BASEDIR=\"/<>\" -I/usr/include/suitesparse > -I/<> -I/<>/tests/include > -I/<>/libs/serialization/include > -I/<>/libs/rtti/include > -I/<>/.pybuild/cpython3_3.12/build/include/mrpt-configuration > -I/<>/libs/core/include -I/<>/libs/typemeta/include > -I/<>/libs/io/include -I/<>/libs/system/include > -I/<>/libs/containers/include > -I/<>/libs/poses/include -I/<>/libs/bayes/include > -I/<>/libs/math/include -I/<>/libs/random/include > -I/<>/libs/config/include -I/<>/libs/expr/include > -isystem /usr/include/eigen3 -isystem /usr/include/jsoncpp -g -O2 > -ffile-prefix-map=/<>=. -fstack-protector-strong > -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection > -Wdate-time -D_FORTIFY_SOURCE=2 -Wall -Wno-long-long -Wno-variadic-macros > -Wshadow -Wreturn-local-addr -Werror=return-local-addr -Wno-psabi > -Wno-write-strings -Wreturn-type -Werror=return-type -Wformat > -Werror=format-security -Wextra -Wtype-limits -Wcast-align -Wparentheses > -Wno-unused-parameter -Wno-abi -DGTEST_HAS_PTHREAD=1 -MD -MT > tests/CMakeFiles/test_mrpt_serialization.dir/__/libs/serialization/src/CSerializable_unittest.cpp.o > -MF > CMakeFiles/test_mrpt_serialization.dir/__/libs/serialization/src/CSerializable_unittest.cpp.o.d > -o > CMakeFiles/test_mrpt_serialization.dir/__/libs/serialization/src/CSerializable_unittest.cpp.o > -c /<>/libs/serialization/src/CSerializable_unittest.cpp > [ 43%] Building CXX object > tests/CMakeFiles/test_mrpt_comms.dir/__/libs/comms/src/sockets_unittest.cpp.o > cd /<>/.pybuild/cpython3_3.12/build/tests && /usr/bin/c++ > -DCMAKE_
Bug#1077431: ruby-gon: FTBFS: ERROR: Test "ruby3.1" failed: NoMethodError:
Source: ruby-gon Version: 6.4.0-2 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240728 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > NoMethodError: >undefined method `routes' for nil:NilClass > > Rails.application.routes.url_helpers.instance_methods.each > do |meth| > ^^^ > # > ./debian/ruby-gon/usr/share/rubygems-integration/all/gems/gon-6.4.0/lib/gon/jbuilder/parser.rb:48:in > `eval_controller_url_helpers' > # > ./debian/ruby-gon/usr/share/rubygems-integration/all/gems/gon-6.4.0/lib/gon/jbuilder/parser.rb:18:in > `parse!' > # > ./debian/ruby-gon/usr/share/rubygems-integration/all/gems/gon-6.4.0/lib/gon/jbuilder.rb:18:in > `handler' > # > ./debian/ruby-gon/usr/share/rubygems-integration/all/gems/gon-6.4.0/lib/gon.rb:96:in > `jbuilder' > # ./spec/gon/jbuilder_spec.rb:47:in `block (4 levels) in (required)>' > > Finished in 0.19589 seconds (files took 1.09 seconds to load) > 72 examples, 7 failures > > Failed examples: > > rspec ./spec/gon/basic_spec.rb:302 # Gon#check_for_rabl_and_jbuilder should > be able to handle constants array (symbols) > rspec ./spec/gon/global_spec.rb:139 # Gon::Global with jbuilder and rabl > works fine with jbuilder > rspec ./spec/gon/jbuilder_spec.rb:14 # Gon.jbuilder render jbuilder templates > render json from jbuilder template > rspec ./spec/gon/jbuilder_spec.rb:19 # Gon.jbuilder render jbuilder templates > render json from jbuilder template with locals > rspec ./spec/gon/jbuilder_spec.rb:27 # Gon.jbuilder render jbuilder templates > render json from jbuilder template with locals > rspec ./spec/gon/jbuilder_spec.rb:32 # Gon.jbuilder render jbuilder templates > render json from jbuilder template with controller methods > rspec ./spec/gon/jbuilder_spec.rb:45 # Gon.jbuilder render jbuilder templates > render json from jbuilder template with a partial > > /usr/bin/ruby3.1 > -I/usr/share/rubygems-integration/all/gems/rspec-support-3.13.1/lib:/usr/share/rubygems-integration/all/gems/rspec-core-3.13.0/lib > /usr/share/rubygems-integration/all/gems/rspec-core-3.13.0/exe/rspec > ./spec/gon/basic_spec.rb ./spec/gon/global_spec.rb > ./spec/gon/jbuilder_spec.rb ./spec/gon/rabl_spec.rb > ./spec/gon/templates_spec.rb ./spec/gon/watch_spec.rb --color --format doc > --require spec_helper failed > ERROR: Test "ruby3.1" failed: The full build log is available from: http://qa-logs.debian.net/2024/07/28/ruby-gon_6.4.0-2_unstable.log All bugs filed during this archive rebuild are listed at: https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240728;users=lu...@debian.org or: https://udd.debian.org/bugs/?release=na&merged=ign&fnewerval=7&flastmodval=7&fusertag=only&fusertagtag=ftbfs-20240728&fusertaguser=lu...@debian.org&allbugs=1&cseverity=1&ctags=1&caffected=1#results A list of current common problems and possible solutions is available at http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute! If you reassign this bug to another package, please mark it as 'affects'-ing this package. See https://www.debian.org/Bugs/server-control#affects If you fail to reproduce this, please provide a build log and diff it with mine so that we can identify if something relevant changed in the meantime.
Bug#1077430: python-emmet-core: FTBFS: E ImportError: cannot import name 'datetime' from 'pydantic.datetime_parse' (/usr/lib/python3/dist-packages/pydantic/datetime_parse.py)
Source: python-emmet-core Version: 0.57.1-3 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240728 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > make[1]: Entering directory '/<>' > set -e; \ > for py in 3.12; do \ > SKIP_TESTS=""; \ > list_initialised=0; \ > for t in test_from_url test_seriallization test_task_doc; do \ > if [ ${list_initialised} = 0 ]; then \ > SKIP_TESTS=$t; \ > list_initialised=1; \ > else \ > SKIP_TESTS="${SKIP_TESTS} or $t"; \ > fi; \ > done; \ > if [ "x${SKIP_TESTS}" != "x" ]; then \ > SKIP_TESTS="not ( ${SKIP_TESTS} )"; \ > fi; \ > echo "skipping tests: ${SKIP_TESTS}"; \ > pybuilddir=`pybuild --pyver $py --print build_dir | awk '{print $3}'`; \ > testdir=/<>/.pybuild/test_python$py; \ > mkdir $testdir; cp -a tests $testdir; \ > cd $testdir; \ > PMG_TEST_FILES_DIR=/<>/debian/test_files > PYTHONPATH=$pybuilddir \ > python$py -m pytest -v -k "${SKIP_TESTS}" $testdir; \ > done > skipping tests: not ( test_from_url or test_seriallization or test_task_doc ) > ImportError while loading conftest > '/<>/.pybuild/test_python3.12/tests/conftest.py'. > tests/conftest.py:121: in > class SiNonSCFUniform(SchemaTestData): > tests/conftest.py:122: in SiNonSCFUniform > from emmet.core.vasp.calculation import VaspObject > ../cpython3_3.12_emmet-core/build/emmet/core/vasp/calculation.py:11: in > > from pydantic.datetime_parse import datetime > E ImportError: cannot import name 'datetime' from 'pydantic.datetime_parse' > (/usr/lib/python3/dist-packages/pydantic/datetime_parse.py) > make[1]: *** [debian/rules:22: override_dh_auto_test] Error 4 The full build log is available from: http://qa-logs.debian.net/2024/07/28/python-emmet-core_0.57.1-3_unstable.log All bugs filed during this archive rebuild are listed at: https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240728;users=lu...@debian.org or: https://udd.debian.org/bugs/?release=na&merged=ign&fnewerval=7&flastmodval=7&fusertag=only&fusertagtag=ftbfs-20240728&fusertaguser=lu...@debian.org&allbugs=1&cseverity=1&ctags=1&caffected=1#results A list of current common problems and possible solutions is available at http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute! If you reassign this bug to another package, please mark it as 'affects'-ing this package. See https://www.debian.org/Bugs/server-control#affects If you fail to reproduce this, please provide a build log and diff it with mine so that we can identify if something relevant changed in the meantime.
Bug#1077429: yad: FTBFS: main.c:673:73: error: passing argument 2 of ‘gtk_style_context_add_provider’ from incompatible pointer type [-Wincompatible-pointer-types]
Source: yad Version: 0.40.0-1 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240728 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > gcc -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\""/usr/share/locale"\" > -Wdate-time -D_FORTIFY_SOURCE=2 -I/usr/include/gtk-3.0 > -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 > -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/sysprof-6 > -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 > -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi > -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 > -I/usr/include/x86_64-linux-gnu -I/usr/include/webp > -I/usr/include/gio-unix-2.0 -I/usr/include/cloudproviders > -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 > -I/usr/include/at-spi-2.0 -I/usr/include/dbus-1.0 > -I/usr/lib/x86_64-linux-gnu/dbus-1.0/include > -I/usr/include/gtk-3.0/unix-print -pthread -g -O2 > -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. > -fstack-protector-strong -fstack-clash-protection -Wformat > -Werror=format-security -fcf-protection -fgnu89-inline -c -o yad-main.o `test > -f 'main.c' || echo './'`main.c > main.c: In function ‘create_layout’: > main.c:194:7: warning: ‘gtk_misc_set_alignment’ is deprecated > [-Wdeprecated-declarations] > 194 | gtk_misc_set_alignment (GTK_MISC (image), 0.5, 0.0); > | ^~ > In file included from /usr/include/gtk-3.0/gtk/gtklabel.h:32, > from /usr/include/gtk-3.0/gtk/gtkaccellabel.h:35, > from /usr/include/gtk-3.0/gtk/gtk.h:33, > from yad.h:30, > from main.c:34: > /usr/include/gtk-3.0/gtk/deprecated/gtkmisc.h:72:9: note: declared here >72 | voidgtk_misc_set_alignment (GtkMisc *misc, > | ^~ > main.c:216:11: warning: ‘gtk_widget_set_state’ is deprecated: Use > 'gtk_widget_set_state_flags' instead [-Wdeprecated-declarations] > 216 | gtk_widget_set_state (text, GTK_STATE_NORMAL); > | ^~~~ > In file included from /usr/include/gtk-3.0/gtk/gtkapplication.h:27, > from /usr/include/gtk-3.0/gtk/gtkwindow.h:33, > from /usr/include/gtk-3.0/gtk/gtkdialog.h:32, > from /usr/include/gtk-3.0/gtk/gtkaboutdialog.h:30, > from /usr/include/gtk-3.0/gtk/gtk.h:31: > /usr/include/gtk-3.0/gtk/gtkwidget.h:823:23: note: declared here > 823 | void gtk_widget_set_state (GtkWidget > *widget, > | ^~~~ > main.c:221:15: warning: ‘gtk_misc_set_alignment’ is deprecated > [-Wdeprecated-declarations] > 221 | gtk_misc_set_alignment (GTK_MISC (text), 0.0, 0.5); > | ^~ > /usr/include/gtk-3.0/gtk/deprecated/gtkmisc.h:72:9: note: declared here >72 | voidgtk_misc_set_alignment (GtkMisc *misc, > | ^~ > main.c:224:15: warning: ‘gtk_misc_set_alignment’ is deprecated > [-Wdeprecated-declarations] > 224 | gtk_misc_set_alignment (GTK_MISC (text), 0.5, 0.5); > | ^~ > /usr/include/gtk-3.0/gtk/deprecated/gtkmisc.h:72:9: note: declared here >72 | voidgtk_misc_set_alignment (GtkMisc *misc, > | ^~ > main.c:227:15: warning: ‘gtk_misc_set_alignment’ is deprecated > [-Wdeprecated-declarations] > 227 | gtk_misc_set_alignment (GTK_MISC (text), 1.0, 0.5); > | ^~ > /usr/include/gtk-3.0/gtk/deprecated/gtkmisc.h:72:9: note: declared here >72 | voidgtk_misc_set_alignment (GtkMisc *misc, > | ^~ > main.c: In function ‘create_dialog’: > main.c:539:15: warning: ‘gtk_button_set_alignment’ is deprecated > [-Wdeprecated-declarations] > 539 | gtk_button_set_alignment (GTK_BUTTON (btn), 0.5, 0.5); > | ^~~~ > In file included from /usr/include/gtk-3.0/gtk/gtk.h:54: > /usr/include/gtk-3.0/gtk/gtkbutton.h:143:23: note: declared here > 143 | void gtk_button_set_alignment (GtkButton > *button, > | ^~~~ > main.c:554:15: warning: ‘gtk_button_new_from_stock’ is deprecated: Use > 'gtk_button_new_with_label' instead [-Wdeprecated-declarations] > 554 | btn = gtk_button_new_from_stock (GTK_STOCK_CLOSE); > | ^~~ > /usr/include/gtk-3.0/gtk/gtkbutton.h:103:16: note: declared here > 103 | GtkWidget* gtk_button_new_from_stock(const gchar > *stock_id); > |^ > main.c:554:15: warning: ‘GtkStock’ is deprecated [-Wdeprecate
Bug#1077428: qt5ct: FTBFS: qt5ctplatformtheme.cpp:121:36: error: ‘class QDBusMenuConnection’ has no member named ‘isStatusNotifierHostRegistered’
Source: qt5ct Version: 1.8-1 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240728 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > /usr/bin/c++ -fPIC -g -O2 -ffile-prefix-map=/<>=. > -fstack-protector-strong -fstack-clash-protection -Wformat > -Werror=format-security -fcf-protection -Wdate-time -D_FORTIFY_SOURCE=2 > -Wl,--no-undefined -Wl,-z,relro -Wl,-z,now -shared -o libqt5ct-style.so > "CMakeFiles/qt5ct-style.dir/qt5ct-style_autogen/mocs_compilation.cpp.o" > "CMakeFiles/qt5ct-style.dir/plugin.cpp.o" > "CMakeFiles/qt5ct-style.dir/qt5ctproxystyle.cpp.o" > -Wl,-rpath,"\$ORIGIN/../qt5ct-common:" > /usr/lib/x86_64-linux-gnu/libQt5Widgets.so.5.15.13 > ../qt5ct-common/libqt5ct-common.so.1.8 > /usr/lib/x86_64-linux-gnu/libQt5Gui.so.5.15.13 > /usr/lib/x86_64-linux-gnu/libQt5Core.so.5.15.13 > /<>/src/qt5ct-qtplugin/qt5ctplatformtheme.cpp: In member > function ‘virtual QPlatformSystemTrayIcon* > Qt5CTPlatformTheme::createPlatformSystemTrayIcon() const’: > /<>/src/qt5ct-qtplugin/qt5ctplatformtheme.cpp:121:36: error: > ‘class QDBusMenuConnection’ has no member named > ‘isStatusNotifierHostRegistered’ > 121 | m_dbusTrayAvailable = conn.isStatusNotifierHostRegistered(); > |^~ > [ 65%] Building CXX object src/qt5ct/CMakeFiles/qt5ct.dir/main.cpp.o > cd /<>/obj-x86_64-linux-gnu/src/qt5ct && /usr/bin/c++ > -DQT_CONCURRENT_LIB -DQT_CORE_LIB -DQT_DISABLE_DEPRECATED_BEFORE=0x050C00 > -DQT_GUI_LIB -DQT_NO_DEBUG -DQT_WIDGETS_LIB -DUSE_WIDGETS > -I/<>/obj-x86_64-linux-gnu/src/qt5ct/qt5ct_autogen/include > -I/<>/src/qt5ct-common -isystem > /usr/include/x86_64-linux-gnu/qt5 -isystem > /usr/include/x86_64-linux-gnu/qt5/QtWidgets -isystem > /usr/include/x86_64-linux-gnu/qt5/QtGui -isystem > /usr/include/x86_64-linux-gnu/qt5/QtCore -isystem > /usr/lib/x86_64-linux-gnu/qt5/mkspecs/linux-g++ -isystem > /usr/include/x86_64-linux-gnu/qt5/QtConcurrent -isystem > /usr/include/x86_64-linux-gnu/qt5/QtWidgets/5.15.13 -isystem > /usr/include/x86_64-linux-gnu/qt5/QtWidgets/5.15.13/QtWidgets -isystem > /usr/include/x86_64-linux-gnu/qt5/QtGui/5.15.13 -isystem > /usr/include/x86_64-linux-gnu/qt5/QtGui/5.15.13/QtGui -isystem > /usr/include/x86_64-linux-gnu/qt5/QtCore/5.15.13 -isystem > /usr/include/x86_64-linux-gnu/qt5/QtCore/5.15.13/QtCore -g -O2 > -ffile-prefix-map=/<>=. -fstack-protector-strong > -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection > -Wdate-time -D_FORTIFY_SOURCE=2 -std=gnu++11 -fvisibility=hidden > -fvisibility-inlines-hidden -fPIC -MD -MT > src/qt5ct/CMakeFiles/qt5ct.dir/main.cpp.o -MF > CMakeFiles/qt5ct.dir/main.cpp.o.d -o CMakeFiles/qt5ct.dir/main.cpp.o -c > /<>/src/qt5ct/main.cpp > make[3]: Leaving directory '/<>/obj-x86_64-linux-gnu' > [ 68%] Built target qt5ct-style > [ 71%] Building CXX object src/qt5ct/CMakeFiles/qt5ct.dir/mainwindow.cpp.o > cd /<>/obj-x86_64-linux-gnu/src/qt5ct && /usr/bin/c++ > -DQT_CONCURRENT_LIB -DQT_CORE_LIB -DQT_DISABLE_DEPRECATED_BEFORE=0x050C00 > -DQT_GUI_LIB -DQT_NO_DEBUG -DQT_WIDGETS_LIB -DUSE_WIDGETS > -I/<>/obj-x86_64-linux-gnu/src/qt5ct/qt5ct_autogen/include > -I/<>/src/qt5ct-common -isystem > /usr/include/x86_64-linux-gnu/qt5 -isystem > /usr/include/x86_64-linux-gnu/qt5/QtWidgets -isystem > /usr/include/x86_64-linux-gnu/qt5/QtGui -isystem > /usr/include/x86_64-linux-gnu/qt5/QtCore -isystem > /usr/lib/x86_64-linux-gnu/qt5/mkspecs/linux-g++ -isystem > /usr/include/x86_64-linux-gnu/qt5/QtConcurrent -isystem > /usr/include/x86_64-linux-gnu/qt5/QtWidgets/5.15.13 -isystem > /usr/include/x86_64-linux-gnu/qt5/QtWidgets/5.15.13/QtWidgets -isystem > /usr/include/x86_64-linux-gnu/qt5/QtGui/5.15.13 -isystem > /usr/include/x86_64-linux-gnu/qt5/QtGui/5.15.13/QtGui -isystem > /usr/include/x86_64-linux-gnu/qt5/QtCore/5.15.13 -isystem > /usr/include/x86_64-linux-gnu/qt5/QtCore/5.15.13/QtCore -g -O2 > -ffile-prefix-map=/<>=. -fstack-protector-strong > -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection > -Wdate-time -D_FORTIFY_SOURCE=2 -std=gnu++11 -fvisibility=hidden > -fvisibility-inlines-hidden -fPIC -MD -MT > src/qt5ct/CMakeFiles/qt5ct.dir/mainwindow.cpp.o -MF > CMakeFiles/qt5ct.dir/mainwindow.cpp.o.d -o > CMakeFiles/qt5ct.dir/mainwindow.cpp.o -c > /<>/src/qt5ct/mainwindow.cpp > make[3]: *** > [src/qt5ct-qtplugin/CMakeFiles/qt5ct-qtplugin.dir/build.make:114: > src/qt5ct-qtplugin/CMakeFiles/qt5ct-qtplugin.dir/qt5ctplatformtheme.cpp.o] > Error 1 The full build log is available from: http://qa-logs.debian.net/2024/07/28/qt5ct_1.8-1_unstable.log All bugs filed during this archive rebuild are listed at: https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240728;users=lu...@debian.org or: https://udd.debian.org/bugs/?release=na&merged=ign&fnewerval=7&flastmodval=7&fusertag=only
Bug#1077427: persistent-cache-cpp: FTBFS: speed_test.cpp:99:10: error: ‘setfill’ was not declared in this scope
Source: persistent-cache-cpp Version: 1.0.7-1 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240728 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > cd /<>/obj-x86_64-linux-gnu/tests/core/persistent_string_cache > && /usr/bin/c++ -DGTEST_VERSION_MAJOR=1 -DGTEST_VERSION_MINOR=15 > -DGTEST_VERSION_PATCH=0 > -DTEST_DIR=\"/<>/obj-x86_64-linux-gnu/tests/core/persistent_string_cache\" > -I/<>/obj-x86_64-linux-gnu/tests/core/persistent_string_cache > -I/<>/tests/core/persistent_string_cache > -I/<>/include -isystem /usr/src/googletest/googlemock/include > -isystem /usr/src/googletest/googletest/include -g -O2 > -ffile-prefix-map=/<>=. -fstack-protector-strong > -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection > -Wdate-time -D_FORTIFY_SOURCE=2 --std=c++14 -Wall -pedantic -Wextra > -Wcast-align -Wcast-qual -Wformat -Wredundant-decls -Wswitch-default > -Wnon-virtual-dtor -Wctor-dtor-privacy -Wold-style-cast -MD -MT > tests/core/persistent_string_cache/CMakeFiles/persistent_string_cache_test.dir/persistent_string_cache_test.cpp.o > -MF > CMakeFiles/persistent_string_cache_test.dir/persistent_string_cache_test.cpp.o.d > -o > CMakeFiles/persistent_string_cache_test.dir/persistent_string_cache_test.cpp.o > -c > /<>/tests/core/persistent_string_cache/persistent_string_cache_test.cpp > /<>/tests/core/persistent_string_cache/speed_test.cpp: In > function ‘std::string make_key(int, int)’: > /<>/tests/core/persistent_string_cache/speed_test.cpp:99:10: > error: ‘setfill’ was not declared in this scope >99 | s << setfill('0') << setw(keylen) << random_int(0, max_key); > | ^~~ > /<>/tests/core/persistent_string_cache/speed_test.cpp:32:1: > note: ‘std::setfill’ is defined in header ‘’; this is probably > fixable by adding ‘#include ’ >31 | #include > +++ |+#include >32 | > /<>/tests/core/persistent_string_cache/speed_test.cpp:99:26: > error: ‘setw’ was not declared in this scope >99 | s << setfill('0') << setw(keylen) << random_int(0, max_key); > | ^~~~ > /<>/tests/core/persistent_string_cache/speed_test.cpp:99:26: > note: ‘std::setw’ is defined in header ‘’; this is probably fixable > by adding ‘#include ’ > /<>/tests/core/persistent_string_cache/speed_test.cpp: In member > function ‘virtual void PersistentStringCache_basic_Test::TestBody()’: > /<>/tests/core/persistent_string_cache/speed_test.cpp:151:14: > error: ‘setfill’ was not declared in this scope > 151 | s << setfill('0') << setw(keylen) << i; > | ^~~ > /<>/tests/core/persistent_string_cache/speed_test.cpp:151:14: > note: ‘std::setfill’ is defined in header ‘’; this is probably > fixable by adding ‘#include ’ > /<>/tests/core/persistent_string_cache/speed_test.cpp:151:30: > error: ‘setw’ was not declared in this scope > 151 | s << setfill('0') << setw(keylen) << i; > | ^~~~ > /<>/tests/core/persistent_string_cache/speed_test.cpp:151:30: > note: ‘std::setw’ is defined in header ‘’; this is probably fixable > by adding ‘#include ’ > make[3]: *** > [tests/core/persistent_string_cache/CMakeFiles/speed_test.dir/build.make:79: > tests/core/persistent_string_cache/CMakeFiles/speed_test.dir/speed_test.cpp.o] > Error 1 The full build log is available from: http://qa-logs.debian.net/2024/07/28/persistent-cache-cpp_1.0.7-1_unstable.log All bugs filed during this archive rebuild are listed at: https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240728;users=lu...@debian.org or: https://udd.debian.org/bugs/?release=na&merged=ign&fnewerval=7&flastmodval=7&fusertag=only&fusertagtag=ftbfs-20240728&fusertaguser=lu...@debian.org&allbugs=1&cseverity=1&ctags=1&caffected=1#results A list of current common problems and possible solutions is available at http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute! If you reassign this bug to another package, please mark it as 'affects'-ing this package. See https://www.debian.org/Bugs/server-control#affects If you fail to reproduce this, please provide a build log and diff it with mine so that we can identify if something relevant changed in the meantime.
Bug#1077425: calculix-cgx: FTBFS: ptrList.h:218:21: error: assignment of member ‘delObj’ in read-only object
Source: calculix-cgx Version: 2.21+dfsg-1 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240728 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > g++ userFunction.o AsplitA.o AsplitL.o adjustMidsideNode.o compareStrings.o > XFunktions.o badelems.o bodyMesh2.o bsort.o bsortf.o bsorti.o calcNormalen.o > calcPrinc.o calcPvector.o calcWeight.o checkIfNumber.o cgx.o compare.o > copyEntity.o corrad.o dataGeo.o dataMesh.o defineEntity.o dispLists.o > elemChecker.o extFunktions.o extGL.o fillBody2.o frecord.o foamFaces.o > gl3grades.o getGeoDataTria.o graph.o ifind.o iinsert.o improveBadTr3.o > improveMesh.o iniMeshData.o intpol.o intpol2.o intpol3.o iremove.o > linelength.o m_copy.o m_sub.o mergEntity.o mesh2d.o meshSet.o meshSurf.o > messages.o near3d.o normdist.o nurbl2seq.o orient.o p_angle.o parser.o > pickFunktions.o plotFunktions.o readAnsysList.o readEdges.o readfrd.o > readFoam.o readStdCmap.o readStl.o readVtk.o readccx.o readDuns.o > readNastran.o readNG.o readTG.o readIsaac.o readstep.o readWf.o rectcyl.o > renumberfrd.o selectDisplayFaces.o sendMpc.o sendSet.o setFunktions.o > shapeFunctions.o spline.o splitElementsToTets.o stof.o stoi.o stopClock.o > stos.o strfind.o strsplt.o sins.o surfMesh2.o sword.o trackball.o v_distA.o > v_rec2cyl.o v_add.o v_angle.o v_angle_ref.o v_betrag.o v_matmult.o v_norm.o > v_prod.o v_result.o v_scal.o v_rot.o v_sprod.o m_prod.o m_prodtr.o > write2aba.o write2ansys.o write2aster.o write2darwin.o write2dolfyn.o > write2isaac.o write2duns.o write2frd.o write2foam.o write2nas.o > write2samcef.o write2tochnog.o writefbd.o writebp.o contact.o > makeTriFromElems.o uselibSNL.cpp generateTet.cpp -g -O2 > -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. > -fstack-protector-strong -fstack-clash-protection -Wformat > -Werror=format-security -fcf-protection -Wl,-z,relro -I. -L/usr/lib64 -lGL > -lGLU -lglut -lSNL -L/usr/X11R6/lib64 -lX11 -lXi -lXmu -lXext -lXt -lSM -lICE > -lm -lpthread -o cgx > cc1plus: warning: ‘-Werror=’ argument ‘-Werror=implicit-function-declaration’ > is not valid for C++ > In file included from /usr/include/snlSurface.h:27, > from uselibSNL.cpp:35: > /usr/include/ptrList.h: In member function ‘ptrListItem& > ptrListItem::operator=(const ptrListItem&)’: > /usr/include/ptrList.h:218:21: error: assignment of member ‘delObj’ in > read-only object > 218 | item.delObj = false; > | ^~~ > uselibSNL.cpp: In function ‘void vl_result(double*, double*, double*)’: > uselibSNL.cpp:84:14: warning: ISO C++17 does not allow ‘register’ storage > class specifier [-Wregister] >84 | register int i; > | ^ > uselibSNL.cpp: In function ‘double vl_betrag(double*)’: > uselibSNL.cpp:128:16: warning: ISO C++17 does not allow ‘register’ storage > class specifier [-Wregister] > 128 | register int i; > |^ > uselibSNL.cpp: In function ‘void vl_scal(double*, double*, double*)’: > uselibSNL.cpp:144:16: warning: ISO C++17 does not allow ‘register’ storage > class specifier [-Wregister] > 144 | register int i; > |^ > uselibSNL.cpp: In function ‘void vl_add(double*, double*, double*)’: > uselibSNL.cpp:155:16: warning: ISO C++17 does not allow ‘register’ storage > class specifier [-Wregister] > 155 | register int i; > |^ > uselibSNL.cpp: In function ‘int rotateBall(int, int, int, double, double)’: > uselibSNL.cpp:1958:10: warning: ISO C++ forbids converting a string constant > to ‘char*’ [-Wwrite-strings] > 1958 | delSet("-tmp"); > | ^~ > uselibSNL.cpp:1959:19: warning: ISO C++ forbids converting a string constant > to ‘char*’ [-Wwrite-strings] > 1959 | pntset=pre_seta("-tmp1","i",0); > | ^~~ > uselibSNL.cpp:1959:27: warning: ISO C++ forbids converting a string constant > to ‘char*’ [-Wwrite-strings] > 1959 | pntset=pre_seta("-tmp1","i",0); > | ^~~ > uselibSNL.cpp:1965:27: warning: ISO C++ forbids converting a string constant > to ‘char*’ [-Wwrite-strings] > 1965 | getNewName( buffer, "p" ); > | ^~~ > uselibSNL.cpp:1969:19: warning: ISO C++ forbids converting a string constant > to ‘char*’ [-Wwrite-strings] > 1969 | seta(pntset,"p",p); > | ^~~ > uselibSNL.cpp:1979:16: warning: ISO C++ forbids converting a string constant > to ‘char*’ [-Wwrite-strings] > 1979 | ipax1=pnt( "+pax11",cg_sphere[0],cg_sphere[1],cg_sphere[2], 0 ); > |^~~~ > uselibSNL.cpp:1980:16: warning: ISO C++ forbids converting a string constant > to ‘char*’ [-Wwrite-strings] > 1980 | ipax2=pnt( "+pax12",pax1[0],pax1[1],pax1[2], 0 ); > |^~~~ > uselibSNL.cpp:1993:16: warning:
Bug#1077424: scilab: FTBFS: sci_gateway/c/sci_javalibrarypath.c:43:63: error: passing argument 5 of 'createMatrixOfString' from incompatible pointer type [-Wincompatible-pointer-types]
Source: scilab Version: 2024.1.0+dfsg-2 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240728 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > /bin/bash ../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. > -I../../modules/core/includes -I/usr/lib/jvm/java-17-openjdk-amd64/include > -I/usr/lib/jvm/java-17-openjdk-amd64/include/linux -I./includes/ -I./src/c > -I../../modules/ast/includes/ast/ -I../../modules/ast/includes/exps/ > -I../../modules/ast/includes/operations/ -I../../modules/ast/includes/parse/ > -I../../modules/ast/includes/symbol/ -I../../modules/ast/includes/system_env/ > -I../../modules/ast/includes/types/ -I../../modules/api_scilab/includes/ > -I../../modules/call_scilab/includes/ -I../../modules/output_stream/includes/ > -I../../modules/localization/includes/ -I../../modules/string/includes/ > -I../../modules/functions_manager/includes/ -I../../modules/fileio/includes/ > -I../../modules/dynamic_link/includes -I../../modules/preferences/includes/ > -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -DNDEBUG -g -O2 -m64 > -g -O2 -Werror=implicit-function-declaration > -ffile-prefix-map=/<>=. -fstack-protector-strong > -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -MT > sci_gateway/c/libscijvm_la-sci_javalibrarypath.lo -MD -MP -MF > sci_gateway/c/.deps/libscijvm_la-sci_javalibrarypath.Tpo -c -o > sci_gateway/c/libscijvm_la-sci_javalibrarypath.lo `test -f > 'sci_gateway/c/sci_javalibrarypath.c' || echo > './'`sci_gateway/c/sci_javalibrarypath.c > libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../modules/core/includes > -I/usr/lib/jvm/java-17-openjdk-amd64/include > -I/usr/lib/jvm/java-17-openjdk-amd64/include/linux -I./includes/ -I./src/c > -I../../modules/ast/includes/ast/ -I../../modules/ast/includes/exps/ > -I../../modules/ast/includes/operations/ -I../../modules/ast/includes/parse/ > -I../../modules/ast/includes/symbol/ -I../../modules/ast/includes/system_env/ > -I../../modules/ast/includes/types/ -I../../modules/api_scilab/includes/ > -I../../modules/call_scilab/includes/ -I../../modules/output_stream/includes/ > -I../../modules/localization/includes/ -I../../modules/string/includes/ > -I../../modules/functions_manager/includes/ -I../../modules/fileio/includes/ > -I../../modules/dynamic_link/includes -I../../modules/preferences/includes/ > -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -DNDEBUG -g -O2 -m64 > -g -O2 -Werror=implicit-function-declaration > -ffile-prefix-map=/<>=. -fstack-protector-strong > -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -MT > sci_gateway/c/libscijvm_la-sci_javalibrarypath.lo -MD -MP -MF > sci_gateway/c/.deps/libscijvm_la-sci_javalibrarypath.Tpo -c > sci_gateway/c/sci_javalibrarypath.c -fPIC -DPIC -o > sci_gateway/c/.libs/libscijvm_la-sci_javalibrarypath.o > sci_gateway/c/sci_javalibrarypath.c: In function 'sci_javalibrarypath': > sci_gateway/c/sci_javalibrarypath.c:43:63: error: passing argument 5 of > 'createMatrixOfString' from incompatible pointer type > [-Wincompatible-pointer-types] >43 | createMatrixOfString(pvApiCtx, Rhs + 1, iRows, iCols, > pstLibrarypath); > | > ^~ > | | > | char ** > In file included from ../../modules/api_scilab/includes/api_scilab.h:38, > from sci_gateway/c/sci_javalibrarypath.c:25: > ../../modules/api_scilab/includes/api_stack_string.h:65:97: note: expected > 'const char * const*' but argument is of type 'char **' >65 | SciErr createMatrixOfString(void* _pvCtx, int _iVar, int _iRows, int > _iCols, const char* const* _pstStrings); > | >~~~^~~ > make[4]: *** [Makefile:1220: > sci_gateway/c/libscijvm_la-sci_javalibrarypath.lo] Error 1 The full build log is available from: http://qa-logs.debian.net/2024/07/28/scilab_2024.1.0+dfsg-2_unstable.log All bugs filed during this archive rebuild are listed at: https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240728;users=lu...@debian.org or: https://udd.debian.org/bugs/?release=na&merged=ign&fnewerval=7&flastmodval=7&fusertag=only&fusertagtag=ftbfs-20240728&fusertaguser=lu...@debian.org&allbugs=1&cseverity=1&ctags=1&caffected=1#results A list of current common problems and possible solutions is available at http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute! If you reassign this bug to another package, please mark it as 'affects'-ing this package. See https://www.debian.org/Bugs/server-control#affects If you fail to reproduce this, please provi
Bug#1077423: fortunes-es: FTBFS: rot.c:23:5: error: implicit declaration of function ‘exit’ [-Wimplicit-function-declaration]
Source: fortunes-es Version: 1.36 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240728 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > gcc -O2 -DFORTDIR="\"/usr/share/games/fortunes\"" > -DOFFDIR="\"/usr/share/games/fortunes/off\"" > -DLOCFORTDIR="\"/usr/local/share/games/fortunes\"" > -DLOCOFFDIR="\"/usr/local/share/games/fortunes/off\"" -Wall > -fomit-frame-pointer -pipe -fsigned-char -Wdate-time -D_FORTIFY_SOURCE=2 -c > -o rot.o rot.c > rot.c: In function ‘main’: > rot.c:23:5: error: implicit declaration of function ‘exit’ > [-Wimplicit-function-declaration] >23 | exit(0); > | ^~~~ > rot.c:8:1: note: include ‘’ or provide a declaration of ‘exit’ > 7 | #include > +++ |+#include > 8 | > rot.c:23:5: warning: incompatible implicit declaration of built-in function > ‘exit’ [-Wbuiltin-declaration-mismatch] >23 | exit(0); > | ^~~~ > rot.c:23:5: note: include ‘’ or provide a declaration of ‘exit’ > make[2]: *** [: rot.o] Error 1 The full build log is available from: http://qa-logs.debian.net/2024/07/28/fortunes-es_1.36_unstable.log All bugs filed during this archive rebuild are listed at: https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240728;users=lu...@debian.org or: https://udd.debian.org/bugs/?release=na&merged=ign&fnewerval=7&flastmodval=7&fusertag=only&fusertagtag=ftbfs-20240728&fusertaguser=lu...@debian.org&allbugs=1&cseverity=1&ctags=1&caffected=1#results A list of current common problems and possible solutions is available at http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute! If you reassign this bug to another package, please mark it as 'affects'-ing this package. See https://www.debian.org/Bugs/server-control#affects If you fail to reproduce this, please provide a build log and diff it with mine so that we can identify if something relevant changed in the meantime.
Bug#1077422: prelude-manager: FTBFS: xmlmod.c:51:1: error: implicit declaration of function 'free' [-Wimplicit-function-declaration]
Source: prelude-manager Version: 5.2.0-2 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240728 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > /bin/bash ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. > -I../../.. -I../../../src/include -I../../../libmissing > -I/usr/include/libxml2 > -DIDMEF_DTD=\"/usr/share/prelude-manager/xmlmod/idmef-message.dtd\" > -Wdate-time -D_FORTIFY_SOURCE=2 -I/usr/include/p11-kit-1 -Wall > -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations > -Wbad-function-cast -Wcast-qual -Wcast-align -Wnested-externs -Wunused > -Wformat -Wformat-security -g -O2 -Werror=implicit-function-declaration > -ffile-prefix-map=/<>=. -fstack-protector-strong > -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -g > -O2 -ffile-prefix-map=/build/reproducible-path/net-snmp-5.9.4+dfsg=. > -fstack-protector-strong -fstack-clash-protection -Wformat > -Werror=format-security -fcf-protection -DNETSNMP_USE_INLINE > -DNETSNMP_ENABLE_IPV6 -fno-strict-aliasing -DNETSNMP_REMOVE_U64 -g -O2 > -ffile-prefix-map=/build/reproducible-path/net-snmp-5.9.4+dfsg=. > -fstack-protector-strong -fstack-clash-protection -Wformat -fcf-protection > -DNETSNMP_USE_INLINE -Ulinux -Dlinux=linux -D_REENTRANT -D_GNU_SOURCE > -DDEBIAN -fwrapv -fno-strict-aliasing -pipe -I/usr/local/include > -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 > -I/usr/lib/x86_64-linux-gnu/perl/5.38/CORE -Wdate-time -D_FORTIFY_SOURCE=2 > -I. -I/usr/include -c -o xmlmod.lo xmlmod.c > libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/include > -I../../../libmissing -I/usr/include/libxml2 > -DIDMEF_DTD=\"/usr/share/prelude-manager/xmlmod/idmef-message.dtd\" > -Wdate-time -D_FORTIFY_SOURCE=2 -I/usr/include/p11-kit-1 -Wall > -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations > -Wbad-function-cast -Wcast-qual -Wcast-align -Wnested-externs -Wunused > -Wformat -Wformat-security -g -O2 -Werror=implicit-function-declaration > -ffile-prefix-map=/<>=. -fstack-protector-strong > -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -g > -O2 -ffile-prefix-map=/build/reproducible-path/net-snmp-5.9.4+dfsg=. > -fstack-protector-strong -fstack-clash-protection -Wformat > -Werror=format-security -fcf-protection -DNETSNMP_USE_INLINE > -DNETSNMP_ENABLE_IPV6 -fno-strict-aliasing -DNETSNMP_REMOVE_U64 -g -O2 > -ffile-prefix-map=/build/reproducible-path/net-snmp-5.9.4+dfsg=. > -fstack-protector-strong -fstack-clash-protection -Wformat -fcf-protection > -DNETSNMP_USE_INLINE -Ulinux -Dlinux=linux -D_REENTRANT -D_GNU_SOURCE > -DDEBIAN -fwrapv -fno-strict-aliasing -pipe -I/usr/local/include > -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 > -I/usr/lib/x86_64-linux-gnu/perl/5.38/CORE -Wdate-time -D_FORTIFY_SOURCE=2 > -I. -I/usr/include -c xmlmod.c -fPIC -DPIC -o .libs/xmlmod.o > In file included from /usr/include/libprelude/prelude.h:66, > from ../../../src/include/prelude-manager.h:24, > from xmlmod.c:31: > xmlmod.c: In function 'xmlmod_set_logfile': > xmlmod.c:51:1: error: implicit declaration of function 'free' > [-Wimplicit-function-declaration] >51 | PRELUDE_PLUGIN_OPTION_DECLARE_STRING_CB(xmlmod, xmlmod_plugin_t, > logfile) > | ^~~ > xmlmod.c:32:1: note: include '' or provide a declaration of 'free' >31 | #include "prelude-manager.h" > +++ |+#include >32 | > xmlmod.c: In function 'xmlmod_destroy': > xmlmod.c:990:17: warning: incompatible implicit declaration of built-in > function 'free' [-Wbuiltin-declaration-mismatch] > 990 | free(plugin->logfile); > | ^~~~ > xmlmod.c:990:17: note: include '' or provide a declaration of 'free' > xmlmod.c:992:9: warning: incompatible implicit declaration of built-in > function 'free' [-Wbuiltin-declaration-mismatch] > 992 | free(plugin); > | ^~~~ > xmlmod.c:992:9: note: include '' or provide a declaration of 'free' > xmlmod.c: In function 'xmlmod_activate': > xmlmod.c:1008:15: error: implicit declaration of function 'calloc' > [-Wimplicit-function-declaration] > 1008 | new = calloc(1, sizeof(*new)); > | ^~ > xmlmod.c:1008:15: note: include '' or provide a declaration of > 'calloc' > xmlmod.c:1008:15: warning: incompatible implicit declaration of built-in > function 'calloc' [-Wbuiltin-declaration-mismatch] > xmlmod.c:1008:15: note: include '' or provide a declaration of > 'calloc' > xmlmod.c:1015:17: warning: incompatible implicit declaration of built-in > function 'free' [-Wbuiltin-declaration-mismatch] > 1015 | free(new); > | ^~~~ > xmlmod.c:1015:17: note: include '' or provide a declaration of > 'free' > make[5]: *** [Makefile:1407: xmlmo
Bug#1077421: qgnomeplatform: FTBFS: qgnomeplatformtheme.cpp:185:18: error: ‘class QDBusMenuConnection’ has no member named ‘isStatusNotifierHostRegistered’
Source: qgnomeplatform Version: 0.9.2-3 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240728 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > cd /<>/obj-x86_64-linux-gnu/src/theme && /usr/bin/c++ > -DQT_CORE_LIB -DQT_DBUS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG > -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_QUICKCONTROLS2_LIB -DQT_QUICK_LIB > -DQT_THEME_SUPPORT_LIB -DQT_WIDGETS_LIB -Dqgnomeplatformtheme_EXPORTS > -I/<>/obj-x86_64-linux-gnu/src/theme/qgnomeplatformtheme_autogen/include > -I/<>/src/common -isystem /usr/include/x86_64-linux-gnu/qt5 > -isystem /usr/include/x86_64-linux-gnu/qt5/QtCore -isystem > /usr/lib/x86_64-linux-gnu/qt5/mkspecs/linux-g++ -isystem > /usr/include/x86_64-linux-gnu/qt5/QtDBus -isystem > /usr/include/x86_64-linux-gnu/qt5/QtGui/5.15.13 -isystem > /usr/include/x86_64-linux-gnu/qt5/QtGui/5.15.13/QtGui -isystem > /usr/include/x86_64-linux-gnu/qt5/QtGui -isystem > /usr/include/x86_64-linux-gnu/qt5/QtCore/5.15.13 -isystem > /usr/include/x86_64-linux-gnu/qt5/QtCore/5.15.13/QtCore -isystem > /usr/include/x86_64-linux-gnu/qt5/QtWidgets -isystem /usr/include/gtk-3.0 > -isystem /usr/include/pango-1.0 -isystem /usr/include/glib-2.0 -isystem > /usr/lib/x86_64-linux-gnu/glib-2.0/include -isystem /usr/include/sysprof-6 > -isystem /usr/include/harfbuzz -isystem /usr/include/freetype2 -isystem > /usr/include/libpng16 -isystem /usr/include/libmount -isystem > /usr/include/blkid -isystem /usr/include/fribidi -isystem /usr/include/cairo > -isystem /usr/include/pixman-1 -isystem /usr/include/gdk-pixbuf-2.0 -isystem > /usr/include/webp -isystem /usr/include/gio-unix-2.0 -isystem > /usr/include/cloudproviders -isystem /usr/include/atk-1.0 -isystem > /usr/include/at-spi2-atk/2.0 -isystem /usr/include/at-spi-2.0 -isystem > /usr/include/dbus-1.0 -isystem /usr/lib/x86_64-linux-gnu/dbus-1.0/include > -isystem /usr/include/x86_64-linux-gnu/qt5/QtQuickControls2 -isystem > /usr/include/x86_64-linux-gnu/qt5/QtQuick -isystem > /usr/include/x86_64-linux-gnu/qt5/QtQmlModels -isystem > /usr/include/x86_64-linux-gnu/qt5/QtQml -isystem > /usr/include/x86_64-linux-gnu/qt5/QtNetwork -isystem > /usr/include/x86_64-linux-gnu/qt5/QtThemeSupport/5.15.13 -isystem > /usr/include/x86_64-linux-gnu/qt5/QtThemeSupport/5.15.13/QtThemeSupport > -isystem /usr/include/x86_64-linux-gnu/qt5/QtThemeSupport -g -O2 > -ffile-prefix-map=/<>=. -fstack-protector-strong > -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection > -Wdate-time -D_FORTIFY_SOURCE=2 -std=gnu++14 -fPIC -fPIC -pthread -MD -MT > src/theme/CMakeFiles/qgnomeplatformtheme.dir/platformplugin.cpp.o -MF > CMakeFiles/qgnomeplatformtheme.dir/platformplugin.cpp.o.d -o > CMakeFiles/qgnomeplatformtheme.dir/platformplugin.cpp.o -c > /<>/src/theme/platformplugin.cpp > /<>/src/theme/qgnomeplatformtheme.cpp: In function ‘bool > isDBusTrayAvailable()’: > /<>/src/theme/qgnomeplatformtheme.cpp:185:18: error: ‘class > QDBusMenuConnection’ has no member named ‘isStatusNotifierHostRegistered’ > 185 | if (conn.isStatusNotifierHostRegistered()) { > | ^~ > make[4]: *** [src/theme/CMakeFiles/qgnomeplatformtheme.dir/build.make:113: > src/theme/CMakeFiles/qgnomeplatformtheme.dir/qgnomeplatformtheme.cpp.o] Error > 1 The full build log is available from: http://qa-logs.debian.net/2024/07/28/qgnomeplatform_0.9.2-3_unstable.log All bugs filed during this archive rebuild are listed at: https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240728;users=lu...@debian.org or: https://udd.debian.org/bugs/?release=na&merged=ign&fnewerval=7&flastmodval=7&fusertag=only&fusertagtag=ftbfs-20240728&fusertaguser=lu...@debian.org&allbugs=1&cseverity=1&ctags=1&caffected=1#results A list of current common problems and possible solutions is available at http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute! If you reassign this bug to another package, please mark it as 'affects'-ing this package. See https://www.debian.org/Bugs/server-control#affects If you fail to reproduce this, please provide a build log and diff it with mine so that we can identify if something relevant changed in the meantime.
Bug#1077420: ola: FTBFS: ./include/ola/base/Macro.h:45:11: error: template-id not allowed for constructor in C++20 [-Werror=template-id-cdtor]
Source: ola Version: 0.10.9.nojsmin-5 Severity: serious Justification: FTBFS Tags: trixie sid ftbfs User: lu...@debian.org Usertags: ftbfs-20240728 ftbfs-trixie Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part (hopefully): > /bin/bash ./libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I. > -Wdate-time -D_FORTIFY_SOURCE=2 -I./include -I./include -Wall -Wformat -W > -fvisibility-inlines-hidden -Werror -Wno-error=deprecated-declarations > -Werror -Wno-error=unused-parameter -Wno-error=deprecated-declarations > -Wno-error=sign-compare -DPID_DATA_DIR=\"/usr/share/ola/pids\" > -Wno-error=deprecated-declarations -Wno-error=unused-parameter -std=gnu++11 > -c -o common/thread/libolacommon_la-SignalThread.lo `test -f > 'common/thread/SignalThread.cpp' || echo './'`common/thread/SignalThread.cpp > ./include/ola/io/SelectServer.h:201:8: warning: 'template class > std::auto_ptr' is deprecated: use 'std::unique_ptr' instead > [-Wdeprecated-declarations] > 201 | std::auto_ptr m_timeout_manager; > |^~~~ > In file included from /usr/include/c++/14/memory:78, > from ./include/ola/io/SelectServer.h:32: > /usr/include/c++/14/bits/unique_ptr.h:59:28: note: declared here >59 | template class auto_ptr; > |^~~~ > libtool: compile: g++ -DHAVE_CONFIG_H -I. -Wdate-time -D_FORTIFY_SOURCE=2 > -I./include -I./include -Wall -Wformat -W -fvisibility-inlines-hidden -Werror > -Wno-error=deprecated-declarations -Werror -Wno-error=unused-parameter > -Wno-error=deprecated-declarations -Wno-error=sign-compare > -DPID_DATA_DIR=\"/usr/share/ola/pids\" -Wno-error=deprecated-declarations > -Wno-error=unused-parameter -std=gnu++11 -c common/thread/SignalThread.cpp > -fPIC -DPIC -o common/thread/.libs/libolacommon_la-SignalThread.o > ./include/ola/io/SelectServer.h:202:8: warning: 'template class > std::auto_ptr' is deprecated: use 'std::unique_ptr' instead > [-Wdeprecated-declarations] > 202 | std::auto_ptr m_poller; > |^~~~ > /usr/include/c++/14/bits/unique_ptr.h:59:28: note: declared here >59 | template class auto_ptr; > |^~~~ > In file included from ./include/ola/Clock.h:32: > ./include/ola/base/Macro.h:45:11: error: template-id not allowed for > constructor in C++20 [-Werror=template-id-cdtor] >45 | TypeName(const TypeName&); \ > | ^ > ./include/ola/thread/FuturePrivate.h:92:3: note: in expansion of macro > 'DISALLOW_COPY_AND_ASSIGN' >92 | DISALLOW_COPY_AND_ASSIGN(FutureImpl); > | ^~~~ > ./include/ola/base/Macro.h:45:11: note: remove the '< >' >45 | TypeName(const TypeName&); \ > | ^ > ./include/ola/thread/FuturePrivate.h:92:3: note: in expansion of macro > 'DISALLOW_COPY_AND_ASSIGN' >92 | DISALLOW_COPY_AND_ASSIGN(FutureImpl); > | ^~~~ > ./include/ola/base/Macro.h:45:11: error: template-id not allowed for > constructor in C++20 [-Werror=template-id-cdtor] >45 | TypeName(const TypeName&); \ > | ^ > ./include/ola/thread/FuturePrivate.h:155:3: note: in expansion of macro > 'DISALLOW_COPY_AND_ASSIGN' > 155 | DISALLOW_COPY_AND_ASSIGN(FutureImpl); > | ^~~~ > ./include/ola/base/Macro.h:45:11: note: remove the '< >' >45 | TypeName(const TypeName&); \ > | ^ > ./include/ola/thread/FuturePrivate.h:155:3: note: in expansion of macro > 'DISALLOW_COPY_AND_ASSIGN' > 155 | DISALLOW_COPY_AND_ASSIGN(FutureImpl); > | ^~~~ > libtool: compile: g++ -DHAVE_CONFIG_H -I. -Wdate-time -D_FORTIFY_SOURCE=2 > -I./include -I./include -Wall -Wformat -W -fvisibility-inlines-hidden -Werror > -Wno-error=deprecated-declarations -Werror -Wno-error=unused-parameter > -Wno-error=deprecated-declarations -Wno-error=sign-compare > -DPID_DATA_DIR=\"/usr/share/ola/pids\" -Wno-error=deprecated-declarations > -Wno-error=unused-parameter -std=gnu++11 -c common/thread/PeriodicThread.cpp > -o common/thread/libolacommon_la-PeriodicThread.o >/dev/null 2>&1 > cc1plus: all warnings being treated as errors > make[3]: *** [Makefile:11516: > common/thread/libolacommon_la-ExecutorThread.lo] Error 1 The full build log is available from: http://qa-logs.debian.net/2024/07/28/ola_0.10.9.nojsmin-5_unstable.log All bugs filed during this archive rebuild are listed at: https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240728;users=lu...@debian.org or: https://udd.debian.org/bugs/?release=na&merged=ign&fnewerval=7&flastmodval=7&fusertag=only&fusertagtag=ftbfs-20240728&fusertaguser=lu...@debian.org&allbugs=1&cseverity=1&ctags=1&caffected=1#results A list of current common problems and possible solutions is available at http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to con