Your message dated Sun, 18 Aug 2024 18:24:27 +0000
with message-id <e1sfkzn-00fwhq...@fasolo.debian.org>
and subject line Bug#1078384: fixed in python-watchfiles 0.23.0-1
has caused the Debian Bug report #1078384,
regarding python-watchfiles: FTBFS: make: *** [debian/rules:23: binary] Error 25
to be marked as done.

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

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


-- 
1078384: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1078384
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
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 '/<<PKGBUILDDIR>>'
> # Upstream doesn't set the version number...
> sed -i 's/0.0.0/0.21.0/' Cargo.toml
> make[1]: Leaving directory '/<<PKGBUILDDIR>>'
>    dh_auto_build -O--buildsystem=pybuild
> I: pybuild plugin_pyproject:129: Building wheel for python3.12 with "build" 
> module
> I: pybuild base:311: python3.12 -m build --skip-dependency-check 
> --no-isolation --wheel --outdir 
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.12_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', 
> '/<<PKGBUILDDIR>>/Cargo.toml'],) {}
>      Locking 37 packages to latest compatible versions
>       Adding bitflags v1.3.2 (latest: v2.4.2)
> 📦 Including license file "/<<PKGBUILDDIR>>/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 (/<<PKGBUILDDIR>>)
> error[E0412]: cannot find type `PyCell` in this scope
>    --> src/lib.rs:246:15
>     |
> 246 |         slf: &PyCell<Self>,
>     |               ^^^^^^ 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::Py::<T>::extract`
>     --> /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<D>
>      |            ------- required by a bound in this associated function
> 1417 |     where
> 1418 |         D: crate::conversion::FromPyObjectBound<'a, 'py>,
>      |            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ required by 
> this bound in `Py::<T>::extract`
> 
> 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 `get_type` found for struct `pyo3::Python` in 
> the current scope
>    --> src/lib.rs:363:12
>     |
> 363 |         py.get_type::<WatchfilesRustInternalError>(),
>     |            ^^^^^^^^
>     |
> help: there is a method `get_type_bound` with a similar name
>     |
> 363 |         py.get_type_bound::<WatchfilesRustInternalError>(),
>     |            ~~~~~~~~~~~~~~
> 
> error[E0599]: no method named `add_class` found for reference 
> `&pyo3::types::PyModule` in the current scope
>    --> src/lib.rs:365:7
>     |
> 365 |     m.add_class::<RustNotify>()?;
>     |       ^^^^^^^^^ method not found in `&PyModule`
> 
> error[E0277]: the trait bound `&pyo3::types::PyModule: 
> std::convert::From<BoundRef<'_, '_, pyo3::types::PyModule>>` is not satisfied
>    --> src/lib.rs:351:1
>     |
> 351 | #[pymodule]
>     | ^^^^^^^^^^^ the trait `std::convert::From<BoundRef<'_, '_, 
> pyo3::types::PyModule>>` is not implemented for `&pyo3::types::PyModule`, 
> which is required by `BoundRef<'_, '_, pyo3::types::PyModule>: Into<_>`
>     |
>     = note: required for `BoundRef<'_, '_, pyo3::types::PyModule>` to 
> implement `Into<&pyo3::types::PyModule>`
>     = note: this error originates in the attribute macro `pymodule` (in 
> Nightly builds, run with -Z macro-backtrace for more info)
> 
> Some errors have detailed explanations: E0277, E0412, E0599.
> For more information about an error, try `rustc --explain E0277`.
> error: could not compile `watchfiles_rust_notify` (lib) due to 9 previous 
> errors
> 💥 maturin failed
>   Caused by: Failed to build a native library through cargo
>   Caused by: Cargo build finished with "exit status: 101": 
> `CARGO_ENCODED_RUSTFLAGS="-C\u{1f}debuginfo=2\u{1f}-C\u{1f}strip=none\u{1f}--cap-lints\u{1f}warn\u{1f}-C\u{1f}linker=x86_64-linux-gnu-gcc\u{1f}-C\u{1f}link-arg=-Wl,-z,relro\u{1f}-C\u{1f}link-arg=-Wl,-z,now\u{1f}--remap-path-prefix\u{1f}/<<PKGBUILDDIR>>=/usr/share/cargo/registry/python-watchfiles-0.21.0\u{1f}--remap-path-prefix\u{1f}/<<PKGBUILDDIR>>/debian/cargo_registry=/usr/share/cargo/registry"
>  PYO3_ENVIRONMENT_SIGNATURE="cpython-3.12-64bit" 
> PYO3_PYTHON="/usr/bin/python3.12" PYTHON_SYS_EXECUTABLE="/usr/bin/python3.12" 
> "cargo" "rustc" "--message-format" "json-render-diagnostics" 
> "--manifest-path" "/<<PKGBUILDDIR>>/Cargo.toml" "--release" "--lib"`
> 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 
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.12_watchfiles  
> dh_auto_build: error: pybuild --build -i python{version} -p 3.12 returned 
> exit code 13
> make: *** [debian/rules:23: binary] Error 25


The full build log is available from:
http://qa-logs.debian.net/2024/08/09/python-watchfiles_0.21.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.

--- End Message ---
--- Begin Message ---
Source: python-watchfiles
Source-Version: 0.23.0-1
Done: Yogeswaran Umasankar <y...@debian.org>

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

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

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

Debian distribution maintenance software
pp.
Yogeswaran Umasankar <y...@debian.org> (supplier of updated python-watchfiles 
package)

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


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

Format: 1.8
Date: Sun, 18 Aug 2024 16:30:00 -0000
Source: python-watchfiles
Architecture: source
Version: 0.23.0-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Python Team <team+pyt...@tracker.debian.org>
Changed-By: Yogeswaran Umasankar <y...@debian.org>
Closes: 1078384
Changes:
 python-watchfiles (0.23.0-1) unstable; urgency=medium
 .
   * Team upload.
   * New upstream version 0.23.0. (Closes: #1078384)
   * Remove 0002-fix-autopkgtests-py312.patch and update
     0002-fix-autopkgtests-py312.patch to fit new upstream version.
   * d/control: bump Standards-Version to 4.7.0.
Checksums-Sha1:
 7759121f6e0bb65db09efbb47a955bcdc0e19012 2399 python-watchfiles_0.23.0-1.dsc
 435f52ac9144fbfbe332a7b10e92885707821b39 39344 
python-watchfiles_0.23.0.orig.tar.xz
 781d23dc0c664cf44d39a78229e003146a15ce2f 4280 
python-watchfiles_0.23.0-1.debian.tar.xz
 edd1e0d83435477b2b33e0146368bb65163e76c2 22208 
python-watchfiles_0.23.0-1_source.buildinfo
Checksums-Sha256:
 89c4ecc6e8b0d17199534df53dc9b31c0b5cc86f69ce6f0b40c474676321fb73 2399 
python-watchfiles_0.23.0-1.dsc
 430df69093f5d9336cf719b31c3410ea22d4043a645e34896fe933f0bfef6f49 39344 
python-watchfiles_0.23.0.orig.tar.xz
 3eb196b3b6cd25e84310fcbca432cd3f994404e34fd609a600af5773c02d920e 4280 
python-watchfiles_0.23.0-1.debian.tar.xz
 831f25947e524a32eb6b786b5ab3c9462c1959e42460c804a7cf6d306563c25f 22208 
python-watchfiles_0.23.0-1_source.buildinfo
Files:
 4e69fd84798fad8e8f380759d4b86022 2399 python optional 
python-watchfiles_0.23.0-1.dsc
 621fb64323c21b02f242249d697e0686 39344 python optional 
python-watchfiles_0.23.0.orig.tar.xz
 e6e31a057dece1e80b8ff04192a0195f 4280 python optional 
python-watchfiles_0.23.0-1.debian.tar.xz
 6c42ef1723ca80245ca5f403e2e9071d 22208 python optional 
python-watchfiles_0.23.0-1_source.buildinfo

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

iQJEBAEBCgAuFiEE/qLi99g13V/he2oYtIOKvyeCVXsFAmbCMXgQHHlvZ3VAZGVi
aWFuLm9yZwAKCRC0g4q/J4JVe+kmD/47JBVxtl2T2bqo7YKdPYH1MMA7j0S89GKf
0JOhNOQZrfDihF+70Wep9D4M6kRJ4Tt5IFM3NEHV+jU0W/RJAgdeCyIHx2Kjh/jE
q8U61DJdFeZMtQV5axTWoHJg9TA/BCt9r+ZKVzGZYx/bdkjCKYLPTqmU2AGO/LbC
jutcUNvxBqr6Yp2lOjyXfIHWV2cD4hTrGydmgOpIbJ41ZcVvDt4zOEHaSmyxkLdc
1EN07do17kiw8FKzIqe8XdFxoSDXeL0/41j5MIOFCcKDjI1Ow4qSPSpDjarKgUW4
V3VfSkMBpWnUaYfhnGmqOih/1UUlS67y/1/N2bJY8fiW195U9vKf0ez1/5zdFxv1
jwQoFsWd1rPys2K2QZBp7nHEf/3Vsn5Wm78XJXNqIdfOdTfhffsGUeIDDuJB4D7b
xPKPfctHiW5FsJFzCl0xLkGq71c8/FYwjd/Hhp926l3RGuuyKP6zCSZkWP/xwlac
3dxbMzEqtIWnd7kqUGVXKqq1yMWRJ6d4mggaH9sVs5Xco8QrX27FoGl5lP+VCuu1
CFpXC9YEQotR0J266oX96pVnY/DhphcxHo3oTMkKtITHgm9j1WKKoAHWHtYqfElO
b4opT5utQGjR05zsu1v1wnUkEJnMROSd+bn5dycPpTCAZ83Rwd1sBrDI+9a1qNmi
1Wo+nIa2RA==
=FVly
-----END PGP SIGNATURE-----

Attachment: pgpTAMofcAlur.pgp
Description: PGP signature


--- End Message ---

Reply via email to