#1 update to version 0.11.0
Merged 3 years ago by decathorpe. Opened 3 years ago by decathorpe.
Unknown source master  into  master

file modified
+1
@@ -1,1 +1,2 @@

  /safe-transmute-0.10.1.crate

+ /safe-transmute-0.11.0.crate

file modified
+31 -9
@@ -1,24 +1,28 @@

- # Generated by rust2rpm

- %bcond_with check

+ # Generated by rust2rpm 13

+ %bcond_without check

  %global debug_package %{nil}

  

  %global crate safe-transmute

  

  Name:           rust-%{crate}

- Version:        0.10.1

- Release:        4%{?dist}

+ Version:        0.11.0

+ Release:        1%{?dist}

  Summary:        Safeguarded transmute() for Rust

  

+ # Upstream license specification: MIT

  License:        MIT

  URL:            https://crates.io/crates/safe-transmute

  Source:         %{crates_source}

  

  ExclusiveArch:  %{rust_arches}

+ %if %{__cargo_skip_build}

+ BuildArch:      noarch

+ %endif

  

  BuildRequires:  rust-packaging

  

- %global _description \

- A safeguarded transmute() for Rust.

+ %global _description %{expand:

+ Safeguarded transmute() for Rust.}

  

  %description %{_description}

  
@@ -34,7 +38,7 @@

  %files          devel

  %license LICENSE

  %doc README.md

- %{cargo_registry}/%{crate}-%{version}/

+ %{cargo_registry}/%{crate}-%{version_no_tilde}/

  

  %package     -n %{name}+default-devel

  Summary:        %{summary}
@@ -46,7 +50,19 @@

  which use "default" feature of "%{crate}" crate.

  

  %files       -n %{name}+default-devel

- %ghost %{cargo_registry}/%{crate}-%{version}/Cargo.toml

+ %ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml

+ 

+ %package     -n %{name}+alloc-devel

+ Summary:        %{summary}

+ BuildArch:      noarch

+ 

+ %description -n %{name}+alloc-devel %{_description}

+ 

+ This package contains library source intended for building other packages

+ which use "alloc" feature of "%{crate}" crate.

+ 

+ %files       -n %{name}+alloc-devel

+ %ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml

  

  %package     -n %{name}+std-devel

  Summary:        %{summary}
@@ -58,12 +74,15 @@

  which use "std" feature of "%{crate}" crate.

  

  %files       -n %{name}+std-devel

- %ghost %{cargo_registry}/%{crate}-%{version}/Cargo.toml

+ %ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml

  

  %prep

  %autosetup -n %{crate}-%{version_no_tilde} -p1

  %cargo_prep

  

+ %generate_buildrequires

+ %cargo_generate_buildrequires

+ 

  %build

  %cargo_build

  
@@ -76,6 +95,9 @@

  %endif

  

  %changelog

+ * Tue Sep 29 2020 Fabio Valentini <decathorpe@gmail.com> - 0.11.0-1

+ - Update to version 0.11.0.

+ 

  * Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.10.1-4

  - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild

  

file modified
+1 -1
@@ -1,1 +1,1 @@

- SHA512 (safe-transmute-0.10.1.crate) = 0298c9c2fd24e8d8e28d49228fc3f1d929477d2f35fa5ad2b0819afe031fe5361ecd45c64e5b28235f46a5ca109f99f330575d1bb003e5a59d8a73ac6482fceb

+ SHA512 (safe-transmute-0.11.0.crate) = 5f14c0b3534123c25804b20b54ce965f981b8aaf8ff2df639f3f2c0b77699edd05eb2c97129edc6e84a86882ff86ffe0e7c90e23b5cbd1b3ba08ed7fd1c93a56

  • update to latest version (0.10.1 → 0.11.0)
  • regenerate spec with rust2rpm 13

No package in fedora depends on this crate so the semver bump is fine.

Pull-Request has been merged by decathorpe

3 years ago