47fe5d
%if %{?WITH_SELINUX:0}%{!?WITH_SELINUX:1}
47fe5d
%global WITH_SELINUX 1
47fe5d
%endif
47fe5d
47fe5d
%global ALTERNATIVES %{_sbindir}/alternatives
47fe5d
47fe5d
Summary:  An archiving tool with ACL support
47fe5d
Name: star
47fe5d
Version: 1.5.2
47fe5d
Release: 12%{?dist}
47fe5d
URL: http://cdrecord.berlios.de/old/private/star.html
47fe5d
Source: ftp://ftp.berlios.de/pub/star/%{name}-%{version}.tar.bz2
47fe5d
47fe5d
#use gcc for compilation, change defaults for Linux
47fe5d
Patch1: star-1.5-newMake.patch
47fe5d
#add SELinux support to star(#)
47fe5d
Patch2: star-1.5.2-selinux.patch
47fe5d
#do not segfault with data-change-warn option (#255261)
47fe5d
Patch3: star-1.5-changewarnSegv.patch
47fe5d
#Prevent buffer overflow for filenames with length of 100 characters (#556664)
47fe5d
Patch4: star-1.5.2-bufferoverflow.patch
47fe5d
#Fix some invalid manpage references (#624612)
47fe5d
Patch5: star-1.5.1-manpagereferences.patch
47fe5d
# do not crash when xattrs are not set on all files (#861848)
47fe5d
Patch6: star-1.5.1-selinux-segfault.patch
47fe5d
# note that the H=crc format uses Sum32 algorithm, not CRC
47fe5d
Patch7: star-1.5.1-crc.patch
47fe5d
47fe5d
# fix man-page-day objections
47fe5d
# ~> proposed upstream:
47fe5d
#    https://lists.berlios.de/pipermail/star-developers/2013-April/000027.html
47fe5d
# ~> #948866
47fe5d
Patch8: star-1.5.2-man-page-day.patch
47fe5d
47fe5d
# fix the build for aarch64 by actualization of the config.guess/config.sub
47fe5d
# files with the most up2date version from git://git.savannah.gnu.org/config.git
47fe5d
# ~> downstream
47fe5d
# ~> #926571
47fe5d
Patch9: star-1.5.2-aarch64-config.patch
47fe5d
47fe5d
# Allow rmt to access all files.
47fe5d
# ~> downstream
47fe5d
# ~> #968980
47fe5d
Patch10: star-1.5.2-rmt-rh-access.patch
47fe5d
47fe5d
# Use ssh rather than rsh by default
47fe5d
# ~> downstream
47fe5d
# ~> related to #968980
47fe5d
Patch11: star-1.5.2-use-ssh-by-default.patch
47fe5d
47fe5d
# FIXME: profiling isn't currently supported on aarch64 (should be in glibc-2.18)
47fe5d
Patch12: star-disable-profiling.patch
47fe5d
47fe5d
Requires(post):  %{ALTERNATIVES}
47fe5d
Requires(preun): %{ALTERNATIVES}
47fe5d
47fe5d
License: CDDL
47fe5d
Group: Applications/Archiving
47fe5d
BuildRequires: libattr-devel libacl-devel libtool libselinux-devel
47fe5d
BuildRequires: e2fsprogs-devel
47fe5d
47fe5d
# Historically, star installed /usr/bin/spax binary also so we don't want to
47fe5d
# break the compatibility.  We don't care about scpio because scpio binary was
47fe5d
# not installed.
47fe5d
Requires: spax
47fe5d
47fe5d
%description
47fe5d
Star saves many files together into a single tape or disk archive,
47fe5d
and can restore individual files from the archive. Star supports ACL.
47fe5d
47fe5d
%package -n     spax
47fe5d
# Temporary!  Remove once no problem may occur.  We really need to force update
47fe5d
# of older star and pax, when any of them is installed.  Its file list
47fe5d
# collisions with 'spax'.
47fe5d
Conflicts:      star < 1.5.2-5
47fe5d
Conflicts:      pax < 3.4-16
47fe5d
Summary:        Portable archive exchange
47fe5d
Group:          Applications/Archiving
47fe5d
47fe5d
%description -n spax
47fe5d
The pax utility shall read and write archives, write lists of the members of
47fe5d
archive files and copy directory hierarchies as is defined in IEEE Std 1003.1.
47fe5d
47fe5d
%package -n     scpio
47fe5d
# Temporary!  Remove once _no problem_ may occur.  We really need to force
47fe5d
# update of older star if it installed — its files overlaps with scpio.
47fe5d
Conflicts:      star < 1.5.2-5
47fe5d
Summary:        Copy file archives in and out (LEGACY)
47fe5d
Group:          Applications/Archiving
47fe5d
47fe5d
%description -n scpio
47fe5d
The scpio utility, depending on the options used: copies files to an archive
47fe5d
file, extracts files from an archive file, lists files from an archive file or
47fe5d
copies files from one directory tree to another.
47fe5d
47fe5d
%package -n     rmt
47fe5d
Summary: Provides certain programs with access to remote tape devices
47fe5d
Group: Applications/Archiving
47fe5d
# we need to be greater than the version from 'dump' package
47fe5d
Epoch: 2
47fe5d
47fe5d
%description -n rmt
47fe5d
The rmt utility provides remote access to tape devices for programs
47fe5d
like dump (a filesystem backup program), restore (a program for
47fe5d
restoring files from a backup), and tar (an archiving program).
47fe5d
47fe5d
# "desired" alternative constants
47fe5d
%global ALT_NAME                pax
47fe5d
%global ALT_LINK                %{_bindir}/pax
47fe5d
%global ALT_SL1_NAME            pax-man
47fe5d
%global ALT_SL1_LINK            %{_mandir}/man1/pax.1.gz
47fe5d
47fe5d
# "local" alternative constants
47fe5d
%global ALT_PATH                %{_bindir}/spax
47fe5d
%global ALT_SL1_PATH            %{_mandir}/man1/spax.1.gz
47fe5d
47fe5d
%prep
47fe5d
%setup -q
47fe5d
%patch1 -p1 -b .newMake
47fe5d
%if %{WITH_SELINUX}
47fe5d
%patch2 -p1 -b .selinux
47fe5d
%endif
47fe5d
%patch3 -p1 -b .changewarnSegv
47fe5d
%patch4 -p1 -b .namesoverflow
47fe5d
%patch5 -p1 -b .references
47fe5d
%patch6 -p1 -b .selinux-segfault
47fe5d
%patch7 -p1 -b .crc
47fe5d
%patch8 -p1 -b .man-page-day
47fe5d
%patch9 -p1 -b .aarch64
47fe5d
%patch10 -p1 -b .rmt-access-rules
47fe5d
%patch11 -p1 -b .ssh-by-default
47fe5d
# FIXME: profiling isn't currently supported on aarch64 (should be in glibc-2.18)
47fe5d
%ifarch aarch64
47fe5d
%patch12 -p1 -b .aarch64
47fe5d
%endif
47fe5d
47fe5d
cp -a star/all.mk star/Makefile
47fe5d
47fe5d
star_recode()
47fe5d
{
47fe5d
    for i in $@; do
47fe5d
        iconv -f iso_8859-1 -t utf-8 $i > .tmp_file
47fe5d
        mv .tmp_file $i
47fe5d
    done
47fe5d
}
47fe5d
47fe5d
star_recode AN-1.5 AN-1.5.2 star/star.4
47fe5d
47fe5d
cp -a READMEs/README.linux .
47fe5d
47fe5d
for PLAT in %{arm} %{power64} aarch64 x86_64 s390 s390x sh3 sh4 sh4a sparcv9; do
47fe5d
    for AFILE in gcc cc; do
47fe5d
            [ ! -e RULES/${PLAT}-linux-${AFILE}.rul ] \
47fe5d
            && ln -s i586-linux-${AFILE}.rul RULES/${PLAT}-linux-${AFILE}.rul
47fe5d
    done
47fe5d
done
47fe5d
47fe5d
%build
47fe5d
export MAKEPROG=gmake
47fe5d
# Autoconfiscate
47fe5d
(cd autoconf; AC_MACRODIR=. AWK=gawk ./autoconf)
47fe5d
47fe5d
#make %%{?_smp_mflags} PARCH=%%{_target_cpu} CPPOPTX="-DNO_FSYNC" \
47fe5d
# ~~> enable debug by COPTX='-g3 -O0' LDOPTX='-g3 -O0'
47fe5d
make %{?_smp_mflags} PARCH=%{_target_cpu} \
47fe5d
COPTX="$RPM_OPT_FLAGS -DTRY_EXT2_FS" CC="%{__cc}" \
47fe5d
K_ARCH=%{_target_cpu} \
47fe5d
CONFFLAGS="%{_target_platform} --prefix=%{_prefix} \
47fe5d
    --exec-prefix=%{_exec_prefix} --bindir=%{_bindir} \
47fe5d
    --sbindir=%{_sbindir} --sysconfdir=%{_sysconfdir} \
47fe5d
    --datadir=%{_datadir} --includedir=%{_includedir} \
47fe5d
    --libdir=%{_libdir} --libexec=%{_libexecdir} \
47fe5d
    --localstatedir=%{_localstatedir} --sharedstatedir=%{_sharedstatedir} \
47fe5d
    --mandir=%{_mandir} --infodir=%{_infodir}" < /dev/null
47fe5d
47fe5d
%install
47fe5d
export MAKEPROG=gmake
47fe5d
mkdir -p ${RPM_BUILD_ROOT}%{_mandir}/man4
47fe5d
47fe5d
make install RPM_INSTALLDIR=${RPM_BUILD_ROOT} PARCH=%{_target_cpu} K_ARCH=%{_target_cpu} < /dev/null
47fe5d
47fe5d
ln -s star.1.gz ${RPM_BUILD_ROOT}%{_mandir}/man1/ustar.1
47fe5d
ln -s %{_sbindir}/rmt ${RPM_BUILD_ROOT}%{_sysconfdir}/rmt
47fe5d
47fe5d
# XXX Nuke unpackaged files.
47fe5d
( cd ${RPM_BUILD_ROOT}
47fe5d
  rm -f .%{_bindir}/mt
47fe5d
  rm -f .%{_bindir}/smt
47fe5d
  rm -f .%{_bindir}/tartest
47fe5d
  rm -f .%{_bindir}/tar
47fe5d
  rm -f .%{_bindir}/gnutar
47fe5d
  rm -f .%{_bindir}/star_fat
47fe5d
  rm -f .%{_bindir}/star_sym
47fe5d
  rm -f .%{_bindir}/suntar
47fe5d
  rm -rf .%{_docdir}/rmt
47fe5d
  rm -rf .%{_prefix}%{_sysconfdir}
47fe5d
  rm -rf .%{_prefix}/include
47fe5d
  rm -rf .%{_prefix}/lib # hard-wired intently
47fe5d
  rm -rf .%{_mandir}/man3
47fe5d
  rm -rf .%{_mandir}/man5/{makefiles,makerules}.5*
47fe5d
  rm -rf .%{_mandir}/man1/{tartest,gnutar,smt,mt,suntar,match}.1*
47fe5d
)
47fe5d
47fe5d
%clean
47fe5d
47fe5d
%global general_docs README AN* COPYING CDDL.Schily.txt TODO README.linux
47fe5d
47fe5d
%post -n spax
47fe5d
%{ALTERNATIVES} \
47fe5d
    --install   %{ALT_LINK}     %{ALT_NAME}     %{ALT_PATH}     66 \
47fe5d
    --slave     %{ALT_SL1_LINK} %{ALT_SL1_NAME} %{ALT_SL1_PATH}
47fe5d
47fe5d
%preun -n spax
47fe5d
if [ $1 -eq 0 ]; then
47fe5d
    # only on pure uninstall (not upgrade)
47fe5d
    %{ALTERNATIVES} --remove %{ALT_NAME} %{ALT_PATH}
47fe5d
fi
47fe5d
47fe5d
%files
47fe5d
%doc %{general_docs}
47fe5d
%{_bindir}/star
47fe5d
%{_bindir}/ustar
47fe5d
%{_mandir}/man1/star.1*
47fe5d
%{_mandir}/man1/ustar.1*
47fe5d
%{_mandir}/man5/star.5*
47fe5d
47fe5d
%files -n scpio
47fe5d
%doc %{general_docs}
47fe5d
%doc %{_mandir}/man1/scpio.1*
47fe5d
%{_bindir}/scpio
47fe5d
47fe5d
%files -n spax
47fe5d
%doc %{general_docs}
47fe5d
%doc %{_mandir}/man1/spax.1*
47fe5d
%{_bindir}/spax
47fe5d
%ghost %verify(not md5 size mode mtime) %{ALT_LINK}
47fe5d
%ghost %verify(not md5 size mode mtime) %{ALT_SL1_LINK}
47fe5d
47fe5d
%files -n rmt
47fe5d
%doc %{general_docs}
47fe5d
%{_sbindir}/rmt
47fe5d
%{_mandir}/man1/rmt.1*
47fe5d
%config %{_sysconfdir}/default/rmt
47fe5d
# This symlink is used by cpio, star, spax, scpio, .. thus it is needed.  Even
47fe5d
# if the cpio may be configured to use /sbin/rmt rather than /etc/rmt, star (and
47fe5d
# thus spax, ..) has the lookup path hardcoded to '/etc/rmt' (it means that even
47fe5d
# non rpm based systems will try to look for /etc/rmt).  And - the conclusion is
47fe5d
# - it does not make sense to fight against /etc/rmt symlink ATM (year 2013).
47fe5d
%{_sysconfdir}/rmt
47fe5d
47fe5d
%changelog
47fe5d
* Mon Aug 11 2014 Pavel Raiskup <praiskup@redhat.com> - 1.5.2-12
47fe5d
- enable build for ppc64le (#1125688)
47fe5d
47fe5d
* Fri Jan 24 2014 Daniel Mach <dmach@redhat.com> - 1.5.2-11
47fe5d
- Mass rebuild 2014-01-24
47fe5d
47fe5d
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 1.5.2-10
47fe5d
- Mass rebuild 2013-12-27
47fe5d
47fe5d
* Thu Nov 07 2013 Ondrej Vasik <ovasik@redhat.com> - 1.5.2-9
47fe5d
- disable profiling on aarch64 (#1027484)
47fe5d
47fe5d
* Thu Jun 20 2013 Pavel Raiskup <praiskup@redhat.com> - 1.5.2-7
47fe5d
- we should provide /etc/rmt symlink for a while (related to #968980)
47fe5d
- use the ssh as the default remote access method
47fe5d
47fe5d
* Thu May 30 2013 Pavel Raiskup <praiskup@redhat.com> - 1.5.2-6
47fe5d
- subpackage also 'rmt' (#968980)
47fe5d
47fe5d
* Fri May 24 2013 Pavel Raiskup <praiskup@redhat.com> - 1.5.2-5
47fe5d
- add missing ghost files (#960007)
47fe5d
- fix the upgrade path, sorry for the noise (#959917, #960007)
47fe5d
47fe5d
* Mon May 06 2013 Pavel Raiskup <praiskup@redhat.com> - 1.5.2-2
47fe5d
- package spax and scpio separately (#959917)
47fe5d
- fedora-review fixes, unapplied patch
47fe5d
- make the spax to be pax alternative (#960007)
47fe5d
47fe5d
* Wed Apr 10 2013 Pavel Raiskup <praiskup@redhat.com> - 1.5.2-1
47fe5d
- rebase to most up2date upstream tarball, remove patches already upstream, fix
47fe5d
  code movements in patches (#928758)
47fe5d
- fix man-page-day objections (private #948866)
47fe5d
- fix the build for aarch64 (#926571)
47fe5d
47fe5d
* Thu Mar 21 2013 Pavel Raiskup <praiskup@redhat.com> - 1.5.1-12
47fe5d
- package also the 'scpio' utility (#771926)
47fe5d
47fe5d
* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5.1-11
47fe5d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
47fe5d
47fe5d
* Thu Oct 18 2012 Pavel Raiskup <praiskup@redhat.com> - 1.5.1-10
47fe5d
- do not crash during extracting if extended attributes are not set on all
47fe5d
  archived files (#861848)
47fe5d
- note in man page that H=crc format uses Sum32 algorithm (FIPS refuses CRC)
47fe5d
47fe5d
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5.1-9
47fe5d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
47fe5d
47fe5d
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5.1-8
47fe5d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
47fe5d
47fe5d
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5.1-7
47fe5d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
47fe5d
47fe5d
* Tue Jan 04 2011 Ondrej Vasik <ovasik@redhat.com> 1.5.1-6
47fe5d
- fix segfault with multivol option due to signedness(#666015)
47fe5d
47fe5d
* Wed Sep 29 2010 jkeating - 1.5.1-5
47fe5d
- Rebuilt for gcc bug 634757
47fe5d
47fe5d
* Tue Sep 14 2010 Ondrej Vasik <ovasik@redhat.com> 1.5.1-4
47fe5d
- fix another instance of buffer overflow for files with
47fe5d
  long names(#632384)
47fe5d
47fe5d
* Tue Aug 17 2010 Ondrej Vasik <ovasik@redhat.com> 1.5.1-3
47fe5d
- Fix some invalid manpage references (#624612)
47fe5d
- ship star.4 manpage with star format description
47fe5d
47fe5d
* Wed Feb 03 2010 Ondrej Vasik <ovasik@redhat.com> 1.5.1-2
47fe5d
- fix buffer overflow for files with names of length
47fe5d
  100 chars(#556664)
47fe5d
47fe5d
* Wed Jan 13 2010 Ondrej Vasik <ovasik@redhat.com> 1.5.1-1
47fe5d
- new upstream release 1.5.1
47fe5d
47fe5d
* Thu Aug 27 2009 Ondrej Vasik <ovasik@redhat.com> 1.5-8
47fe5d
- provide symlinked manpage for ustar
47fe5d
47fe5d
* Thu Aug 27 2009 Ondrej Vasik <ovasik@redhat.com> 1.5-7
47fe5d
- Merge review (#226434) changes: convert AN-1.5 to utf-8,
47fe5d
  spec file cosmetic/policy changes, ship README.linux in doc
47fe5d
47fe5d
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5-6
47fe5d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
47fe5d
47fe5d
* Sun May 10 2009 Ville Skyttä <ville.skytta at iki.fi> - 1.5-5
47fe5d
- Build with $RPM_OPT_FLAGS.
47fe5d
- Convert specfile to UTF-8.
47fe5d
47fe5d
* Wed Apr 08 2009 Ondrej Vasik <ovasik@redhat.com> 1.5-4
47fe5d
- fix build failure due to symbols conflicting
47fe5d
  with stdio(#494213)
47fe5d
47fe5d
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5-3
47fe5d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
47fe5d
47fe5d
* Wed Jan 28 2009 Ondrej Vasik <ovasik@redhat.com> 1.5-2
47fe5d
- remove names.c requirements from non-fat Makefiles,
47fe5d
  do not ship names.c (#255261 for details)
47fe5d
47fe5d
* Tue Jan 27 2009 Ondrej Vasik <ovasik@redhat.com> 1.5-1
47fe5d
- use final instead of beta
47fe5d
- ship missing names.c separately
47fe5d
- enable optimalization again
47fe5d
47fe5d
* Wed Dec 03 2008 Ondrej Vasik <ovasik@redhat.com> 1.5a89-1
47fe5d
- update to latest upstream release
47fe5d
47fe5d
* Fri Jun 06 2008 Dennis Gilmore <dennis@ausil.us> 1.5a84-6
47fe5d
- add sparcv9 support
47fe5d
47fe5d
* Mon May 12 2008 Peter Vrabec <pvrabec@redhat.com> 1.5a84-5
47fe5d
- add super-H(sh3,4) architecture support (#442883)
47fe5d
47fe5d
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.5a84-4
47fe5d
- Autorebuild for GCC 4.3
47fe5d
47fe5d
* Fri Aug 31 2007 Dan Kopecek <dkopecek@redhat.com> 1.5a84-3
47fe5d
- added -O0 to COPTX (CFLAGS) (see #255261)
47fe5d
47fe5d
* Mon Aug 27 2007 Peter Vrabec <pvrabec@redhat.com> 1.5a84-2
47fe5d
- fix segfault of data-change-warn option (#255261),
47fe5d
  patch from dkopecek@redhat.com
47fe5d
47fe5d
* Fri Aug 24 2007 Peter Vrabec <pvrabec@redhat.com> 1.5a84-1
47fe5d
- new upstream release with CVE-2007-4134 fix
47fe5d
47fe5d
* Sun Jun 24 2007 Peter Vrabec <pvrabec@redhat.com> 1.5a76-3
47fe5d
- build star on ARM platforms (#245465)
47fe5d
47fe5d
* Mon Jan 29 2007 Peter Vrabec <pvrabec@redhat.com> 1.5a76-2
47fe5d
- fix buildreq. and rebuild
47fe5d
47fe5d
* Thu Jan 18 2007 Jan Cholasta <grubber.x@gmail.com> 1.5a76-1
47fe5d
- upgrade
47fe5d
47fe5d
* Tue Aug 08 2006 Peter Vrabec <pvrabec@redhat.com> 1.5a75-1
47fe5d
- upgrade
47fe5d
47fe5d
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1.5a74-3.1
47fe5d
- rebuild
47fe5d
47fe5d
* Tue Jun 13 2006 Peter Vrabec <pvrabec@redhat.com> 1.5a74-3
47fe5d
- use autoconf provided by star
47fe5d
47fe5d
* Fri Jun 02 2006 Peter Vrabec <pvrabec@redhat.com> 1.5a74-2
47fe5d
- update tarball
47fe5d
47fe5d
* Mon Apr 24 2006 Peter Vrabec <pvrabec@redhat.com> 1.5a74-1
47fe5d
- upgrade
47fe5d
47fe5d
* Wed Mar 22 2006 Peter Vrabec <pvrabec@redhat.com> 1.5a73-1
47fe5d
- upgrade
47fe5d
47fe5d
* Wed Mar 01 2006 Peter Vrabec <pvrabec@redhat.com> 1.5a72-1
47fe5d
- upgrade
47fe5d
47fe5d
* Wed Feb 22 2006 Peter Vrabec <pvrabec@redhat.com> 1.5a71-1
47fe5d
- upgrade
47fe5d
47fe5d
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
47fe5d
- rebuilt
47fe5d
47fe5d
* Tue Nov 08 2005 Peter Vrabec <pvrabec@redhat.com> 1.5a69-1
47fe5d
- upgrade
47fe5d
47fe5d
* Mon Oct 10 2005 Peter Vrabec <pvrabec@redhat.com> 1.5a68-1
47fe5d
- upgrade
47fe5d
47fe5d
* Thu Sep 22 2005 Peter Vrabec <pvrabec@redhat.com> 1.5a67-1
47fe5d
- upgrade
47fe5d
47fe5d
* Fri Aug 26 2005 Peter Vrabec <pvrabec@redhat.com> 1.5a65-1
47fe5d
- upgrade 1.5a65-1 made by Horst H. von Brand <vonbrand@inf.utfsm.cl>
47fe5d
- Source URL changed, no homepage now
47fe5d
- License changed from GPL to CDDL 1.0
47fe5d
- Define MAKEPROG=gmake like the Gmake.linux script does
47fe5d
- Disable fat binary as per star/Makefile, update star-1.5-selinux.patch for
47fe5d
  the various *.mk files used in that case
47fe5d
- Axe /usr/share/man/man1/match.1*, /usr/etc/default/rmt too
47fe5d
- Explicit listing in %%files, allow for compressed or plain manpages
47fe5d
47fe5d
* Fri Aug 26 2005 Peter Vrabec <pvrabec@redhat.com>
47fe5d
- do not remove star_fat
47fe5d
47fe5d
* Fri Aug 12 2005 Peter Vrabec <pvrabec@redhat.com>
47fe5d
- upgrade  1.5a64-1
47fe5d
47fe5d
* Thu Aug 04 2005 Karsten Hopp <karsten@redhat.de> 1.5a54-3
47fe5d
- remove /usr/bin/tar symlink
47fe5d
47fe5d
* Fri Mar 18 2005 Peter Vrabec <pvrabec@redhat.com>
47fe5d
- rebuilt
47fe5d
47fe5d
* Mon Nov 22 2004 Peter Vrabec <pvrabec@redhat.com>
47fe5d
- upgrade 1.5a54-1 & rebuild
47fe5d
47fe5d
* Mon Oct 25 2004 Peter Vrabec <pvrabec@redhat.com>
47fe5d
- fix dependencie (#123770)
47fe5d
47fe5d
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
47fe5d
- rebuilt
47fe5d
47fe5d
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
47fe5d
- rebuilt
47fe5d
47fe5d
* Mon Jan 26 2004 Dan Walsh <dwalsh@redhat.com> 1.5a25-4
47fe5d
- Fix call to is_selinux_enabled
47fe5d
47fe5d
* Mon Jan 19 2004 Jeff Johnson <jbj@jbj.org> 1.5.a25-3
47fe5d
- fix: (!(x & 1)) rather than (!x & 1) patch.
47fe5d
47fe5d
* Wed Sep 24 2003 Dan Walsh <dwalsh@redhat.com> 1.5a25-2
47fe5d
- turn selinux off
47fe5d
47fe5d
* Tue Sep 16 2003 Dan Walsh <dwalsh@redhat.com> 1.5a25-1.sel
47fe5d
- turn selinux on
47fe5d
47fe5d
* Fri Sep 5 2003 Dan Walsh <dwalsh@redhat.com> 1.5a18-5
47fe5d
- turn selinux off
47fe5d
47fe5d
* Mon Aug 25 2003 Dan Walsh <dwalsh@redhat.com> 1.5a18-3
47fe5d
- Add SELinux modification to handle setting security context before creation.
47fe5d
47fe5d
* Thu Aug 21 2003 Dan Walsh <dwalsh@redhat.com> 1.5a18-2
47fe5d
- Fix free_xattr bug
47fe5d
47fe5d
* Wed Jul 16 2003 Dan Walsh <dwalsh@redhat.com> 1.5a18-1
47fe5d
- Add SELinux support
47fe5d
47fe5d
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
47fe5d
- rebuilt
47fe5d
47fe5d
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
47fe5d
- rebuilt
47fe5d
47fe5d
* Tue Nov 12 2002 Elliot Lee <sopwith@redhat.com> 1.5a08-3
47fe5d
- Build when uname -m != _target_platform
47fe5d
- Use _smp_mflags
47fe5d
- Build on x86_64
47fe5d
47fe5d
* Mon Nov 11 2002 Jeff Johnson <jbj@redhat.com> 1.5a08-2
47fe5d
- update to 1.5a08.
47fe5d
- build from cvs.
47fe5d
47fe5d
* Wed Jun 26 2002 Trond Eivind Glomsrød <teg@redhat.com> 1.5a04
47fe5d
- Initial build. Alpha version - it's needed for ACLs.