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