- Cleanup spec file
- Add default_encoding - Fix wording in bug report window
This commit is contained in:
parent
a230529eef
commit
2e2f4a63ca
@ -62,3 +62,4 @@ setroubleshoot-2.2.47.tar.gz
|
|||||||
setroubleshoot-2.2.48.tar.gz
|
setroubleshoot-2.2.48.tar.gz
|
||||||
setroubleshoot-2.2.50.tar.gz
|
setroubleshoot-2.2.50.tar.gz
|
||||||
setroubleshoot-2.2.52.tar.gz
|
setroubleshoot-2.2.52.tar.gz
|
||||||
|
setroubleshoot-2.2.55.tar.gz
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
Summary: Helps troubleshoot SELinux problems
|
Summary: Helps troubleshoot SELinux problems
|
||||||
Name: setroubleshoot
|
Name: setroubleshoot
|
||||||
Version: 2.2.52
|
Version: 2.2.55
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
License: GPLv2+
|
License: GPLv2+
|
||||||
Group: Applications/System
|
Group: Applications/System
|
||||||
@ -40,9 +40,9 @@ BuildRequires: htmlview
|
|||||||
Requires: htmlview
|
Requires: htmlview
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
|
%global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")
|
||||||
|
|
||||||
%define pkgpythondir %{python_sitelib}/%{name}
|
%global pkgpythondir %{python_sitelib}/%{name}
|
||||||
%define pkgdocdir %{_datadir}/doc/%{name}-%{version}
|
%define pkgdocdir %{_datadir}/doc/%{name}-%{version}
|
||||||
%define pkgguidir %{_datadir}/%{name}/gui
|
%define pkgguidir %{_datadir}/%{name}/gui
|
||||||
%define pkgdatadir %{_datadir}/%{name}
|
%define pkgdatadir %{_datadir}/%{name}
|
||||||
@ -51,7 +51,7 @@ Requires: htmlview
|
|||||||
%define pkgrundir %{_localstatedir}/run/%{name}
|
%define pkgrundir %{_localstatedir}/run/%{name}
|
||||||
%define pkgconfigdir %{_sysconfdir}/%{name}
|
%define pkgconfigdir %{_sysconfdir}/%{name}
|
||||||
%define pkglogdir %{_localstatedir}/log/%{name}
|
%define pkglogdir %{_localstatedir}/log/%{name}
|
||||||
%define pkgdatabase %{pkgvardatadir}/audit_listener_database.xml
|
%global pkgdatabase %{pkgvardatadir}/audit_listener_database.xml
|
||||||
|
|
||||||
%description
|
%description
|
||||||
setroubleshoot gui. Application that allows you to view setroubleshoot-server
|
setroubleshoot gui. Application that allows you to view setroubleshoot-server
|
||||||
@ -164,6 +164,7 @@ rm -rf %{buildroot}
|
|||||||
%{_sbindir}/sedispatch
|
%{_sbindir}/sedispatch
|
||||||
%{_sbindir}/setroubleshootd
|
%{_sbindir}/setroubleshootd
|
||||||
%{python_sitelib}/sesearch*.egg-info
|
%{python_sitelib}/sesearch*.egg-info
|
||||||
|
%{python_sitelib}/setroubleshoot*.egg-info
|
||||||
%dir %attr(0755,root,root) %{pkgconfigdir}
|
%dir %attr(0755,root,root) %{pkgconfigdir}
|
||||||
%dir %attr(0755,root,root) %{pkgpythondir}
|
%dir %attr(0755,root,root) %{pkgpythondir}
|
||||||
%dir %attr(0755,root,root) %{pkgpythondir}/sesearch
|
%dir %attr(0755,root,root) %{pkgpythondir}/sesearch
|
||||||
@ -187,6 +188,7 @@ rm -rf %{buildroot}
|
|||||||
%{pkgpythondir}/xml_serialize.py*
|
%{pkgpythondir}/xml_serialize.py*
|
||||||
%{pkgpythondir}/sesearch/__init__.py*
|
%{pkgpythondir}/sesearch/__init__.py*
|
||||||
%{pkgpythondir}/sesearch/_sesearch.so
|
%{pkgpythondir}/sesearch/_sesearch.so
|
||||||
|
%{pkgpythondir}/default_encoding_utf8.so
|
||||||
%{pkgdatadir}
|
%{pkgdatadir}
|
||||||
%config %{pkgconfigdir}/%{name}.cfg
|
%config %{pkgconfigdir}/%{name}.cfg
|
||||||
%dir %{pkglogdir}
|
%dir %{pkglogdir}
|
||||||
@ -209,9 +211,15 @@ Requires(pre): setroubleshoot = %{version}-%{release}
|
|||||||
Setroubleshoot documentation package
|
Setroubleshoot documentation package
|
||||||
|
|
||||||
%files doc
|
%files doc
|
||||||
|
%defattr(-,root,root,-)
|
||||||
%doc %{pkgdocdir}
|
%doc %{pkgdocdir}
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Jan 13 2010 Dan Walsh <dwalsh@redhat.com> - 2.2.55-2
|
||||||
|
- Cleanup spec file
|
||||||
|
- Add default_encoding
|
||||||
|
- Fix wording in bug report window
|
||||||
|
|
||||||
* Thu Dec 3 2009 Dan Walsh <dwalsh@redhat.com> - 2.2.52-1
|
* Thu Dec 3 2009 Dan Walsh <dwalsh@redhat.com> - 2.2.52-1
|
||||||
- Fix ignore button
|
- Fix ignore button
|
||||||
- Add delete button
|
- Add delete button
|
||||||
@ -320,7 +328,7 @@ Setroubleshoot documentation package
|
|||||||
|
|
||||||
* Tue Aug 18 2009 Dan Walsh <dwalsh@redhat.com> - 2.2.20-1
|
* Tue Aug 18 2009 Dan Walsh <dwalsh@redhat.com> - 2.2.20-1
|
||||||
-Update to upstream
|
-Update to upstream
|
||||||
2009-8-18 Thomas Liu <tliu@redhat.com>
|
- 2009-8-18 Thomas Liu <tliu@redhat.com>
|
||||||
- Added check for new policy.
|
- Added check for new policy.
|
||||||
|
|
||||||
* Tue Aug 18 2009 Dan Walsh <dwalsh@redhat.com> - 2.2.19-1
|
* Tue Aug 18 2009 Dan Walsh <dwalsh@redhat.com> - 2.2.19-1
|
||||||
@ -503,8 +511,8 @@ Setroubleshoot documentation package
|
|||||||
- sealert -l message in syslog converts from html before writing to syslog
|
- sealert -l message in syslog converts from html before writing to syslog
|
||||||
- Resolve bug #320881: export setroubleshoot_selinux_symposium in PDF format
|
- Resolve bug #320881: export setroubleshoot_selinux_symposium in PDF format
|
||||||
- add code to verify all async rpc's have been cleared from the async rpc cache
|
- add code to verify all async rpc's have been cleared from the async rpc cache
|
||||||
- add code to set a default rpc method return if the interface does not define a callback
|
- add code to set a default rpc method return if the interface does not define a callbak
|
||||||
(methods which did not have a callback were not returning anything and hence were not
|
(methods which did not have a callback were not returning anything and hence were no
|
||||||
getting cleared from the cache)
|
getting cleared from the cache)
|
||||||
|
|
||||||
* Fri Jan 11 2008 <jdennis@redhat.com> - 2.0.2-1
|
* Fri Jan 11 2008 <jdennis@redhat.com> - 2.0.2-1
|
||||||
|
Loading…
Reference in New Issue
Block a user