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