51 lines
1.2 KiB
RPMSpec
51 lines
1.2 KiB
RPMSpec
|
Name: subscription-manager-rhsm-certificates
|
||
|
Version: 20220425
|
||
|
Release: 1%{?dist}
|
||
|
Summary: Certificates required to communicate with a Red Hat Unified Entitlement Platform
|
||
|
URL: https://www.candlepinproject.org/
|
||
|
%if 0%{?suse_version}
|
||
|
Group: Development/Libraries/Python
|
||
|
License: GPL-2.0
|
||
|
%else
|
||
|
Group: Development/Libraries
|
||
|
License: GPLv2
|
||
|
%endif
|
||
|
|
||
|
# How to create the source tarball:
|
||
|
#
|
||
|
# git clone https://github.com/candlepin/subscription-manager-rhsm-certificates.git
|
||
|
# dnf install tito
|
||
|
# tito build --tag subscription-manager-rhsm-certificates-$VERSION-$RELEASE --tgz
|
||
|
Source0: %{name}-%{version}.tar.gz
|
||
|
|
||
|
BuildArch: noarch
|
||
|
|
||
|
BuildRequires: make
|
||
|
|
||
|
%description
|
||
|
This package contains certificates required for communicating with the REST interface
|
||
|
of a Red Hat Unified Entitlement Platform, used for the management of system entitlements
|
||
|
and to receive access to content.
|
||
|
|
||
|
%prep
|
||
|
%setup -q
|
||
|
|
||
|
%build
|
||
|
# Nothing to do for building
|
||
|
|
||
|
%install
|
||
|
%make_install \
|
||
|
PREFIX=%{_prefix} \
|
||
|
SYSCONFDIR=%{_sysconfdir}
|
||
|
|
||
|
%files
|
||
|
%license COPYING
|
||
|
%dir %{_sysconfdir}/rhsm
|
||
|
%dir %{_sysconfdir}/rhsm/ca
|
||
|
%{_sysconfdir}/rhsm/ca/*.pem
|
||
|
|
||
|
%changelog
|
||
|
* Mon Apr 25 2022 Christopher Snyder <csnyder@redhat.com> 20220425-1
|
||
|
- new package built with tito
|
||
|
|