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