Compare commits

...

1 Commits
c10s ... c10

Author SHA1 Message Date
4f9afc4c01 import CS rust-sequoia-sqv-1.3.0-2.el10_0 2025-05-19 10:08:59 +00:00
8 changed files with 38 additions and 79 deletions

View File

@ -1 +0,0 @@
1

6
.gitignore vendored
View File

@ -1,4 +1,2 @@
/rust-sequoia-sqv-1.2.1-vendor.tar.xz
/sequoia-sqv-1.2.1.crate
/rust-sequoia-sqv-1.3.0-vendor.tar.xz
/sequoia-sqv-1.3.0.crate
rust-sequoia-sqv-1.3.0-vendor.tar.xz
sequoia-sqv-1.3.0.crate

View File

@ -1,11 +0,0 @@
* Tue Feb 15 2022 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 1.0.0-4
- Rebuild with package notes
* Fri Jan 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.0-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.0-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
* Thu Apr 08 2021 Fabio Valentini <decathorpe@gmail.com> - 1.0.0-1
- Initial package

1
ci.fmf
View File

@ -1 +0,0 @@
resultsdb-testcase: separate

View File

@ -1,9 +0,0 @@
--- !Policy
product_versions:
- rhel-10
decision_context: osci_compose_gate
rules:
- !PassingTestCaseRule {test_case_name: osci.brew-build./plans/ci/fips-disabled-buildroot-enabled.functional}
- !PassingTestCaseRule {test_case_name: osci.brew-build./plans/ci/fips-disabled-buildroot-disabled.functional}
- !PassingTestCaseRule {test_case_name: osci.brew-build./plans/ci/fips-enabled-buildroot-enabled.functional}
- !PassingTestCaseRule {test_case_name: osci.brew-build./plans/ci/fips-enabled-buildroot-disabled.functional}

View File

@ -1,23 +0,0 @@
/fips-disabled-buildroot-disabled:
plan:
import:
url: https://pkgs.devel.redhat.com/git/tests/rust-sequoia-sqv
name: /plans/ci/fips-disabled-buildroot-disabled
/fips-disabled-buildroot-enabled:
plan:
import:
url: https://pkgs.devel.redhat.com/git/tests/rust-sequoia-sqv
name: /plans/ci/fips-disabled-buildroot-enabled
/fips-enabled-buildroot-disabled:
plan:
import:
url: https://pkgs.devel.redhat.com/git/tests/rust-sequoia-sqv
name: /plans/ci/fips-enabled-buildroot-disabled
/fips-enabled-buildroot-enabled:
plan:
import:
url: https://pkgs.devel.redhat.com/git/tests/rust-sequoia-sqv
name: /plans/ci/fips-enabled-buildroot-enabled

View File

@ -1,3 +1,13 @@
## START: Set by rpmautospec
## (rpmautospec version 0.6.5)
## RPMAUTOSPEC: autorelease, autochangelog
%define autorelease(e:s:pb:n) %{?-p:0.}%{lua:
release_number = 2;
base_release_number = tonumber(rpm.expand("%{?-b*}%{!?-b:1}"));
print(release_number + base_release_number - 1);
}%{?-e:.%{-e*}}%{?-s:.%{-s*}}%{!?-n:%{?dist}}
## END: Set by rpmautospec
# Generated by rust2rpm 27
%bcond check 1
@ -132,4 +142,29 @@ install -Dpm 0644 target/assets/shell-completions/_sqv \
%endif
%changelog
%autochangelog
## START: Generated by rpmautospec
* Thu Mar 27 2025 Jakub Jelen <jjelen@redhat.com> - 1.3.0-2
- Make installation of shell completions and man pages more robust
* Tue Mar 25 2025 Jakub Jelen <jjelen@redhat.com> - 1.3.0-1
- Update to 1.3.0
* Tue Oct 29 2024 Troy Dawson <tdawson@redhat.com> - 1.2.1-3
- Bump release for October 2024 mass rebuild:
* Thu Aug 22 2024 Stanislav Zidek <szidek@redhat.com> - 1.2.1-2
- initial CI and gating setup
* Tue Feb 15 2022 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 1.0.0-4
- Rebuild with package notes
* Fri Jan 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.0-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.0-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
* Thu Apr 08 2021 Fabio Valentini <decathorpe@gmail.com> - 1.0.0-1
- Initial package
## END: Generated by rpmautospec

View File

@ -1,29 +0,0 @@
[package]
cargo-toml-patch-comments = [
"switch crypto backend from Nettle to OpenSSL",
"drop features for unsupported crypto backends",
]
extra-files = [
"%{_mandir}/man1/sqv*",
"%{bash_completions_dir}/sqv.bash",
"%{fish_completions_dir}/sqv.fish",
"%{zsh_completions_dir}/_sqv",
]
[scripts]
build.pre = [
"export ASSET_OUT_DIR=target/assets",
]
install.post = [
"# install manual pages",
"mkdir -p %{buildroot}/%{_mandir}/man1",
"cp -pav target/assets/man-pages/sqv*.1 %{buildroot}/%{_mandir}/man1/",
"# install shell completions",
"install -Dpm 0644 target/assets/shell-completions/sqv.bash \\",
" %{buildroot}/%{bash_completions_dir}/sqv.bash",
"install -Dpm 0644 target/assets/shell-completions/sqv.fish \\",
" %{buildroot}/%{fish_completions_dir}/sqv.fish",
"install -Dpm 0644 target/assets/shell-completions/_sqv \\",
" %{buildroot}/%{zsh_completions_dir}/_sqv",
]