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