From 47d4f610d4609fe0528fc93cd42d98d01349e3fd Mon Sep 17 00:00:00 2001 From: Kentaro Hayashi Date: Sun, 14 Sep 2025 17:10:04 +0900 Subject: [PATCH] deb: add missing Architectures: field It is better to specify supported architectures in Architectures: field explicitly. Without it, if other architecture was enabled (e.g. i386 was enabled additionally with multiarch), apt emits the following message: Notice: Skipping acquire of configured file 'contrib/binary-i386/Packages' as repository 'https://fluentd.cdn.cncf.io/lts/6/debian/trixie trixie InRelease' doesn't support architecture 'i386' Signed-off-by: Kentaro Hayashi --- fluent-apt-source/debian/rules | 1 + fluent-lts-apt-source/debian/rules | 1 + 2 files changed, 2 insertions(+) diff --git a/fluent-apt-source/debian/rules b/fluent-apt-source/debian/rules index 1dfe59bc7..d3b742697 100755 --- a/fluent-apt-source/debian/rules +++ b/fluent-apt-source/debian/rules @@ -42,6 +42,7 @@ override_dh_auto_build: echo "URIs: https://fluentd.cdn.cncf.io/6/$${distribution}/$${code_name}/"; \ echo "Suites: $${code_name}"; \ echo "Components: contrib"; \ + echo "Architectures: amd64 arm64"; \ echo "Signed-By: /usr/share/keyrings/fluent-archive-keyring.asc"; \ ) > fluent.sources diff --git a/fluent-lts-apt-source/debian/rules b/fluent-lts-apt-source/debian/rules index 3af0ceed3..cd3ee894d 100755 --- a/fluent-lts-apt-source/debian/rules +++ b/fluent-lts-apt-source/debian/rules @@ -42,6 +42,7 @@ override_dh_auto_build: echo "URIs: https://fluentd.cdn.cncf.io/lts/6/$${distribution}/$${code_name}/"; \ echo "Suites: $${code_name}"; \ echo "Components: contrib"; \ + echo "Architectures: amd64 arm64"; \ echo "Signed-By: /usr/share/keyrings/fluent-lts-archive-keyring.asc"; \ ) > fluent-lts.sources