Your message dated Sun, 16 Mar 2025 21:12:01 +0000
with message-id <e1ttvh7-00d3yu...@fasolo.debian.org>
and subject line Bug#1100658: fixed in rust-tonic 0.12.3+dfsg-2
has caused the Debian Bug report #1100658,
regarding rust-tonic - autopkgtest failure
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.)
--
1100658: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1100658
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: rust-tonic
Version: 0.12.3+dfsg-1
Severity: serious
rust-tonic's autopkgtests are failing due to a couple of issues.
1. Api differences between rustls-native-certs 0.8 (expected by upstream)
and 0.6 (currently in Debian)
2. Typos in debian/control and debian/tests/control.
A debdiff addressing these issues is attatched.
diff -Nru rust-tonic-0.12.3+dfsg/debian/changelog
rust-tonic-0.12.3+dfsg/debian/changelog
--- rust-tonic-0.12.3+dfsg/debian/changelog 2025-03-15 18:19:00.000000000
+0000
+++ rust-tonic-0.12.3+dfsg/debian/changelog 2025-03-16 12:28:58.000000000
+0000
@@ -1,3 +1,11 @@
+rust-tonic (0.12.3+dfsg-1.1) UNRELEASED; urgency=medium
+
+ * Non-maintainer upload.
+ * Fix tests with rustls-native-certs 0.6
+ * Fix typos in control files.
+
+ -- Peter Michel Green <plugw...@debian.org> Sun, 16 Mar 2025 12:28:58 +0000
+
rust-tonic (0.12.3+dfsg-1) unstable; urgency=medium
[ upstream ]
diff -Nru rust-tonic-0.12.3+dfsg/debian/control
rust-tonic-0.12.3+dfsg/debian/control
--- rust-tonic-0.12.3+dfsg/debian/control 2025-03-15 18:16:28.000000000
+0000
+++ rust-tonic-0.12.3+dfsg/debian/control 2025-03-16 12:28:58.000000000
+0000
@@ -37,7 +37,7 @@
librust-quickcheck-macros-1+default-dev,
librust-quote-1+default-dev,
librust-rand-0.8+default-dev,
- librust-rustls-native-certs-dev (<< 0.9),
+ librust-rustls-native-certs-0.6-dev (>= 0.6.3),
librust-rustls-pemfile-2+default-dev,
librust-socket2-0.5+all-dev,
librust-socket2-0.5+default-dev,
@@ -138,7 +138,7 @@
librust-percent-encoding-2+default-dev,
librust-pin-project-1+default-dev,
librust-prost-0.12+default-dev,
- librust-rustls-native-certs-dev (<< 0.9),
+ librust-rustls-native-certs-0.6-dev (>= 0.6.3),
librust-rustls-pemfile-2+default-dev,
librust-socket2-0.5+all-dev,
librust-socket2-0.5+default-dev,
@@ -174,7 +174,7 @@
librust-tonic-0.12+router-dev (= ${binary:Version}),
librust-tonic-0.12+server-dev (= ${binary:Version}),
librust-tonic-0.12+tls-dev (= ${binary:Version}),
- librust-tonic-0.12+tls-nativ-roots-dev (= ${binary:Version}),
+ librust-tonic-0.12+tls-native-roots-dev (= ${binary:Version}),
librust-tonic-0.12+tls-roots-dev (= ${binary:Version}),
librust-tonic-0.12+transport-dev (= ${binary:Version}),
librust-tonic-0.12+zstd-dev (= ${binary:Version}),
diff -Nru rust-tonic-0.12.3+dfsg/debian/patches/2001_rustls-native-certs.patch
rust-tonic-0.12.3+dfsg/debian/patches/2001_rustls-native-certs.patch
--- rust-tonic-0.12.3+dfsg/debian/patches/2001_rustls-native-certs.patch
2025-03-15 16:56:41.000000000 +0000
+++ rust-tonic-0.12.3+dfsg/debian/patches/2001_rustls-native-certs.patch
2025-03-16 12:28:07.000000000 +0000
@@ -1,17 +1,45 @@
Description: accept older branch of crate rustls-native-certs
+ Api changes in rustls-native-certs 0.8 were addressed by reverting part of
+
https://github.com/hyperium/tonic/commit/2289b50f07f56c4c051f66a7c87da0a8ffeb1531
+
+ Api changes in rustls-native-certs 0.7 were addressed manually.
Author: Jonas Smedegaard <d...@jones.dk>
+Author: Peter Michael Green <plugw...@debian.org>
Forwarded: not-needed
-Last-Update: 2025-03-15
+Last-Update: 2025-03-16
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
---- a/tonic/Cargo.toml
-+++ b/tonic/Cargo.toml
-@@ -89,7 +89,7 @@
+Index: rust-tonic-0.12.3+dfsg/tonic/Cargo.toml
+===================================================================
+--- rust-tonic-0.12.3+dfsg.orig/tonic/Cargo.toml
++++ rust-tonic-0.12.3+dfsg/tonic/Cargo.toml
+@@ -89,7 +89,7 @@ axum = {version = "0.7", default-feature
# rustls
rustls-pemfile = { version = "2.0", optional = true }
-rustls-native-certs = { version = "0.8", optional = true }
-+rustls-native-certs = { version = ">= 0.6.3, <= 0.8", optional = true }
++rustls-native-certs = { version = "0.6.3", optional = true }
tokio-rustls = { version = "0.26", default-features = false, features =
["logging", "tls12", "ring"], optional = true }
webpki-roots = { version = "0.26", optional = true }
+Index: rust-tonic-0.12.3+dfsg/tonic/src/transport/channel/service/tls.rs
+===================================================================
+--- rust-tonic-0.12.3+dfsg.orig/tonic/src/transport/channel/service/tls.rs
++++ rust-tonic-0.12.3+dfsg/tonic/src/transport/channel/service/tls.rs
+@@ -38,15 +38,7 @@ impl TlsConnector {
+
+ #[cfg(feature = "tls-native-roots")]
+ if with_native_roots {
+- let rustls_native_certs::CertificateResult { certs, errors, .. } =
+- rustls_native_certs::load_native_certs();
+- if !errors.is_empty() {
+- tracing::debug!("errors occured when loading native certs:
{errors:?}");
+- }
+- if certs.is_empty() {
+- return Err(TlsError::NativeCertsNotFound.into());
+- }
+- roots.add_parsable_certificates(certs);
++
roots.add_parsable_certificates(rustls_native_certs::load_native_certs()?.into_iter().map(|cert|
cert.0.into()));
+ }
+
+ #[cfg(feature = "tls-webpki-roots")]
diff -Nru rust-tonic-0.12.3+dfsg/debian/patches/2002_no_webpki-roots.patch
rust-tonic-0.12.3+dfsg/debian/patches/2002_no_webpki-roots.patch
--- rust-tonic-0.12.3+dfsg/debian/patches/2002_no_webpki-roots.patch
2025-03-15 16:55:22.000000000 +0000
+++ rust-tonic-0.12.3+dfsg/debian/patches/2002_no_webpki-roots.patch
2025-03-16 12:23:14.000000000 +0000
@@ -16,7 +16,7 @@
"router",
@@ -91,7 +90,6 @@
rustls-pemfile = { version = "2.0", optional = true }
- rustls-native-certs = { version = ">= 0.6.3, <= 0.8", optional = true }
+ rustls-native-certs = { version = "0.6.3", optional = true }
tokio-rustls = { version = "0.26", default-features = false, features =
["logging", "tls12", "ring"], optional = true }
-webpki-roots = { version = "0.26", optional = true }
diff -Nru rust-tonic-0.12.3+dfsg/debian/tests/control
rust-tonic-0.12.3+dfsg/debian/tests/control
--- rust-tonic-0.12.3+dfsg/debian/tests/control 2025-03-15 18:16:28.000000000
+0000
+++ rust-tonic-0.12.3+dfsg/debian/tests/control 2025-03-16 12:28:58.000000000
+0000
@@ -218,7 +218,7 @@
Architecture: amd64
Test-Command: /usr/share/dh-rust/bin/cargo-auto-test tonic 0.12.3
- --all-targets --no-default-features --features tls-nativ-roots
+ --all-targets --no-default-features --features tls-native-roots
--
--skip codec::prost::tests::encode_too_big
Features: test-name=rust-tonic:tls-native-roots
--- End Message ---
--- Begin Message ---
Source: rust-tonic
Source-Version: 0.12.3+dfsg-2
Done: Jonas Smedegaard <d...@jones.dk>
We believe that the bug you reported is fixed in the latest version of
rust-tonic, 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 1100...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Jonas Smedegaard <d...@jones.dk> (supplier of updated rust-tonic 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, 16 Mar 2025 20:57:38 +0100
Source: rust-tonic
Architecture: source
Version: 0.12.3+dfsg-2
Distribution: unstable
Urgency: medium
Maintainer: Jonas Smedegaard <d...@jones.dk>
Changed-By: Jonas Smedegaard <d...@jones.dk>
Closes: 1100658
Changes:
rust-tonic (0.12.3+dfsg-2) unstable; urgency=medium
.
* update and tighten patches
to use older branch of crate rustls-native-certs;
fix and tighten (build-,autopkgtest-)dependencies
for crate rustls-native-certs;
closes: bug#1100658, thanks to Peter Michael Green
Checksums-Sha1:
6e7c892757ab992a262a390bfb578d4c87ba2c4f 5526 rust-tonic_0.12.3+dfsg-2.dsc
a9abb7ab4e21203a0fd4d64d0469f2a725a5b4ee 12280
rust-tonic_0.12.3+dfsg-2.debian.tar.xz
70b52d82659e745198b824c9a8c9cdfa796b5599 20930
rust-tonic_0.12.3+dfsg-2_amd64.buildinfo
Checksums-Sha256:
bf6d79972d49c5f24f8eabc919dc1695bce2475479c91b8c392ba1c325a703ee 5526
rust-tonic_0.12.3+dfsg-2.dsc
23706f481bfd0190ec5047606f34588c151c5e33baccb6a6cd4aeb1cdb5fa5b7 12280
rust-tonic_0.12.3+dfsg-2.debian.tar.xz
78f160fed3b0d12f73813b2fd09ab36b705faee2bc3002651e9e1bbef3bf2ee6 20930
rust-tonic_0.12.3+dfsg-2_amd64.buildinfo
Files:
6c9440f33d9f4f1ff0d2ff7709284b35 5526 rust optional
rust-tonic_0.12.3+dfsg-2.dsc
b1d3f1cefbdb7177e57e8f27c4791219 12280 rust optional
rust-tonic_0.12.3+dfsg-2.debian.tar.xz
f79c35524a90dbf34e2e7a551efabf08 20930 rust optional
rust-tonic_0.12.3+dfsg-2_amd64.buildinfo
-----BEGIN PGP SIGNATURE-----
wsG7BAEBCgBvBYJn1y2hCRAsfDFGwaABIUcUAAAAAAAeACBzYWx0QG5vdGF0aW9u
cy5zZXF1b2lhLXBncC5vcmdkjayOZnVGt5S3bC4xDjBzEeAgGvQHxltiS6dXo371
rxYhBJ/j6cNmkaaf9TzGhCx8MUbBoAEhAABXcA//ai+6T/dpk1CztgZ6Jy1fS0zg
58iJ7kh7KpE8BrKzSad7R8/CxlNo4Wo/TDykDzKyGfY20Dkx//WO5pcpXY/pa69V
GgRd4Q++zZzo4dQ623RgR6OR173v+GMQ2Jmo3nJDJo9ZnSCERBTaxtGZmP3zBH/D
DbuGAgqn95qDfl+eTLeL+lPZIbkrwxvImo5dwVukgg7rMn9RTlFAbrmplEXGaHO4
HO6rysmRH7denqbQH6S9HDxgQOdpQiZscna0euWjRz+vj0rCjnIuTHEQwiGpdIAn
O0LlJtY3NV5oEis5SF+nk5/j6k9CrZ7K0+UYoId3FxS04W+njMCDVJ4q3aS2umRC
6nynj/5tu5lhmJBTMUdAsRVOSLK53Khb/dBCYOf1fCA8O6SIR+Qgoqi/rOCwewtP
v3wIdtSLK2CrPK++VNRnaHzqh1hNe6e7Ux/1oxF/89dkZYweGqfOZfAMRf5caUTt
3c8z+mfBmmUkbuGi6/22ljSKEJ1+apcl9uvMYAt9xGr/WROjvBmeGlbQvI+PFKa1
cWeSEFNTtOWUaWspfSk3bJFH+TaMG4oBcDUSH2kaCCU6w11buW7rm1NH6UYGnvKc
22Q79N92l6d/5Plc7x8p+cCckEvjOxszSkB5F/vywYFUP0Gq7NY5g1JzgCKQe4rB
JwwJ4aPN2VQcEaOABQc=
=SoTn
-----END PGP SIGNATURE-----
pgpWTnQh3ee8v.pgp
Description: PGP signature
--- End Message ---