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))")}
|
|
|
|
|
|
|
|
# % 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
|
2017-07-27 18:28:12 +00:00
|
|
|
Release: 4%{?setools_pre_ver:.%{setools_pre_ver}}%{?dist}
|
2017-02-15 12:54:11 +00:00
|
|
|
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
|
Do not use -Werror during build
There are new warnings when setools are built with gcc 7 therefore we
want to suppress -Werror for now
Fixes:
libqpol/policy_extend.c: In function ‘policy_extend’:
libqpol/policy_extend.c:161:27: error: ‘%04zd’ directive output may be truncated writing between 4 and 10 bytes into a region of size 5 [-Werror=format-truncation=]
snprintf(buff, 9, "@ttr%04zd", i + 1);
^~~~~
libqpol/policy_extend.c:161:22: note: directive argument in the range [1, 4294967295]
snprintf(buff, 9, "@ttr%04zd", i + 1);
^~~~~~~~~~~
In file included from /usr/include/stdio.h:939:0,
from /usr/include/sepol/policydb/policydb.h:53,
from libqpol/policy_extend.c:29:
/usr/include/bits/stdio2.h:64:10: note: ‘__builtin___snprintf_chk’ output between 9 and 15 bytes into a destination of size 9
return __builtin___snprintf_chk (__s, __n, __USE_FORTIFY_LEVEL - 1,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
__bos (__s), __fmt, __va_arg_pack ());
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
cc1: all warnings being treated as errors
error: command 'gcc' failed with exit status 1
2017-02-23 09:56:01 +00:00
|
|
|
Patch1: 0001-Do-not-use-Werror-during-build.patch
|
2017-02-23 10:03:03 +00:00
|
|
|
Patch2: 0002-Do-not-export-use-setools.InfoFlowAnalysis-and-setoo.patch
|
2017-02-15 12:54:11 +00:00
|
|
|
|
|
|
|
Obsoletes: setools < 4.0.0, setools-devel < 4.0.0
|
|
|
|
BuildRequires: flex, bison
|
2017-02-23 09:54:52 +00:00
|
|
|
BuildRequires: glibc-devel, gcc, git
|
2017-02-23 12:18:02 +00:00
|
|
|
BuildRequires: libsepol-devel >= %{sepol_ver}, libsepol-static >= %{sepol_ver}
|
2017-02-15 12:54:11 +00:00
|
|
|
BuildRequires: qt5-qtbase-devel
|
|
|
|
BuildRequires: swig
|
2017-05-30 09:49:45 +00:00
|
|
|
BuildRequires: python2-devel
|
|
|
|
BuildRequires: python2-setuptools
|
|
|
|
BuildRequires: python3-devel
|
|
|
|
BuildRequires: python3-setuptools
|
2017-02-15 12:54:11 +00:00
|
|
|
|
|
|
|
# BuildArch:
|
|
|
|
Requires: %{name}-python3 = %{version}-%{release}
|
2007-07-20 15:16:24 +00:00
|
|
|
|
2004-09-09 12:15:29 +00:00
|
|
|
%description
|
2007-04-30 15:31:11 +00:00
|
|
|
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.
|
2007-04-30 15:31:11 +00:00
|
|
|
|
2017-02-23 09:51:31 +00:00
|
|
|
%package console
|
|
|
|
Summary: Policy analysis command-line tools for SELinux
|
|
|
|
Group: System Environment/Base
|
|
|
|
License: GPLv2
|
|
|
|
Requires: setools-python3 = %{version}-%{release}
|
|
|
|
Requires: libselinux >= %{selinux_ver}
|
2007-04-30 15:31:11 +00:00
|
|
|
|
|
|
|
%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.
|
|
|
|
seinfo List policy components.
|
|
|
|
sesearch Search rules (allow, type_transition, etc.)
|
2004-09-09 12:15:29 +00:00
|
|
|
|
|
|
|
|
2017-02-23 10:03:03 +00:00
|
|
|
%package console-analyses
|
|
|
|
Summary: Policy analysis command-line tools for SELinux
|
|
|
|
Group: System Environment/Base
|
|
|
|
License: GPLv2
|
|
|
|
Requires: setools-python3 = %{version}-%{release}
|
|
|
|
Requires: libselinux >= %{selinux_ver}
|
|
|
|
Requires: python3-networkx
|
|
|
|
|
|
|
|
%description console-analyses
|
|
|
|
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:
|
|
|
|
|
|
|
|
sedta Perform domain transition analyses.
|
|
|
|
seinfoflow Perform information flow analyses.
|
|
|
|
|
|
|
|
|
2017-02-15 12:54:11 +00:00
|
|
|
%package python
|
|
|
|
Summary: Policy analysis tools for SELinux
|
2017-05-22 06:58:21 +00:00
|
|
|
Recommends: libselinux-python
|
2007-04-30 15:31:11 +00:00
|
|
|
|
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
|
|
|
%package python3
|
|
|
|
Summary: Policy analysis tools for SELinux
|
|
|
|
Obsoletes: setools-libs < 4.0.0, setools-libs-tcl
|
2017-05-22 06:58:21 +00:00
|
|
|
Recommends: libselinux-python3
|
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.
|
2011-09-20 21:12:38 +00:00
|
|
|
|
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
|
2017-02-23 10:03:03 +00:00
|
|
|
Requires: python3-networkx
|
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
|
|
|
|
2011-02-28 03:38:04 +00:00
|
|
|
|
2017-02-15 12:54:11 +00:00
|
|
|
%prep
|
2017-02-23 09:54:52 +00:00
|
|
|
%autosetup -p 1 -S git
|
2011-02-09 13:19:47 +00:00
|
|
|
|
2017-02-23 09:51:31 +00:00
|
|
|
cp -a ../setools-%{version}%{?setools_pre_ver:-%{setools_pre_ver}} ../setools-%{version}%{?setools_pre_ver:-%{setools_pre_ver}}-python2
|
2010-11-05 11:30:34 +00:00
|
|
|
|
2010-10-14 18:25:23 +00:00
|
|
|
|
2017-02-15 12:54:11 +00:00
|
|
|
%build
|
|
|
|
# Remove CFLAGS=... for noarch packages (unneeded)
|
2017-02-23 09:51:31 +00:00
|
|
|
CFLAGS="%{optflags}" %{__python3} setup.py build
|
2010-10-14 18:25:23 +00:00
|
|
|
|
2017-02-23 09:51:31 +00:00
|
|
|
pushd ../setools-%{version}%{?setools_pre_ver:-%{setools_pre_ver}}-python2
|
2017-02-15 12:54:11 +00:00
|
|
|
# Remove CFLAGS=... for noarch packages (unneeded)
|
2017-02-23 09:51:31 +00:00
|
|
|
CFLAGS="%{optflags}" %{__python2} setup.py build
|
2017-02-15 12:54:11 +00:00
|
|
|
popd
|
2010-10-14 18:25:23 +00:00
|
|
|
|
|
|
|
|
2017-02-15 12:54:11 +00:00
|
|
|
%install
|
|
|
|
rm -rf %{buildroot}
|
2017-02-23 09:51:31 +00:00
|
|
|
pushd ../setools-%{version}%{?setools_pre_ver:-%{setools_pre_ver}}-python2
|
2017-02-15 12:54:11 +00:00
|
|
|
%{__python2} setup.py install --root %{buildroot}
|
|
|
|
popd
|
|
|
|
|
2017-02-23 09:51:31 +00:00
|
|
|
rm -rf %{buildroot}%{_bindir}
|
|
|
|
%{__python3} setup.py install --root %{buildroot}
|
2017-02-15 12:54:11 +00:00
|
|
|
|
|
|
|
%check
|
|
|
|
%if %{?_with_check:1}%{!?_with_check:0}
|
2017-02-23 09:51:31 +00:00
|
|
|
%{__python3} setup.py test
|
2017-02-15 12:54:11 +00:00
|
|
|
|
2017-02-23 09:51:31 +00:00
|
|
|
pushd ../setools-%{version}%{?setools_pre_ver:-%{setools_pre_ver}}-python2
|
2017-02-15 12:54:11 +00:00
|
|
|
%{__python2} setup.py test
|
|
|
|
popd
|
|
|
|
%endif
|
2010-07-26 21:47:56 +00:00
|
|
|
|
2010-07-22 06:29:33 +00:00
|
|
|
|
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}/seinfo
|
|
|
|
%{_bindir}/sesearch
|
2017-02-23 10:03:03 +00:00
|
|
|
%{_mandir}/man1/sediff*
|
|
|
|
%{_mandir}/man1/seinfo*
|
|
|
|
%{_mandir}/man1/sesearch*
|
|
|
|
|
|
|
|
%files console-analyses
|
|
|
|
%{_bindir}/sedta
|
|
|
|
%{_bindir}/seinfoflow
|
|
|
|
%{_mandir}/man1/sedta*
|
|
|
|
%{_mandir}/man1/seinfoflow*
|
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}/*
|
2009-08-11 14:47:50 +00:00
|
|
|
|
2017-02-15 12:54:11 +00:00
|
|
|
%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}/*
|
2009-07-28 13:43:02 +00:00
|
|
|
|
2017-02-15 12:54:11 +00:00
|
|
|
%files gui
|
|
|
|
%{_bindir}/apol
|
2017-02-23 10:03:03 +00:00
|
|
|
%{_mandir}/man1/apol*
|
2009-07-27 04:12:01 +00:00
|
|
|
|
2017-02-15 12:54:11 +00:00
|
|
|
%changelog
|
2017-07-27 18:28:12 +00:00
|
|
|
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.1.0-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
|
2017-05-22 06:58:21 +00:00
|
|
|
* Mon May 22 2017 Petr Lautrbach <plautrba@redhat.com> - 4.1.0-3}
|
|
|
|
- setools-python{,3} packages should have a weak dependency on libselinux-python{,3}
|
|
|
|
(#1447747)
|
|
|
|
|
2017-02-23 11:43:31 +00:00
|
|
|
* Thu Feb 23 2017 Petr Lautrbach <plautrba@redhat.com> - 4.1.0-2
|
|
|
|
- Move python networkx dependency to -gui and -console-analyses
|
|
|
|
- Ship sedta and seinfoflow in setools-console-analyses
|
|
|
|
|
2017-02-15 12:54:11 +00:00
|
|
|
* Wed Feb 15 2017 Petr Lautrbach <plautrba@redhat.com> - 4.1.0-1
|
2009-07-22 18:59:21 +00:00
|
|
|
- New upstream release.
|