From 45c22fb6ca3f61e19199ce7eec163c21d600f29d Mon Sep 17 00:00:00 2001 From: "Benjamin A. Beasley" Date: Mon, 7 Oct 2024 07:28:05 -0400 Subject: [PATCH] Minor reformatting in rust2rpm.toml [skip changelog] --- rust2rpm.toml | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/rust2rpm.toml b/rust2rpm.toml index 5c6f6e5..1299a49 100644 --- a/rust2rpm.toml +++ b/rust2rpm.toml @@ -1,19 +1,24 @@ [requires] build = [ - "pkgconfig(libdeflate)" + "pkgconfig(libdeflate)" ] lib = [ - "pkgconfig(libdeflate)" + "pkgconfig(libdeflate)" ] [package] cargo-toml-patch-comments = [ - "Make the dependency on crate(pkg-config) non-optional instead of associating it with the “dynamic” feature, since we patch the crate to always link dynamically with the system libdeflate, regardless of the selected features.", + """\ + Make the dependency on crate(pkg-config) non-optional instead of associating \ + it with the “dynamic” feature, since we patch the crate to always link \ + dynamically with the system libdeflate, regardless of the selected \ + features.\ + """, ] [scripts.prep] pre = [ - ''' + ''' # Remove the bundled copy of libdeflate. rm -rv libdeflate # Make libdeflate detection with pkg-config unconditional.