SHA256
1
0
forked from pool/sscep
sscep/sscep.spec
Marcus Meissner 6342063c3a Accepting request 861760 from home:mnhauke
- Update to version 0.8.0
  * Added support for HTTP/1.1
  * Added support for IPv6
  * Added GetCACaps (getcaps) operation
  * Added support for POST method for PKI operations
  * Added options for additional hashing algorithms
  * Added support for autoconf/automake and CMake
  * Changed project directory layout to match the conventions
  * Fixed encoding of 'issuer and subject' and 'issuer and serial'
  * Fixed crashes when sscep is used with an OpenSSL engine
  * Replaced GNU getopt by a BSD licensed alternative

OBS-URL: https://build.opensuse.org/request/show/861760
OBS-URL: https://build.opensuse.org/package/show/network:utilities/sscep?expand=0&rev=5
2021-01-30 08:21:03 +00:00

57 lines
1.7 KiB
RPMSpec

#
# spec file for package sscep
#
# Copyright (c) 2021 SUSE LLC
# Copyright (c) 2016-2021, Martin Hauke <mardnh@gmx.de>
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
Name: sscep
Version: 0.8.0
Release: 0
Summary: A command line client for the SCEP protocol
License: BSD-3-Clause-Attribution AND OpenSSL
Group: Productivity/Networking/Diagnostic
URL: https://github.com/certnanny/sscep
Source: https://github.com/certnanny/sscep/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
BuildRequires: cmake
BuildRequires: gcc-c++
BuildRequires: libopenssl-devel
%description
Simple SCEP (Simple Certificate Enrollment Protocol) client with
modifications for engine support & more.
%prep
%setup -q
%build
export CFLAGS="%optflags -fcommon"
%cmake
%install
%cmake_install
install -Dpm 0644 sscep.conf %{buildroot}%{_sysconfdir}/sscep/sscep.conf
install -Dpm 0755 mkrequest %{buildroot}%{_bindir}
%files
%license COPYING
%doc AUTHORS ChangeLog README.md
%dir %{_sysconfdir}/sscep/
%config(noreplace) %{_sysconfdir}/sscep/sscep.conf
%{_bindir}/sscep
%{_bindir}/mkrequest
%changelog