forked from pool/mdbook
429e7156f9
- Update to version 0.4.32: * Update to 0.4.32 * Rewrite asset deploy. * deploy: Set the default shell so it doesn't need to be repeated. * Rename make-release.sh to make-release-asset.sh * Automatically publish to crates.io on new release * Update msrv to 1.66. OBS-URL: https://build.opensuse.org/request/show/1101605 OBS-URL: https://build.opensuse.org/package/show/devel:languages:rust/mdbook?expand=0&rev=31
56 lines
1.8 KiB
RPMSpec
56 lines
1.8 KiB
RPMSpec
#
|
|
# spec file for package mdbook
|
|
#
|
|
# Copyright (c) 2023 SUSE LLC
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
Name: mdbook
|
|
Version: 0.4.32
|
|
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
|
|
URL: https://github.com/rust-lang/mdBook
|
|
Source0: mdBook-%{version}.tar.zst
|
|
Source1: vendor.tar.zst
|
|
Source2: cargo_config
|
|
BuildRequires: cargo-packaging
|
|
BuildRequires: rust+cargo
|
|
BuildRequires: zstd
|
|
ExclusiveArch: %{rust_tier1_arches}
|
|
|
|
%description
|
|
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
|
|
|
|
%install
|
|
%{cargo_install} --all-features
|
|
|
|
%check
|
|
%{cargo_test} --all-features
|
|
|
|
%files
|
|
%license LICENSE
|
|
%doc README.md CONTRIBUTING.md CHANGELOG.md
|
|
%{_bindir}/mdbook
|
|
|
|
%changelog
|