Blame SPECS/libsemanage.spec

c71202
%global with_python3 0
c71202
%{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print (get_python_lib(1))")}
c71202
14c281
%define libsepolver 2.5-10
14c281
%define libselinuxver 2.5-14
c71202
c71202
Summary: SELinux binary policy manipulation library 
c71202
Name: libsemanage
c71202
Version: 2.5
14c281
Release: 14%{?dist}
c71202
License: LGPLv2+
c71202
Group: System Environment/Libraries
c71202
Source: https://raw.githubusercontent.com/wiki/SELinuxProject/selinux/files/releases/20160223/libsemanage-2.5.tar.gz
14c281
# HEAD abf13a864699272ea826b0f8ff993027a342b377
c71202
Patch1: libsemanage-rhel.patch
c71202
URL: https://github.com/SELinuxProject/selinux/wiki
c71202
Source1: semanage.conf
c71202
c71202
BuildRequires: libselinux-devel >= %{libselinuxver} swig ustr-devel
c71202
BuildRequires: libsepol-devel >= %{libsepolver} 
c71202
BuildRequires: audit-libs-devel
c71202
BuildRequires: python python-devel bison flex bzip2-devel
c71202
c71202
%if 0%{?with_python3}
c71202
BuildRequires: python3 python3-devel
c71202
%endif # if with_python3
c71202
c71202
Requires: bzip2-libs audit-libs
c71202
Requires: libselinux >= %{libselinuxver}
c71202
Requires: libsepol >= %{libsepolver}
c71202
Conflicts: selinux-policy-base < 3.13.1-66
c71202
c71202
%description
c71202
Security-enhanced Linux is a feature of the Linux® kernel and a number
c71202
of utilities with enhanced security functionality designed to add
c71202
mandatory access controls to Linux.  The Security-enhanced Linux
c71202
kernel contains new architectural components originally developed to
c71202
improve the security of the Flask operating system. These
c71202
architectural components provide general support for the enforcement
c71202
of many kinds of mandatory access control policies, including those
c71202
based on the concepts of Type Enforcement®, Role-based Access
c71202
Control, and Multi-level Security.
c71202
c71202
libsemanage provides an API for the manipulation of SELinux binary policies.
c71202
It is used by checkpolicy (the policy compiler) and similar tools, as well
c71202
as by programs like load_policy that need to perform specific transformations
c71202
on binary policies such as customizing policy boolean settings.
c71202
c71202
%package static
c71202
Summary: Static library used to build policy manipulation tools
c71202
Group: Development/Libraries
c71202
Requires: libsemanage-devel = %{version}-%{release}
c71202
c71202
%description static
c71202
The semanage-static package contains the static libraries 
c71202
needed for developing applications that manipulate binary policies. 
c71202
c71202
%package devel
c71202
Summary: Header files and libraries used to build policy manipulation tools
c71202
Group: Development/Libraries
c71202
Requires: libsemanage = %{version}-%{release} ustr
c71202
c71202
%description devel
c71202
The semanage-devel package contains the libraries and header files
c71202
needed for developing applications that manipulate binary policies. 
c71202
c71202
%package python
c71202
Summary: semanage python bindings for libsemanage
c71202
Group: Development/Libraries
c71202
Requires: libsemanage = %{version}-%{release} 
c71202
c71202
%description python
c71202
The libsemanage-python package contains the python bindings for developing 
c71202
SELinux management applications. 
c71202
c71202
%if 0%{?with_python3}
c71202
%package python3
c71202
Summary: semanage python 3 bindings for libsemanage
c71202
Group: Development/Libraries
c71202
Requires: libsemanage = %{version}-%{release} 
c71202
Requires: libselinux-python3
c71202
c71202
%description python3
c71202
The libsemanage-python3 package contains the python 3 bindings for developing
c71202
SELinux management applications.
c71202
%endif # if with_python3
c71202
c71202
%prep
c71202
%setup -q -n libsemanage-2.5
c71202
%patch1 -p1 -b .rhel
c71202
c71202
c71202
%build
c71202
export LDFLAGS="%{?__global_ldflags}"
c71202
c71202
# To support building the Python wrapper against multiple Python runtimes
c71202
# Define a function, for how to perform a "build" of the python wrapper against
c71202
# a specific runtime:
c71202
BuildPythonWrapper() {
c71202
  BinaryName=$1
c71202
c71202
  # Perform the build from the upstream Makefile:
c71202
  make \
c71202
    PYTHON=$BinaryName \
c71202
    CFLAGS="%{optflags}" LIBDIR="%{_libdir}" SHLIBDIR="%{_lib}" \
c71202
    pywrap
c71202
}
c71202
c71202
make clean
c71202
make CFLAGS="%{optflags}" swigify
c71202
make CFLAGS="%{optflags}" LIBDIR="%{_libdir}" SHLIBDIR="%{_lib}" all
c71202
c71202
BuildPythonWrapper \
c71202
  %{__python}
c71202
  
c71202
%if 0%{?with_python3}
c71202
BuildPythonWrapper \
c71202
  %{__python3}
c71202
%endif # with_python3
c71202
c71202
%install
c71202
InstallPythonWrapper() {
c71202
  BinaryName=$1
c71202
c71202
  make \
c71202
    PYTHON=$BinaryName \
c71202
    DESTDIR="${RPM_BUILD_ROOT}" LIBDIR="${RPM_BUILD_ROOT}%{_libdir}" SHLIBDIR="${RPM_BUILD_ROOT}/%{_libdir}" \
c71202
    install-pywrap
c71202
}
c71202
c71202
rm -rf ${RPM_BUILD_ROOT}
c71202
mkdir -p ${RPM_BUILD_ROOT}%{_libdir}
c71202
mkdir -p ${RPM_BUILD_ROOT}%{_includedir} 
c71202
mkdir -p ${RPM_BUILD_ROOT}%{_sysconfdir}/selinux/tmp
c71202
make DESTDIR="${RPM_BUILD_ROOT}" LIBDIR="${RPM_BUILD_ROOT}%{_libdir}" SHLIBDIR="${RPM_BUILD_ROOT}/%{_libdir}" install
c71202
c71202
InstallPythonWrapper \
c71202
  %{__python} \
c71202
  .so
c71202
c71202
%if 0%{?with_python3}
c71202
InstallPythonWrapper \
c71202
  %{__python3} \
c71202
  $(python3-config --extension-suffix)
c71202
%endif # with_python3
c71202
  
c71202
cp %{SOURCE1} ${RPM_BUILD_ROOT}/etc/selinux/semanage.conf
c71202
ln -sf  %{_libdir}/libsemanage.so.1 ${RPM_BUILD_ROOT}/%{_libdir}/libsemanage.so
c71202
c71202
%clean
c71202
rm -rf ${RPM_BUILD_ROOT}
c71202
c71202
%files
c71202
%defattr(-,root,root)
c71202
%{!?_licensedir:%global license %%doc}
c71202
%license COPYING
c71202
%dir %{_sysconfdir}/selinux
c71202
%dir %{_sysconfdir}/selinux/tmp
c71202
%config(noreplace) %{_sysconfdir}/selinux/semanage.conf
c71202
%{_libdir}/libsemanage.so.1
c71202
%{_mandir}/man5/*
c71202
%dir %{_libexecdir}/selinux
c71202
c71202
%post -p /sbin/ldconfig
c71202
c71202
%postun -p /sbin/ldconfig
c71202
c71202
%files static
c71202
%defattr(-,root,root)
c71202
%{_libdir}/libsemanage.a
c71202
c71202
%files devel
c71202
%defattr(-,root,root)
c71202
%{_libdir}/libsemanage.so
c71202
%{_libdir}/pkgconfig/libsemanage.pc
c71202
%dir %{_includedir}/semanage
c71202
%{_includedir}/semanage/*.h
c71202
%{_mandir}/man3/*
c71202
%{_mandir}/man5/*
c71202
c71202
%files python
c71202
%defattr(-,root,root)
c71202
%{python_sitearch}/_semanage.so
c71202
%{python_sitearch}/semanage.py*
c71202
%{_libexecdir}/selinux/semanage_migrate_store
c71202
c71202
%if 0%{?with_python3}
c71202
%files python3
c71202
%defattr(-,root,root)
c71202
%{python3_sitearch}/*.so
c71202
%{python3_sitearch}/semanage.py*
c71202
%{python3_sitearch}/__pycache__/semanage*
c71202
%endif # if with_python3
c71202
c71202
%changelog
14c281
* Tue Sep 11 2018 Vit Mojzis <vmojzis@redhat.com> - 2.5-14
14c281
- Include user name in ROLE_REMOVE audit events (#1622045)
14c281
- Improve "reset umask before creating directories"
14c281
14c281
* Wed Jul 25 2018 Vit Mojzis <vmojzis@redhat.com> - 2.5-13
14c281
- Reset umask before creating directories (#1186422)
14c281
- Enable listing modules by name (#1566729)
14c281
14c281
* Mon Apr 30 2018 Vit Mojzis <vmojzis@redhat.com> - 2.5-12
14c281
- Do not change file mode of seusers and users_extra (#1512639)
14c281
- Improve warning for installing disabled module (#1337199)
14c281
c71202
* Tue Feb 27 2018 Vit Mojzis <vmojzis@redhat.com> - 2.5-11
c71202
- Add dependencies on libselinux and libsemanage (#1548020)
c71202
c71202
* Wed Nov 29 2017 Petr Lautrbach <plautrba@redhat.com> - 2.5-10
c71202
- Use umask(0077) for fopen() write operations (#1512639, #1512014)
c71202
c71202
* Wed Oct 18 2017 Vit Mojzis <vmojzis@redhat.com> - 2.5-9
c71202
- Update semanage to allow runtime labeling of Infiniband Pkeys (#1466274)
c71202
- Update semanage to allow runtime labeling of ibendports (#1466274)
c71202
- Keep copy of file_contexts.homedirs in policy store (#1409813)
c71202
- Add support for listing fcontext.homedirs file (#1409813)
c71202
c71202
* Wed May 03 2017 Petr Lautrbach <plautrba@redhat.com> - 2.5-8
c71202
- Save linked policy, skip re-link when possible
c71202
- Replace access(,F_OK) checks to make setuid programs work (#1186431)
c71202
c71202
* Thu Mar 30 2017 Petr Lautrbach <plautrba@redhat.com> - 2.5-7.1
c71202
- genhomedircon - improve handling large groups (#1379685)
c71202
c71202
* Mon Mar 27 2017 Petr Lautrbach <plautrba@redhat.com> - 2.5-6.1
c71202
- Remove access() check to make setuid programs work (#1186431)
c71202
c71202
* Mon Nov 21 2016 Petr Lautrbach <plautrba@redhat.com> - 2.5-5.1
c71202
- Re-add get/set_version functions needed for semodule -l (#1392573)
c71202
c71202
* Fri Aug 26 2016 Petr Lautrbach <plautrba@redhat.com> 2.5-4
c71202
- genhomedircon: add support for %group syntax
c71202
- genhomedircon: generate contexts for logins mapped to the default user
c71202
- Validate and compile file contexts before installing
c71202
- Swap tcp and udp protocol numbers
c71202
c71202
* Mon Jun 27 2016 Petr Lautrbach <plautrba@redhat.com> - 2.5-3
c71202
- Sort object files for deterministic linking order
c71202
- Support overriding Makefile RANLIB
c71202
- Respect CC and PKG_CONFIG environment variable
c71202
- Fix multiple spelling errors
c71202
- genhomedircon: %{USERID} and %{USERNAME} support and code cleanups
c71202
c71202
* Thu Mar 17 2016 Petr Lautrbach <plautrba@redhat.com> - 2.5-2.1
c71202
- Set the default store to /etc/selinux
c71202
c71202
* Tue Feb 23 2016 Petr Lautrbach <plautrba@redhat.com> 2.5-1
c71202
- Update to upstream release 2016-02-23
c71202
c71202
* Wed Jul 22 2015 Petr Lautrbach <plautrba@redhat.com> 2.1.10-18
c71202
- Add semanage.conf(5) man page
c71202
Resolves: rhbz#915651
c71202
c71202
* Tue Jul 07 2015 Petr Lautrbach <plautrba@redhat.com> 2.1.10-17
c71202
- Skip policy module re-link when only setting booleans.
c71202
Resolves: rhbz#1098446
c71202
c71202
* Fri Jan 24 2014 Daniel Mach <dmach@redhat.com> - 2.1.10-16
c71202
- Mass rebuild 2014-01-24
c71202
c71202
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 2.1.10-15
c71202
- Mass rebuild 2013-12-27
c71202
c71202
* Wed Oct 16 2013 Dan Walsh <dwalsh@redhat.com> - 2.1.10-14
c71202
- Cleanup handling of missing mls_range to fix problems with useradd -Z
c71202
- Fix auditing of login record changes, roles were not working correctly.
c71202
Resolves: #1018840
c71202
c71202
* Fri Oct 4 2013 Dan Walsh <dwalsh@redhat.com> - 2.1.10-13
c71202
- Fix errors found by coverity
c71202
Resolves: #952237
c71202
c71202
* Wed Sep 25 2013 Dan Walsh <dwalsh@redhat.com> - 2.1.10-12
c71202
- Do not fail on missing SELinux User Record when adding login record
c71202
c71202
* Mon Sep 23 2013 Dan Walsh <dwalsh@redhat.com> - 2.1.10-11
c71202
- Add msg to audit records
c71202
c71202
* Thu Sep 19 2013 Dan Walsh <dwalsh@redhat.com> - 2.1.10-10
c71202
- Do not write error message to screen when looking for previous record for auditing.
c71202
- Add mls_range from user record if the MLS range is not specified by the seuser add record.
c71202
- Error out if seuser or mls range is not specified when adding user records
c71202
c71202
* Mon Sep 9 2013 Dan Walsh <dwalsh@redhat.com> - 2.1.10-9
c71202
- Create symlink from policy.kern to active kernel.
c71202
c71202
* Fri Sep 6 2013 Dan Walsh <dwalsh@redhat.com> - 2.1.10-8
c71202
- Unlink policy.kern when done to save space.
c71202
c71202
* Fri Jul 26 2013 Dan Walsh <dwalsh@redhat.com> - 2.1.10-7
c71202
- Move handling of role audit records into the library
c71202
- Patch stops semanage from removing user record while in use
c71202
c71202
* Tue Jul 9 2013 Dan Walsh <dwalsh@redhat.com> - 2.1.10-6
c71202
- Remove dependance on selinux-policy, /etc/selinux should be owned by libsemanage, and selinux-policy can require it.
c71202
c71202
* Fri Jun 28 2013 Dan Walsh <dwalsh@redhat.com> - 2.1.10-5
c71202
- Allways build python3 version
c71202
c71202
* Mon Apr 22 2013 Dan Walsh <dwalsh@redhat.com> - 2.1.10-4
c71202
- 
c71202
c71202
* Thu Apr 11 2013 Dan Walsh <dwalsh@redhat.com> - 2.1.10-3
c71202
- Fix test suite to build
c71202
c71202
* Thu Feb 14 2013 Dan Walsh <dwalsh@redhat.com> - 2.1.10-2
c71202
- Revert some changes which are causing the wrong policy version file to be created
c71202
c71202
* Thu Feb 7 2013 Dan Walsh <dwalsh@redhat.com> - 2.1.10-1
c71202
- Update to upstream 
c71202
	* Add sefcontext_compile to compile regex everytime policy is rebuilt
c71202
	* Cleanup/fix enable/disable/remove module.
c71202
	* redo genhomedircon minuid
c71202
	* fixes from coverity
c71202
	* semanage_store: do not leak memory in semanage_exec_prog
c71202
	* genhomedircon: remove useless conditional in get_home_dirs
c71202
	* genhomedircon: double free in get_home_dirs
c71202
	* fcontext_record: do not leak on error in semanage_fcontext_key_create
c71202
	* genhomedircon: do not leak on failure in write_gen_home_dir_context
c71202
	* semanage_store: do not leak fd 
c71202
	* genhomedircon: do not leak shells list
c71202
	* semanage_store: do not leak on strdup failure 
c71202
	* semanage_store: rewrite for readability
c71202
c71202
* Wed Jan 16 2013 Dan Walsh <dwalsh@redhat.com> 2.1.9-4
c71202
- Add selinux-policy as a requires to get /etc/selinux owned
c71202
c71202
* Sat Jan 5 2013 Dan Walsh <dwalsh@redhat.com> 2.1.9-3
c71202
- Update to latest patches from eparis/Upstream
c71202
-    libsemanage: fixes from coverity
c71202
-    libsemange: redo genhomedircon minuid
c71202
c71202
* Wed Nov 21 2012 Dan Walsh <dwalsh@redhat.com> - 2.1.9-2
c71202
- Fix handling of missing semanage permissive -d foo, not failing correctly
c71202
- Previous to this fix the first module beginning with foo would get deleted.
c71202
c71202
* Thu Sep 13 2012 Dan Walsh <dwalsh@redhat.com> - 2.1.9-1
c71202
- Update to upstream 
c71202
	* libsemanage: do not set soname needlessly
c71202
	* libsemanage: remove PYTHONLIBDIR and ruby equivalent
c71202
	* do boolean name substitution
c71202
	* Fix segfault for building standard policies.
c71202
c71202
* Fri Aug 03 2012 David Malcolm <dmalcolm@redhat.com> - 2.1.8-6
c71202
- rebuild for https://fedoraproject.org/wiki/Features/Python_3.3
c71202
c71202
* Wed Aug  1 2012 David Malcolm <dmalcolm@redhat.com> - 2.1.8-5
c71202
- remove rhel logic from with_python3 conditional
c71202
c71202
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.1.8-4
c71202
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
c71202
c71202
* Fri Jul 13 2012 Dan Walsh <dwalsh@redhat.com> - 2.1.8-3
c71202
- Attempt to allocate memory for selinux_binary_policy_path and free memory 
c71202
- allocated by asprintf.
c71202
c71202
* Thu Jul 12 2012 Dan Walsh <dwalsh@redhat.com> - 2.1.8-2
c71202
- Fix asprintf within an asprintf call
c71202
c71202
* Wed Jul 4 2012 Dan Walsh <dwalsh@redhat.com> - 2.1.8-1
c71202
- Update to upstream 
c71202
	* remove build warning when build swig c files
c71202
	* additional makefile support for rubywrap
c71202
	* ignore 80 column limit for readability
c71202
	* semanage_store: fix snprintf length argument by using asprintf
c71202
	* Use default semanage.conf as a fallback
c71202
	* use after free in python bindings
c71202
c71202
* Tue May 29 2012 Dan Walsh <dwalsh@redhat.com> - 2.1.7-2
c71202
- Apply patch from Sven Vermeulen to fix problem with python3 bindings.
c71202
c71202
* Thu Mar 29 2012 Dan Walsh <dwalsh@redhat.com> - 2.1.7-1
c71202
- Update to upstream 
c71202
	* Alternate path for semanage.conf
c71202
	* do not link against libpython, this is considered bad in Debian
c71202
	* Allow to build for several ruby version
c71202
	* fallback-user-level
c71202
c71202
* Wed Feb 15 2012 Dan Walsh <dwalsh@redhat.com> - 2.1.6-3
c71202
- Check in correct patch.
c71202
c71202
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.1.6-2
c71202
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
c71202
c71202
* Fri Jan 6 2012 Dan Walsh <dwalsh@redhat.com> - 2.1.6-2
c71202
- Add patch form Xin Ouyang to make library use private semanage.conf 
c71202
c71202
* Wed Dec 21 2011 Dan Walsh <dwalsh@redhat.com> - 2.1.6-1
c71202
-Update to upstream
c71202
	* add ignoredirs config for genhomedircon
c71202
	* Fallback_user_level can be NULL if you are not using MLS
c71202
c71202
* Thu Dec 15 2011 Dan Walsh <dwalsh@redhat.com> - 2.1.5-4
c71202
- Rebuild with latest libsepol
c71202
c71202
* Thu Dec 15 2011 Dan Walsh <dwalsh@redhat.com> - 2.1.5-3
c71202
- Rebuild with latest libsepol
c71202
c71202
* Thu Dec 15 2011 Dan Walsh <dwalsh@redhat.com> - 2.1.5-2
c71202
- Add support for ignoredirs param in /etc/selinux/semanage.conf
c71202
c71202
* Fri Nov 4 2011 Dan Walsh <dwalsh@redhat.com> - 2.1.5-1
c71202
- Upgrade to upstream
c71202
	* regenerate .pc on VERSION change
c71202
	* maintain mode even if umask is tighter
c71202
	* semanage.conf man page
c71202
	* create man5dir if not exist
c71202
c71202
* Wed Oct 19 2011 Dan Walsh <dwalsh@redhat.com> - 2.1.4-2
c71202
-    Fix handling of umask, so files get created with the correct label.
c71202
c71202
* Mon Sep 19 2011 Dan Walsh <dwalsh@redhat.com> - 2.1.4-2
c71202
-    Add Guido Trentalancia semanage.conf man page
c71202
c71202
* Mon Sep 19 2011 Dan Walsh <dwalsh@redhat.com> - 2.1.4-1
c71202
-Update to upstream
c71202
	* Create a new preserve_tunables flag
c71202
	* tree: default make target to all not
c71202
	* fix semanage_store_access_check calling arguments
c71202
c71202
* Wed Sep 14 2011 Dan Walsh <dwalsh@redhat.com> - 2.1.3-2
c71202
- Add support for preserving tunables
c71202
c71202
* Tue Aug 30 2011 Dan Walsh <dwalsh@redhat.com> - 2.1.3-1
c71202
-Update to upstream
c71202
	* python wrapper makefile changes
c71202
c71202
* Thu Aug 18 2011 Dan Walsh <dwalsh@redhat.com> - 2.1.2-1
c71202
-Update to upstream
c71202
2.1.2 2011-08-17
c71202
	* print error debug info for buggy fc
c71202
	* introduce semanage_set_root and friends
c71202
	* throw exceptions in python rather than return
c71202
	* python3 support.
c71202
	* patch for MCS/MLS in user files
c71202
c71202
2.1.1 2011-08-01
c71202
	* Remove generated files, expand .gitignore
c71202
	* Use -Werror and change a few prototypes to support it
c71202
c71202
* Thu Jul 28 2011 Dan Walsh <dwalsh@redhat.com> - 2.1.0-1
c71202
- Update to upstream
c71202
	* Release, minor version bump
c71202
c71202
* Wed Jun 8 2011 Dan Walsh <dwalsh@redhat.com> - 2.0.46-6
c71202
- More fixes for disabled modules
c71202
c71202
* Tue Jun 7 2011 Dan Walsh <dwalsh@redhat.com> - 2.0.46-5
c71202
- Change libsemanage mechanism for handling disabled modules. Now it will only create a flag for a module 
c71202
indicating the module is disabled.  MODULE.pp.disabled, it will no longer rename the module.  This way we can
c71202
ship active modules in rpm.
c71202
c71202
* Wed Jun 1 2011 Dan Walsh <dwalsh@redhat.com> - 2.0.46-4
c71202
- Add semanage_set_selinux_path, to allow semodule to work on alternate selinux pools
c71202
c71202
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.46-3
c71202
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
c71202
c71202
* Thu Dec 30 2010 David Malcolm <dmalcolm@redhat.com> - 2.0.46-2
c71202
- big reworking of the support-multiple-python-builds patch to deal with
c71202
PEP 3149: the latest Python 3.2 onwards uses include paths and library names
c71202
that don't fit prior naming patterns, and so we must query python3-config for
c71202
this information.  To complicate things further, python 2's python-config
c71202
doesn't understand all of the options needed ("--extension-suffix").  I've
c71202
thus added new Makefile variables as needed, to be supplied by the specfile by
c71202
invoking the appropriate config tool (or by hardcoding the old value for
c71202
"--extension-suffix" i.e. ".so")
c71202
- rework python3 manifest for PEP 3149, and rebuild for newer python3
c71202
c71202
* Tue Dec 21 2010 Dan Walsh <dwalsh@redhat.com> - 2.0.46-1
c71202
- Update to upstream
c71202
  * Fix compliation under GCC 4.6 by Justin Mattock
c71202
c71202
* Wed Aug 25 2010 Thomas Spura <tomspur@fedoraproject.org> - 2.0.45-6
c71202
- rebuild with python3.2
c71202
  http://lists.fedoraproject.org/pipermail/devel/2010-August/141368.html
c71202
c71202
* Wed Jul 21 2010 David Malcolm <dmalcolm@redhat.com> - 2.0.45-5
c71202
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
c71202
c71202
* Tue Apr 27 2010 David Malcolm <dmalcolm@redhat.com> - 2.0.45-4
c71202
- add python3 subpackage
c71202
c71202
* Wed Apr 7 2010 Dan Walsh <dwalsh@redhat.com> - 2.0.45-3
c71202
- Fix -devel package to point at the correct shared library
c71202
c71202
* Fri Mar 26 2010 Dan Walsh <dwalsh@redhat.com> - 2.0.45-2
c71202
- Move shared library to /usr/lib
c71202
c71202
* Mon Mar 8 2010 Dan Walsh <dwalsh@redhat.com> - 2.0.45-1
c71202
- Update to upstream
c71202
	* Add enable/disable patch support from Dan Walsh.
c71202
	* Add usepasswd flag to semanage.conf to disable genhomedircon using
c71202
	  passwd from Dan Walsh.
c71202
	* regenerate swig wrappers
c71202
c71202
* Thu Feb 25 2010 Dan Walsh <dwalsh@redhat.com> - 2.0.44-2
c71202
- Allow disable of usepasswd
c71202
c71202
* Wed Feb 17 2010 Dan Walsh <dwalsh@redhat.com> - 2.0.44-1
c71202
- Update to upstream
c71202
	* Replace usage of fmemopen() with sepol_policy_file_set_mem() since
c71202
	  glibc < 2.9 does not support binary mode ('b') for fmemopen'd
c71202
	  streams.
c71202
c71202
* Thu Jan 28 2010 Dan Walsh <dwalsh@redhat.com> - 2.0.43-4
c71202
- Cleanup spec file
c71202
c71202
* Mon Jan 18 2010 Dan Walsh <dwalsh@redhat.com> - 2.0.43-3
c71202
- Splect libsemanage.a into a static subpackage to keep fedora packaging guidelines happy
c71202
c71202
* Wed Dec 16 2009 Dan Walsh <dwalsh@redhat.com> - 2.0.43-2
c71202
- Rebuild all c programs with -fPIC
c71202
c71202
* Tue Dec 1 2009 Dan Walsh <dwalsh@redhat.com> - 2.0.43-1
c71202
- Update to upstream
c71202
  * Move libsemanage.so to /usr/lib
c71202
  * Add NAME lines to man pages from Manoj Srivastava<srivasta@debian.org>
c71202
c71202
* Wed Nov 18 2009 Dan Walsh <dwalsh@redhat.com> - 2.0.42-1
c71202
- Update to upstream
c71202
  * Move load_policy from /usr/sbin to /sbin from Dan Walsh.
c71202
c71202
* Mon Nov 2 2009 Dan Walsh <dwalsh@redhat.com> - 2.0.41-1
c71202
- Update to upstream
c71202
  * Add pkgconfig file from Eamon Walsh.
c71202
  * Add semanage_set_check_contexts() function to disable calling
c71202
  setfiles
c71202
c71202
* Mon Sep 28 2009 Dan Walsh <dwalsh@redhat.com> - 2.0.39-1
c71202
- Update to upstream
c71202
  * make swigify
c71202
c71202
* Sun Sep 20 2009 Dan Walsh <dwalsh@redhat.com> - 2.0.38-2
c71202
- Dont relabel /root with genhomedircon
c71202
c71202
* Thu Sep 17 2009 Dan Walsh <dwalsh@redhat.com> - 2.0.38-1
c71202
- Update to upstream
c71202
  * Change semodule upgrade behavior to install even if the module
c71202
    is not present from Dan Walsh.
c71202
  * Make genhomedircon trim excess '/' from homedirs from Dan Walsh.
c71202
c71202
* Wed Sep 9 2009 Dan Walsh <dwalsh@redhat.com> - 2.0.37-1
c71202
- Update to upstream
c71202
  * Fix persistent dontaudit support to rebuild policy if the 
c71202
        dontaudit state is changed from Chad Sellers.
c71202
- Move load_policy to /sbin
c71202
c71202
* Fri Aug 28 2009 Dan Walsh <dwalsh@redhat.com> - 2.0.36-2
c71202
- Add enable/disable modules
c71202
c71202
* Wed Aug 26 2009 Dan Walsh <dwalsh@redhat.com> - 2.0.36-1
c71202
- Update to upstream
c71202
  * Changed bzip-blocksize=0 handling to support existing compressed
c71202
  modules in the store.
c71202
c71202
* Wed Aug 26 2009 Dan Walsh <dwalsh@redhat.com> - 2.0.35-2
c71202
- Make sure /root is not used in genhomedircon
c71202
c71202
* Wed Aug 5 2009 Dan Walsh <dwalsh@redhat.com> - 2.0.35-1
c71202
- Revert hard linking of files between tmp/active/previous.
c71202
- Enable configuration of bzip behavior from Stephen Smalley.
c71202
-   bzip-blocksize=0 to disable compression and decompression support.
c71202
-   bzip-blocksize=1..9 to set the blocksize for compression.
c71202
-   bzip-small=true to reduce memory usage for decompression.
c71202
c71202
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.33-3
c71202
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
c71202
c71202
* Fri Jul 10 2009 Dan Walsh <dwalsh@redhat.com> - 2.0.33-2
c71202
- Put check for /root back into genhomedircon
c71202
c71202
* Tue Jul 7 2009 Dan Walsh <dwalsh@redhat.com> - 2.0.33-1
c71202
- Update to upstream
c71202
c71202
* Mon Jun 8 2009 Dan Walsh <dwalsh@redhat.com> - 2.0.32-1
c71202
- Update to upstream
c71202
  * Ruby bindings from David Quigley.
c71202
c71202
* Thu Apr 9 2009 Dan Walsh <dwalsh@redhat.com> - 2.0.31-5
c71202
- Return error on invalid file
c71202
c71202
* Wed Mar 11 2009 Dan Walsh <dwalsh@redhat.com> - 2.0.31-4
c71202
- Fix typo
c71202
c71202
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.31-3
c71202
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
c71202
c71202
* Thu Jan 15 2009 Dan Walsh <dwalsh@redhat.com> - 2.0.31-2
c71202
- Fix link to only link on sandbox
c71202
c71202
* Mon Jan 12 2009 Dan Walsh <dwalsh@redhat.com> - 2.0.31-1
c71202
- Update to upstream
c71202
  * Policy module compression (bzip) support from Dan Walsh.
c71202
  * Hard link files between tmp/active/previous from Dan Walsh.
c71202
c71202
* Mon Jan 12 2009 Dan Walsh <dwalsh@redhat.com> - 2.0.30-3
c71202
- Fix up patch to get it upstreamed
c71202
c71202
* Thu Dec 04 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 2.0.30-2
c71202
- Rebuild for Python 2.6
c71202
c71202
* Thu Dec 4 2008 Dan Walsh <dwalsh@redhat.com> - 2.0.30-1
c71202
- Add semanage_mls_enabled() interface from Stephen Smalley.
c71202
c71202
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 2.0.29-2
c71202
- Rebuild for Python 2.6
c71202
c71202
* Mon Sep 15 2008 Dan Walsh <dwalsh@redhat.com> - 2.0.28-1
c71202
- Update to upstream
c71202
  * Add USER to lines to homedir_template context file from Chris PeBenito.
c71202
c71202
* Mon Sep 15 2008 Dan Walsh <dwalsh@redhat.com> - 2.0.28-2
c71202
- Add compression support
c71202
c71202
* Mon Sep 15 2008 Dan Walsh <dwalsh@redhat.com> - 2.0.28-1
c71202
- Update to upstream
c71202
  * allow fcontext and seuser changes without rebuilding the policy from Dan Walsh
c71202
c71202
* Wed Sep 10 2008 Dan Walsh <dwalsh@redhat.com> - 2.0.27-3
c71202
- Additional fixes for Don't rebuild on fcontext or seuser modifications
c71202
c71202
* Tue Sep 2 2008 Dan Walsh <dwalsh@redhat.com> - 2.0.27-2
c71202
- Don't rebuild on fcontext or seuser modifications
c71202
c71202
* Tue Aug 5 2008 Dan Walsh <dwalsh@redhat.com> - 2.0.27-1
c71202
- Update to upstream
c71202
  * Modify genhomedircon to skip groupname entries.
c71202
  Ultimately we need to expand them to the list of users to support per-role homedir labeling when using the groupname syntax.
c71202
c71202
* Tue Jul 29 2008 Dan Walsh <dwalsh@redhat.com> - 2.0.26-1
c71202
- Update to upstream
c71202
  * Fix bug in genhomedircon fcontext matches logic from Dan Walsh.
c71202
  Strip any trailing slash before appending /*$.
c71202
c71202
* Tue Jun 17 2008 Dan Walsh <dwalsh@redhat.com> - 2.0.25-3
c71202
- Another fix for genhomedircon
c71202
c71202
* Wed May 28 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 2.0.25-2
c71202
- fix license tag
c71202
c71202
* Tue Feb 5 2008 Dan Walsh <dwalsh@redhat.com> - 2.0.25-1
c71202
- Update to upstream
c71202
  * Do not call genhomedircon if the policy was not rebuilt from Stephen Smalley.
c71202
    Fixes semanage boolean -D seg fault (bug 441379).
c71202
c71202
* Tue Feb 5 2008 Dan Walsh <dwalsh@redhat.com> - 2.0.24-1
c71202
- Update to upstream
c71202
  * make swigify
c71202
c71202
* Tue Feb 5 2008 Dan Walsh <dwalsh@redhat.com> - 2.0.23-1
c71202
- Update to upstream
c71202
  * Use vfork rather than fork for libsemanage helpers to reduce memory overhead as suggested by Todd Miller.
c71202
c71202
* Mon Feb 4 2008 Dan Walsh <dwalsh@redhat.com> - 2.0.22-1
c71202
- Update to upstream
c71202
  * Free policydb before fork from Joshua Brindle.
c71202
  * Drop the base module immediately after expanding to permit memory re-use from Stephen Smalley.
c71202
c71202
* Sat Feb 2 2008 Dan Walsh <dwalsh@redhat.com> - 2.0.20-1
c71202
- Update to upstream
c71202
  * Use sepol_set_expand_consume_base to reduce peak memory usage when
c71202
  using semodule
c71202
c71202
* Fri Feb 1 2008 Dan Walsh <dwalsh@redhat.com> - 2.0.19-1
c71202
- Update to upstream
c71202
  * Fix genhomedircon to not override a file context with a homedir context from Todd Miller.
c71202
c71202
* Tue Jan 29 2008 Dan Walsh <dwalsh@redhat.com> - 2.0.18-1
c71202
- Update to upstream
c71202
  * Fix spurious out of memory error reports.
c71202
  * Merged second version of fix for genhomedircon handling from Caleb Case.
c71202
c71202
* Tue Jan 22 2008 Dan Walsh <dwalsh@redhat.com> - 2.0.16-1
c71202
- Update to upstream
c71202
  * Merged fix for genhomedircon handling of missing HOME_DIR or HOME_ROOT templates from Caleb Case.
c71202
c71202
* Tue Jan 22 2008 Dan Walsh <dwalsh@redhat.com> - 2.0.15-2
c71202
- Stop differentiating on user for homedir labeling
c71202
c71202
* Thu Dec 6 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.15-1
c71202
- Update to upstream
c71202
  * Fix genhomedircon handling of shells and missing user context template from Dan Walsh.
c71202
  * Copy the store path in semanage_select_store from Dan Walsh.
c71202
- Add expand-check=0 to semanage.conf
c71202
c71202
* Mon Dec 3 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.14-5
c71202
- Fix handling of /etc/shells so genhomedircon will work
c71202
c71202
* Thu Nov 29 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.14-3
c71202
- Allow semanage_genhomedircon to work with out a USER int homedir.template
c71202
c71202
* Sat Nov 10 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.14-2
c71202
- Fix semanage_select_store to allocate memory, fixes crash on invalid store
c71202
c71202
* Tue Nov 6 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.14-1
c71202
- Upgrade to latest from NSA
c71202
  * Call rmdir() rather than remove() on directory removal so that errno isn't polluted from Stephen Smalley.
c71202
  * Allow handle_unknown in base to be overridden by semanage.conf from Stephen Smalley.
c71202
c71202
* Fri Oct 5 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.12-1
c71202
- Upgrade to latest from NSA
c71202
  * ustr cleanups from James Antill.
c71202
  * Ensure that /root gets labeled even if using the default context from Dan Walsh.
c71202
c71202
* Fri Sep 28 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.11-1
c71202
- Upgrade to latest from NSA
c71202
  * Fix ordering of file_contexts.homedirs from Todd Miller and Dan Walsh.
c71202
c71202
* Fri Sep 28 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.10-2
c71202
- Fix sort order on generated homedir context
c71202
c71202
* Fri Sep 28 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.10-1
c71202
- Upgrade to latest from NSA
c71202
  * Fix error checking on getpw*_r functions from Todd Miller.
c71202
  * Make genhomedircon skip invalid homedir contexts from Todd Miller.
c71202
  * Set default user and prefix from seusers from Dan Walsh.
c71202
  * Add swigify Makefile target from Dan Walsh.
c71202
c71202
* Wed Sep 26 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.9-1
c71202
- Upgrade to latest from NSA
c71202
  * Pass CFLAGS to CC even on link command, per Dennis Gilmore.
c71202
  * Clear errno on non-fatal errors to avoid reporting them upon a
c71202
    later error that does not set errno.
c71202
  * Improve reporting of system errors, e.g. full filesystem or read-only filesystem from Stephen Smalley.
c71202
c71202
- Fix segfault in genhomedircon when using bad user names
c71202
c71202
* Wed Sep 26 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.6-2
c71202
- Fix genhomedircon code to only generate valid context
c71202
- Fixes autorelabel problem
c71202
c71202
* Thu Sep 13 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.6-1
c71202
- Upgrade to latest from NSA
c71202
  * Change to use getpw* function calls to the _r versions from Todd Miller.
c71202
c71202
* Thu Aug 23 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.5-1
c71202
- Upgrade to latest from NSA
c71202
c71202
* Mon Aug 20 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.4-1
c71202
- Upgrade to latest from NSA
c71202
  * Allow dontaudits to be turned off via semanage interface when
c71202
    updating policy
c71202
c71202
* Sat Aug 11 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.3-5
c71202
- Add ability to load a policy without dontaudit rules
c71202
-
c71202
c71202
* Tue Jun 26 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.3-4
c71202
- Rebuild to fix segfault on x86 platforms, swigify on each build
c71202
c71202
* Fri Jun 1 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.3-3
c71202
- Rebuild for rawhide
c71202
c71202
* Thu May 3 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.3-2
c71202
- Apply patch to fix dependencies in spec file from Robert Scheck
c71202
c71202
* Wed Apr 25 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.3-1
c71202
- Upgrade to latest from NSA
c71202
  * Fix to libsemanage man patches so whatis will work better from Dan Walsh
c71202
c71202
* Wed Apr 25 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.2-1
c71202
- Upgrade to latest from NSA
c71202
- Merged optimizations from Stephen Smalley.
c71202
-    do not set all booleans upon commit, only those whose values have changed
c71202
-    only install the sandbox upon commit if something was rebuilt
c71202
c71202
* Sat Mar 17 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.1-2
c71202
- Add SELinux to Man page Names so man -k will work
c71202
c71202
* Mon Mar 12 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.1-1
c71202
- Merged dbase_file_flush patch from Dan Walsh.
c71202
- This removes any mention of specific tools (e.g. semanage)
c71202
- from the comment header of the auto-generated files,
c71202
- since there are multiple front-end tools.
c71202
c71202
* Tue Feb 20 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.0-1
c71202
- Upgrade to latest from NSA
c71202
  * Merged Makefile test target patch from Caleb Case.
c71202
  * Merged get_commit_number function rename patch from Caleb Case.
c71202
  * Merged strnlen -> strlen patch from Todd Miller.
c71202
c71202
* Wed Feb 7 2007 Dan Walsh <dwalsh@redhat.com> - 1.10.1-1
c71202
- Upgrade to latest from NSA
c71202
  * Merged python binding fix from Dan Walsh.
c71202
  * Updated version for stable branch.
c71202
c71202
* Fri Dec 22 2006 Dan Walsh <dwalsh@redhat.com> - 1.9.2-1
c71202
- Upgrade to latest from NSA
c71202
  * Merged patch to optionally reduce disk usage by removing 
c71202
    the backup module store and linked policy from Karl MacMillan
c71202
  * Merged patch to correctly propagate return values in libsemanage
c71202
c71202
* Fri Dec 22 2006 Dan Walsh <dwalsh@redhat.com> - 1.9.1-3
c71202
- Apply Karl MacMillan patch to get proper error codes.
c71202
c71202
* Thu Dec  7 2006 Jeremy Katz <katzj@redhat.com> - 1.9.1-2
c71202
- rebuild against python 2.5
c71202
c71202
* Tue Nov 28 2006 Dan Walsh <dwalsh@redhat.com> - 1.9.1-1
c71202
- Upgrade to latest from NSA
c71202
  * Merged patch to compile wit -fPIC instead of -fpic from
c71202
    Manoj Srivastava to prevent hitting the global offest table
c71202
    limit. Patch changed to include libselinux and libsemanage in
c71202
    addition to libsepol.
c71202
c71202
* Tue Oct 17 2006 Dan Walsh <dwalsh@redhat.com> - 1.8-1
c71202
- Upgrade to latest from NSA
c71202
  * Updated version for release.
c71202
c71202
* Thu Aug 31 2006 Dan Walsh <dwalsh@redhat.com> - 1.6.17-1
c71202
- Upgrade to latest from NSA
c71202
  * Merged patch to skip reload if no active store exists and
c71202
    the store path doesn't match the active store path from Dan Walsh.
c71202
  * Merged patch to not destroy sepol handle on error path of
c71202
    connect from James Athey.
c71202
  * Merged patch to add genhomedircon path to semanage.conf from
c71202
    James Athey. 
c71202
c71202
* Thu Aug 31 2006 Dan Walsh <dwalsh@redhat.com> - 1.6.16-3
c71202
- Fix semanage to not load if is not the correct policy type and it is installing
c71202
c71202
* Thu Aug 31 2006 Dan Walsh <dwalsh@redhat.com> - 1.6.16-2
c71202
- Fix requires lines
c71202
c71202
* Wed Aug 23 2006 Dan Walsh <dwalsh@redhat.com> - 1.6.16-1
c71202
- Upgrade to latest from NSA
c71202
  * Make most copy errors fatal, but allow exceptions for
c71202
    file_contexts.local, seusers, and netfilter_contexts if
c71202
    the source file does not exist in the store.
c71202
c71202
* Sat Aug 12 2006 Dan Walsh <dwalsh@redhat.com> - 1.6.15-1
c71202
- Upgrade to latest from NSA
c71202
  * Merged separate local file contexts patch from Chris PeBenito.
c71202
  * Merged patch to make most copy errors non-fatal from Dan Walsh.
c71202
c71202
* Thu Aug 10 2006 Dan Walsh <dwalsh@redhat.com> - 1.6.13-3
c71202
- Change other updates to be non-fatal
c71202
c71202
* Wed Aug 9 2006 Dan Walsh <dwalsh@redhat.com> - 1.6.13-2
c71202
- Change netfilter stuff to be non-fatal so update can proceed.
c71202
c71202
* Thu Aug 3 2006 Dan Walsh <dwalsh@redhat.com> - 1.6.13-1
c71202
- Upgrade to latest from NSA
c71202
  * Merged netfilter contexts support from Chris PeBenito.
c71202
c71202
* Mon Jul 17 2006 Dan Walsh <dwalsh@redhat.com> - 1.6.12-2
c71202
- Rebuild for new gcc
c71202
c71202
* Tue Jul 11 2006 Dan Walsh <dwalsh@redhat.com> - 1.6.12-1
c71202
- Upgrade to latest from NSA
c71202
  * Merged support for read operations on read-only fs from 
c71202
    Caleb Case (Tresys Technology).
c71202
c71202
* Tue Jul 4 2006 Dan Walsh <dwalsh@redhat.com> - 1.6.11-1
c71202
- Upgrade to latest from NSA
c71202
  * Lindent.
c71202
  * Merged setfiles location check patch from Dan Walsh.
c71202
c71202
* Fri Jun 16 2006 Dan Walsh <dwalsh@redhat.com> - 1.6.9-1
c71202
- Upgrade to latest from NSA
c71202
  * Merged several fixes from Serge Hallyn:
c71202
       dbase_file_cache:  deref of uninit data on error path.
c71202
       dbase_policydb_cache:  clear fp to avoid double fclose
c71202
       semanage_fc_sort:  destroy temp on error paths
c71202
c71202
* Fri Jun 16 2006 Dan Walsh <dwalsh@redhat.com> - 1.6.8-2
c71202
- Handle setfiles being in /sbin or /usr/sbin
c71202
c71202
* Mon May 15 2006 Dan Walsh <dwalsh@redhat.com> - 1.6.8-1
c71202
- Upgrade to latest from NSA
c71202
  * Updated default location for setfiles to /sbin to
c71202
    match policycoreutils.  This can also be adjusted via 
c71202
    semanage.conf using the syntax:
c71202
    [setfiles]
c71202
    path = /path/to/setfiles
c71202
    args = -q -c $@ $<
c71202
    [end]
c71202
c71202
* Mon May 15 2006 Dan Walsh <dwalsh@redhat.com> - 1.6.7-3
c71202
- Spec file cleanup from n0dalus+redhat@gmail.com
c71202
c71202
* Mon May 15 2006 Dan Walsh <dwalsh@redhat.com> - 1.6.7-2
c71202
- Add /usr/include/semanage to spec file
c71202
c71202
* Mon May 8 2006 Dan Walsh <dwalsh@redhat.com> - 1.6.7-1
c71202
- Upgrade to latest from NSA
c71202
  * Merged fix warnings patch from Karl MacMillan.
c71202
c71202
* Fri Apr 14 2006 Dan Walsh <dwalsh@redhat.com> - 1.6.6-1
c71202
- Upgrade to latest from NSA
c71202
  * Merged updated file context sorting patch from Christopher
c71202
    Ashworth, with bug fix for escaped character flag.
c71202
  * Merged file context sorting code from Christopher Ashworth 
c71202
    (Tresys Technology), based on fc_sort.c code in refpolicy.
c71202
  * Merged python binding t_output_helper removal patch from Dan Walsh.
c71202
  * Regenerated swig files.
c71202
c71202
* Wed Mar 29 2006 Dan Walsh <dwalsh@redhat.com> - 1.6.3-1
c71202
- Fix to work with new version of swig
c71202
- Upgrade to latest from NSA
c71202
  * Merged corrected fix for descriptor leak from Dan Walsh.
c71202
c71202
* Wed Mar 29 2006 Dan Walsh <dwalsh@redhat.com> - 1.6.2-2
c71202
- Fix leaky descriptor
c71202
c71202
* Tue Mar 21 2006 Dan Walsh <dwalsh@redhat.com> - 1.6.2-1
c71202
- Upgrade to latest from NSA
c71202
  * Merged Makefile PYLIBVER definition patch from Dan Walsh.
c71202
  * Merged man page reorganization from Ivan Gyurdiev.
c71202
c71202
* Fri Mar 17 2006 Dan Walsh <dwalsh@redhat.com> - 1.6-1
c71202
- Make work on RHEL4
c71202
- Upgrade to latest from NSA
c71202
  * Merged abort early on merge errors patch from Ivan Gyurdiev.
c71202
  * Cleaned up error handling in semanage_split_fc based on a patch
c71202
    by Serge Hallyn (IBM) and suggestions by Ivan Gyurdiev.
c71202
  * Merged MLS handling fixes from Ivan Gyurdiev.
c71202
c71202
* Fri Feb 17 2006 Dan Walsh <dwalsh@redhat.com> - 1.5.28-1
c71202
- Upgrade to latest from NSA
c71202
  * Merged bug fix for fcontext validate handler from Ivan Gyurdiev.
c71202
  * Merged base_merge_components changes from Ivan Gyurdiev.
c71202
c71202
* Thu Feb 16 2006 Dan Walsh <dwalsh@redhat.com> - 1.5.26-1
c71202
- Upgrade to latest from NSA
c71202
  * Merged paths array patch from Ivan Gyurdiev.
c71202
  * Merged bug fix patch from Ivan Gyurdiev.
c71202
  * Merged improve bindings patch from Ivan Gyurdiev.
c71202
  * Merged use PyList patch from Ivan Gyurdiev.  
c71202
  * Merged memory leak fix patch from Ivan Gyurdiev.
c71202
  * Merged nodecon support patch from Ivan Gyurdiev.
c71202
  * Merged cleanups patch from Ivan Gyurdiev.
c71202
  * Merged split swig patch from Ivan Gyurdiev.
c71202
c71202
* Mon Feb 13 2006 Dan Walsh <dwalsh@redhat.com> - 1.5.23-1
c71202
- Upgrade to latest from NSA
c71202
  * Merged optionals in base patch from Joshua Brindle.
c71202
  * Merged treat seusers/users_extra as optional sections patch from
c71202
    Ivan Gyurdiev.
c71202
  * Merged parse_optional fixes from Ivan Gyurdiev.
c71202
c71202
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1.5.21-2.1
c71202
- bump again for double-long bug on ppc(64)
c71202
c71202
* Fri Feb 10 2006 Dan Walsh <dwalsh@redhat.com> - 1.5.21-2
c71202
- Fix handling of seusers and users_map file
c71202
c71202
* Tue Feb 07 2006 Dan Walsh <dwalsh@redhat.com> - 1.5.21-1
c71202
- Upgrade to latest from NSA
c71202
  * Merged seuser/user_extra support patch from Joshua Brindle.
c71202
  * Merged remote system dbase patch from Ivan Gyurdiev.  
c71202
c71202
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1.5.20-1.1
c71202
- rebuilt for new gcc4.1 snapshot and glibc changes
c71202
c71202
* Thu Feb 2 2006 Dan Walsh <dwalsh@redhat.com> 1.5.20-1
c71202
- Upgrade to latest from NSA
c71202
  * Merged clone record on set_con patch from Ivan Gyurdiev.  
c71202
c71202
* Mon Jan 30 2006 Dan Walsh <dwalsh@redhat.com> 1.5.19-1
c71202
- Upgrade to latest from NSA
c71202
  * Merged fname parameter patch from Ivan Gyurdiev.
c71202
  * Merged more size_t -> unsigned int fixes from Ivan Gyurdiev.
c71202
  * Merged seusers.system patch from Ivan Gyurdiev.
c71202
  * Merged improve port/fcontext API patch from Ivan Gyurdiev.  
c71202
c71202
* Fri Jan 27 2006 Dan Walsh <dwalsh@redhat.com> 1.5.18-1
c71202
- Upgrade to latest from NSA
c71202
  * Merged seuser -> seuser_local rename patch from Ivan Gyurdiev.
c71202
  * Merged set_create_store, access_check, and is_connected interfaces
c71202
    from Joshua Brindle.
c71202
c71202
* Fri Jan 13 2006 Dan Walsh <dwalsh@redhat.com> 1.5.16-1
c71202
- Upgrade to latest from NSA
c71202
  * Regenerate python wrappers.
c71202
c71202
* Fri Jan 13 2006 Dan Walsh <dwalsh@redhat.com> 1.5.15-1
c71202
- Upgrade to latest from NSA
c71202
  * Merged pywrap Makefile diff from Dan Walsh.
c71202
  * Merged cache management patch from Ivan Gyurdiev.
c71202
  * Merged bugfix for dbase_llist_clear from Ivan Gyurdiev.
c71202
  * Merged remove apply_local function patch from Ivan Gyurdiev.
c71202
  * Merged only do read locking in direct case patch from Ivan Gyurdiev.
c71202
  * Merged cache error path memory leak fix from Ivan Gyurdiev.
c71202
  * Merged auto-generated file header patch from Ivan Gyurdiev.
c71202
  * Merged pywrap test update from Ivan Gyurdiev.
c71202
  * Merged hidden defs update from Ivan Gyurdiev.
c71202
c71202
* Fri Jan 13 2006 Dan Walsh <dwalsh@redhat.com> 1.5.14-2
c71202
- Break out python out of regular Makefile
c71202
c71202
* Fri Jan 13 2006 Dan Walsh <dwalsh@redhat.com> 1.5.14-1
c71202
- Upgrade to latest from NSA
c71202
  * Merged disallow port overlap patch from Ivan Gyurdiev.
c71202
  * Merged join prereq and implementation patches from Ivan Gyurdiev.
c71202
  * Merged join user extra data part 2 patch from Ivan Gyurdiev.
c71202
  * Merged bugfix patch from Ivan Gyurdiev.
c71202
  * Merged remove add_local/set_local patch from Ivan Gyurdiev.
c71202
  * Merged user extra data part 1 patch from Ivan Gyurdiev.
c71202
  * Merged size_t -> unsigned int patch from Ivan Gyurdiev.
c71202
  * Merged calloc check in semanage_store patch from Ivan Gyurdiev,
c71202
    bug noticed by Steve Grubb.
c71202
  * Merged cleanups after add/set removal patch from Ivan Gyurdiev.
c71202
c71202
* Sat Jan 7 2006 Dan Walsh <dwalsh@redhat.com> 1.5.9-1
c71202
- Upgrade to latest from NSA
c71202
  * Merged const in APIs patch from Ivan Gyurdiev.
c71202
  * Merged validation of local file contexts patch from Ivan Gyurdiev.
c71202
  * Merged compare2 function patch from Ivan Gyurdiev.
c71202
  * Merged hidden def/proto update patch from Ivan Gyurdiev.
c71202
c71202
* Fri Jan 6 2006 Dan Walsh <dwalsh@redhat.com> 1.5.8-1
c71202
- Upgrade to latest from NSA
c71202
  * Re-applied string and file optimization patch from Russell Coker,
c71202
    with bug fix.
c71202
  * Reverted string and file optimization patch from Russell Coker.
c71202
  * Clarified error messages from parse_module_headers and 
c71202
    parse_base_headers for base/module mismatches.
c71202
c71202
* Fri Jan 6 2006 Dan Walsh <dwalsh@redhat.com> 1.5.6-1
c71202
- Upgrade to latest from NSA
c71202
  * Clarified error messages from parse_module_headers and 
c71202
    parse_base_headers for base/module mismatches.
c71202
  * Merged string and file optimization patch from Russell Coker.
c71202
  * Merged swig header reordering patch from Ivan Gyurdiev.
c71202
  * Merged toggle modify on add patch from Ivan Gyurdiev.
c71202
  * Merged ports parser bugfix patch from Ivan Gyurdiev.
c71202
  * Merged fcontext swig patch from Ivan Gyurdiev.
c71202
  * Merged remove add/modify/delete for active booleans patch from Ivan Gyurdiev.
c71202
  * Merged man pages for dbase functions patch from Ivan Gyurdiev.
c71202
  * Merged pywrap tests patch from Ivan Gyurdiev.
c71202
c71202
* Thu Jan 5 2006 Dan Walsh <dwalsh@redhat.com> 1.5.4-2
c71202
- Patch to fix add
c71202
c71202
* Thu Jan 5 2006 Dan Walsh <dwalsh@redhat.com> 1.5.4-1
c71202
- Upgrade to latest from NSA
c71202
  * Merged patch series from Ivan Gyurdiev.
c71202
    This includes patches to:
c71202
    - separate file rw code from linked list
c71202
    - annotate objects
c71202
    - fold together internal headers
c71202
    - support ordering of records in compare function
c71202
    - add active dbase backend, active booleans
c71202
    - return commit numbers for ro database calls
c71202
    - use modified flags to skip rebuild whenever possible
c71202
    - enable port interfaces
c71202
    - update swig interfaces and typemaps
c71202
    - add an API for file_contexts.local and file_contexts
c71202
    - flip the traversal order in iterate/list
c71202
    - reorganize sandbox_expand
c71202
    - add seusers MLS validation
c71202
    - improve dbase spec/documentation
c71202
    - clone record on set/add/modify
c71202
c71202
* Tue Dec 27 2005 Dan Walsh <dwalsh@redhat.com> 1.5.3-3
c71202
- Add Ivans patch to turn on ports
c71202
c71202
* Wed Dec 14 2005 Dan Walsh <dwalsh@redhat.com> 1.5.3-2
c71202
- Remove patch since upstream does the right thing
c71202
c71202
* Wed Dec 14 2005 Dan Walsh <dwalsh@redhat.com> 1.5.3-1
c71202
- Upgrade to latest from NSA
c71202
  * Merged further header cleanups from Ivan Gyurdiev.
c71202
  * Merged toggle modified flag in policydb_modify, fix memory leak
c71202
    in clear_obsolete, polymorphism vs headers fix, and include guards
c71202
    for internal headers patches from Ivan Gyurdiev.
c71202
c71202
* Tue Dec 13 2005 Dan Walsh <dwalsh@redhat.com> 1.5.1-2
c71202
- Upgrade to latest from NSA
c71202
  * Merged toggle modified flag in policydb_modify, fix memory leak
c71202
    in clear_obsolete, polymorphism vs headers fix, and include guards
c71202
    for internal headers patches from Ivan Gyurdiev.
c71202
c71202
* Mon Dec 12 2005 Dan Walsh <dwalsh@redhat.com> 1.5.1-1
c71202
- Upgrade to latest from NSA
c71202
  * Added file-mode= setting to semanage.conf, default to 0644.
c71202
    Changed semanage_copy_file and callers to use this mode when
c71202
    installing policy files to runtime locations.
c71202
c71202
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
c71202
- rebuilt
c71202
c71202
* Wed Dec 7 2005 Dan Walsh <dwalsh@redhat.com> 1.4-1
c71202
- Fix mode of output seusers file
c71202
c71202
* Tue Dec 6 2005 Dan Walsh <dwalsh@redhat.com> 1.3.64-1
c71202
- Upgrade to latest from NSA
c71202
  * Changed semanage_handle_create() to set do_reload based on
c71202
    is_selinux_enabled().  This prevents improper attempts to
c71202
    load policy on a non-SELinux system.
c71202
c71202
* Mon Dec 5 2005 Dan Walsh <dwalsh@redhat.com> 1.3.63-1
c71202
- Upgrade to latest from NSA
c71202
  * Dropped handle from user_del_role interface.
c71202
  * Removed defrole interfaces.
c71202
c71202
* Tue Nov 29 2005 Dan Walsh <dwalsh@redhat.com> 1.3.61-1
c71202
- Upgrade to latest from NSA
c71202
  * Merged Makefile python definitions patch from Dan Walsh.
c71202
  * Removed is_selinux_mls_enabled() conditionals in seusers and users
c71202
    file parsers. 
c71202
c71202
* Wed Nov 23 2005 Dan Walsh <dwalsh@redhat.com> 1.3.59-1
c71202
- Add additional swig objects
c71202
  * Merged wrap char*** for user_get_roles patch from Joshua Brindle.
c71202
  * Merged remove defrole from sepol patch from Ivan Gyurdiev.
c71202
  * Merged swig wrappers for modifying users and seusers from Joshua Brindle.
c71202
c71202
* Wed Nov 23 2005 Dan Walsh <dwalsh@redhat.com> 1.3.56-2
c71202
- Add additional swig objects
c71202
c71202
* Wed Nov 16 2005 Dan Walsh <dwalsh@redhat.com> 1.3.56-1
c71202
- Upgrade to latest from NSA
c71202
  * Fixed free->key_free bug.
c71202
  * Merged clear obsolete patch from Ivan Gyurdiev.
c71202
  * Merged modified swigify patch from Dan Walsh 
c71202
    (original patch from Joshua Brindle).
c71202
  * Merged move genhomedircon call patch from Chad Sellers.
c71202
c71202
* Mon Nov 14 2005 Dan Walsh <dwalsh@redhat.com> 1.3.53-3
c71202
- Add genhomedircon patch from Joshua Brindle
c71202
c71202
* Fri Nov 11 2005 Dan Walsh <dwalsh@redhat.com> 1.3.53-2
c71202
- Add swigify patch from Joshua Brindle
c71202
c71202
* Fri Nov 11 2005 Dan Walsh <dwalsh@redhat.com> 1.3.53-1
c71202
- Upgrade to latest from NSA
c71202
  * Merged move seuser validation patch from Ivan Gyurdiev.
c71202
  * Merged hidden declaration fixes from Ivan Gyurdiev,
c71202
    with minor corrections.
c71202
c71202
* Wed Nov 9 2005 Dan Walsh <dwalsh@redhat.com> 1.3.52-1
c71202
- Upgrade to latest from NSA
c71202
  * Merged cleanup patch from Ivan Gyurdiev.
c71202
    This renames semanage_module_conn to semanage_direct_handle,
c71202
    and moves sepol handle create/destroy into semanage handle
c71202
    create/destroy to allow use even when disconnected (for the
c71202
    record interfaces).
c71202
c71202
* Tue Nov 8 2005 Dan Walsh <dwalsh@redhat.com> 1.3.51-1
c71202
- Upgrade to latest from NSA
c71202
  * Clear modules modified flag upon disconnect and commit.
c71202
        * Added tracking of module modifications and use it to
c71202
    determine whether expand-time checks should be applied
c71202
    on commit.
c71202
  * Reverted semanage_set_reload_bools() interface.
c71202
c71202
* Tue Nov 8 2005 Dan Walsh <dwalsh@redhat.com> 1.3.48-1
c71202
- Upgrade to latest from NSA
c71202
  * Disabled calls to port dbase for merge and commit and stubbed
c71202
    out calls to sepol_port interfaces since they are not exported.
c71202
  * Merged rename instead of copy patch from Joshua Brindle (Tresys).
c71202
  * Added hidden_def/hidden_proto for exported symbols used within 
c71202
    libsemanage to eliminate relocations.  Wrapped type definitions
c71202
    in exported headers as needed to avoid conflicts.  Added
c71202
    src/context_internal.h and src/iface_internal.h.
c71202
  * Added semanage_is_managed() interface to allow detection of whether
c71202
    the policy is managed via libsemanage.  This enables proper handling
c71202
    in setsebool for non-managed systems.
c71202
  * Merged semanage_set_reload_bools() interface from Ivan Gyurdiev,
c71202
    to enable runtime control over preserving active boolean values
c71202
    versus reloading their saved settings upon commit.
c71202
c71202
* Mon Nov 7 2005 Dan Walsh <dwalsh@redhat.com> 1.3.43-1
c71202
- Upgrade to latest from NSA
c71202
  * Merged seuser parser resync, dbase tracking and cleanup, strtol
c71202
    bug, copyright, and assert space patches from Ivan Gyurdiev.
c71202
  * Added src/*_internal.h in preparation for other changes.
c71202
   * Added hidden/hidden_proto/hidden_def to src/debug.[hc] and
c71202
          src/seusers.[hc].
c71202
c71202
c71202
* Thu Nov 3 2005 Dan Walsh <dwalsh@redhat.com> 1.3.41-1
c71202
- Upgrade to latest from NSA
c71202
  * Merged interface parse/print, context_to_string interface change,
c71202
    move assert_noeof, and order preserving patches from Ivan Gyurdiev.
c71202
        * Added src/dso.h in preparation for other changes.
c71202
  * Merged install seusers, handle/error messages, MLS parsing,
c71202
    and seusers validation patches from Ivan Gyurdiev.
c71202
c71202
* Mon Oct 31 2005 Dan Walsh <dwalsh@redhat.com> 1.3.39-1
c71202
- Upgrade to latest from NSA
c71202
  * Merged record interface, dbase flush, common database code,
c71202
    and record bugfix patches from Ivan Gyurdiev.
c71202
c71202
* Fri Oct 28 2005 Dan Walsh <dwalsh@redhat.com> 1.3.38-1
c71202
- Upgrade to latest from NSA
c71202
  * Merged dbase policydb list and count change from Ivan Gyurdiev.
c71202
  * Merged enable dbase and set relay patches from Ivan Gyurdiev.
c71202
c71202
* Thu Oct 27 2005 Dan Walsh <dwalsh@redhat.com> 1.3.36-1
c71202
- Update from NSA
c71202
  * Merged query APIs and dbase_file_set patches from Ivan Gyurdiev.
c71202
c71202
* Wed Oct 26 2005 Dan Walsh <dwalsh@redhat.com> 1.3.35-1
c71202
- Update from NSA
c71202
  * Merged sepol handle passing, seusers support, and policydb cache
c71202
    patches from Ivan Gyurdiev.
c71202
c71202
* Tue Oct 25 2005 Dan Walsh <dwalsh@redhat.com> 1.3.34-1
c71202
- Update from NSA
c71202
  * Merged resync to sepol changes and booleans fixes/improvements 
c71202
    patches from Ivan Gyurdiev.
c71202
  * Merged support for genhomedircon/homedir template, store selection,
c71202
    explicit policy reload, and semanage.conf relocation from Joshua
c71202
    Brindle.
c71202
c71202
* Mon Oct 24 2005 Dan Walsh <dwalsh@redhat.com> 1.3.32-1
c71202
- Update from NSA
c71202
  * Merged resync to sepol changes and transaction fix patches from
c71202
    Ivan Gyurdiev.
c71202
  * Merged reorganize users patch from Ivan Gyurdiev.
c71202
  * Merged remove unused relay functions patch from Ivan Gyurdiev.
c71202
c71202
* Fri Oct 21 2005 Dan Walsh <dwalsh@redhat.com> 1.3.30-1
c71202
- Update from NSA
c71202
  * Fixed policy file leaks in semanage_load_module and
c71202
    semanage_write_module.
c71202
  * Merged further database work from Ivan Gyurdiev.
c71202
  * Fixed bug in semanage_direct_disconnect.
c71202
c71202
* Thu Oct 20 2005 Dan Walsh <dwalsh@redhat.com> 1.3.28-1
c71202
- Update from NSA
c71202
  * Merged interface renaming patch from Ivan Gyurdiev.
c71202
  * Merged policy component patch from Ivan Gyurdiev.
c71202
  * Renamed 'check=' configuration value to 'expand-check=' for 
c71202
    clarity.
c71202
  * Changed semanage_commit_sandbox to check for and report errors 
c71202
    on rename(2) calls performed during rollback.
c71202
  * Added optional check= configuration value to semanage.conf 
c71202
    and updated call to sepol_expand_module to pass its value
c71202
    to control assertion and hierarchy checking on module expansion.
c71202
  * Merged fixes for make DESTDIR= builds from Joshua Brindle.
c71202
c71202
* Tue Oct 18 2005 Dan Walsh <dwalsh@redhat.com> 1.3.24-1
c71202
- Update from NSA
c71202
  * Merged default database from Ivan Gyurdiev.
c71202
  * Merged removal of connect requirement in policydb backend from
c71202
    Ivan Gyurdiev.
c71202
  * Merged commit locking fix and lock rename from Joshua Brindle.
c71202
  * Merged transaction rollback in lock patch from Joshua Brindle.
c71202
  * Changed default args for load_policy to be null, as it no longer
c71202
    takes a pathname argument and we want to preserve booleans.
c71202
  * Merged move local dbase initialization patch from Ivan Gyurdiev.
c71202
  * Merged acquire/release read lock in databases patch from Ivan Gyurdiev.
c71202
  * Merged rename direct -> policydb as appropriate patch from Ivan Gyurdiev.
c71202
  * Added calls to sepol_policy_file_set_handle interface prior
c71202
    to invoking sepol operations on policy files.
c71202
  * Updated call to sepol_policydb_from_image to pass the handle.
c71202
c71202
c71202
* Tue Oct 18 2005 Dan Walsh <dwalsh@redhat.com> 1.3.20-1
c71202
- Update from NSA
c71202
  * Changed default args for load_policy to be null, as it no longer
c71202
    takes a pathname argument and we want to preserve booleans.
c71202
  * Merged move local dbase initialization patch from Ivan Gyurdiev.
c71202
  * Merged acquire/release read lock in databases patch from Ivan Gyurdiev.
c71202
  * Merged rename direct -> policydb as appropriate patch from Ivan Gyurdiev.
c71202
  * Added calls to sepol_policy_file_set_handle interface prior
c71202
    to invoking sepol operations on policy files.
c71202
  * Updated call to sepol_policydb_from_image to pass the handle.
c71202
c71202
* Tue Oct 18 2005 Dan Walsh <dwalsh@redhat.com> 1.3.20-1
c71202
- Update from NSA
c71202
  * Merged user and port APIs - policy database patch from Ivan
c71202
  Gyurdiev.
c71202
  * Converted calls to sepol link_packages and expand_module interfaces
c71202
  from using buffers to using sepol handles for error reporting, and 
c71202
  changed direct_connect/disconnect to create/destroy sepol handles.
c71202
c71202
* Sat Oct 15 2005 Dan Walsh <dwalsh@redhat.com> 1.3.18-1
c71202
- Update from NSA
c71202
  * Merged bugfix patch from Ivan Gyurdiev.
c71202
  * Merged seuser database patch from Ivan Gyurdiev.
c71202
  Merged direct user/port databases to the handle from Ivan Gyurdiev.
c71202
  * Removed obsolete include/semanage/commit_api.h (leftover).
c71202
  Merged seuser record patch from Ivan Gyurdiev.
c71202
  * Merged boolean and interface databases from Ivan Gyurdiev.
c71202
c71202
* Fri Oct 14 2005 Dan Walsh <dwalsh@redhat.com> 1.3.14-1
c71202
- Update from NSA
c71202
  * Updated to use get interfaces for hidden sepol_module_package type.
c71202
  * Changed semanage_expand_sandbox and semanage_install_active
c71202
  to generate/install the latest policy version supported  by libsepol
c71202
  by default (unless overridden by semanage.conf), since libselinux
c71202
  will now downgrade automatically for load_policy.
c71202
  * Merged new callback-based error reporting system and ongoing
c71202
  database work from Ivan Gyurdiev.
c71202
c71202
* Wed Oct 12 2005 Dan Walsh <dwalsh@redhat.com> 1.3.11-1
c71202
- Update from NSA
c71202
  * Fixed semanage_install_active() to use the same logic for
c71202
  selecting a policy version as semanage_expand_sandbox().  Dropped
c71202
  dead code from semanage_install_sandbox().
c71202
c71202
* Mon Oct 10 2005 Dan Walsh <dwalsh@redhat.com> 1.3.10-1
c71202
- Update from NSA
c71202
  * Updated for changes to libsepol, and to only use types and interfaces
c71202
  provided by the shared libsepol.
c71202
c71202
* Fri Oct 7 2005 Dan Walsh <dwalsh@redhat.com> 1.3.9-1
c71202
- Update from NSA
c71202
  * Merged further database work from Ivan Gyurdiev.
c71202
c71202
* Tue Oct 4 2005 Dan Walsh <dwalsh@redhat.com> 1.3.8-1
c71202
- Update from NSA
c71202
  * Merged iterate, redistribute, and dbase split patches from
c71202
  Ivan Gyurdiev.
c71202
c71202
* Mon Oct 3 2005 Dan Walsh <dwalsh@redhat.com> 1.3.7-1
c71202
- Update from NSA
c71202
  * Merged patch series from Ivan Gyurdiev.
c71202
    (pointer typedef elimination, file renames, dbase work, backend
c71202
     separation)
c71202
  * Split interfaces from semanage.[hc] into handle.[hc], modules.[hc].
c71202
  * Separated handle create from connect interface.
c71202
  * Added a constructor for initialization.
c71202
  * Moved up src/include/*.h to src.
c71202
  * Created a symbol map file; dropped dso.h and hidden markings.
c71202
c71202
* Wed Sep 28 2005 Dan Walsh <dwalsh@redhat.com> 1.3.5-1
c71202
- Update from NSA
c71202
  * Split interfaces from semanage.[hc] into handle.[hc], modules.[hc].
c71202
  * Separated handle create from connect interface.
c71202
  * Added a constructor for initialization.
c71202
  * Moved up src/include/*.h to src.
c71202
  * Created a symbol map file; dropped dso.h and hidden markings.
c71202
c71202
* Fri Sep 23 2005 Dan Walsh <dwalsh@redhat.com> 1.3.4-1
c71202
- Update from NSA
c71202
  * Merged dbase redesign patch from Ivan Gyurdiev.
c71202
c71202
* Wed Sep 21 2005 Dan Walsh <dwalsh@redhat.com> 1.3.3-1
c71202
- Update from NSA
c71202
  * Merged boolean record, stub record handler, and status codes 
c71202
    patches from Ivan Gyurdiev.
c71202
c71202
* Tue Sep 20 2005 Dan Walsh <dwalsh@redhat.com> 1.3.2-1
c71202
- Update from NSA
c71202
  * Merged stub iterator functionality from Ivan Gyurdiev.
c71202
  * Merged interface record patch from Ivan Gyurdiev.
c71202
c71202
* Wed Sep 14 2005 Dan Walsh <dwalsh@redhat.com> 1.3.1-1
c71202
- Update from NSA
c71202
  * Merged stub functionality for managing user and port records,
c71202
  and record table code from Ivan Gyurdiev.
c71202
  * Updated version for release.
c71202
c71202
* Thu Sep 1 2005 Dan Walsh <dwalsh@redhat.com> 1.1.6-1
c71202
- Update from NSA
c71202
  * Merged semod.conf template patch from Dan Walsh (Red Hat),
c71202
  but restored location to /usr/share/semod/semod.conf.
c71202
  * Fixed several bugs found by valgrind.
c71202
  * Fixed bug in prior patch for the semod_build_module_list leak.
c71202
  * Merged errno fix from Joshua Brindle (Tresys).
c71202
  * Merged fix for semod_build_modules_list leak on error path
c71202
    from Serge Hallyn (IBM).  Bug found by Coverity.
c71202
c71202
* Thu Aug 25 2005 Dan Walsh <dwalsh@redhat.com> 1.1.3-1
c71202
- Update from NSA
c71202
  * Merged errno fix from Joshua Brindle (Tresys).
c71202
  * Merged fix for semod_build_modules_list leak on error path
c71202
    from Serge Hallyn (IBM).  Bug found by Coverity.
c71202
  * Merged several fixes from Serge Hallyn (IBM).  Bugs found by
c71202
    Coverity.
c71202
  * Fixed several other bugs and warnings.
c71202
  * Merged patch to move module read/write code from libsemanage
c71202
    to libsepol from Jason Tang (Tresys).  
c71202
  * Merged relay records patch from Ivan Gyurdiev.
c71202
  * Merged key extract patch from Ivan Gyurdiev.
c71202
c71202
- Initial version
c71202
- Created by Stephen Smalley <sds@epoch.ncsc.mil>