setools/setools.spec

191 lines
5.4 KiB
RPMSpec
Raw Normal View History

2017-02-15 12:54:11 +00:00
# sitelib for noarch packages, sitearch for others (remove the unneeded one)
%{!?__python2: %global __python2 %__python}
%{!?python2_sitelib: %global python2_sitelib %(%{__python2} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())")}
%{!?python2_sitearch: %global python2_sitearch %(%{__python2} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib(1))")}
%if 0%{?fedora}
%bcond_without python3
%else
%bcond_with python3
%endif
2007-10-17 18:08:46 +00:00
2017-02-15 12:54:11 +00:00
# % global setools_pre_ver beta.1.8e09d95
# % global gitver f1e5b20
%global sepol_ver 2.6-0
%global selinux_ver 2.6-0
Name: setools
Version: 4.1.0
Release: 1%{?setools_pre_ver:.%{setools_pre_ver}}%{?dist}
Summary: Policy analysis tools for SELinux
License: GPLv2
URL: https://github.com/TresysTechnology/setools/wiki
Source0: https://github.com/TresysTechnology/setools/archive/%{version}%{?setools_pre_ver:-%{setools_pre_ver}}.tar.gz
Source1: setools.pam
Source2: apol.desktop
Obsoletes: setools < 4.0.0, setools-devel < 4.0.0
BuildRequires: flex, bison
BuildRequires: glibc-devel gcc
BuildRequires: libsepol-devel, libsepol-static
BuildRequires: qt5-qtbase-devel
BuildRequires: swig
BuildRequires: python-devel
# BuildArch:
BuildRequires: python-devel
%if %{with python3}
Requires: %{name}-python3 = %{version}-%{release}
BuildRequires: python3-devel
%else
Requires: %{name}-python = %{version}-%{release}
%endif # with python3
2007-07-20 15:16:24 +00:00
%description
SETools is a collection of graphical tools, command-line tools, and
2017-02-15 12:54:11 +00:00
Python modules designed to facilitate SELinux policy analysis.
%package console
2007-07-20 15:16:24 +00:00
Summary: Policy analysis command-line tools for SELinux
Group: System Environment/Base
2007-10-17 18:08:46 +00:00
License: GPLv2
2017-02-15 12:54:11 +00:00
Requires: setools-python3 = %{version}-%{release}
2007-10-17 18:08:46 +00:00
Requires: libselinux >= %{selinux_ver}
%description console
SETools is a collection of graphical tools, command-line tools, and
libraries designed to facilitate SELinux policy analysis.
This package includes the following console tools:
2017-02-15 12:54:11 +00:00
sediff Compare two policies to find differences.
sedta Perform domain transition analyses.
seinfo List policy components.
seinfoflow Perform information flow analyses.
sesearch Search rules (allow, type_transition, etc.)
2017-02-15 12:54:11 +00:00
%package python
Summary: Policy analysis tools for SELinux
Requires: python-networkx
2017-02-15 12:54:11 +00:00
%description python
SETools is a collection of graphical tools, command-line tools, and
Python 2 modules designed to facilitate SELinux policy analysis.
2011-10-26 20:58:38 +00:00
2017-02-15 12:54:11 +00:00
%if %{with python3}
%package python3
Summary: Policy analysis tools for SELinux
Obsoletes: setools-libs < 4.0.0, setools-libs-tcl
Requires: python3-networkx
2011-09-29 13:30:56 +00:00
2017-02-15 12:54:11 +00:00
%description python3
SETools is a collection of graphical tools, command-line tools, and
Python 3 modules designed to facilitate SELinux policy analysis.
2017-02-15 12:54:11 +00:00
%endif # with python3
2011-04-21 16:07:11 +00:00
2017-02-15 12:54:11 +00:00
%package gui
Summary: Policy analysis graphical tools for SELinux
Requires: python3-qt5
2011-04-15 18:20:18 +00:00
2017-02-15 12:54:11 +00:00
%description gui
SETools is a collection of graphical tools, command-line tools, and
Python modules designed to facilitate SELinux policy analysis.
2011-03-30 18:41:50 +00:00
2017-02-15 12:54:11 +00:00
%prep
%setup
sed -i "s%'-Werror', '-Wextra'%'-Wextra'%" setup.py
2017-02-15 12:54:11 +00:00
# mv setools-%{version}%{?setools_pre_ver:-%{setools_pre_ver}} python2
2017-02-15 12:54:11 +00:00
%if %{with python3}
cp -a ../setools-%{version}%{?setools_pre_ver:-%{setools_pre_ver}} ../setools-%{version}%{?setools_pre_ver:-%{setools_pre_ver}}-python3
%endif # with python4
2010-11-05 11:30:34 +00:00
2017-02-15 12:54:11 +00:00
%build
# pushd setools-%{version}%{?setools_pre_ver:-%{setools_pre_ver}}
# Remove CFLAGS=... for noarch packages (unneeded)
CFLAGS="%{optflags}" %{__python2} setup.py build
# popd
2017-02-15 12:54:11 +00:00
%if %{with python3}
pushd ../setools-%{version}%{?setools_pre_ver:-%{setools_pre_ver}}-python3
# Remove CFLAGS=... for noarch packages (unneeded)
CFLAGS="%{optflags}" %{__python3} setup.py build
popd
%endif # with python3
2017-02-15 12:54:11 +00:00
%install
rm -rf %{buildroot}
# REMOVEME this comment
# Must do the python3 install first because the scripts in /usr/bin are
# overwritten with every setup.py install (and we want the python2 version
# to be the default for now).
# pushd setools-%{version}%{?setools_pre_ver:-%{setools_pre_ver}}
%{__python2} setup.py install --root %{buildroot}
# popd
%if %{with python3}
pushd ../setools-%{version}%{?setools_pre_ver:-%{setools_pre_ver}}-python3
%{__python3} setup.py install --root %{buildroot}
popd
%endif # with python3
%check
%if %{?_with_check:1}%{!?_with_check:0}
# pushd setools-%{version}%{?setools_pre_ver:-%{setools_pre_ver}}
%{__python2} setup.py test
# popd
%if %{with python3}
pushd ../setools-%{version}%{?setools_pre_ver:-%{setools_pre_ver}}-python3
%{__python2} setup.py test
popd
%endif
%endif
2017-02-15 12:54:11 +00:00
%files
%defattr(-,root,root,-)
2010-05-12 14:48:40 +00:00
2017-02-15 12:54:11 +00:00
%files console
%{_bindir}/sediff
%{_bindir}/sedta
%{_bindir}/seinfo
%{_bindir}/seinfoflow
%{_bindir}/sesearch
%{_mandir}/man1/*
2010-05-12 14:29:18 +00:00
2017-02-15 12:54:11 +00:00
%files python
# %doc AUTHORS ChangeLog KNOWN-BUGS NEWS README
%license COPYING COPYING.GPL COPYING.LGPL
# For noarch packages: sitelib
# %{python2_sitelib}/*
# For arch-specific packages: sitearch
%{python2_sitearch}/*
2017-02-15 12:54:11 +00:00
%if %{with python3}
%files python3
%license COPYING COPYING.GPL COPYING.LGPL
# %doc AUTHORS ChangeLog KNOWN-BUGS NEWS README
# For noarch packages: sitelib
# %{python3_sitelib}/*
# For arch-specific packages: sitearch
%{python3_sitearch}/*
%endif # with python3
2009-07-28 13:43:02 +00:00
2017-02-15 12:54:11 +00:00
%files gui
%{_bindir}/apol
2017-02-15 12:54:11 +00:00
%changelog
* Wed Feb 15 2017 Petr Lautrbach <plautrba@redhat.com> - 4.1.0-1
2009-07-22 18:59:21 +00:00
- New upstream release.