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