forked from pool/rage-encryption
Accepting request 1074938 from home:uncomfyhalomacro:branches:security
- Update to version 0.9.1+0: * ssh: Fix parsing of OpenSSH private key format * ssh: Support `aes256-gcm@openssh.com` ciphers for encrypted keys * ssh: Add `aes256-gcm@openssh.com` cipher to test cases * ssh: Extract common key material derivation logic for encrypted keys * ssh: Use associated constants for key and IV sizes * ssh: Add test cases for encrypted keys - Add shell completions for fish and zsh. OBS-URL: https://build.opensuse.org/request/show/1074938 OBS-URL: https://build.opensuse.org/package/show/security/rage-encryption?expand=0&rev=23
This commit is contained in:
parent
338878ffad
commit
9b69fe6bdd
2
_service
2
_service
@ -3,7 +3,7 @@
|
||||
<param name="url">https://github.com/str4d/rage.git</param>
|
||||
<param name="versionformat">@PARENT_TAG@+@TAG_OFFSET@</param>
|
||||
<param name="scm">git</param>
|
||||
<param name="revision">v0.9.0</param>
|
||||
<param name="revision">v0.9.1</param>
|
||||
<param name="match-tag">*</param>
|
||||
<param name="versionrewrite-pattern">v(\d+\.\d+\.\d+)</param>
|
||||
<param name="versionrewrite-replacement">\1</param>
|
||||
|
@ -1,4 +1,4 @@
|
||||
<servicedata>
|
||||
<service name="tar_scm">
|
||||
<param name="url">https://github.com/str4d/rage.git</param>
|
||||
<param name="changesrevision">ff4b02001e8b30ccf45d2c0f5d120ebb5b372cdd</param></service></servicedata>
|
||||
<param name="changesrevision">b6b1eceae674b84ecd98f2d79ae17b1e0f54652c</param></service></servicedata>
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1ac2babf3115730819e55bdccc5dccc9383575f929135c43c4c1e9188be26d93
|
||||
size 1592766
|
3
rage-0.9.1+0.tar.gz
Normal file
3
rage-0.9.1+0.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:4ab7ccc70ded439abe4f507f8a4f52722c94bd826ed6a6ab17f49f2006d27197
|
||||
size 1597580
|
@ -1,3 +1,15 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun Mar 26 07:04:54 UTC 2023 - Soc Virnyl Estela <socvirnyl.estela@gmail.com>
|
||||
|
||||
- Update to version 0.9.1+0:
|
||||
* ssh: Fix parsing of OpenSSH private key format
|
||||
* ssh: Support `aes256-gcm@openssh.com` ciphers for encrypted keys
|
||||
* ssh: Add `aes256-gcm@openssh.com` cipher to test cases
|
||||
* ssh: Extract common key material derivation logic for encrypted keys
|
||||
* ssh: Use associated constants for key and IV sizes
|
||||
* ssh: Add test cases for encrypted keys
|
||||
- Add shell completions for fish and zsh.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 13 03:23:28 UTC 2023 - William Brown <william.brown@suse.com>
|
||||
|
||||
|
@ -20,7 +20,7 @@
|
||||
|
||||
Name: rage-encryption
|
||||
# This will be set by osc services, that will run after this.
|
||||
Version: 0.9.0+0
|
||||
Version: 0.9.1+0
|
||||
Release: 0
|
||||
Summary: Simple, modern, and secure file encryption tool
|
||||
# If you know the license, put it's SPDX string here.
|
||||
@ -42,6 +42,7 @@ BuildRequires: vendored_licenses_packager
|
||||
# for feature mount
|
||||
BuildRequires: fuse-devel
|
||||
Recommends: pinentry
|
||||
BuildRequires: zstd
|
||||
Conflicts: rage
|
||||
ExclusiveArch: %{rust_tier1_arches}
|
||||
|
||||
@ -61,6 +62,26 @@ Conflicts: rage
|
||||
%description bash-completion
|
||||
Bash command line completion support for %{name}
|
||||
|
||||
%package fish-completion
|
||||
Summary: Fish Completion for %{name}
|
||||
Group: Productivity/Security
|
||||
Supplements: (%{name} and fish)
|
||||
Requires: fish
|
||||
BuildArch: noarch
|
||||
|
||||
%description fish-completion
|
||||
Fish command-line completion support for %{name}.
|
||||
|
||||
%package zsh-completion
|
||||
Summary: Zsh Completion for %{name}
|
||||
Group: Productivity/Security
|
||||
Supplements: (%{name} and zsh)
|
||||
Requires: zsh
|
||||
BuildArch: noarch
|
||||
|
||||
%description zsh-completion
|
||||
Zsh command-line completion support for %{name}.
|
||||
|
||||
%prep
|
||||
%setup -q -a 0 -n rage-%{version}
|
||||
%setup -q -n rage-%{version} -a 1 -D -T
|
||||
@ -89,6 +110,9 @@ install -m 0755 %{_builddir}/rage-%{version}/target/release/rage-keygen %{buildr
|
||||
for i in "" -keygen -mount; do
|
||||
install -D -p -m 644 target/manpages/rage$i.1.gz %{buildroot}/%{_mandir}/man1/rage$i.1%{?ext_man}
|
||||
install -D -p -m 644 target/completions/rage$i.bash %{buildroot}%{_datadir}/bash-completion/completions/rage$i
|
||||
install -D -p -m 644 target/completions/rage$i.zsh %{buildroot}%{_datadir}/zsh/site-functions/_rage$i
|
||||
install -D -p -m 644 target/completions/rage$i.fish %{buildroot}%{_datadir}/fish/vendor_completions.d/rage$i.fish
|
||||
|
||||
done
|
||||
%vendored_licenses_packager_install
|
||||
|
||||
@ -106,4 +130,16 @@ done
|
||||
%license LICENSE-APACHE LICENSE-MIT
|
||||
%{_datadir}/bash-completion/completions/rage*
|
||||
|
||||
%files fish-completion
|
||||
%license LICENSE-APACHE LICENSE-MIT
|
||||
%dir %{_datadir}/fish
|
||||
%dir %{_datadir}/fish/vendor_completions.d
|
||||
%{_datadir}/fish/vendor_completions.d/rage*.fish
|
||||
|
||||
%files zsh-completion
|
||||
%license LICENSE-APACHE LICENSE-MIT
|
||||
%dir %{_datadir}/zsh
|
||||
%dir %{_datadir}/zsh/site-functions
|
||||
%{_datadir}/zsh/site-functions/_rage*
|
||||
|
||||
%changelog
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:9f3502b52ca8440234b732f93554a606d1988d21f17b34b767c5fc4c37b85c2b
|
||||
size 21975700
|
||||
oid sha256:46080ccfbc76e5630ead54882ffc37d1fa049300d7c3288d942439036272a4d7
|
||||
size 33093836
|
||||
|
Loading…
Reference in New Issue
Block a user