Update to 2.3.0
Switch to meson build system Add support for non-DNS subjectAlternativeName values (issue #4) Signed-off-by: Stephen Gallagher <sgallagh@redhat.com>
This commit is contained in:
parent
b3cfbe2ec1
commit
3d3a4cd131
1
.gitignore
vendored
1
.gitignore
vendored
@ -12,3 +12,4 @@
|
|||||||
/sscg-2.0.4.tar.gz
|
/sscg-2.0.4.tar.gz
|
||||||
/sscg-2.1.0.tar.gz
|
/sscg-2.1.0.tar.gz
|
||||||
/sscg-2.2.0.tar.gz
|
/sscg-2.2.0.tar.gz
|
||||||
|
/sscg-2.3.0.tar.xz
|
||||||
|
2
sources
2
sources
@ -1 +1 @@
|
|||||||
SHA512 (sscg-2.2.0.tar.gz) = ae29a168e21f2e9c9fd4a8a1a4fda7ae91acad3dc6adcd7412b8753b42f9ed1dc79f161e529dc622f416475346e2cf0fd26bb68d1d185009c79a855abda78a40
|
SHA512 (sscg-2.3.0.tar.xz) = 99385539b00010e0db0684878987b3007c68d442d4726d927b1011cd784ec1f0ea515af4274207c31ca02b8880c680e0a38fb6fb8c618b4c62ee6980db77d569
|
||||||
|
25
sscg.spec
25
sscg.spec
@ -5,25 +5,24 @@
|
|||||||
# https://github.com/sgallagher/sscg
|
# https://github.com/sgallagher/sscg
|
||||||
%global provider_prefix %{provider}.%{provider_tld}/%{project}/%{repo}
|
%global provider_prefix %{provider}.%{provider_tld}/%{project}/%{repo}
|
||||||
%global import_path %{provider_prefix}
|
%global import_path %{provider_prefix}
|
||||||
%global commit b994c9eab1d3b1ec4c2470c2955945d5f2937da1
|
|
||||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Name: sscg
|
Name: sscg
|
||||||
Version: 2.2.0
|
Version: 2.3.0
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Simple SSL certificate generator
|
Summary: Simple SSL certificate generator
|
||||||
|
|
||||||
License: BSD
|
License: BSD
|
||||||
URL: https://%{provider_prefix}
|
URL: https://%{provider_prefix}
|
||||||
Source0: https://%{provider_prefix}/releases/download/%{repo}-%{version}/%{repo}-%{version}.tar.gz
|
Source0: https://%{provider_prefix}/releases/download/%{repo}-%{version}/%{repo}-%{version}.tar.xz
|
||||||
|
|
||||||
BuildRequires: gcc
|
BuildRequires: gcc
|
||||||
BuildRequires: libtalloc-devel
|
BuildRequires: libtalloc-devel
|
||||||
BuildRequires: openssl-devel
|
BuildRequires: openssl-devel
|
||||||
BuildRequires: popt-devel
|
BuildRequires: popt-devel
|
||||||
BuildRequires: libpath_utils-devel
|
BuildRequires: libpath_utils-devel
|
||||||
|
BuildRequires: meson
|
||||||
|
BuildRequires: ninja-build
|
||||||
|
|
||||||
%description
|
%description
|
||||||
A utility to aid in the creation of more secure "self-signed"
|
A utility to aid in the creation of more secure "self-signed"
|
||||||
@ -34,15 +33,18 @@ up a full PKI environment and without exposing the machine to a risk of
|
|||||||
false signatures from the service certificate.
|
false signatures from the service certificate.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n %{name}-%{version}
|
%autosetup
|
||||||
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%configure
|
%meson
|
||||||
%make_build
|
%meson_build
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%make_install
|
%meson_install
|
||||||
|
|
||||||
|
%check
|
||||||
|
%meson_test
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%license COPYING
|
%license COPYING
|
||||||
@ -50,6 +52,11 @@ false signatures from the service certificate.
|
|||||||
%{_bindir}/%{name}
|
%{_bindir}/%{name}
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Dec 18 2017 Stephen Gallagher <sgallagh@redhat.com> - 2.3.0-1
|
||||||
|
- Update to 2.3.0
|
||||||
|
- Switch to meson build system
|
||||||
|
- Add support for non-DNS subjectAlternativeName values (issue #4)
|
||||||
|
|
||||||
* Thu Sep 21 2017 Stephen Gallagher <sgallagh@redhat.com> - 2.2.0-1
|
* Thu Sep 21 2017 Stephen Gallagher <sgallagh@redhat.com> - 2.2.0-1
|
||||||
- Reorder combined PEM file
|
- Reorder combined PEM file
|
||||||
- Resolves: RHBZ#1494208
|
- Resolves: RHBZ#1494208
|
||||||
|
Loading…
Reference in New Issue
Block a user