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