commit 93b712bcaece879a7598d4ab6134b2d9b9acd18e0c0c0e8578e0bbad1319ec33 Author: Marcus Meissner Date: Sun Apr 19 12:54:26 2020 +0000 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 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -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 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/sscep-0.7.0.tar.gz b/sscep-0.7.0.tar.gz new file mode 100644 index 0000000..ef66cec --- /dev/null +++ b/sscep-0.7.0.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1cd23d5fd9a230bad72d040cd11dc74c7c56a50c889c8f582f4a95880c3670d8 +size 158116 diff --git a/sscep.changes b/sscep.changes new file mode 100644 index 0000000..fac8e9b --- /dev/null +++ b/sscep.changes @@ -0,0 +1,11 @@ +------------------------------------------------------------------- +Fri Apr 17 15:05:49 UTC 2020 - Martin Hauke + +- Update to latest release, version 0.7.0 +- Specfile cleanup + +------------------------------------------------------------------- +Fri Dec 02 14:17:08 UTC 2016 - mardnh@gmx.de + +- initial package + diff --git a/sscep.spec b/sscep.spec new file mode 100644 index 0000000..154728e --- /dev/null +++ b/sscep.spec @@ -0,0 +1,54 @@ +# +# spec file for package sscep +# +# Copyright (c) 2016-2020, Martin Hauke +# +# 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