From 0fb169b93865f045b07e0be599d4bbb2e6802c4a Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: May 05 2019 13:57:21 +0000 Subject: Initial import Signed-off-by: Igor Gnatenko --- diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..6920393 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/aes-0.3.2.crate diff --git a/aes-fix-metadata.diff b/aes-fix-metadata.diff new file mode 100644 index 0000000..2de6330 --- /dev/null +++ b/aes-fix-metadata.diff @@ -0,0 +1,11 @@ +--- aes-0.3.2/Cargo.toml 1970-01-01T00:00:00+00:00 ++++ aes-0.3.2/Cargo.toml 2019-05-05T13:10:58.972288+00:00 +@@ -25,8 +25,5 @@ + [dev-dependencies.block-cipher-trait] + version = "0.6" + features = ["dev"] +-[target."cfg(all(target_feature=\"aes\", target_feature = \"sse2\", any(target_arch = \"x86_64\", target_arch = \"x86\")))".dependencies.aesni] +-version = "0.6" +-default-features = false + [target."cfg(not(all(target_feature=\"aes\", target_feature = \"sse2\", any(target_arch = \"x86_64\", target_arch = \"x86\"))))".dependencies.aes-soft] + version = "0.3" diff --git a/rust-aes.spec b/rust-aes.spec new file mode 100644 index 0000000..791e2b1 --- /dev/null +++ b/rust-aes.spec @@ -0,0 +1,78 @@ +# Generated by rust2rpm-9-1.fc31 +%bcond_with check +%global debug_package %{nil} + +%global crate aes + +Name: rust-%{crate} +Version: 0.3.2 +Release: 1%{?dist} +Summary: Facade for AES (Rijndael) block ciphers implementations + +# Upstream license specification: MIT OR Apache-2.0 +License: MIT or ASL 2.0 +URL: https://crates.io/crates/aes +Source: %{crates_source} +# Initial patched metadata +# * XXX: Do not depend on aesni for now, +# it is required only if aes and ssse3 are enabled +Patch0: aes-fix-metadata.diff + +ExclusiveArch: %{rust_arches} + +BuildRequires: rust-packaging +BuildRequires: (crate(aes-soft/default) >= 0.3.0 with crate(aes-soft/default) < 0.4.0) +BuildRequires: (crate(block-cipher-trait/default) >= 0.6.0 with crate(block-cipher-trait/default) < 0.7.0) +%if %{with check} +BuildRequires: (crate(block-cipher-trait/default) >= 0.6.0 with crate(block-cipher-trait/default) < 0.7.0) +BuildRequires: (crate(block-cipher-trait/dev) >= 0.6.0 with crate(block-cipher-trait/dev) < 0.7.0) +%endif + +%global _description \ +Facade for AES (Rijndael) block ciphers implementations. + +%description %{_description} + +%package devel +Summary: %{summary} +BuildArch: noarch + +%description devel %{_description} + +This package contains library source intended for building other packages +which use "%{crate}" crate. + +%files devel +%license LICENSE-MIT LICENSE-APACHE +%{cargo_registry}/%{crate}-%{version}/ + +%package -n %{name}+default-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+default-devel %{_description} + +This package contains library source intended for building other packages +which use "default" feature of "%{crate}" crate. + +%files -n %{name}+default-devel +%ghost %{cargo_registry}/%{crate}-%{version}/Cargo.toml + +%prep +%autosetup -n %{crate}-%{version_no_tilde} -p1 +%cargo_prep + +%build +%cargo_build + +%install +%cargo_install + +%if %{with check} +%check +%cargo_test +%endif + +%changelog +* Sun May 05 15:10:59 CEST 2019 Igor Gnatenko - 0.3.2-1 +- Initial package diff --git a/sources b/sources new file mode 100644 index 0000000..b968080 --- /dev/null +++ b/sources @@ -0,0 +1 @@ +SHA512 (aes-0.3.2.crate) = 0dde257064659ae0d7b13d12e538f2cf2f35d2f3cac2f3e0cf3a2dba0a4a89bb78377e85382cf82b95e347f34ae3c27bb145441d50f20e595c069445560a9e04 diff --git a/tests/.fmf/version b/tests/.fmf/version new file mode 100644 index 0000000..d00491f --- /dev/null +++ b/tests/.fmf/version @@ -0,0 +1 @@ +1 diff --git a/tests/provision.fmf b/tests/provision.fmf new file mode 100644 index 0000000..503a97c --- /dev/null +++ b/tests/provision.fmf @@ -0,0 +1,5 @@ +--- +standard-inventory-qcow2: + qemu: + # `cargo test` usually eats more than 1G. + m: 4G diff --git a/tests/tests.yml b/tests/tests.yml new file mode 100644 index 0000000..86a0665 --- /dev/null +++ b/tests/tests.yml @@ -0,0 +1,13 @@ +--- +- hosts: localhost + roles: + - role: standard-test-basic + tags: + - classic + repositories: + - repo: "https://src.fedoraproject.org/tests/rust.git" + dest: rust + tests: + - rust/cargo-test + environment: + pkg: rust-aes