diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-04 00:37:08 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-04 00:37:08 +0000 |
commit | 0e7022233016c3fd97c42ae3840ecea435a2ac21 (patch) | |
tree | 1ed33ae7d47f13c6a62501b856bae41d9d48a73a /debian | |
parent | Releasing progress-linux version 0.18.6+ds-1~progress7.99u1. (diff) | |
download | ruamel.yaml-0e7022233016c3fd97c42ae3840ecea435a2ac21.tar.xz ruamel.yaml-0e7022233016c3fd97c42ae3840ecea435a2ac21.zip |
Merging debian version 0.18.6+ds-2.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 7 | ||||
-rw-r--r-- | debian/patches/big_endian.patch | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index cae5c55..d213de4 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +ruamel.yaml (0.18.6+ds-2) unstable; urgency=medium + + * Team upload + * Fix skipping of clib tests on big-endian machines + + -- Julian Gilbey <jdg@debian.org> Thu, 18 Apr 2024 06:50:33 +0100 + ruamel.yaml (0.18.6+ds-1~progress7.99u1) graograman-backports; urgency=medium * Uploading to graograman-backports, remaining changes: diff --git a/debian/patches/big_endian.patch b/debian/patches/big_endian.patch index ae0af7d..4f0afda 100644 --- a/debian/patches/big_endian.patch +++ b/debian/patches/big_endian.patch @@ -45,7 +45,7 @@ Last-Update: 2024-04-18 NO_CLIB_VER = (3, 12) -+@pytest.mark.skipif( ++pytestmark = pytest.mark.skipif( + sys.byteorder == "big", + reason="compiled library disabled on big-endian machines" +) |