Update to 0.6.13

Signed-off-by: Igor Gnatenko <ignatenkobrain@fedoraproject.org>
epel9
Igor Gnatenko 6 years ago
parent 6d06514613
commit b28e1344a3
No known key found for this signature in database
GPG Key ID: 695714BD1BBC5F4C

1
.gitignore vendored

@ -11,3 +11,4 @@
/quote-0.6.10.crate
/quote-0.6.11.crate
/quote-0.6.12.crate
/quote-0.6.13.crate

@ -1,43 +0,0 @@
From b3a3d76815b6f892a86c15da39a3019608290719 Mon Sep 17 00:00:00 2001
From: David Tolnay <dtolnay@gmail.com>
Date: Tue, 23 Apr 2019 21:31:54 -0700
Subject: [PATCH] Update tests for new proc-macro2 escape behavior
---
tests/test.rs | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/tests/test.rs b/tests/test.rs
index f832da5..85562bf 100644
--- a/tests/test.rs
+++ b/tests/test.rs
@@ -166,7 +166,7 @@ fn test_char() {
let tokens = quote! {
#zero #pound #quote #apost #newline #heart
};
- let expected = "'\\u{0}' '#' '\\\"' '\\'' '\\n' '\\u{2764}'";
+ let expected = "'\\u{0}' '#' '\"' '\\'' '\\n' '\\u{2764}'";
assert_eq!(expected, tokens.to_string());
}
@@ -174,7 +174,7 @@ fn test_char() {
fn test_str() {
let s = "\0 a 'b \" c";
let tokens = quote!(#s);
- let expected = "\"\\u{0} a \\'b \\\" c\"";
+ let expected = "\"\\u{0} a 'b \\\" c\"";
assert_eq!(expected, tokens.to_string());
}
@@ -182,7 +182,7 @@ fn test_str() {
fn test_string() {
let s = "\0 a 'b \" c".to_string();
let tokens = quote!(#s);
- let expected = "\"\\u{0} a \\'b \\\" c\"";
+ let expected = "\"\\u{0} a 'b \\\" c\"";
assert_eq!(expected, tokens.to_string());
}
--
2.22.0.rc3

@ -5,16 +5,14 @@
%global crate quote
Name: rust-%{crate}
Version: 0.6.12
Release: 4%{?dist}
Version: 0.6.13
Release: 1%{?dist}
Summary: Quasi-quoting macro quote!(...)
# Upstream license specification: MIT/Apache-2.0
# Upstream license specification: MIT OR Apache-2.0
License: MIT or ASL 2.0
URL: https://crates.io/crates/quote
Source: %{crates_source}
# https://github.com/dtolnay/quote/commit/b3a3d76815b6f892a86c15da39a3019608290719
Patch0001: 0001-Update-tests-for-new-proc-macro2-escape-behavior.patch
ExclusiveArch: %{rust_arches}
%if %{__cargo_skip_build}
@ -85,6 +83,9 @@ which use "proc-macro" feature of "%{crate}" crate.
%endif
%changelog
* Sat Aug 03 14:08:02 CEST 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.13-1
- Update to 0.6.13
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.12-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild

@ -1 +1 @@
SHA512 (quote-0.6.12.crate) = 5d58945b0c9b41e368458a1661ae7b2ceed2e3285d377088afe5fde38e1db945ab42326d096cd6d13d82f5f80fe73d204c5fbe3c7abdea149eb6d7ca7c5e6798
SHA512 (quote-0.6.13.crate) = bafa9ba42ea6ff2d6df652384485c58327de6eaea2832423eedd8ef8b4aace673c23b70f1f22106515ac13d7f625cb8b1a5e8c4388c1701ea3cd86fb9ac3056e

Loading…
Cancel
Save