From 41b5fb36617b38e39849f44370bf3dbe1fd70aa2 Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Fri, 5 Jan 2024 22:01:42 +0100 Subject: [PATCH] legacy package [release 2.2.2-2mamba;Fri Aug 26 2016] --- README.md | 2 ++ easy-rsa2.spec | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 56 insertions(+) create mode 100644 easy-rsa2.spec diff --git a/README.md b/README.md index 4bd072f..e68e127 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # easy-rsa2 +A small RSA key management package, based on the openssl command line tool. + diff --git a/easy-rsa2.spec b/easy-rsa2.spec new file mode 100644 index 0000000..ef25637 --- /dev/null +++ b/easy-rsa2.spec @@ -0,0 +1,54 @@ +Name: easy-rsa2 +Version: 2.2.2 +Release: 2mamba +Summary: Simple shell based CA utility +Group: Network/Security +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: https://github.com/OpenVPN/easy-rsa +## GITSOURCE https://github.com/OpenVPN/easy-rsa.git v2.2.1 +Source: https://github.com/OpenVPN/easy-rsa.git/%{version}/easy-rsa-%{version}.tar.bz2 +License: GPL +## AUTOBUILDREQ-BEGIN +## AUTOBUILDREQ-END +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +A small RSA key management package, based on the openssl command line tool. + +%prep +%setup -q -n easy-rsa-%{version} + +%build +autoreconf -f -i +%configure +%make + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +%makeinstall + +ln -s openssl-1.0.0.cnf %{buildroot}%{_datadir}/easy-rsa/openssl.cnf + +%clean +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" + +%files +%defattr(-,root,root) +%dir %{_datadir}/easy-rsa +%{_datadir}/easy-rsa/* +%config(noreplace) %{_datadir}/easy-rsa/vars +%{_datadir}/doc/easy-rsa/COPYING +%{_datadir}/doc/easy-rsa/COPYRIGHT.GPL +%{_datadir}/doc/easy-rsa/README-2.0 + +%changelog +* Fri Aug 26 2016 Silvan Calarco 2.2.2-2mamba +- legacy package + +* Tue Jun 17 2014 Silvan Calarco 2.2.2-1mamba +- update to 2.2.2 + +* Tue Apr 29 2014 Silvan Calarco 2.2.1-1mamba +- package created using the webbuild interface