292 lines
8.3 KiB
RPMSpec
292 lines
8.3 KiB
RPMSpec
%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
|
|
%{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
|
|
|
|
Name: openscap
|
|
Version: 0.7.2
|
|
Release: 3%{?dist}
|
|
Summary: Set of open source libraries enabling integration of the SCAP line of standards
|
|
Group: System Environment/Libraries
|
|
License: LGPLv2+
|
|
URL: http://www.open-scap.org/
|
|
Source0: http://www.open-scap.org/download/%{name}-%{version}.tar.gz
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
BuildRequires: swig libxml2-devel libxslt-devel
|
|
BuildRequires: rpm-devel
|
|
BuildRequires: libgcrypt-devel
|
|
BuildRequires: pcre-devel
|
|
BuildRequires: libacl-devel
|
|
Requires(post): /sbin/ldconfig
|
|
Requires(postun): /sbin/ldconfig
|
|
|
|
%description
|
|
OpenSCAP is a set of open source libraries providing an easier path
|
|
for integration of the SCAP line of standards. SCAP is a line of standards
|
|
managed by NIST with the goal of providing a standard language
|
|
for the expression of Computer Network Defense related information.
|
|
|
|
%package devel
|
|
Summary: Development files for %{name}
|
|
Group: Development/Libraries
|
|
Requires: %{name} = %{version}-%{release}
|
|
Requires: libxml2-devel
|
|
Requires: pkgconfig
|
|
|
|
%description devel
|
|
The %{name}-devel package contains libraries and header files for
|
|
developing applications that use %{name}.
|
|
|
|
%package python
|
|
Summary: Python bindings for %{name}
|
|
Group: Development/Libraries
|
|
Requires: %{name} = %{version}-%{release}
|
|
BuildRequires: python-devel
|
|
|
|
%description python
|
|
The %{name}-python package contains the bindings so that %{name}
|
|
libraries can be used by python.
|
|
|
|
%package perl
|
|
Summary: Perl bindings for %{name}
|
|
Group: Development/Libraries
|
|
Requires: %{name} = %{version}-%{release}
|
|
Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
|
|
BuildRequires: perl-devel
|
|
|
|
%description perl
|
|
The %{name}-perl package contains the bindings so that %{name}
|
|
libraries can be used by perl.
|
|
|
|
|
|
%package utils
|
|
Summary: Openscap utilities
|
|
Group: Applications/System
|
|
Requires: %{name} = %{version}-%{release}
|
|
Requires(post): chkconfig
|
|
Requires(preun): chkconfig initscripts
|
|
BuildRequires: libcurl-devel
|
|
|
|
%description utils
|
|
The %{name}-utils package contains various utilities based on %{name} library.
|
|
|
|
|
|
%package content
|
|
Summary: SCAP content
|
|
Group: Applications/System
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
%description content
|
|
SCAP content for Fedora delivered by Open-SCAP project.
|
|
|
|
|
|
%package extra-probes
|
|
Summary: SCAP probes
|
|
Group: Applications/System
|
|
Requires: %{name} = %{version}-%{release}
|
|
BuildRequires: openldap-devel
|
|
BuildRequires: c-ares-devel >= 1.7.0
|
|
#BuildRequires: opendbx - for sql
|
|
|
|
%description extra-probes
|
|
The %{name}-extra-probes package contains additional probes that are not
|
|
commonly used and require additional dependencies.
|
|
|
|
|
|
%prep
|
|
%setup -q
|
|
|
|
%build
|
|
%configure
|
|
make %{?_smp_mflags}
|
|
# Remove shebang from bash-completion script
|
|
sed -i '/^#!.*bin/,+1 d' dist/bash_completion.d/oscap
|
|
|
|
|
|
%install
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
make install INSTALL='install -p' DESTDIR=$RPM_BUILD_ROOT
|
|
|
|
install -d -m 755 $RPM_BUILD_ROOT%{_initrddir}
|
|
install -d -m 755 $RPM_BUILD_ROOT%{_sysconfdir}/sysconfig
|
|
install -p -m 755 dist/fedora/oscap-scan.init $RPM_BUILD_ROOT%{_initrddir}/oscap-scan
|
|
install -p -m 644 dist/fedora/oscap-scan.sys $RPM_BUILD_ROOT%{_sysconfdir}/sysconfig/oscap-scan
|
|
|
|
# create symlinks to default content
|
|
ln -s %{_datadir}/openscap/scap-fedora14-oval.xml $RPM_BUILD_ROOT/%{_datadir}/openscap/scap-oval.xml
|
|
ln -s %{_datadir}/openscap/scap-fedora14-xccdf.xml $RPM_BUILD_ROOT/%{_datadir}/openscap/scap-xccdf.xml
|
|
|
|
# remove content for another OS
|
|
rm $RPM_BUILD_ROOT/%{_datadir}/openscap/scap-rhel6-oval.xml
|
|
rm $RPM_BUILD_ROOT/%{_datadir}/openscap/scap-rhel6-xccdf.xml
|
|
|
|
# bash-completion script
|
|
mkdir -p $RPM_BUILD_ROOT/%{_sysconfdir}/bash_completion.d
|
|
install -pm 644 dist/bash_completion.d/oscap $RPM_BUILD_ROOT%{_sysconfdir}/bash_completion.d/oscap
|
|
|
|
find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
|
|
|
|
%clean
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
%post -p /sbin/ldconfig
|
|
|
|
%postun -p /sbin/ldconfig
|
|
|
|
|
|
%post utils
|
|
/sbin/chkconfig --add oscap-scan
|
|
|
|
%preun utils
|
|
if [ $1 -eq 0 ]; then
|
|
/sbin/service oscap-scan stop > /dev/null 2>&1
|
|
/sbin/chkconfig --del oscap-scan
|
|
fi
|
|
|
|
|
|
%files
|
|
%defattr(-,root,root,-)
|
|
%doc AUTHORS COPYING ChangeLog NEWS README
|
|
%{_libdir}/*.so.*
|
|
%{_libexecdir}/openscap/probe_family
|
|
%{_libexecdir}/openscap/probe_file
|
|
%{_libexecdir}/openscap/probe_filehash
|
|
%{_libexecdir}/openscap/probe_inetlisteningservers
|
|
%{_libexecdir}/openscap/probe_interface
|
|
%{_libexecdir}/openscap/probe_password
|
|
%{_libexecdir}/openscap/probe_process
|
|
%{_libexecdir}/openscap/probe_rpminfo
|
|
%{_libexecdir}/openscap/probe_runlevel
|
|
%{_libexecdir}/openscap/probe_shadow
|
|
%{_libexecdir}/openscap/probe_system_info
|
|
%{_libexecdir}/openscap/probe_textfilecontent
|
|
%{_libexecdir}/openscap/probe_textfilecontent54
|
|
%{_libexecdir}/openscap/probe_uname
|
|
%{_libexecdir}/openscap/probe_xinetd
|
|
%{_libexecdir}/openscap/probe_xmlfilecontent
|
|
%dir %{_datadir}/openscap
|
|
%dir %{_datadir}/openscap/schemas
|
|
%dir %{_datadir}/openscap/xsl
|
|
%{_datadir}/openscap/schemas/*
|
|
%{_datadir}/openscap/xsl/*
|
|
|
|
%files python
|
|
%defattr(-,root,root,-)
|
|
%{python_sitearch}/*
|
|
|
|
%files perl
|
|
%defattr(-,root,root,-)
|
|
%{perl_vendorarch}/*
|
|
%{perl_vendorlib}/*
|
|
|
|
%files devel
|
|
%defattr(-,root,root,-)
|
|
%doc docs/{html,examples}/
|
|
%{_includedir}/*
|
|
%{_libdir}/*.so
|
|
%{_libdir}/pkgconfig/*.pc
|
|
|
|
%files utils
|
|
%defattr(-,root,root,-)
|
|
%config(noreplace) %{_sysconfdir}/sysconfig/oscap-scan
|
|
%doc docs/oscap-scan.cron
|
|
%{_initrddir}/oscap-scan
|
|
%{_mandir}/man8/*
|
|
%{_bindir}/*
|
|
%{_sysconfdir}/bash_completion.d
|
|
|
|
%files content
|
|
%defattr(-,root,root,-)
|
|
%{_datadir}/openscap/scap-oval.xml
|
|
%{_datadir}/openscap/scap-xccdf.xml
|
|
%{_datadir}/openscap/scap-fedora13-oval.xml
|
|
%{_datadir}/openscap/scap-fedora14-oval.xml
|
|
%{_datadir}/openscap/scap-fedora14-xccdf.xml
|
|
|
|
%files extra-probes
|
|
%{_libexecdir}/openscap/probe_ldap57
|
|
%{_libexecdir}/openscap/probe_dnscache
|
|
|
|
%changelog
|
|
* Fri Jun 17 2011 Marcela Mašláňová <mmaslano@redhat.com> - 0.7.2-3
|
|
- Perl mass rebuild
|
|
|
|
* Fri Jun 10 2011 Marcela Mašláňová <mmaslano@redhat.com> - 0.7.2-2
|
|
- Perl 5.14 mass rebuild
|
|
|
|
* Wed Apr 20 2011 Peter Vrabec <pvrabec@redhat.com> 0.7.2-1
|
|
- upgrade
|
|
|
|
* Fri Mar 11 2011 Peter Vrabec <pvrabec@redhat.com> 0.7.1-1
|
|
- upgrade
|
|
|
|
* Thu Feb 10 2011 Peter Vrabec <pvrabec@redhat.com> 0.7.0-1
|
|
- upgrade
|
|
|
|
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.8-2
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
* Mon Jan 31 2011 Peter Vrabec <pvrabec@redhat.com> 0.6.8-1
|
|
- upgrade
|
|
|
|
* Fri Jan 14 2011 Peter Vrabec <pvrabec@redhat.com> 0.6.7-1
|
|
- upgrade
|
|
|
|
* Wed Oct 20 2010 Peter Vrabec <pvrabec@redhat.com> 0.6.4-1
|
|
- upgrade
|
|
|
|
* Tue Sep 14 2010 Peter Vrabec <pvrabec@redhat.com> 0.6.3-1
|
|
- upgrade
|
|
|
|
* Fri Aug 27 2010 Peter Vrabec <pvrabec@redhat.com> 0.6.2-1
|
|
- upgrade
|
|
|
|
* Wed Jul 14 2010 Peter Vrabec <pvrabec@redhat.com> 0.6.0-1
|
|
- upgrade
|
|
|
|
* Wed May 26 2010 Peter Vrabec <pvrabec@redhat.com> 0.5.11-1
|
|
- upgrade
|
|
|
|
* Fri May 07 2010 Peter Vrabec <pvrabec@redhat.com> 0.5.10-1
|
|
- upgrade
|
|
|
|
* Fri Apr 16 2010 Peter Vrabec <pvrabec@redhat.com> 0.5.9-1
|
|
- upgrade
|
|
|
|
* Fri Feb 26 2010 Peter Vrabec <pvrabec@redhat.com> 0.5.7-1
|
|
- upgrade
|
|
- new utils package
|
|
|
|
* Mon Jan 04 2010 Peter Vrabec <pvrabec@redhat.com> 0.5.6-1
|
|
- upgrade
|
|
|
|
* Tue Sep 29 2009 Peter Vrabec <pvrabec@redhat.com> 0.5.3-1
|
|
- upgrade
|
|
|
|
* Wed Aug 19 2009 Peter Vrabec <pvrabec@redhat.com> 0.5.2-1
|
|
- upgrade
|
|
|
|
* Mon Aug 03 2009 Peter Vrabec <pvrabec@redhat.com> 0.5.1-2
|
|
- add rpm-devel requirement
|
|
|
|
* Mon Aug 03 2009 Peter Vrabec <pvrabec@redhat.com> 0.5.1-1
|
|
- upgrade
|
|
|
|
* Thu Apr 30 2009 Peter Vrabec <pvrabec@redhat.com> 0.3.3-1
|
|
- upgrade
|
|
|
|
* Thu Apr 23 2009 Peter Vrabec <pvrabec@redhat.com> 0.3.2-1
|
|
- upgrade
|
|
|
|
* Sun Mar 29 2009 Peter Vrabec <pvrabec@redhat.com> 0.1.4-1
|
|
- upgrade
|
|
|
|
* Fri Mar 27 2009 Peter Vrabec <pvrabec@redhat.com> 0.1.3-2
|
|
- spec file fixes (#491892)
|
|
|
|
* Tue Mar 24 2009 Peter Vrabec <pvrabec@redhat.com> 0.1.3-1
|
|
- upgrade
|
|
|
|
* Thu Jan 15 2009 Tomas Heinrich <theinric@redhat.com> 0.1.1-1
|
|
- Initial rpm
|
|
|