Source: rust-imap-codec Version: 2.0.0~alpha5+20240908-7 Severity: normal Tags: patch X-Debbugs-Cc: werdah...@debian.org
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA256 Hi Jonas, base64 was updated to 0.22 in Debian. Since imap-codec wants that anyway I atttached a patch facilitating that. best, werdahias - -- System Information: Debian Release: trixie/sid APT prefers unstable APT policy: (500, 'unstable'), (1, 'experimental') Architecture: amd64 (x86_64) Foreign Architectures: i386 Kernel: Linux 6.10.11-amd64 (SMP w/16 CPU threads; PREEMPT) Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8), LANGUAGE not set Shell: /bin/sh linked to /usr/bin/dash Init: OpenRC (via /run/openrc), PID 1: init LSM: AppArmor: enabled -----BEGIN PGP SIGNATURE----- iIsEARYIADMWIQQUWTv/Sl6/b+DpcW7svtu2B7myvgUCZwFj+RUcd2VyZGFoaWFz QGRlYmlhbi5vcmcACgkQ7L7btge5sr6hzQEA0szY6pHyN0+US+Tg782368K2lSop TbcZgE7cc0n8wQQBAL0aYUg8DDBJmGVaXx8Hcf6rE8XFXLU1MdkL54t8CbsE =KzF9 -----END PGP SIGNATURE-----
diff --git a/debian/control b/debian/control index 6fe43a9..b83aa29 100644 --- a/debian/control +++ b/debian/control @@ -6,7 +6,7 @@ Build-Depends: dh-sequence-rust, librust-abnf-core-0.6+default-dev, librust-arbitrary-1+derive-dev, - librust-base64-0.21+alloc-dev, + librust-base64-0.22+alloc-dev, librust-bounded-static-0.8-dev, librust-bounded-static-derive-0.8-dev, librust-chrono-0.4-dev, @@ -32,7 +32,7 @@ Architecture: all Multi-Arch: foreign Depends: librust-arbitrary-1+derive-dev, - librust-base64-0.21+alloc-dev, + librust-base64-0.22+alloc-dev, librust-bounded-static-0.8-dev, librust-bounded-static-derive-0.8-dev, librust-chrono-0.4-dev, @@ -73,7 +73,7 @@ Architecture: all Multi-Arch: foreign Depends: librust-abnf-core-0.6+default-dev, - librust-base64-0.21+alloc-dev, + librust-base64-0.22+alloc-dev, librust-chrono-0.4+alloc-dev, librust-imap-types-2-dev, librust-log-0.4-dev, diff --git a/debian/patches/2003_base64.patch b/debian/patches/2003_base64.patch deleted file mode 100644 index 254a989..0000000 --- a/debian/patches/2003_base64.patch +++ /dev/null @@ -1,28 +0,0 @@ -Description: accept older branch of crate base64 -Author: Jonas Smedegaard <d...@jones.dk> -Forwarded: not-needed -Last-Update: 2024-09-05 ---- -This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ ---- a/imap-codec/Cargo.toml -+++ b/imap-codec/Cargo.toml -@@ -59,7 +59,7 @@ - - [dependencies] - abnf-core = "0.6.0" --base64 = { version = "0.22", default-features = false, features = ["alloc"] } -+base64 = { version = ">= 0.21.7, <= 0.22", default-features = false, features = ["alloc"] } - chrono = { version = "0.4", default-features = false, features = ["alloc"] } - imap-types = { version = "2.0.0-alpha.3", path = "../imap-types", default-features = false } - nom = { version = "7", default-features = false } ---- a/imap-types/Cargo.toml -+++ b/imap-types/Cargo.toml -@@ -28,7 +28,7 @@ - - [dependencies] - arbitrary = { version = "1.3.2", optional = true, default-features = false, features = ["derive"] } --base64 = { version = "0.22", default-features = false, features = ["alloc"] } -+base64 = { version = ">= 0.21.7, <= 0.22", default-features = false, features = ["alloc"] } - bounded-static-derive = { version = "0.8.0", default-features = false } - bounded-static = { version = "0.8.0", default-features = false, features = ["alloc"] } - chrono = { version = "0.4", default-features = false } diff --git a/debian/patches/series b/debian/patches/series index e375561..e103c75 100644 --- a/debian/patches/series +++ b/debian/patches/series @@ -1,5 +1,4 @@ 2001_no_benches.patch 2002_workspace.patch -2003_base64.patch 2003_serde.patch 2003_thiserror.patch