483475
%if %{?WITH_SELINUX:0}%{!?WITH_SELINUX:1}
483475
%global WITH_SELINUX 1
483475
%endif
483475
483475
%global ALTERNATIVES %{_sbindir}/alternatives
483475
483475
Summary:  An archiving tool with ACL support
483475
Name: star
483475
Version: 1.5.3
483475
Release: 13%{?dist}
483475
License: CDDL
483475
Group: Applications/Archiving
483475
URL: http://freecode.com/projects/star
483475
Source: http://downloads.sourceforge.net/s-tar/%{name}-%{version}.tar.bz2
483475
483475
# add SELinux support to star(#)
483475
Patch1: star-1.5.3-selinux.patch
483475
483475
# do not segfault with data-change-warn option (#255261)
483475
Patch2: star-1.5-changewarnSegv.patch
483475
483475
# Prevent buffer overflow for filenames with length of 100 characters (#556664)
483475
Patch3: star-1.5.2-bufferoverflow.patch
483475
483475
# Fix some invalid manpage references (#624612)
483475
Patch4: star-1.5.1-manpagereferences.patch
483475
483475
# do not crash when xattrs are not set on all files (#861848)
483475
Patch5: star-1.5.1-selinux-segfault.patch
483475
483475
# note that the H=crc format uses Sum32 algorithm, not CRC
483475
Patch6: star-1.5.1-crc.patch
483475
483475
# Allow rmt to access all files.
483475
# ~> downstream
483475
# ~> #968980
483475
Patch8: star-1.5.2-rmt-rh-access.patch
483475
483475
# Use ssh rather than rsh by default
483475
# ~> downstream
483475
# ~> related to #968980
483475
Patch9: star-1.5.2-use-ssh-by-default.patch
483475
483475
# Fix broken star.mk in 1.5.3 (included from all.mk)
483475
Patch10: star-1.5.3-star-mk.patch
483475
483475
# Fix segfault for 'pax -X' (rhbz#1175009)
483475
# ~> downstream
483475
Patch11: star-1.5.3-pax-X-option.patch
483475
483475
# Fix segfault on restore default acl (rhbz#1567836)
483475
Patch12: star-1.5.3-default-acl.patch
483475
483475
BuildRequires: libattr-devel libacl-devel libtool libselinux-devel
483475
BuildRequires: e2fsprogs-devel
483475
483475
%description
483475
Star saves many files together into a single tape or disk archive,
483475
and can restore individual files from the archive. Star supports ACL.
483475
483475
%package -n     spax
483475
Summary:        Portable archive exchange
483475
Group:          Applications/Archiving
483475
Requires(post):  %{ALTERNATIVES}
483475
Requires(preun): %{ALTERNATIVES}
483475
483475
483475
%description -n spax
483475
The pax utility shall read and write archives, write lists of the members of
483475
archive files and copy directory hierarchies as is defined in IEEE Std 1003.1.
483475
483475
%package -n     scpio
483475
Summary:        Copy file archives in and out (LEGACY)
483475
Group:          Applications/Archiving
483475
483475
%description -n scpio
483475
The scpio utility, depending on the options used: copies files to an archive
483475
file, extracts files from an archive file, lists files from an archive file or
483475
copies files from one directory tree to another.
483475
483475
%package -n     rmt
483475
Summary: Provides certain programs with access to remote tape devices
483475
Group: Applications/Archiving
483475
# we need to be greater than the version from 'dump' package
483475
Epoch: 2
483475
483475
%description -n rmt
483475
The rmt utility provides remote access to tape devices for programs
483475
like dump (a filesystem backup program), restore (a program for
483475
restoring files from a backup), and tar (an archiving program).
483475
483475
# "desired" alternative constants
483475
%global ALT_NAME                pax
483475
%global ALT_LINK                %{_bindir}/pax
483475
%global ALT_SL1_NAME            pax-man
483475
%global ALT_SL1_LINK            %{_mandir}/man1/pax.1.gz
483475
483475
# "local" alternative constants
483475
%global ALT_PATH                %{_bindir}/spax
483475
%global ALT_SL1_PATH            %{_mandir}/man1/spax.1.gz
483475
483475
%prep
483475
%setup -q
483475
%if %{WITH_SELINUX}
483475
%patch1 -p1 -b .selinux
483475
%endif
483475
%patch2 -p1 -b .changewarnSegv
483475
%patch3 -p1 -b .namesoverflow
483475
%patch4 -p1 -b .references
483475
%patch5 -p1 -b .selinux-segfault
483475
%patch6 -p1 -b .crc
483475
%patch8 -p1 -b .rmt-access-rules
483475
%patch9 -p1 -b .ssh-by-default
483475
%patch10 -p1 -b .bug-config-1.5.3
483475
%patch11 -p1 -b .pax-X
483475
%patch12 -p1 -b .default-acl
483475
483475
# disable single "fat" binary
483475
cp -a star/all.mk star/Makefile
483475
483475
star_recode()
483475
{
483475
    for i in $@; do
483475
        iconv -f iso_8859-1 -t utf-8 $i > .tmp_file
483475
        mv .tmp_file $i
483475
    done
483475
}
483475
483475
star_recode AN-1.5 AN-1.5.2 star/star.4
483475
483475
for PLAT in %{arm} %{power64} aarch64 %{mips} x86_64 s390 s390x sh3 sh4 sh4a sparcv9; do
483475
    for AFILE in gcc cc; do
483475
            [ ! -e RULES/${PLAT}-linux-${AFILE}.rul ] \
483475
            && ln -s i586-linux-${AFILE}.rul RULES/${PLAT}-linux-${AFILE}.rul
483475
    done
483475
done
483475
483475
%build
483475
# This is config/work-around for atypical build system.  Variables used are
483475
# docummented makefiles.5.  GMAKE_NOWARN silences irritating warnings in
483475
# GNU/Linux ecosystem.
483475
%global make_flags GMAKE_NOWARN=true                                    \\\
483475
    RUNPATH=                                                            \\\
483475
    LDPATH=                                                             \\\
483475
    PARCH=%{_target_cpu}                                                \\\
483475
    K_ARCH=%{_target_cpu}                                               \\\
483475
    INS_BASE=$RPM_BUILD_ROOT%{_prefix}                                  \\\
483475
    INS_RBASE=$RPM_BUILD_ROOT                                           \\\
483475
    INSTALL='sh $(SRCROOT)/conf/install-sh -c -m $(INSMODEINS)'         \\\
483475
    COPTX="$RPM_OPT_FLAGS -DTRY_EXT2_FS"                                \\\
483475
    LDOPTX="$RPM_LD_FLAGS"                                              \\\
483475
    DEFCCOM=gcc
483475
483475
# Note: disable optimalisation by COPTX='-g3 -O0' LDOPTX='-g3 -O0'
483475
make %{?_smp_mflags} %make_flags
483475
483475
%install
483475
make install -s %make_flags
483475
483475
ln -s star.1.gz ${RPM_BUILD_ROOT}%{_mandir}/man1/ustar.1
483475
mkdir -p ${RPM_BUILD_ROOT}%{_sysconfdir}
483475
mkdir -p ${RPM_BUILD_ROOT}%{_pkgdocdir}
483475
ln -s %{_sbindir}/rmt ${RPM_BUILD_ROOT}%{_sysconfdir}/rmt
483475
install -p -m 644 COPYING star/README  CDDL.Schily.txt AN-* \
483475
    ${RPM_BUILD_ROOT}%{_pkgdocdir}
483475
483475
# XXX Nuke unpackaged files.
483475
( cd ${RPM_BUILD_ROOT}
483475
  rm -f .%{_bindir}/mt
483475
  rm -f .%{_bindir}/smt
483475
  rm -f .%{_bindir}/tartest
483475
  rm -f .%{_bindir}/tar
483475
  rm -f .%{_bindir}/gnutar
483475
  rm -f .%{_bindir}/star_fat
483475
  rm -f .%{_bindir}/star_sym
483475
  rm -f .%{_bindir}/suntar
483475
  rm -f .%{_sysconfdir}/default/star
483475
  rm -rf .%{_prefix}%{_sysconfdir}
483475
  rm -rf .%{_prefix}/include
483475
  rm -rf .%{_prefix}/lib # hard-wired intently
483475
  rm -rf .%{_mandir}/man3
483475
  rm -rf .%{_mandir}/man5/{makefiles,makerules}.5*
483475
  rm -rf .%{_mandir}/man1/{tartest,gnutar,smt,mt,suntar,match}.1*
483475
  rm -rf .%{_docdir}/star/testscripts
483475
  rm -rf .%{_docdir}/star/TODO
483475
  rm -rf .%{_docdir}/rmt
483475
)
483475
483475
%clean
483475
483475
%global general_docs \
483475
%dir %{_pkgdocdir} \
483475
%doc %{_pkgdocdir}/COPYING \
483475
%doc %{_pkgdocdir}/CDDL.Schily.txt \
483475
483475
%post -n spax
483475
%{ALTERNATIVES} \
483475
    --install   %{ALT_LINK}     %{ALT_NAME}     %{ALT_PATH}     66 \
483475
    --slave     %{ALT_SL1_LINK} %{ALT_SL1_NAME} %{ALT_SL1_PATH}
483475
483475
%preun -n spax
483475
if [ $1 -eq 0 ]; then
483475
    # only on pure uninstall (not upgrade)
483475
    %{ALTERNATIVES} --remove %{ALT_NAME} %{ALT_PATH}
483475
fi
483475
483475
%files
483475
%doc %{_pkgdocdir}
483475
%{_bindir}/star
483475
%{_bindir}/ustar
483475
%{_mandir}/man1/star.1*
483475
%{_mandir}/man1/ustar.1*
483475
%{_mandir}/man5/star.5*
483475
483475
%files -n scpio
483475
%general_docs
483475
%doc %{_mandir}/man1/scpio.1*
483475
%{_bindir}/scpio
483475
483475
%files -n spax
483475
%general_docs
483475
%doc %{_mandir}/man1/spax.1*
483475
%{_bindir}/spax
483475
%ghost %verify(not md5 size mode mtime) %{ALT_LINK}
483475
%ghost %verify(not md5 size mode mtime) %{ALT_SL1_LINK}
483475
483475
%files -n rmt
483475
%general_docs
483475
%{_sbindir}/rmt
483475
%{_mandir}/man1/rmt.1*
483475
%config %{_sysconfdir}/default/rmt
483475
# This symlink is used by cpio, star, spax, scpio, .. thus it is needed.  Even
483475
# if the cpio may be configured to use /sbin/rmt rather than /etc/rmt, star (and
483475
# thus spax, ..) has the lookup path hardcoded to '/etc/rmt' (it means that even
483475
# non rpm based systems will try to look for /etc/rmt).  And - the conclusion is
483475
# - it does not make sense to fight against /etc/rmt symlink ATM (year 2013).
483475
%{_sysconfdir}/rmt
483475
483475
%changelog
483475
* Wed Aug 01 2018 Vaclav Danek - 1.5.3-13
483475
- Fix segfault on restore default acl (rhbz#1567836)
483475
483475
* Mon Apr 09 2018 Rafael Santos <rdossant@redhat.com> - 1.5.3-12
483475
- Use standard Fedora linker flags (bug #1548670)
483475
483475
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.3-11
483475
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
483475
483475
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.3-10
483475
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
483475
483475
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.3-9
483475
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
483475
483475
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.3-8
483475
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
483475
483475
* Fri Aug 12 2016 Michal Toman <mtoman@fedoraproject.org> - 1.5.3-7
483475
- Build properly on MIPS
483475
483475
* Fri Feb 05 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.3-6
483475
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
483475
483475
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5.3-5
483475
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
483475
483475
* Wed Dec 17 2014 Pavel Raiskup <praiskup@redhat.com> - 1.5.3-4
483475
- fix segfault for pax -X (#1175009)
483475
483475
* Tue Sep 16 2014 Peter Robinson <pbrobinson@fedoraproject.org> 1.5.3-3
483475
- Re-enable profiling on aarch64
483475
483475
* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5.3-2
483475
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
483475
483475
* Fri Jun 27 2014 Pavel Raiskup <praiskup@redhat.com> - 1.5.3-1
483475
- rebase to 1.5.3
483475
483475
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5.2-11
483475
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
483475
483475
* Fri Jan 17 2014 Pavel Raiskup <praiskup@redhat.com> - 1.5.2-10
483475
- enable build for ppc64le (#1054401)
483475
483475
* Mon Jan 13 2014 Peter Robinson <pbrobinson@fedoraproject.org> 1.5.2-9
483475
- Temporarily disable profiling on aarch64
483475
483475
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5.2-8
483475
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
483475
483475
* Thu Jun 20 2013 Pavel Raiskup <praiskup@redhat.com> - 1.5.2-7
483475
- we should provide /etc/rmt symlink for a while (related to #968980)
483475
- use the ssh as the default remote access method
483475
483475
* Thu May 30 2013 Pavel Raiskup <praiskup@redhat.com> - 1.5.2-6
483475
- subpackage also 'rmt' (#968980)
483475
483475
* Fri May 24 2013 Pavel Raiskup <praiskup@redhat.com> - 1.5.2-5
483475
- add missing ghost files (#960007)
483475
- fix the upgrade path, sorry for the noise (#959917, #960007)
483475
483475
* Mon May 06 2013 Pavel Raiskup <praiskup@redhat.com> - 1.5.2-2
483475
- package spax and scpio separately (#959917)
483475
- fedora-review fixes, unapplied patch
483475
- make the spax to be pax alternative (#960007)
483475
483475
* Wed Apr 10 2013 Pavel Raiskup <praiskup@redhat.com> - 1.5.2-1
483475
- rebase to most up2date upstream tarball, remove patches already upstream, fix
483475
  code movements in patches (#928758)
483475
- fix man-page-day objections (private #948866)
483475
- fix the build for aarch64 (#926571)
483475
483475
* Thu Mar 21 2013 Pavel Raiskup <praiskup@redhat.com> - 1.5.1-12
483475
- package also the 'scpio' utility (#771926)
483475
483475
* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5.1-11
483475
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
483475
483475
* Thu Oct 18 2012 Pavel Raiskup <praiskup@redhat.com> - 1.5.1-10
483475
- do not crash during extracting if extended attributes are not set on all
483475
  archived files (#861848)
483475
- note in man page that H=crc format uses Sum32 algorithm (FIPS refuses CRC)
483475
483475
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5.1-9
483475
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
483475
483475
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5.1-8
483475
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
483475
483475
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5.1-7
483475
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
483475
483475
* Tue Jan 04 2011 Ondrej Vasik <ovasik@redhat.com> 1.5.1-6
483475
- fix segfault with multivol option due to signedness(#666015)
483475
483475
* Wed Sep 29 2010 jkeating - 1.5.1-5
483475
- Rebuilt for gcc bug 634757
483475
483475
* Tue Sep 14 2010 Ondrej Vasik <ovasik@redhat.com> 1.5.1-4
483475
- fix another instance of buffer overflow for files with
483475
  long names(#632384)
483475
483475
* Tue Aug 17 2010 Ondrej Vasik <ovasik@redhat.com> 1.5.1-3
483475
- Fix some invalid manpage references (#624612)
483475
- ship star.4 manpage with star format description
483475
483475
* Wed Feb 03 2010 Ondrej Vasik <ovasik@redhat.com> 1.5.1-2
483475
- fix buffer overflow for files with names of length
483475
  100 chars(#556664)
483475
483475
* Wed Jan 13 2010 Ondrej Vasik <ovasik@redhat.com> 1.5.1-1
483475
- new upstream release 1.5.1
483475
483475
* Thu Aug 27 2009 Ondrej Vasik <ovasik@redhat.com> 1.5-8
483475
- provide symlinked manpage for ustar
483475
483475
* Thu Aug 27 2009 Ondrej Vasik <ovasik@redhat.com> 1.5-7
483475
- Merge review (#226434) changes: convert AN-1.5 to utf-8,
483475
  spec file cosmetic/policy changes, ship README.linux in doc
483475
483475
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5-6
483475
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
483475
483475
* Sun May 10 2009 Ville Skyttä <ville.skytta at iki.fi> - 1.5-5
483475
- Build with $RPM_OPT_FLAGS.
483475
- Convert specfile to UTF-8.
483475
483475
* Wed Apr 08 2009 Ondrej Vasik <ovasik@redhat.com> 1.5-4
483475
- fix build failure due to symbols conflicting
483475
  with stdio(#494213)
483475
483475
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5-3
483475
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
483475
483475
* Wed Jan 28 2009 Ondrej Vasik <ovasik@redhat.com> 1.5-2
483475
- remove names.c requirements from non-fat Makefiles,
483475
  do not ship names.c (#255261 for details)
483475
483475
* Tue Jan 27 2009 Ondrej Vasik <ovasik@redhat.com> 1.5-1
483475
- use final instead of beta
483475
- ship missing names.c separately
483475
- enable optimalization again
483475
483475
* Wed Dec 03 2008 Ondrej Vasik <ovasik@redhat.com> 1.5a89-1
483475
- update to latest upstream release
483475
483475
* Fri Jun 06 2008 Dennis Gilmore <dennis@ausil.us> 1.5a84-6
483475
- add sparcv9 support
483475
483475
* Mon May 12 2008 Peter Vrabec <pvrabec@redhat.com> 1.5a84-5
483475
- add super-H(sh3,4) architecture support (#442883)
483475
483475
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.5a84-4
483475
- Autorebuild for GCC 4.3
483475
483475
* Fri Aug 31 2007 Dan Kopecek <dkopecek@redhat.com> 1.5a84-3
483475
- added -O0 to COPTX (CFLAGS) (see #255261)
483475
483475
* Mon Aug 27 2007 Peter Vrabec <pvrabec@redhat.com> 1.5a84-2
483475
- fix segfault of data-change-warn option (#255261),
483475
  patch from dkopecek@redhat.com
483475
483475
* Fri Aug 24 2007 Peter Vrabec <pvrabec@redhat.com> 1.5a84-1
483475
- new upstream release with CVE-2007-4134 fix
483475
483475
* Sun Jun 24 2007 Peter Vrabec <pvrabec@redhat.com> 1.5a76-3
483475
- build star on ARM platforms (#245465)
483475
483475
* Mon Jan 29 2007 Peter Vrabec <pvrabec@redhat.com> 1.5a76-2
483475
- fix buildreq. and rebuild
483475
483475
* Thu Jan 18 2007 Jan Cholasta <grubber.x@gmail.com> 1.5a76-1
483475
- upgrade
483475
483475
* Tue Aug 08 2006 Peter Vrabec <pvrabec@redhat.com> 1.5a75-1
483475
- upgrade
483475
483475
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1.5a74-3.1
483475
- rebuild
483475
483475
* Tue Jun 13 2006 Peter Vrabec <pvrabec@redhat.com> 1.5a74-3
483475
- use autoconf provided by star
483475
483475
* Fri Jun 02 2006 Peter Vrabec <pvrabec@redhat.com> 1.5a74-2
483475
- update tarball
483475
483475
* Mon Apr 24 2006 Peter Vrabec <pvrabec@redhat.com> 1.5a74-1
483475
- upgrade
483475
483475
* Wed Mar 22 2006 Peter Vrabec <pvrabec@redhat.com> 1.5a73-1
483475
- upgrade
483475
483475
* Wed Mar 01 2006 Peter Vrabec <pvrabec@redhat.com> 1.5a72-1
483475
- upgrade
483475
483475
* Wed Feb 22 2006 Peter Vrabec <pvrabec@redhat.com> 1.5a71-1
483475
- upgrade
483475
483475
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
483475
- rebuilt
483475
483475
* Tue Nov 08 2005 Peter Vrabec <pvrabec@redhat.com> 1.5a69-1
483475
- upgrade
483475
483475
* Mon Oct 10 2005 Peter Vrabec <pvrabec@redhat.com> 1.5a68-1
483475
- upgrade
483475
483475
* Thu Sep 22 2005 Peter Vrabec <pvrabec@redhat.com> 1.5a67-1
483475
- upgrade
483475
483475
* Fri Aug 26 2005 Peter Vrabec <pvrabec@redhat.com> 1.5a65-1
483475
- upgrade 1.5a65-1 made by Horst H. von Brand <vonbrand@inf.utfsm.cl>
483475
- Source URL changed, no homepage now
483475
- License changed from GPL to CDDL 1.0
483475
- Define MAKEPROG=gmake like the Gmake.linux script does
483475
- Disable fat binary as per star/Makefile, update star-1.5-selinux.patch for
483475
  the various *.mk files used in that case
483475
- Axe /usr/share/man/man1/match.1*, /usr/etc/default/rmt too
483475
- Explicit listing in %%files, allow for compressed or plain manpages
483475
483475
* Fri Aug 26 2005 Peter Vrabec <pvrabec@redhat.com>
483475
- do not remove star_fat
483475
483475
* Fri Aug 12 2005 Peter Vrabec <pvrabec@redhat.com>
483475
- upgrade  1.5a64-1
483475
483475
* Thu Aug 04 2005 Karsten Hopp <karsten@redhat.de> 1.5a54-3
483475
- remove /usr/bin/tar symlink
483475
483475
* Fri Mar 18 2005 Peter Vrabec <pvrabec@redhat.com>
483475
- rebuilt
483475
483475
* Mon Nov 22 2004 Peter Vrabec <pvrabec@redhat.com>
483475
- upgrade 1.5a54-1 & rebuild
483475
483475
* Mon Oct 25 2004 Peter Vrabec <pvrabec@redhat.com>
483475
- fix dependencie (#123770)
483475
483475
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
483475
- rebuilt
483475
483475
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
483475
- rebuilt
483475
483475
* Mon Jan 26 2004 Dan Walsh <dwalsh@redhat.com> 1.5a25-4
483475
- Fix call to is_selinux_enabled
483475
483475
* Mon Jan 19 2004 Jeff Johnson <jbj@jbj.org> 1.5.a25-3
483475
- fix: (!(x & 1)) rather than (!x & 1) patch.
483475
483475
* Wed Sep 24 2003 Dan Walsh <dwalsh@redhat.com> 1.5a25-2
483475
- turn selinux off
483475
483475
* Tue Sep 16 2003 Dan Walsh <dwalsh@redhat.com> 1.5a25-1.sel
483475
- turn selinux on
483475
483475
* Fri Sep 5 2003 Dan Walsh <dwalsh@redhat.com> 1.5a18-5
483475
- turn selinux off
483475
483475
* Mon Aug 25 2003 Dan Walsh <dwalsh@redhat.com> 1.5a18-3
483475
- Add SELinux modification to handle setting security context before creation.
483475
483475
* Thu Aug 21 2003 Dan Walsh <dwalsh@redhat.com> 1.5a18-2
483475
- Fix free_xattr bug
483475
483475
* Wed Jul 16 2003 Dan Walsh <dwalsh@redhat.com> 1.5a18-1
483475
- Add SELinux support
483475
483475
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
483475
- rebuilt
483475
483475
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
483475
- rebuilt
483475
483475
* Tue Nov 12 2002 Elliot Lee <sopwith@redhat.com> 1.5a08-3
483475
- Build when uname -m != _target_platform
483475
- Use _smp_mflags
483475
- Build on x86_64
483475
483475
* Mon Nov 11 2002 Jeff Johnson <jbj@redhat.com> 1.5a08-2
483475
- update to 1.5a08.
483475
- build from cvs.
483475
483475
* Wed Jun 26 2002 Trond Eivind Glomsrød <teg@redhat.com> 1.5a04
483475
- Initial build. Alpha version - it's needed for ACLs.