Accepting request 1118268 from network:vpn
OBS-URL: https://build.opensuse.org/request/show/1118268 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/easy-rsa?expand=0&rev=17
This commit is contained in:
commit
159158d9eb
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:9fc6081d4927e68e9baef350e6b3010c7fb4f4a5c3e645ddac901081eb6adbb2
|
|
||||||
size 75808
|
|
Binary file not shown.
3
EasyRSA-3.1.7.tgz
Normal file
3
EasyRSA-3.1.7.tgz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:aaa48fadcbb77511b9c378554ef3eae09f8c7bc149d6f56ba209f1c9bab98c6e
|
||||||
|
size 81373
|
BIN
EasyRSA-3.1.7.tgz.sig
Normal file
BIN
EasyRSA-3.1.7.tgz.sig
Normal file
Binary file not shown.
@ -1,3 +1,23 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 17 06:35:16 UTC 2023 - Paolo Stivanin <info@paolostivanin.com>
|
||||||
|
|
||||||
|
- Update to 3.1.7:
|
||||||
|
* Completely Remove Upgrade Functionality
|
||||||
|
* Expand help to include undocumented commands
|
||||||
|
* Forbid "default vars in the default PKI" for all commands
|
||||||
|
* show-expire: Calculate certificate expire seconds from Database date
|
||||||
|
* Expand help to include undocumented commands
|
||||||
|
* New command: make-vars - Print vars.example (here-doc) to stdout
|
||||||
|
* gen-crl: preserve existing crl.pem ownership+mode by @Tabiskabis in #1020
|
||||||
|
* Improve vars auto load
|
||||||
|
* Replace santize_path() and ignore Windows "security" warning
|
||||||
|
* Improve select_vars() and source_vars()
|
||||||
|
* sign-req: Allow the CSR DN-field order to be preserved
|
||||||
|
* vars-file: Warn about EASYRSA_NO_VARS disabling vars-file use
|
||||||
|
* Expand default status to include vars-file and CA status
|
||||||
|
* verify_ssl_lib(): Minor style improvements
|
||||||
|
* cleanup: Rename $easyrsa_error_exit to $easyrsa_exit_with_error
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun Aug 6 18:54:29 UTC 2023 - Matthias Eliasson <elimat@opensuse.org>
|
Sun Aug 6 18:54:29 UTC 2023 - Matthias Eliasson <elimat@opensuse.org>
|
||||||
|
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
|
|
||||||
%define pname EasyRSA
|
%define pname EasyRSA
|
||||||
Name: easy-rsa
|
Name: easy-rsa
|
||||||
Version: 3.1.5
|
Version: 3.1.7
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: CLI utility to build and manage a PKI CA
|
Summary: CLI utility to build and manage a PKI CA
|
||||||
License: GPL-2.0-or-later
|
License: GPL-2.0-or-later
|
||||||
@ -38,8 +38,7 @@ easy-rsa is a CLI utility to build and manage a Public Key Infrastructure
|
|||||||
certificates, including sub-CAs, and create Certificate Revokation Lists (CRL).
|
certificates, including sub-CAs, and create Certificate Revokation Lists (CRL).
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n %{pname}-%{version}
|
%autosetup -p1 -n %{pname}-%{version}
|
||||||
%patch100
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
|
|
||||||
|
@ -1,11 +1,23 @@
|
|||||||
--- easyrsa.orig 2023-08-06 20:50:08.140959981 +0200
|
--- EasyRSA-3.1.7/easyrsa.orig 2023-10-17 08:27:37.665021587 +0200
|
||||||
+++ easyrsa 2023-08-06 20:50:30.430836235 +0200
|
+++ EasyRSA-3.1.7/easyrsa 2023-10-17 08:34:59.943976542 +0200
|
||||||
@@ -5393,7 +5393,7 @@
|
@@ -1440,10 +1440,7 @@
|
||||||
|
# "$EASYRSA" - Old default and Windows
|
||||||
|
# "$PWD" - Usually the same as above, avoid
|
||||||
|
# "${0%/*}" - Usually the same as above, avoid
|
||||||
|
- # '/usr/local/share/easy-rsa' - Default user installed
|
||||||
|
- # '/usr/share/easy-rsa' - Default system installed
|
||||||
|
- # Room for more..
|
||||||
|
- # '/etc/easy-rsa' - Last resort
|
||||||
|
+ # '/etc/easy-rsa'
|
||||||
|
|
||||||
# set up program path
|
# Find and optionally copy data-files, in specific order
|
||||||
prog_file="$0"
|
for area in \
|
||||||
- prog_dir="${prog_file%/*}"
|
@@ -1451,8 +1448,6 @@
|
||||||
+ prog_dir="/etc/easy-rsa"
|
"$EASYRSA" \
|
||||||
if [ "$prog_dir" = . ] || [ "$prog_dir" = "$PWD" ]
|
"$PWD" \
|
||||||
then
|
"${0%/*}" \
|
||||||
prog_in_pwd=1
|
- '/usr/local/share/easy-rsa' \
|
||||||
|
- '/usr/share/easy-rsa' \
|
||||||
|
'/etc/easy-rsa' \
|
||||||
|
# EOL
|
||||||
|
do
|
||||||
|
Loading…
Reference in New Issue
Block a user