%global provider github %global provider_tld com %global project sgallagher %global repo sscg # https://github.com/sgallagher/sscg %global provider_prefix %{provider}.%{provider_tld}/%{project}/%{repo} %global import_path %{provider_prefix} %global commit ecdee74991116be7222526174fc7e10696985e92 %global shortcommit %(c=%{commit}; echo ${c:0:7}) Name: %{repo} Version: 1.0.3 Release: 1%{?dist} Summary: Self-signed certificate generator License: BSD URL: https://%{provider_prefix} Source0: https://%{provider_prefix}/archive/%{commit}/%{repo}-%{version}-%{shortcommit}.tar.gz ExclusiveArch: %{go_arches} BuildRequires: %{?go_compiler:compiler(go-compiler)}%{!?go_compiler:golang} BuildRequires: openssl-devel Provides: bundled(golang(github.com/spacemonkeygo/openssl)) Provides: bundled(golang(github.com/spacemonkeygo/spacelog)) %description A utility to aid in the creation of more secure "self-signed" certificates. The certificates created by this tool are generated in a way so as to create a CA certificate that can be safely imported into a client machine to trust the service certificate without needing to set up a full PKI environment and without exposing the machine to a risk of false signatures from the service certificate. %prep %setup -q -n %{repo}-%{commit} %build mkdir -p src/%{provider}.%{provider_tld}/%{project}/ ln -s ../../../ src/%{provider}.%{provider_tld}/%{project}/%{repo} export GOPATH=$(pwd):$(pwd)/Godeps/_workspace:%{gopath} %gobuild -o bin/%{name} %{import_path} %install install -d -p %{buildroot}%{_bindir} install -p -m 755 bin/%{name} %{buildroot}%{_bindir} %files %license LICENSE %{_bindir}/%{repo} %changelog * Tue May 24 2016 Stephen Gallagher - 1.0.3-1 - Only sign certificates after all extensions have been added * Mon May 23 2016 Stephen Gallagher - 1.0.2-1 - Generate x509v3 certificates * Mon May 23 2016 Stephen Gallagher - 1.0.1-1 - Fix issue with temporary file creation * Mon May 23 2016 Stephen Gallagher - 1.0.0-1 - New upstream release 1.0.0 - Rewritten in Go - Runtime depends only on OpenSSL, no more Python - Support for writing certificate and key in a single file * Wed May 18 2016 Stephen Gallagher - 0.4.1-4 - Add requirement on python-setuptools * Fri Feb 05 2016 Fedora Release Engineering - 0.4.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild * Tue Nov 10 2015 Fedora Release Engineering - 0.4.1-2 - Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5 * Fri Jun 19 2015 Fedora Release Engineering - 0.4.1-1 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild * Mon Mar 30 2015 Stephen Gallagher 0.4.1-1 - Change default CA location to match service certificate - Improve error handling * Tue Mar 24 2015 Stephen Gallagher 0.4.0-1 - Spec file cleanups - PEP8 Cleanups - Make location arguments optional * Mon Mar 23 2015 Stephen Gallagher 0.3.0-1 - Rename to sscg - Only build with default python interpreter * Tue Mar 17 2015 Stephen Gallagher 0.2.1-1 - Include the LICENSE file in the tarball * Tue Mar 17 2015 Stephen Gallagher 0.2-2 - Include the license in the build RPMs * Tue Mar 17 2015 Stephen Gallagher 0.2-1 - Add support for namedConstraints - Add support for subjectAltNames - Fix packaging issues from Fedora package review * Mon Mar 16 2015 Stephen Gallagher 0.1-2 - Update BuildRequires * Mon Mar 16 2015 Stephen Gallagher 0.1-1 - First packaging