Your message dated Mon, 23 Dec 2024 18:20:43 +0000
with message-id <e1tpn2p-003435...@fasolo.debian.org>
and subject line Bug#1089086: fixed in skimage 0.24.0-6
has caused the Debian Bug report #1089086,
regarding skimage: FTBFS test failures on loong64
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.)
--
1089086: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1089086
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: skimage
Version: 0.24.0-5
Severity: wishlist
Tags: ftbfs
User: debian-loonga...@lists.debian.org
Usertags: loong64
Dear maintainers,
Compiling the skimage package failed for loong64 since 0.24.0-3 in the
Debian Package Auto-Building environment.
Build error log is as follows,
```
FAILED
skimage/segmentation/tests/test_active_contour_model.py::test_periodic_reference[float16]
FAILED
skimage/segmentation/tests/test_active_contour_model.py::test_periodic_reference[float32]
FAILED
skimage/segmentation/tests/test_active_contour_model.py::test_periodic_reference[float64]
FAILED
skimage/segmentation/tests/test_active_contour_model.py::test_fixed_reference[float32]
FAILED
skimage/segmentation/tests/test_active_contour_model.py::test_fixed_reference[float64]
FAILED
skimage/segmentation/tests/test_active_contour_model.py::test_free_reference[float32]
FAILED
skimage/segmentation/tests/test_active_contour_model.py::test_free_reference[float64]
FAILED
skimage/segmentation/tests/test_active_contour_model.py::test_RGB[float32]
FAILED
skimage/segmentation/tests/test_active_contour_model.py::test_RGB[float64]
FAILED
skimage/segmentation/tests/test_active_contour_model.py::test_end_points
FAILED
skimage/transform/tests/test_geometric.py::test_projective_weighted_estimation
FAILED
skimage/transform/tests/test_geometric.py::test_estimate_affine_3d[False]
FAILED
skimage/transform/tests/test_geometric.py::test_estimate_affine_3d[True]
```
The full build log can be found at
https://buildd.debian.org/status/logs.php?pkg=skimage&arch=loong64.
please consider the patch I attached.
There are 5 packages(5 python3-skimage-lib:loong64) was blocked by
skimage, please.
I have built skimage successfully on locally.
```
dh_builddeb -O--buildsystem=pybuild
dpkg-deb: building package 'python-skimage-doc' in
'../python-skimage-doc_0.24.0-5_all.deb'.
dpkg-deb: building package 'python3-skimage' in
'../python3-skimage_0.24.0-5_all.deb'.
dpkg-deb: building package 'python3-skimage-lib' in
'../python3-skimage-lib_0.24.0-5_loong64.deb'.
dpkg-deb: building package 'python3-skimage-lib-dbgsym' in
'../python3-skimage-lib-dbgsym_0.24.0-5_loong64.deb'.
dpkg-genbuildinfo -O../skimage_0.24.0-5_loong64.buildinfo
dpkg-genchanges -O../skimage_0.24.0-5_loong64.changes
```
If you have any questions, you can contact me at any time.
Best regards,
Dandan Zhang
Description: <short summary of the patch>
TODO: Put a short summary on the line above and replace this paragraph
with a longer explanation of this change. Complete the meta-information
with other relevant fields (see below for details). To make it easier, the
information below has been extracted from the changelog. Adjust it or drop
it.
.
skimage (0.24.0-5) unstable; urgency=medium
.
* Team upload.
* Remove use of python3-pydata-sphinx-theme for now.
* Added patch to link docs to the packaged docs, not remote websites.
* Run the autopkgtests for all supported Python versions
* Build-Depends: s/dh-python/dh-sequence-python3/ (routine-update)
* likewise use dh-sequence-sphinxdoc and simplify d/rules
Author: Michael R. Crusoe <cru...@debian.org>
---
The information above should follow the Patch Tagging Guidelines, please
checkout https://dep.debian.net/deps/dep3/ to learn about the format. Here
are templates for supplementary fields that you might want to add:
Origin: (upstream|backport|vendor|other), (<patch-url>|commit:<commit-id>)
Bug: <upstream-bugtracker-url>
Bug-Debian: https://bugs.debian.org/<bugnumber>
Bug-Ubuntu: https://launchpad.net/bugs/<bugnumber>
Forwarded: (no|not-needed|<patch-forwarded-url>)
Applied-Upstream: <version>, (<commit-url>|commit:<commid-id>)
Reviewed-By: <name and email of someone who approved/reviewed the patch>
Last-Update: 2024-12-05
--- skimage-0.24.0.orig/skimage/segmentation/tests/test_active_contour_model.py
+++ skimage-0.24.0/skimage/segmentation/tests/test_active_contour_model.py
@@ -12,6 +12,7 @@ from skimage.segmentation import active_
@pytest.mark.skipif(platform.machine() == "mips64", reason="Fails on mips64el")
+@pytest.mark.skipif(platform.machine() == "loongarch64", reason="Fails on loongarch64")
@pytest.mark.parametrize('dtype', [np.float16, np.float32, np.float64])
def test_periodic_reference(dtype):
img = data.astronaut()
@@ -32,6 +33,7 @@ def test_periodic_reference(dtype):
@pytest.mark.skipif(platform.machine() == "mips64", reason="Fails on mips64el")
+@pytest.mark.skipif(platform.machine() == "loongarch64", reason="Fails on loongarch64")
@pytest.mark.parametrize('dtype', [np.float32, np.float64])
def test_fixed_reference(dtype):
img = data.text()
@@ -59,6 +61,7 @@ def test_fixed_reference(dtype):
@pytest.mark.skipif(platform.machine() == "mips64", reason="Fails on mips64el")
+@pytest.mark.skipif(platform.machine() == "loongarch64", reason="Fails on loongarch64")
@pytest.mark.parametrize('dtype', [np.float32, np.float64])
def test_free_reference(dtype):
img = data.text()
@@ -84,6 +87,7 @@ def test_free_reference(dtype):
@pytest.mark.skipif(platform.machine() == "mips64", reason="Fails on mips64el")
+@pytest.mark.skipif(platform.machine() == "loongarch64", reason="Fails on loongarch64")
@pytest.mark.parametrize('dtype', [np.float32, np.float64])
def test_RGB(dtype):
img = gaussian(data.text(), sigma=1, preserve_range=False)
@@ -141,6 +145,7 @@ def test_RGB(dtype):
@pytest.mark.skipif(platform.machine() == "mips64", reason="Fails on mips64el")
+@pytest.mark.skipif(platform.machine() == "loongarch64", reason="Fails on loongarch64")
def test_end_points():
img = data.astronaut()
img = rgb2gray(img)
--- skimage-0.24.0.orig/skimage/transform/tests/test_geometric.py
+++ skimage-0.24.0/skimage/transform/tests/test_geometric.py
@@ -596,6 +596,7 @@ def test_projective_estimation():
assert_almost_equal(tform3.params, tform2.params)
+@pytest.mark.skipif(platform.machine() == "loongarch64", reason="Fails on loongarch64")
def test_projective_weighted_estimation():
# Exact solution with same points, and unity weights
tform = estimate_transform('projective', SRC[:4, :], DST[:4, :])
@@ -964,6 +965,7 @@ def _assert_least_squares(tf, src, dst):
@pytest.mark.skipif(platform.machine() == "mips64", reason="Fails on mips64el")
+@pytest.mark.skipif(platform.machine() == "loongarch64", reason="Fails on loongarch64")
@pytest.mark.parametrize('array_like_input', [False, True])
def test_estimate_affine_3d(array_like_input):
ndim = 3
--- End Message ---
--- Begin Message ---
Source: skimage
Source-Version: 0.24.0-6
Done: Gianfranco Costamagna <locutusofb...@debian.org>
We believe that the bug you reported is fixed in the latest version of
skimage, 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 1089...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Gianfranco Costamagna <locutusofb...@debian.org> (supplier of updated skimage
package)
(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256
Format: 1.8
Date: Mon, 23 Dec 2024 19:09:26 +0100
Source: skimage
Built-For-Profiles: noudeb
Architecture: source
Version: 0.24.0-6
Distribution: unstable
Urgency: medium
Maintainer: Debian Science Maintainers
<debian-science-maintain...@lists.alioth.debian.org>
Changed-By: Gianfranco Costamagna <locutusofb...@debian.org>
Closes: 1089086
Changes:
skimage (0.24.0-6) unstable; urgency=medium
.
[ Gianfranco Costamagna ]
* Team upload
.
[ zhangdandan <zhangdan...@loongson.cn> ]
* From skimage-skip-some-failure-tests-on-loong64-temporarily.patch:
ignore some failing tests on loong64 (Closes: #1089086
Checksums-Sha1:
f5853db22e2109e7197acc578d924fc0041faeb6 3050 skimage_0.24.0-6.dsc
f33a109bd3a22cf26ffd0b659dd2a8552a0a9d0b 31948 skimage_0.24.0-6.debian.tar.xz
f87943ac79c7fa55a7a0155945589d4d9cb85838 12218
skimage_0.24.0-6_source.buildinfo
Checksums-Sha256:
f6a427619b6fcd6285876c95d6351b8acac7d0537bc6176ad537aa475a6c9de2 3050
skimage_0.24.0-6.dsc
7650b90cba80c2c5eece389325d74030162b7549a8b9f392d31f5e6a6bbe5a21 31948
skimage_0.24.0-6.debian.tar.xz
0b89107f0ef2aa937b52f4bf1f3b77c5a853695149a6eea28b290d0ca63577ac 12218
skimage_0.24.0-6_source.buildinfo
Files:
bfff965b69f248f287056a02b67a0a82 3050 python optional skimage_0.24.0-6.dsc
886a7c7ddedfbd88454d56fcf0330f1f 31948 python optional
skimage_0.24.0-6.debian.tar.xz
3ee26b3093ed837b892b5ed0197e87fa 12218 python optional
skimage_0.24.0-6_source.buildinfo
-----BEGIN PGP SIGNATURE-----
iQIzBAEBCAAdFiEEkpeKbhleSSGCX3/w808JdE6fXdkFAmdpp5wACgkQ808JdE6f
XdmhEBAAxPwMsEN+Sas7iFy1EX40s0rLyNIz/GomSc2a+Qcog/yym+d4bNhOKnLK
2L4Hu+nxUeedTw5rGEzEub2OM8wD/N1EcUps6dzLbCCeFKqh3UYcn4qi39/9A1c9
W7BphxQuUI8/aH94VpzT1JZJySTh8mvTaW3xPCr2ZiF6yQDUAP3gyzJBOTfl+3ux
oGu7y0Bb8kXr2NWsGOXadvAR90lkYwpEuZ1/7HnojcTe2mE1cHsuJmOyjnCglBDu
5IQG7SqNawKU/jJNUDEgcSKiYCiJ88THeiPXzDL6Yxje+gxDFbqx0+FTVGGcxcwh
9b68Tso4Xyvzbm12GsZpK0x76jQswSdmpk2CJBgVBj/5g5sj57j7AgcIiAKtdnqp
f/LXtQUrXKW5upvCvxRXQyFkYrTgEp9giaggl/2yQCIuL0f/lZaLw88Rpny8/5hT
h4Yl1vElYGXyoSJm1RR+mgwiGZzfJy+bpmhzEID4+K2Z/WjPzTDqzFy/9EdzchJN
oiUHB7W4//YUpN5H/aeDJ0KrZl8EqTPWF0FX17x2/Hiz9p4gMFtJo8jzwB+V/SG+
LnXiB69XuSHAty1X7jTFt+5x8oSwfhtLzTlDl6G8WTtsRnK7uK8rgRALwKI/SXja
2jOnEU315YjLYrDhjiI902brt2MuaRyfZ4LHuECJ8H9tSXDNACU=
=ayyz
-----END PGP SIGNATURE-----
pgp15G5_OH4xM.pgp
Description: PGP signature
--- End Message ---