From fd029e6fe9410c53410a7941e642aae7c2ed3e32e17672e0e8787cc424dcc6e6 Mon Sep 17 00:00:00 2001 From: Soc Virnyl Estela Date: Thu, 12 Oct 2023 03:13:19 +0000 Subject: [PATCH 1/4] - Update vendored dependencies. OBS-URL: https://build.opensuse.org/package/show/devel:languages:rust/mdbook?expand=0&rev=39 --- mdbook.changes | 5 +++++ vendor.tar.zst | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/mdbook.changes b/mdbook.changes index c645a43..26ba579 100644 --- a/mdbook.changes +++ b/mdbook.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Thu Oct 12 03:12:43 UTC 2023 - Soc Virnyl Estela + +- Update vendored dependencies. + ------------------------------------------------------------------- Sat Sep 30 00:59:33 UTC 2023 - Soc Virnyl Estela diff --git a/vendor.tar.zst b/vendor.tar.zst index e3ec66f..2295d56 100644 --- a/vendor.tar.zst +++ b/vendor.tar.zst @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9e89492af54c0a19e5cbb9aed572e552701c54ca58862423ffb5f3e337651545 -size 26051134 +oid sha256:98ddeed492bbdc136227ab8c11446abfb46a67f052f7c6ceaa12ac905bd4a708 +size 26076852 From 544250b7d21542681384225185279b9729e6b7c220a9b0e67b0aca6bdcccfd4a Mon Sep 17 00:00:00 2001 From: Soc Virnyl Estela Date: Thu, 18 Jan 2024 02:37:18 +0000 Subject: [PATCH 2/4] - Update to version 0.4.36: * Added - Added Nim to the default highlighted languages. - Added a small indicator for the sidebar resize handle. * Changed - Updated dependencies. MSRV raised to 1.70.0. * Fixed - Fixed blank column in print page when the sidebar was visible. - Fixed indentation of code blocks when Javascript is disabled. - Fixed a panic when mdbook serve or mdbook watch were given certain kinds of paths. OBS-URL: https://build.opensuse.org/package/show/devel:languages:rust/mdbook?expand=0&rev=40 --- mdbook-0.4.35.tar.gz | 3 --- mdbook-0.4.36.tar.gz | 3 +++ mdbook.changes | 14 ++++++++++++++ mdbook.spec | 4 ++-- vendor.tar.zst | 4 ++-- 5 files changed, 21 insertions(+), 7 deletions(-) delete mode 100644 mdbook-0.4.35.tar.gz create mode 100644 mdbook-0.4.36.tar.gz diff --git a/mdbook-0.4.35.tar.gz b/mdbook-0.4.35.tar.gz deleted file mode 100644 index c3f696d..0000000 --- a/mdbook-0.4.35.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2fcefce12acc957c1d604e60c309502b9ec37040f6f70656f12c81374ff27bd4 -size 1527612 diff --git a/mdbook-0.4.36.tar.gz b/mdbook-0.4.36.tar.gz new file mode 100644 index 0000000..ef7d5cd --- /dev/null +++ b/mdbook-0.4.36.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd47214172ecf95e1b2cbcbebb8428d0b029e0de5dce74204b3c3a91f26223a1 +size 1528538 diff --git a/mdbook.changes b/mdbook.changes index 26ba579..e71b0d0 100644 --- a/mdbook.changes +++ b/mdbook.changes @@ -1,3 +1,17 @@ +------------------------------------------------------------------- +Thu Jan 18 02:32:06 UTC 2024 - Soc Virnyl Estela + +- Update to version 0.4.36: + * Added + - Added Nim to the default highlighted languages. + - Added a small indicator for the sidebar resize handle. + * Changed + - Updated dependencies. MSRV raised to 1.70.0. + * Fixed + - Fixed blank column in print page when the sidebar was visible. + - Fixed indentation of code blocks when Javascript is disabled. + - Fixed a panic when mdbook serve or mdbook watch were given certain kinds of paths. + ------------------------------------------------------------------- Thu Oct 12 03:12:43 UTC 2023 - Soc Virnyl Estela diff --git a/mdbook.spec b/mdbook.spec index a0b08f3..744fc5f 100644 --- a/mdbook.spec +++ b/mdbook.spec @@ -1,7 +1,7 @@ # # spec file for package mdbook # -# Copyright (c) 2023 SUSE LLC +# Copyright (c) 2024 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -17,7 +17,7 @@ Name: mdbook -Version: 0.4.35 +Version: 0.4.36 Release: 0 Summary: Create books from markdown License: (Apache-2.0 OR MIT) AND Unicode-DFS-2016 AND (Apache-2.0 OR BSL-1.0) AND (Apache-2.0 OR ISC OR MIT) AND (Apache-2.0 OR MIT) AND (Apache-2.0 OR Apache-2.0 WITH LLVM-exception OR MIT) AND (Apache-2.0 OR MIT OR Zlib) AND (MIT OR Unlicense) AND (Apache-2.0 OR Zlib OR MIT) AND Apache-2.0 AND BSD-3-Clause AND CC0-1.0 AND ISC AND MIT AND MPL-2.0 diff --git a/vendor.tar.zst b/vendor.tar.zst index 2295d56..bda2213 100644 --- a/vendor.tar.zst +++ b/vendor.tar.zst @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:98ddeed492bbdc136227ab8c11446abfb46a67f052f7c6ceaa12ac905bd4a708 -size 26076852 +oid sha256:845df6ef06d24112713457114da934a4ce668cdc96d69bca03f7d842ba700197 +size 21545283 From a8c3ab211d7028a014a84f1143ae75ef6a0e0873d1f27a245bc9be991ccadd2f Mon Sep 17 00:00:00 2001 From: Soc Virnyl Estela Date: Fri, 26 Jan 2024 12:07:45 +0000 Subject: [PATCH 3/4] - Fix FTBFS by updating how we use obs-service-cargo to automate vendoring of dependencies. OBS-URL: https://build.opensuse.org/package/show/devel:languages:rust/mdbook?expand=0&rev=41 --- mdbook.changes | 6 ++++++ mdbook.spec | 3 --- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/mdbook.changes b/mdbook.changes index e71b0d0..859a39e 100644 --- a/mdbook.changes +++ b/mdbook.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Fri Jan 26 12:06:54 UTC 2024 - Soc Virnyl Estela + +- Fix FTBFS by updating how we use obs-service-cargo to automate + vendoring of dependencies. + ------------------------------------------------------------------- Thu Jan 18 02:32:06 UTC 2024 - Soc Virnyl Estela diff --git a/mdbook.spec b/mdbook.spec index 744fc5f..4edd83f 100644 --- a/mdbook.spec +++ b/mdbook.spec @@ -24,7 +24,6 @@ License: (Apache-2.0 OR MIT) AND Unicode-DFS-2016 AND (Apache-2.0 OR BSL- URL: https://github.com/rust-lang/mdBook Source0: https://github.com/rust-lang/mdBook/archive/refs/tags/v%{version}.tar.gz#/%{name}-%{version}.tar.gz Source1: vendor.tar.zst -Source2: cargo_config BuildRequires: cargo-packaging BuildRequires: rust+cargo BuildRequires: zstd @@ -35,8 +34,6 @@ mdbook is a utility to create books from Markdown files %prep %autosetup -a1 -n mdBook-%{version} -mkdir .cargo -cp %{SOURCE2} .cargo/config %build %{cargo_build} --all-features From 9b8d5bcdcc214ecb8dd375e95224498dbb817be07826e83ed1b9746dca13c319 Mon Sep 17 00:00:00 2001 From: Soc Virnyl Estela Date: Fri, 26 Jan 2024 12:08:13 +0000 Subject: [PATCH 4/4] OBS-URL: https://build.opensuse.org/package/show/devel:languages:rust/mdbook?expand=0&rev=42 --- cargo_config | 5 ----- 1 file changed, 5 deletions(-) delete mode 100644 cargo_config diff --git a/cargo_config b/cargo_config deleted file mode 100644 index 97852b5..0000000 --- a/cargo_config +++ /dev/null @@ -1,5 +0,0 @@ -[source.crates-io] -replace-with = "vendored-sources" - -[source.vendored-sources] -directory = "vendor"