Accepting request 794948 from home:mnhauke
Initial package for sscep OBS-URL: https://build.opensuse.org/request/show/794948 OBS-URL: https://build.opensuse.org/package/show/network:utilities/sscep?expand=0&rev=1
This commit is contained in:
commit
93b712bcae
23
.gitattributes
vendored
Normal file
23
.gitattributes
vendored
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
## Default LFS
|
||||||
|
*.7z filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.bsp filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.gem filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.gz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.jar filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.lz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.lzma filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.obscpio filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.oxt filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.pdf filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.png filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.rpm filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.tbz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.tbz2 filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.tgz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.ttf filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.txz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.whl filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.xz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.zip filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.zst filter=lfs diff=lfs merge=lfs -text
|
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
.osc
|
3
sscep-0.7.0.tar.gz
Normal file
3
sscep-0.7.0.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:1cd23d5fd9a230bad72d040cd11dc74c7c56a50c889c8f582f4a95880c3670d8
|
||||||
|
size 158116
|
11
sscep.changes
Normal file
11
sscep.changes
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Apr 17 15:05:49 UTC 2020 - Martin Hauke <mardnh@gmx.de>
|
||||||
|
|
||||||
|
- Update to latest release, version 0.7.0
|
||||||
|
- Specfile cleanup
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Dec 02 14:17:08 UTC 2016 - mardnh@gmx.de
|
||||||
|
|
||||||
|
- initial package
|
||||||
|
|
54
sscep.spec
Normal file
54
sscep.spec
Normal file
@ -0,0 +1,54 @@
|
|||||||
|
#
|
||||||
|
# spec file for package sscep
|
||||||
|
#
|
||||||
|
# Copyright (c) 2016-2020, 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 http://bugs.opensuse.org/
|
||||||
|
#
|
||||||
|
|
||||||
|
|
||||||
|
Name: sscep
|
||||||
|
Version: 0.7.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: libopenssl-devel
|
||||||
|
|
||||||
|
%description
|
||||||
|
Simple SCEP (Simple Certificate Enrollment Protocol) client with
|
||||||
|
modifications for engine support & more.
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -q
|
||||||
|
|
||||||
|
%build
|
||||||
|
./Configure
|
||||||
|
%make_build sscep_dyn CFLAGS="%{optflags}"
|
||||||
|
|
||||||
|
%install
|
||||||
|
install -Dpm 0644 sscep.conf %{buildroot}%{_sysconfdir}/sscep/sscep.conf
|
||||||
|
install -d %{buildroot}%{_bindir}
|
||||||
|
install -pm 0755 mkrequest %{buildroot}%{_bindir}
|
||||||
|
install -pm 0755 sscep_dyn %{buildroot}%{_bindir}/sscep
|
||||||
|
|
||||||
|
%files
|
||||||
|
%license COPYRIGHT
|
||||||
|
%doc HISTORY TODO README.md
|
||||||
|
%dir %{_sysconfdir}/sscep/
|
||||||
|
%config(noreplace) %{_sysconfdir}/sscep/sscep.conf
|
||||||
|
%{_bindir}/sscep
|
||||||
|
%{_bindir}/mkrequest
|
||||||
|
|
||||||
|
%changelog
|
Loading…
x
Reference in New Issue
Block a user