d47cab
Summary: The basic directory layout for a Linux system
d47cab
Name: filesystem
d47cab
Version: 3.8
d47cab
Release: 2%{?dist}
d47cab
License: Public Domain
d47cab
URL: https://pagure.io/filesystem
d47cab
Group: System Environment/Base
d47cab
Source1: https://pagure.io/filesystem/raw/master/f/lang-exceptions
d47cab
Source2: iso_639.sed
d47cab
Source3: iso_3166.sed
d47cab
BuildRequires: iso-codes
d47cab
Requires(pre): setup
d47cab
d47cab
%description
d47cab
The filesystem package is one of the basic packages that is installed
d47cab
on a Linux system. Filesystem contains the basic directory layout
d47cab
for a Linux operating system, including the correct permissions for
d47cab
the directories.
d47cab
d47cab
%package content
d47cab
Summary: Directory ownership content of the filesystem package
d47cab
License: Public Domain
d47cab
d47cab
%description content
d47cab
This subpackage of filesystem package contains just the file with
d47cab
the directories owned by the filesystem package. This can be used
d47cab
during the build process instead of calling rpm -ql filesystem.
d47cab
d47cab
d47cab
%prep
d47cab
rm -f $RPM_BUILD_DIR/filelist
d47cab
d47cab
%build
d47cab
d47cab
%install
d47cab
rm -rf %{buildroot}
d47cab
mkdir %{buildroot}
d47cab
install -p -c -m755 %SOURCE2 %{buildroot}/iso_639.sed
d47cab
install -p -c -m755 %SOURCE3 %{buildroot}/iso_3166.sed
d47cab
d47cab
cd %{buildroot}
d47cab
d47cab
mkdir -p boot dev \
d47cab
        etc/{X11/{applnk,fontpath.d},xdg/autostart,opt,pm/{config.d,power.d,sleep.d},xinetd.d,skel,sysconfig,pki,bash_completion.d} \
d47cab
        home media mnt opt proc root run srv sys tmp \
d47cab
        usr/{bin,games,include,%{_lib}/{games,sse2,tls,X11,pm-utils/{module.d,power.d,sleep.d}},lib/{debug/{.dwz,usr},games,locale,modules,sysimage,sse2},libexec,local/{bin,etc,games,lib,%{_lib},sbin,src,share/{applications,man/man{1,2,3,4,5,6,7,8,9,n,1x,2x,3x,4x,5x,6x,7x,8x,9x},info},libexec,include,},sbin,share/{aclocal,appdata,applications,augeas/lenses,backgrounds,bash-completion{,/completions,/helpers},desktop-directories,dict,doc,empty,games,gnome,help,icons,idl,info,licenses,man/man{1,2,3,4,5,6,7,8,9,n,1x,2x,3x,4x,5x,6x,7x,8x,9x,0p,1p,3p},metainfo,mime-info,misc,omf,pixmaps,sounds,themes,xsessions,X11,wayland-sessions},src,src/kernels,src/debug} \
d47cab
        var/{adm,empty,ftp,gopher,lib/{games,misc,rpm-state},local,log,nis,preserve,spool/{mail,lpd},tmp,db,cache,opt,games,yp}
d47cab
d47cab
#do not create the symlink atm.
d47cab
#ln -snf etc/sysconfig etc/default
d47cab
ln -snf ../var/tmp usr/tmp
d47cab
ln -snf spool/mail var/mail
d47cab
ln -snf usr/bin bin
d47cab
ln -snf usr/sbin sbin
d47cab
ln -snf usr/lib lib
d47cab
ln -snf usr/%{_lib} %{_lib}
d47cab
ln -snf ../run var/run
d47cab
ln -snf ../run/lock var/lock
d47cab
ln -snf usr/bin usr/lib/debug/bin
d47cab
ln -snf usr/lib usr/lib/debug/lib
d47cab
ln -snf usr/%{_lib} usr/lib/debug/%{_lib}
d47cab
ln -snf ../.dwz usr/lib/debug/usr/.dwz
d47cab
ln -snf usr/sbin usr/lib/debug/sbin
d47cab
d47cab
sed -n -f %{buildroot}/iso_639.sed /usr/share/xml/iso-codes/iso_639.xml \
d47cab
  >%{buildroot}/iso_639.tab
d47cab
sed -n -f %{buildroot}/iso_3166.sed /usr/share/xml/iso-codes/iso_3166.xml \
d47cab
  >%{buildroot}/iso_3166.tab
d47cab
d47cab
grep -v "^$" %{buildroot}/iso_639.tab | grep -v "^#" | while read a b c d ; do
d47cab
    [[ "$d" =~ "^Reserved" ]] && continue
d47cab
    [[ "$d" =~ "^No linguistic" ]] && continue
d47cab
d47cab
    locale=$c
d47cab
    if [ "$locale" = "XX" ]; then
d47cab
        locale=$b
d47cab
    fi
d47cab
    echo "%lang(${locale})	/usr/share/locale/${locale}" >> $RPM_BUILD_DIR/filelist
d47cab
    echo "%lang(${locale}) %ghost %config(missingok) /usr/share/man/${locale}" >>$RPM_BUILD_DIR/filelist
d47cab
done
d47cab
cat %{SOURCE1} | grep -v "^#" | grep -v "^$" | while read loc ; do
d47cab
    locale=$loc
d47cab
    locality=
d47cab
    special=
d47cab
    [[ "$locale" =~ "@" ]] && locale=${locale%%%%@*}
d47cab
    [[ "$locale" =~ "_" ]] && locality=${locale##*_}
d47cab
    [[ "$locality" =~ "." ]] && locality=${locality%%%%.*}
d47cab
    [[ "$loc" =~ "_" ]] || [[ "$loc" =~ "@" ]] || special=$loc
d47cab
d47cab
    # If the locality is not official, skip it
d47cab
    if [ -n "$locality" ]; then
d47cab
        grep -q "^$locality" %{buildroot}/iso_3166.tab || continue
d47cab
    fi
d47cab
    # If the locale is not official and not special, skip it
d47cab
    if [ -z "$special" ]; then
d47cab
        egrep -q "[[:space:]]${locale%%_*}[[:space:]]" \
d47cab
           %{buildroot}/iso_639.tab || continue
d47cab
    fi
d47cab
    echo "%lang(${locale})	/usr/share/locale/${loc}" >> $RPM_BUILD_DIR/filelist
d47cab
    echo "%lang(${locale})  %ghost %config(missingok) /usr/share/man/${loc}" >> $RPM_BUILD_DIR/filelist
d47cab
done
d47cab
d47cab
rm -f %{buildroot}/iso_639.tab
d47cab
rm -f %{buildroot}/iso_639.sed
d47cab
rm -f %{buildroot}/iso_3166.tab
d47cab
rm -f %{buildroot}/iso_3166.sed
d47cab
d47cab
cat $RPM_BUILD_DIR/filelist | grep "locale" | while read a b ; do
d47cab
    mkdir -p -m 755 %{buildroot}/$b/LC_MESSAGES
d47cab
done
d47cab
d47cab
cat $RPM_BUILD_DIR/filelist | grep "/share/man" | while read a b c d; do
d47cab
    mkdir -p -m 755 %{buildroot}/$d/man{1,2,3,4,5,6,7,8,9,n,1x,2x,3x,4x,5x,6x,7x,8x,9x,0p,1p,3p}
d47cab
done
d47cab
d47cab
for i in man{1,2,3,4,5,6,7,8,9,n,1x,2x,3x,4x,5x,6x,7x,8x,9x,0p,1p,3p}; do
d47cab
   echo "/usr/share/man/$i" >>$RPM_BUILD_DIR/filelist
d47cab
done
d47cab
d47cab
mkdir -p %{buildroot}/usr/share/filesystem
d47cab
#find all dirs in the buildroot owned by filesystem and store them
d47cab
find %{buildroot} -mindepth 0 | sed -e 's|%{buildroot}|/|' -e 's|//|/|' \
d47cab
 | LC_ALL=C sort | grep -v filesystem >%{buildroot}%{_datadir}/filesystem/paths
d47cab
d47cab
%clean
d47cab
rm -rf %{buildroot}
d47cab
d47cab
%pretrans -p <lua>
d47cab
--# If we are running in pretrans in a fresh root, there is no /usr and
d47cab
--# symlinks. We cannot be sure, to be the very first rpm in the
d47cab
--# transaction list. Let's create the needed base directories and symlinks
d47cab
--# here, to place the files from other packages in the right locations.
d47cab
--# When our rpm is unpacked by cpio, it will set all permissions and modes
d47cab
--# later.
d47cab
posix.mkdir("/usr")
d47cab
posix.mkdir("/usr/bin")
d47cab
posix.mkdir("/usr/sbin")
d47cab
posix.mkdir("/usr/lib")
d47cab
posix.mkdir("/usr/lib/debug")
d47cab
posix.mkdir("/usr/lib/debug/usr/")
d47cab
posix.mkdir("/usr/lib/debug/usr/bin")
d47cab
posix.mkdir("/usr/lib/debug/usr/sbin")
d47cab
posix.mkdir("/usr/lib/debug/usr/lib")
d47cab
posix.mkdir("/usr/lib/debug/usr/%{_lib}")
d47cab
posix.mkdir("/usr/%{_lib}")
d47cab
posix.symlink("usr/bin", "/bin")
d47cab
posix.symlink("usr/sbin", "/sbin")
d47cab
posix.symlink("usr/lib", "/lib")
d47cab
posix.symlink("usr/bin", "/usr/lib/debug/bin")
d47cab
posix.symlink("usr/lib", "/usr/lib/debug/lib")
d47cab
posix.symlink("usr/%{_lib}", "/usr/lib/debug/%{_lib}")
d47cab
posix.symlink("../.dwz", "/usr/lib/debug/usr/.dwz")
d47cab
posix.symlink("usr/sbin", "/usr/lib/debug/sbin")
d47cab
posix.symlink("usr/%{_lib}", "/%{_lib}")
d47cab
posix.mkdir("/run")
d47cab
st = posix.stat("/media")
d47cab
if st and st.type == "link" then
d47cab
  os.remove("/media")
d47cab
end
d47cab
posix.mkdir("/var")
d47cab
posix.symlink("../run", "/var/run")
d47cab
posix.symlink("../run/lock", "/var/lock")
d47cab
return 0
d47cab
d47cab
%posttrans
d47cab
#we need to restorecon on some dirs created in %pretrans or by other packages
d47cab
restorecon /var 2>/dev/null >/dev/null || :
d47cab
restorecon /var/run 2>/dev/null >/dev/null || :
d47cab
restorecon /var/lock 2>/dev/null >/dev/null || :
d47cab
restorecon -r /usr/lib/debug/ 2>/dev/null >/dev/null || :
d47cab
restorecon /sys 2>/dev/null >/dev/null || :
d47cab
restorecon /boot 2>/dev/null >/dev/null || :
d47cab
restorecon /proc 2>/dev/null >/dev/null || :
d47cab
restorecon /dev 2>/dev/null >/dev/null || :
d47cab
restorecon /media 2>/dev/null >/dev/null || :
d47cab
d47cab
%files content
d47cab
%dir %{_datadir}/filesystem
d47cab
%{_datadir}/filesystem/paths
d47cab
d47cab
%files -f filelist
d47cab
%defattr(0755,root,root,0755)
d47cab
%dir %attr(555,root,root) /
d47cab
/bin
d47cab
%attr(555,root,root) /boot
d47cab
/dev
d47cab
%dir /etc
d47cab
/etc/X11
d47cab
/etc/xdg
d47cab
/etc/opt
d47cab
/etc/pm
d47cab
/etc/xinetd.d
d47cab
/etc/skel
d47cab
/etc/sysconfig
d47cab
/etc/pki
d47cab
/etc/bash_completion.d/
d47cab
/home
d47cab
/lib
d47cab
%ifarch x86_64 ppc64 sparc64 s390x aarch64 ppc64le mips64 mips64el riscv64
d47cab
/%{_lib}
d47cab
%endif
d47cab
/media
d47cab
%dir /mnt
d47cab
%dir /opt
d47cab
%attr(555,root,root) /proc
d47cab
%attr(550,root,root) /root
d47cab
/run
d47cab
/sbin
d47cab
/srv
d47cab
%attr(555,root,root) /sys
d47cab
%attr(1777,root,root) /tmp
d47cab
%dir /usr
d47cab
%attr(555,root,root) /usr/bin
d47cab
/usr/games
d47cab
/usr/include
d47cab
%dir %attr(555,root,root) /usr/lib
d47cab
%dir /usr/lib/sysimage
d47cab
%dir /usr/lib/locale
d47cab
%dir /usr/lib/modules
d47cab
%dir /usr/lib/debug
d47cab
%dir /usr/lib/debug/.dwz
d47cab
%ghost /usr/lib/debug/bin
d47cab
%ghost /usr/lib/debug/lib
d47cab
%ghost /usr/lib/debug/%{_lib}
d47cab
%ghost /usr/lib/debug/usr
d47cab
%ghost /usr/lib/debug/usr/bin
d47cab
%ghost /usr/lib/debug/usr/sbin
d47cab
%ghost /usr/lib/debug/usr/lib
d47cab
%ghost /usr/lib/debug/usr/%{_lib}
d47cab
%ghost /usr/lib/debug/usr/.dwz
d47cab
%ghost /usr/lib/debug/sbin
d47cab
%attr(555,root,root) /usr/lib/games
d47cab
%attr(555,root,root) /usr/lib/sse2
d47cab
%ifarch x86_64 ppc64 sparc64 s390x aarch64 ppc64le mips64 mips64el riscv64
d47cab
%attr(555,root,root) /usr/%{_lib}
d47cab
%else
d47cab
%attr(555,root,root) /usr/lib/tls
d47cab
%attr(555,root,root) /usr/lib/X11
d47cab
%attr(555,root,root) /usr/lib/pm-utils
d47cab
%endif
d47cab
/usr/libexec
d47cab
/usr/local
d47cab
%attr(555,root,root) /usr/sbin
d47cab
%dir /usr/share
d47cab
/usr/share/aclocal
d47cab
/usr/share/appdata
d47cab
/usr/share/applications
d47cab
/usr/share/augeas
d47cab
/usr/share/backgrounds
d47cab
%dir /usr/share/bash-completion
d47cab
/usr/share/bash-completion/completions
d47cab
/usr/share/bash-completion/helpers
d47cab
/usr/share/desktop-directories
d47cab
/usr/share/dict
d47cab
/usr/share/doc
d47cab
%attr(555,root,root) %dir /usr/share/empty
d47cab
/usr/share/games
d47cab
/usr/share/gnome
d47cab
/usr/share/help
d47cab
/usr/share/icons
d47cab
/usr/share/idl
d47cab
/usr/share/info
d47cab
%dir /usr/share/licenses
d47cab
%dir /usr/share/locale
d47cab
%dir /usr/share/man
d47cab
/usr/share/metainfo
d47cab
/usr/share/mime-info
d47cab
/usr/share/misc
d47cab
/usr/share/omf
d47cab
/usr/share/pixmaps
d47cab
/usr/share/sounds
d47cab
/usr/share/themes
d47cab
/usr/share/xsessions
d47cab
/usr/share/X11
d47cab
/usr/share/wayland-sessions
d47cab
/usr/src
d47cab
/usr/tmp
d47cab
%dir /var
d47cab
/var/adm
d47cab
/var/cache
d47cab
/var/db
d47cab
/var/empty
d47cab
/var/ftp
d47cab
/var/games
d47cab
/var/gopher
d47cab
/var/lib
d47cab
/var/local
d47cab
%ghost /var/lock
d47cab
/var/log
d47cab
/var/mail
d47cab
/var/nis
d47cab
/var/opt
d47cab
/var/preserve
d47cab
%ghost /var/run
d47cab
%dir /var/spool
d47cab
%attr(755,root,root) /var/spool/lpd
d47cab
%attr(775,root,mail) /var/spool/mail
d47cab
%attr(1777,root,root) /var/tmp
d47cab
/var/yp
d47cab
d47cab
%changelog
d47cab
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.8-2
d47cab
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
d47cab
d47cab
* Sat Jan 13 2018 Ondrej Vasik <ovasik@redhat.com> - 3.8-1
d47cab
- drop the ownership of ghostscript dirs (#1533992)
d47cab
d47cab
* Thu Dec 14 2017 Ondrej Vasik <ovasik@redhat.com> - 3.7-1
d47cab
- own /usr/share/locale and /usr/lib/modules
d47cab
- own /usr/lib/sysimage
d47cab
- improve filesystem content file to include symlinks and rootdir
d47cab
d47cab
* Mon Nov 20 2017 Ondrej Vasik <ovasik@redhat.com> - 3.6-1
d47cab
- own /usr/share/bash-completion{,/completions,/helpers} (#1504616)
d47cab
- create and own /usr/lib/debug/.dwz dir to prevent
d47cab
  dangling symlink (#1508610)
d47cab
d47cab
* Thu Oct 12 2017 Ondrej Vasik <ovasik@redhat.com> - 3.5-1
d47cab
- improve the content file creation
d47cab
d47cab
* Thu Oct 05 2017 Ondrej Vasik <ovasik@redhat.com> - 3.4-1
d47cab
- create and own file with the content of filesystem package
d47cab
d47cab
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.3-3
d47cab
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
d47cab
d47cab
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.3-2
d47cab
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
d47cab
d47cab
* Tue Mar 21 2017 Ondrej Vasik <ovasik@redhat.com> - 3.3-1
d47cab
- Move to Pagure.io
d47cab
- add ownership for /usr/share/metainfo/ (#1434008)
d47cab
d47cab
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.2-40
d47cab
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
d47cab
d47cab
* Mon Jan 02 2017 Ondrej Vasik <ovasik@redhat.com> - 3.2-39
d47cab
- refresh lang-exceptions list - /usr/share/locale ownerships
d47cab
  (#1409402, #1313421)
d47cab
- add ownership for /usr/share/help (#1357974)
d47cab
d47cab
* Tue Oct 11 2016 Richard W.M. Jones <rjones@redhat.com> - 3.2-38
d47cab
- Add riscv64 to list of 64 bit architectures.
d47cab
d47cab
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 3.2-37
d47cab
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
d47cab
d47cab
* Fri Jan 29 2016 Ondrej Vasik <ovasik@redhat.com> - 3.2-36
d47cab
- own /var/ftp - homedir for system default ftp user (#1302711)
d47cab
d47cab
* Fri Sep 04 2015 Michal Toman <mtoman@fedoraproject.org> - 3.2-35
d47cab
- add mips64 and mips64el to the 64-bit arches
d47cab
d47cab
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.2-34
d47cab
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
d47cab
d47cab
* Mon May 25 2015 Ondrej Vasik <ovasik@redhat.com> - 3.2-33
d47cab
- prevent potentially broken symlinks in debuginfo dirs (#1195641)
d47cab
d47cab
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.2-32
d47cab
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
d47cab
d47cab
* Mon Aug 11 2014 Ondrej Vasik <ovasik@redhat.com> - 3.2-31
d47cab
- revert /media -> /run/media change - as it is more fragile
d47cab
  than useful (#965918)
d47cab
d47cab
* Wed Jul 30 2014 Ondrej Vasik <ovasik@redhat.com> - 3.2-30
d47cab
- fix wrong redirection of restorecon stderr (#1124623)
d47cab
d47cab
* Tue Jul 29 2014 Ondrej Vasik <ovasik@redhat.com> - 3.2-29
d47cab
- rename /media directory when replacing with symlinks
d47cab
  to prevent potential data loss
d47cab
d47cab
* Mon Jul 28 2014 Ondrej Vasik <ovasik@redhat.com> - 3.2-28
d47cab
- add ownership for /usr/share/licenses (#1121416)
d47cab
- have /media as symlink to /run/media (#965918)
d47cab
d47cab
* Mon Jul 14 2014 Ondrej Vasik <ovasik@redhat.com> - 3.2-27
d47cab
- add ownership for /usr/share/wayland-sessions (#1022423)
d47cab
d47cab
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.2-26
d47cab
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
d47cab
d47cab
* Thu Mar 13 2014 Ondrej Vasik <ovasik@redhat.com> - 3.2-25
d47cab
- /var/run has incorrect selinux context after installation
d47cab
  to disk image (#1034922)
d47cab
d47cab
* Fri Jan 10 2014 Ondrej Vasik <ovasik@redhat.com> - 3.2-24
d47cab
- refresh the list of lang-exceptions from rawhide repo
d47cab
d47cab
* Fri Jan 10 2014 Ondrej Vasik <ovasik@redhat.com> - 3.2-23
d47cab
- add ppc64 little endian to the 64-bit arches(#1051191)
d47cab
- add bn_BD to lang exceptions (#1048327)
d47cab
d47cab
* Wed Dec 04 2013 Ondrej Vasik <ovasik@redhat.com> - 3.2-22
d47cab
- change the permissions of the /sys directory to 555
d47cab
  to match the kernel (#1037862)
d47cab
d47cab
* Mon Nov 18 2013 Ondrej Vasik <ovasik@redhat.com> - 3.2-21
d47cab
- add ownership for the /usr/lib/debug subdirs(#1031136)
d47cab
d47cab
* Wed Sep 11 2013 Richard Hughes <rhughes@redhat.com> - 3.2-20
d47cab
- Add /usr/share/appdata
d47cab
d47cab
* Wed Aug 07 2013 Ondrej Vasik <ovasik@redhat.com> - 3.2-19
d47cab
- drop the ownership of /usr/etc
d47cab
d47cab
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.2-18
d47cab
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
d47cab
d47cab
* Sun Jun 30 2013 Ondrej Vasik <ovasik@redhat.com> - 3.2-17
d47cab
- .dwz symlink is needed as well (#974130)
d47cab
d47cab
* Wed Jun 20 2013 Ondrej Vasik <ovasik@redhat.com> - 3.2-16
d47cab
- /var/run and /var/lock can't be in payload for some reason
d47cab
d47cab
* Wed Jun 19 2013 Ondrej Vasik <ovasik@redhat.com> - 3.2-15
d47cab
- handle bin/lib/lib64 symlinks in /usr/lib/debug (#974130)
d47cab
d47cab
* Tue Jun 18 2013 Kay Sievers <kay@redhat.com> - 3.2-14
d47cab
- fix yum installroot ending up with directories in /var
d47cab
  instead of the expected symlinks to /run
d47cab
- ship /var/run and /var/lock as plain symlinks
d47cab
- do not handle /var/lock/subsys, it is always on tmpfs
d47cab
- create all symlinked directories and their targets
d47cab
  in pretrans to make sure other packages install into
d47cab
  the right place, even if filesystem.rpm is not the
d47cab
  first package installed in the transaction
d47cab
d47cab
* Sat May 11 2013 Ondrej Vasik <ovasik@redhat.com> 3.2-13
d47cab
- move /var/spool/uucp to uucp package (#961952)
d47cab
d47cab
* Thu Apr 18 2013 Ondrej Vasik <ovasik@redhat.com> 3.2-12
d47cab
- remove the rpmlib(X-CheckUnifiedSystemdir) requirement
d47cab
  hack - no longer required
d47cab
d47cab
* Mon Apr 08 2013 Ondrej Vasik <ovasik@redhat.com> 3.2-11
d47cab
- do not handle AArch64 differently (#917804)
d47cab
d47cab
* Mon Mar 18 2013 Ondrej Vasik <ovasik@redhat.com> 3.2-9
d47cab
- revert the change for previous build, breaking koji
d47cab
  builds
d47cab
d47cab
* Mon Mar 18 2013 Ondrej Vasik <ovasik@redhat.com> 3.2-8
d47cab
- ship /var/run and /var/lock as symlinks in payload,
d47cab
  don't handle them as part of post scriptlet (#919374)
d47cab
d47cab
* Tue Mar 05 2013 Ondrej Vasik <ovasik@redhat.com> 3.2-7
d47cab
- add support for AArch64 architecture (#917804)
d47cab
d47cab
* Wed Feb 27 2013 Ondrej Vasik <ovasik@redhat.com> 3.2-6
d47cab
- fix directory listed twice errors on 32bit secondary arches
d47cab
  (#915947)
d47cab
d47cab
* Thu Feb 21 2013 Ondrej Vasik <ovasik@redhat.com> 3.2-5
d47cab
- change the attributes of /usr/lib/debug to 0755 (#911831)
d47cab
d47cab
* Tue Feb 19 2013 Ondrej Vasik <ovasik@redhat.com> 3.2-4
d47cab
- own /usr/lib/debug for consistency (#911831)
d47cab
d47cab
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.2-3
d47cab
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
d47cab
d47cab
* Mon Oct 29 2012 Ondrej Vasik <ovasik@redhat.com> 3.2-2
d47cab
- defer the /etc/default ownership to resolve the build tree conflicts
d47cab
d47cab
* Sat Oct 27 2012 Ondrej Vasik <ovasik@redhat.com> 3.2-1
d47cab
- own /etc/bash_completion.d (#870193)
d47cab
- own /etc/default and create it as symlink do /etc/sysconfig (#797316)
d47cab
d47cab
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.1-2
d47cab
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
d47cab
d47cab
* Thu Mar 29 2012 Ondrej Vasik <ovasik@redhat.com> 3.1-1
d47cab
- add brx and brx_IN from iso639-3 set to lang-exceptions
d47cab
  file (#806328)
d47cab
d47cab
* Fri Feb  3 2012 Kay Sievers <kay@redhat.com> 3-2
d47cab
- enable guard against unconverted /bin, /sbin, /lib*
d47cab
  directories in the filesystem
d47cab
d47cab
* Wed Jan 25 2012 Harald Hoyer <harald@redhat.com> 3-1
d47cab
- install everything in /usr
d47cab
  https://fedoraproject.org/wiki/Features/UsrMove
d47cab
d47cab
* Thu Jan 12 2012 Ondrej Vasik <ovasik@redhat.com>  2.4.46-1
d47cab
- own and create /var/lib/rpm-state (#771713)
d47cab
d47cab
* Fri Nov 11 2011 Ondrej Vasik <ovasik@redhat.com>  2.4.45-1
d47cab
- own and create /var/adm, /var/gopher and /var/spool/uucp
d47cab
  as these are homedirs for default legacy system accounts
d47cab
  (#752885)
d47cab
d47cab
* Fri Jul 29 2011 Ondrej Vasik <ovasik@redhat.com>  2.4.44-1
d47cab
- drop ownership of /selinux - moved to /sys/fs/selinux(#726528)
d47cab
d47cab
* Tue Jun 28 2011 Ondrej Vasik <ovasik@redhat.com>  2.4.43-1
d47cab
- add various languages to lang-exceptions(#620063)
d47cab
d47cab
* Wed May 18 2011 Ondrej Vasik <ovasik@redhat.com>  2.4.42-1
d47cab
- Pre: require setup again (#705443)
d47cab
d47cab
* Fri Apr 08 2011 Ondrej Vasik <ovasik@redhat.com>  2.4.41-1
d47cab
- drop filesystem.conf file (#694688)
d47cab
d47cab
* Tue Apr 05 2011 Ondrej Vasik <ovasik@redhat.com>  2.4.40-1
d47cab
- create /run/lock as 755 root:root (#693394)
d47cab
d47cab
* Thu Mar 31 2011 Ondrej Vasik <ovasik@redhat.com>  2.4.39-1
d47cab
- add /run to filesystem (#692124)
d47cab
- minor spec file cleanup
d47cab
d47cab
* Fri Feb 25 2011 Ondrej Vasik <ovasik@redhat.com>  2.4.38-1
d47cab
- do /var/lock/subsys directory systemd way via tmpfiles.d conf file
d47cab
  (#656586)
d47cab
d47cab
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org>
d47cab
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
d47cab
d47cab
* Tue Jan 18 2011 Adam Jackson <ajax@redhat.com> 2.4.37-1
d47cab
- Drop Prov/Obs: xorg-x11-filesystem and pm-utils-filesystem, both last seen
d47cab
  in Fedora 11.
d47cab
- Remove explicit BuildRoot.
d47cab
d47cab
* Fri Sep 25 2010 Ondrej Vasik <ovasik@redhat.com>  2.4.36-1
d47cab
- own /usr/lib/sse2 even on 64-bit (#636748)
d47cab
d47cab
* Mon Apr 19 2010 Ondrej Vasik <ovasik@redhat.com>  2.4.35-1
d47cab
- change permissions on /var/lock from 775 root:lock to
d47cab
  755 root:root (#581884)
d47cab
d47cab
* Thu Apr 08 2010 Ondrej Vasik <ovasik@redhat.com>  2.4.34-1
d47cab
- drop ownership for /mnt/{floppy,cdrom} subdirs(#173854)
d47cab
d47cab
* Thu Mar 04 2010 Ondrej Vasik <ovasik@redhat.com>  2.4.33-1
d47cab
- do own /usr/share/aclocal (#533962)
d47cab
d47cab
* Tue Mar 02 2010 Ondrej Vasik <ovasik@redhat.com>  2.4.32-1
d47cab
- added sr@ijekavian and sr@ijekavianlatin into lang
d47cab
  exceptions
d47cab
d47cab
* Thu Oct 01 2009 Ondrej Vasik <ovasik@redhat.com>  2.4.31-1
d47cab
- added zh_CN.GB2312 to lang exceptions(#487568)
d47cab
d47cab
* Tue Aug 25 2009 Karsten Hopp <karsten@redhat.com> 2.4.30-2
d47cab
- fix typo in Provides
d47cab
d47cab
* Mon Aug 17 2009 Ondrej Vasik <ovasik@redhat.com> 2.4.30-1
d47cab
- adjust directory rights for usage of capabilities(#517575)
d47cab
d47cab
* Mon Aug 10 2009 Ondrej Vasik <ovasik@redhat.com> 2.4.29-1
d47cab
- iso_codes package no longer provides tab files, do generate
d47cab
  them on fly with sed (thanks D. Tardon)
d47cab
d47cab
* Wed Aug 05 2009 Ondrej Vasik <ovasik@redhat.com> 2.4.28-1
d47cab
- Provide/obsolete pm-utils-filesystem, own dirs for pm-utils
d47cab
  hooks(#515362)
d47cab
- Do own man sections for /usr/share/man/<locale> dirs (#220265)
d47cab
- Do own /usr/share/sounds (#515485)
d47cab
d47cab
* Tue Aug 04 2009 Adam Jackson <ajax@redhat.com> 2.4.27-1
d47cab
- Prov/Obs: xorg-x11-filesystem
d47cab
d47cab
* Mon Aug 03 2009 Ondrej Vasik <ovasik@redhat.com> 2.4.26-1
d47cab
- Do own /usr/share/man/<locale> directories (ghosted, missingok) - #220265
d47cab
d47cab
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.25-2
d47cab
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
d47cab
d47cab
* Thu Jul 23 2009 Adam Jackson <ajax@redhat.com> 2.4.25-1
d47cab
- Remove explicit /usr/lib/X11, everything uses %%_libdir now.
d47cab
d47cab
* Thu Jul 23 2009 Adam Jackson <ajax@redhat.com> 2.4.24-1
d47cab
- Added /usr/share/X11
d47cab
d47cab
* Thu Jul 09 2009 Ondrej Vasik <ovasik@redhat.com> - 2.4.23-1
d47cab
- do own /usr/src/debug (#214983)
d47cab
d47cab
* Wed Jul 08 2009 Ondrej Vasik <ovasik@redhat.com> - 2.4.22-1
d47cab
- do own interface description directory /usr/share/idl(#451719)
d47cab
- add a few missing lang-exceptions to filelist(#508309)
d47cab
d47cab
* Wed Mar 04 2009 Phil Knirsch <pknirsch@redhat.com> - 2.4.21-1
d47cab
- Added /usr/share/backgrounds (#487957)
d47cab
- Added /usr/share/ghostscript/{conf.d} (#302521)
d47cab
d47cab
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.20-2
d47cab
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
d47cab
d47cab
* Thu Feb 19 2009 Phil Knirsch <pknirsch@redhat.com> - 2.4.20-1
d47cab
- Removed ownership of fonts directories (#477046)
d47cab
d47cab
* Sat Sep 06 2008 Phil Knirsch <pknirsch@redhat.com> - 2.4.19-1
d47cab
- Added augeas lenses dir (#461317)
d47cab
d47cab
* Tue Jun 24 2008 Phil Knirsch <pknirsch@redhat.com> - 2.4.18-1
d47cab
- Added comment with raw format lang-exception URL
d47cab
d47cab
* Mon Jun 23 2008 Phil Knirsch <pknirsch@redhat.com> - 2.4.17-1
d47cab
- Added URL for lang-exception source (#225752)
d47cab
d47cab
* Wed Jun 18 2008 Phil Knirsch <pknirsch@redhat.com> - 2.4.16-1
d47cab
- Dropped /etc/news again as we're handling it now correctly (#437462)
d47cab
- Filesystem is now an official fedorahosted project, part of the review
d47cab
  changes (#225752)
d47cab
- Removed duplicate entry in lang_exceptions for ca_ES@valencian (#225752)
d47cab
d47cab
* Tue May 27 2008 Phil Knirsch <pknirsch@redhat.com> - 2.4.15-1
d47cab
- First round of Fedora package review changes (#225752)
d47cab
d47cab
* Tue May 20 2008 Phil Knirsch <pknirsch@redhat.com> - 2.4.14-1
d47cab
- Added /usr/src/kernels to owned and created dirs (#442283)
d47cab
d47cab
* Mon Apr 07 2008 Phil Knirsch <pknirsch@redhat.com> - 2.4.13-1
d47cab
- Added /etc/news to owned and created directories
d47cab
d47cab
* Thu Mar 27 2008 Phil Knirsch <pknirsch@redhat.com> - 2.4.12-1
d47cab
- Added be@latin to lang-exceptions (#231737)
d47cab
- Added /usr/share/man{0,1,3]p to owned files (#233879)
d47cab
- Added /usr/share/fonts to owned files (#302141)
d47cab
- Renamed sr@Latn to sr@latin (#436887)
d47cab
d47cab
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 2.4.11-2
d47cab
- Autorebuild for GCC 4.3
d47cab
d47cab
* Mon Aug 13 2007 Phil Knirsch <pknirsch@redhat.com> 2.4.11-1
d47cab
- Added /etc/X11/fontpath.d and dropped /etc/X11/sysconfig /etc/X11/serverconfig
d47cab
 (#251707)
d47cab
d47cab
* Wed Jul 18 2007 Phil Knirsch <pknirsch@redhat.com> 2.4.10-1
d47cab
- Replaced gtk-doc with gnome (#247276)
d47cab
d47cab
* Tue May 29 2007 Phil Knirsch <pknirsch@redhat.com> 2.4.9-1
d47cab
- Fixed nasty typo for /etc directories (#241525)
d47cab
d47cab
* Fri May 25 2007 Phil Knirsch <pknirsch@redhat.com> 2.4.8-1
d47cab
- Fixed description to avoid trademark issues (#234093)
d47cab
d47cab
* Thu May 24 2007 Phil Knirsch <pknirsch@redhat.com> 2.4.7-1
d47cab
- Added /etc/fonts/conf.d and /usr/share/themes (#239246)
d47cab
- Removed /etc/xdg/menus, already owned by redhat-menus (#228779)
d47cab
d47cab
* Tue Apr 17 2007 Phil Knirsch <pknirsch@redhat.com> - 2.4.6-1
d47cab
- Added several more /usr/share directories (#222905)
d47cab
d47cab
* Sat Mar 31 2007 Peter Jones <pjones@redhat.com> - 2.4.5-1
d47cab
- add /usr/local/share/applications
d47cab
d47cab
* Fri Mar 30 2007 Jeremy Katz <katzj@redhat.com> - 2.4.4-1
d47cab
- add /etc/xdg/autostart
d47cab
d47cab
* Thu Mar 15 2007 Phil Knirsch <pknirsch@redhat.com> - 2.4.3-1
d47cab
- Fixed typo for new /etc/xdg entries (#224052)
d47cab
- One more tiny specile cleanup
d47cab
d47cab
* Mon Feb 12 2007 Phil Knirsch <pknirsch@redhat.com> - 2.4.2-1
d47cab
- Added several missing unowned directories (#224052)
d47cab
- Tiny specfile cleanups
d47cab
d47cab
* Wed Dec 20 2006 Phil Knirsch <pknirsch@redhat.com> - 2.4.1-1
d47cab
- Dropped the obsolete directories /usr/lib{,64}/gcc-lib (#220235)
d47cab
d47cab
* Tue Oct 10 2006 Bill Nottingham <notting@redhat.com> - 2.4.0-1
d47cab
- create and own /usr/share/locale/*/LC_MESSAGES (#196669)
d47cab
d47cab
* Tue Oct 10 2006 Phil Knirsch <pknirsch@redhat.com> - 2.3.8-1
d47cab
- Added the manXx directories to the ownership of filesystem (#208121)
d47cab
d47cab
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 2.3.7-2.1
d47cab
- rebuild
d47cab
d47cab
* Wed Jun 28 2006 Phil Knirsch <pknirsch@redhat.com> - 2.3.7-2
d47cab
- Fixed games location according to FHS 2.1 (#165425)
d47cab
- Added {_libdir}/sse2 to owned files (#192853)
d47cab
- Added /dev to owned files (#192860)
d47cab
- Added {_datadir}/icons to owned files (#195911)
d47cab
- Dropped obsolete /etc/X11/starthere (#191163)
d47cab
d47cab
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 2.3.7-1.2.1
d47cab
- bump again for double-long bug on ppc(64)
d47cab
d47cab
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 2.3.7-1.2
d47cab
- rebuilt for new gcc4.1 snapshot and glibc changes
d47cab
d47cab
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
d47cab
- rebuilt
d47cab
d47cab
* Thu Nov 17 2005 Bill Nottingham <notting@redhat.com> - 2.3.7-1
d47cab
- actually, *do* package /usr/lib/X11, etc, but as directories
d47cab
- remove /usr/X11R6 heirarchy
d47cab
d47cab
* Mon Nov  7 2005 Bill Nottingham <notting@redhat.com> - 2.3.6-1
d47cab
- don't package /usr/lib/X11 or /usr/bin/X11 symlinks
d47cab
d47cab
* Fri Aug 19 2005 Bill Nottingham <notting@redhat.com> - 2.3.5-1
d47cab
- package / (#165797)
d47cab
d47cab
* Mon May 23 2005 Bill Nottingham <notting@redhat.com> - 2.3.4-1
d47cab
- ship /usr/share/games (#158433, <ville.skytta@iki.fi>)
d47cab
d47cab
* Thu May  5 2005 Peter Jones <pjones@redhat.com> - 2.3.3-1
d47cab
- remove /initrd, since mkinitrd doesn't use it anymore by default
d47cab
d47cab
* Wed Apr 20 2005 John Dennis <jdennis@redhat.com> - 2.3.2-1
d47cab
- add /etc/pki, a place to store keys and certificates
d47cab
d47cab
* Wed Mar  9 2005 Bill Nottingham <notting@redhat.com> 2.3.1-1
d47cab
- don't ship /usr/lib64/X11 in general (#147077)
d47cab
d47cab
* Thu Aug 12 2004 Bill Nottingham <notting@redhat.com> 2.3.0-1
d47cab
- add /media, /srv
d47cab
d47cab
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
d47cab
- rebuilt
d47cab
d47cab
* Thu Mar 11 2004 Bill Nottingham <notting@redhat.com> 2.2.4-1
d47cab
- move /selinux here from SysVinit
d47cab
d47cab
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
d47cab
- rebuilt
d47cab
d47cab
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
d47cab
- rebuilt
d47cab
d47cab
* Thu Jan 15 2004 Bill Nottingham <notting@redhat.com> 2.2.3-1
d47cab
- move /usr/dict to /usr/share/dict (#113645)
d47cab
- add /usr/lib/locale, /var/empty (#108686,#113036)
d47cab
- add */%%{_lib}/tls (#113050)
d47cab
d47cab
* Fri Nov 21 2003 Bill Nottingham <notting@redhat.com> 2.2.2-1
d47cab
- add /sys
d47cab
d47cab
* Tue Oct 07 2003 Than Ngo <than@redhat.com> 2.2.1-5
d47cab
- add /usr/share/xsessions
d47cab
d47cab
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
d47cab
- rebuilt
d47cab
d47cab
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
d47cab
- rebuilt
d47cab
d47cab
* Sun Dec  1 2002 Tim Waugh <twaugh@redhat.com> 2.2.1-2
d47cab
- Really fix /var/mail
d47cab
d47cab
* Thu Nov 28 2002 Bill Nottingham <notting@redhat.com> 2.2.1-1
d47cab
- fix /var/mail
d47cab
d47cab
* Wed Nov 20 2002 Bill Nottingham <notting@redhat.com>
d47cab
- make arch specific, handle lib/lib64 stuff
d47cab
- add /usr/libexec, /usr/share/applications
d47cab
d47cab
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
d47cab
- automated rebuild
d47cab
d47cab
* Thu May 23 2002 Tim Powers <timp@redhat.com>
d47cab
- automated rebuild
d47cab
d47cab
* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
d47cab
- automated rebuild
d47cab
d47cab
* Mon Aug 20 2001 Bill Nottingham <notting@redhat.com>
d47cab
- %%ghost /mnt/cdrom, /mnt/floppy (fixes #52046)
d47cab
d47cab
* Wed Aug 15 2001 Bill Nottingham <notting@redhat.com>
d47cab
- add /usr/X11R6/share (#51830)
d47cab
d47cab
* Mon Aug 13 2001 Bill Nottingham <notting@redhat.com>
d47cab
- prereq a particular version of the setup package
d47cab
d47cab
* Thu Aug  9 2001 Bill Nottingham <notting@redhat.com>
d47cab
- remove /mnt/cdrom, /mnt/floppy (updfstab will create them if needed)
d47cab
- make it noarch again
d47cab
d47cab
* Wed Aug  8 2001 Bill Nottingham <notting@redhat.com>
d47cab
- /var/lock needs to be root.lock, not lock.lock
d47cab
d47cab
* Mon Aug  6 2001 Jeff Johnson <jbj@redhat.com>
d47cab
- lock.lock ownership, 0775 permissions, for /var/lock.
d47cab
d47cab
* Tue Jul 17 2001 Bill Nottingham <notting@redhat.com>
d47cab
- add /etc/sysconfig, /var/yp, /usr/share/pixmaps
d47cab
d47cab
* Tue Jul 10 2001 Bill Nottingham <notting@redhat.com>
d47cab
- add stuff under /etc/X11
d47cab
- remove extraneous /usr/X11R6/doc (#47490)
d47cab
d47cab
* Mon Jun 25 2001 Bill Nottingham <notting@redhat.com>
d47cab
- don't conflict with rpm
d47cab
d47cab
* Fri Jun 22 2001 Bill Nottingham <notting@redhat.com>
d47cab
- don't own /var/lib/rpm (#43315)
d47cab
- add some stuff in /usr/local (#36522)
d47cab
d47cab
* Thu Jun 21 2001 Bill Nottingham <notting@redhat.com>
d47cab
- add /initrd
d47cab
d47cab
* Thu Jun 07 2001 Florian La Roche <Florian.LaRoche@redhat.de>
d47cab
- remove noarch
d47cab
- do not include /mnt/cdrom and /mnt/floppy for s390/s390x
d47cab
d47cab
* Mon Apr 16 2001 Bill Nottingham <notting@redhat.com>
d47cab
- take the group write off of /var/lock
d47cab
d47cab
* Fri Jul 21 2000 Bill Nottingham <notting@redhat.com>
d47cab
- add /usr/share/empty
d47cab
d47cab
* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
d47cab
- automatic rebuild
d47cab
d47cab
* Wed Jun 28 2000 Preston Brown <pbrown@redhat.com>
d47cab
- remove /usr/doc
d47cab
d47cab
* Thu Jun 22 2000 Preston Brown <pbrown@redhat.com>
d47cab
- remove /usr/info
d47cab
d47cab
* Sun Jun 19 2000 Bill Nottingham <notting@redhat.com>
d47cab
- remove /usr/man
d47cab
d47cab
* Sat Jun 17 2000 Bill Nottingham <notting@redhat.com>
d47cab
- /var/spool/lpd should have normal perms (#12272)
d47cab
d47cab
* Tue Jun  6 2000 Bill Nottingham <notting@redhat.com>
d47cab
- add /etc/skel
d47cab
d47cab
* Thu Jun 01 2000 Preston Brown <pbrown@redhat.com>
d47cab
- add /var/spool/lpd to filesystem, owned by user/group lp, tight permissions
d47cab
d47cab
* Tue May 23 2000 Trond Eivind Glomsrød <teg@redhat.com>
d47cab
- Added /etc/xinetd.d
d47cab
d47cab
* Mon May 15 2000 Preston Brown <pbrown@redhat.com>
d47cab
- /etc/opt, /usr/share/{info,man/man*,misc,doc} (FHS 2.1)
d47cab
- added /var/games.  Data should move from /var/lib/games to there (FHS 2.1)
d47cab
- bump version up to 2.0 already!
d47cab
d47cab
* Thu Apr 13 2000 Jakub Jelinek <jakub@redhat.com>
d47cab
- removed /var/state, added /var/opt, /var/mail for FHS 2.1 compliance
d47cab
d47cab
* Mon Aug 28 1999 Preston Brown <pbrown@redhat.com>
d47cab
- added /opt, /var/state, /var/cache for FHS compliance (#3966)
d47cab
d47cab
* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com> 
d47cab
- auto rebuild in the new build environment (release 4)
d47cab
d47cab
* Sun Jan 17 1999 Jeff Johnson <jbj@redhat.com>
d47cab
- don't carry X11R6.1 as directory on sparc.
d47cab
- /var/tmp/build root (#811)
d47cab
d47cab
* Wed Jan 13 1999 Preston Brown <pbrown@redhat.com>
d47cab
- font directory didn't belong, which I previously misunderstood.  removed.
d47cab
d47cab
* Fri Nov 13 1998 Preston Brown <pbrown@redhat.com>
d47cab
- /usr/share/fonts/default added.
d47cab
d47cab
* Fri Oct  9 1998 Bill Nottingham <notting@redhat.com>
d47cab
- put /mnt/cdrom back in
d47cab
d47cab
* Wed Oct  7 1998 Bill Nottingham <notting@redhat.com>
d47cab
- Changed /root to 0750
d47cab
d47cab
* Wed Aug 05 1998 Erik Troan <ewt@redhat.com>
d47cab
- added /var/db
d47cab
- set attributes in the spec file; don't depend on the ones in the cpio
d47cab
  archive
d47cab
- use a tarball instead of a cpioball
d47cab
d47cab
* Mon Apr 27 1998 Prospector System <bugs@redhat.com>
d47cab
- translations modified for de, fr, tr
d47cab
d47cab
* Tue Sep 09 1997 Erik Troan <ewt@redhat.com>
d47cab
- made a noarch package
d47cab
d47cab
* Wed Jul 09 1997 Erik Troan <ewt@redhat.com>
d47cab
- added /
d47cab
d47cab
* Wed Apr 16 1997 Erik Troan <ewt@redhat.com>
d47cab
- Changed /proc to 555
d47cab
- Removed /var/spool/mqueue (which is owned by sendmail)