Compare commits
1 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
dab772e4fb |
@ -1 +0,0 @@
|
||||
1
|
248
filesystem.spec
248
filesystem.spec
@ -1,33 +1,23 @@
|
||||
Summary: The basic directory layout for a Linux system
|
||||
Name: filesystem
|
||||
Version: 3.18
|
||||
Release: 9%{?dist}
|
||||
License: LicenseRef-Fedora-Public-Domain
|
||||
URL: https://pagure.io/filesystem
|
||||
Source1: https://pagure.io/filesystem/raw/master/f/lang-exceptions
|
||||
Version: 3.2
|
||||
Release: 35%{?dist}
|
||||
License: Public Domain
|
||||
URL: https://fedorahosted.org/filesystem
|
||||
Group: System Environment/Base
|
||||
# Raw source1 URL: https://fedorahosted.org/filesystem/browser/lang-exceptions?format=raw
|
||||
Source1: https://fedorahosted.org/filesystem/browser/lang-exceptions
|
||||
Source2: iso_639.sed
|
||||
Source3: iso_3166.sed
|
||||
BuildRequires: iso-codes
|
||||
Requires(pre): setup
|
||||
|
||||
Provides: filesystem-afs = %{version}-%{release}
|
||||
Obsoletes: filesystem-afs <= 3.14-2
|
||||
|
||||
%description
|
||||
The filesystem package is one of the basic packages that is installed
|
||||
on a Linux system. Filesystem contains the basic directory layout
|
||||
for a Linux operating system, including the correct permissions for
|
||||
the directories.
|
||||
|
||||
%package content
|
||||
Summary: Directory ownership content of the filesystem package
|
||||
License: Public Domain
|
||||
|
||||
%description content
|
||||
This subpackage of filesystem package contains just the file with
|
||||
the directories owned by the filesystem package. This can be used
|
||||
during the build process instead of calling rpm -ql filesystem.
|
||||
|
||||
%prep
|
||||
rm -f $RPM_BUILD_DIR/filelist
|
||||
|
||||
@ -41,17 +31,14 @@ install -p -c -m755 %SOURCE3 %{buildroot}/iso_3166.sed
|
||||
|
||||
cd %{buildroot}
|
||||
|
||||
Paths=(
|
||||
afs boot dev \
|
||||
etc/{X11/{applnk,fontpath.d,xinit/{xinitrc,xinput}.d},xdg/autostart,opt,pm/{config.d,power.d,sleep.d},skel,sysconfig,keys/ima,pki,bash_completion.d,rwtab.d,statetab.d} \
|
||||
home media mnt opt root run srv tmp \
|
||||
usr/{bin,games,include,%{_lib}/{bpf,games,X11,pm-utils/{module.d,power.d,sleep.d}},lib/{debug/{.dwz,usr},games,locale,modules,sysimage,systemd/{system,user},sysusers.d,tmpfiles.d},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,fish/vendor_completions.d,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,modulefiles,omf,pixmaps,sounds,themes,xsessions,X11/fonts,wayland-sessions,zsh/site-functions},src,src/kernels,src/debug} \
|
||||
var/{adm,empty,ftp,lib/{games,misc,rpm-state},local,log,nis,preserve,spool/{mail,lpd},tmp,db,cache/bpf,opt,games,yp}
|
||||
)
|
||||
for i in "${Paths[@]}"; do
|
||||
mkdir -p "$i"
|
||||
done
|
||||
mkdir -p boot dev \
|
||||
etc/{X11/{applnk,fontpath.d},xdg/autostart,opt,pm/{config.d,power.d,sleep.d},xinetd.d,skel,sysconfig,pki,bash_completion.d} \
|
||||
home media mnt opt proc root run srv sys tmp \
|
||||
usr/{bin,games,include,%{_lib}/{games,sse2,tls,X11,pm-utils/{module.d,power.d,sleep.d}},lib/{debug/usr,games,locale,modules,sse2},libexec,local/{bin,etc,games,lib,%{_lib},sbin,src,share/{applications,man/man{1,2,3,4,5,6,7,8,9,n,1x,2x,3x,4x,5x,6x,7x,8x,9x},info},libexec,include,},sbin,share/{aclocal,appdata,applications,augeas/lenses,backgrounds,desktop-directories,dict,doc,empty,games,ghostscript/conf.d,gnome,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},mime-info,misc,omf,pixmaps,sounds,themes,xsessions,X11,wayland-sessions},src,src/kernels,src/debug} \
|
||||
var/{adm,empty,gopher,lib/{games,misc,rpm-state},local,log,nis,preserve,spool/{mail,lpd},tmp,db,cache,opt,games,yp}
|
||||
|
||||
#do not create the symlink atm.
|
||||
#ln -snf etc/sysconfig etc/default
|
||||
ln -snf ../var/tmp usr/tmp
|
||||
ln -snf spool/mail var/mail
|
||||
ln -snf usr/bin bin
|
||||
@ -121,10 +108,8 @@ 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
|
||||
echo "/usr/share/man/$i" >>$RPM_BUILD_DIR/filelist
|
||||
done
|
||||
|
||||
mkdir -p %{buildroot}/usr/share/filesystem
|
||||
#find all dirs in the buildroot owned by filesystem and store them
|
||||
find %{buildroot} -mindepth 0 | sed -e 's|%{buildroot}|/|' -e 's|//|/|' \
|
||||
| LC_ALL=C sort | grep -v filesystem >%{buildroot}%{_datadir}/filesystem/paths
|
||||
%clean
|
||||
rm -rf %{buildroot}
|
||||
|
||||
%pretrans -p <lua>
|
||||
--# If we are running in pretrans in a fresh root, there is no /usr and
|
||||
@ -154,10 +139,6 @@ posix.symlink("../.dwz", "/usr/lib/debug/usr/.dwz")
|
||||
posix.symlink("usr/sbin", "/usr/lib/debug/sbin")
|
||||
posix.symlink("usr/%{_lib}", "/%{_lib}")
|
||||
posix.mkdir("/run")
|
||||
posix.mkdir("/proc")
|
||||
posix.mkdir("/sys")
|
||||
posix.chmod("/proc", 0555)
|
||||
posix.chmod("/sys", 0555)
|
||||
st = posix.stat("/media")
|
||||
if st and st.type == "link" then
|
||||
os.remove("/media")
|
||||
@ -167,72 +148,59 @@ posix.symlink("../run", "/var/run")
|
||||
posix.symlink("../run/lock", "/var/lock")
|
||||
return 0
|
||||
|
||||
%posttrans -p <lua>
|
||||
--# we need to restorecon on some dirs created in %pretrans or by other packages
|
||||
if posix.access ("/usr/sbin/restorecon", "x") then
|
||||
rpm.execute("/usr/sbin/restorecon", "/var", "/var/run", "/var/lock", "/sys", "/boot", "/dev", "/media", "/afs")
|
||||
rpm.execute("/usr/sbin/restorecon", "-r", "/usr/lib/debug")
|
||||
end
|
||||
|
||||
%files content
|
||||
%dir %{_datadir}/filesystem
|
||||
%{_datadir}/filesystem/paths
|
||||
|
||||
|
||||
%posttrans
|
||||
#we need to restorecon on some dirs created in %pretrans or by other packages
|
||||
restorecon /var 2>/dev/null >/dev/null || :
|
||||
restorecon /var/run 2>/dev/null >/dev/null || :
|
||||
restorecon /var/lock 2>/dev/null >/dev/null || :
|
||||
restorecon -r /usr/lib/debug/ 2>/dev/null >/dev/null || :
|
||||
restorecon /sys 2>/dev/null >/dev/null || :
|
||||
restorecon /boot 2>/dev/null >/dev/null || :
|
||||
restorecon /proc 2>/dev/null >/dev/null || :
|
||||
restorecon /dev 2>/dev/null >/dev/null || :
|
||||
restorecon /media 2>/dev/null >/dev/null || :
|
||||
|
||||
%files -f filelist
|
||||
%defattr(0755,root,root,0755)
|
||||
%defattr(0755,root,root,-)
|
||||
%dir %attr(555,root,root) /
|
||||
/bin
|
||||
%attr(555,root,root) /boot
|
||||
%attr(555,root,root) /afs
|
||||
/dev
|
||||
%dir /etc
|
||||
/etc/X11
|
||||
/etc/xdg
|
||||
/etc/opt
|
||||
/etc/pm
|
||||
/etc/xinetd.d
|
||||
/etc/skel
|
||||
/etc/sysconfig
|
||||
/etc/keys
|
||||
/etc/pki
|
||||
/etc/bash_completion.d/
|
||||
%dir /etc/rwtab.d
|
||||
%dir /etc/statetab.d
|
||||
/home
|
||||
/lib
|
||||
%ifarch x86_64 ppc64 sparc64 s390x aarch64 ppc64le mips64 mips64el riscv64
|
||||
%ifarch x86_64 ppc64 sparc64 s390x aarch64 ppc64le mips64 mips64el
|
||||
/%{_lib}
|
||||
%endif
|
||||
/media
|
||||
%dir /mnt
|
||||
%dir /opt
|
||||
%ghost %attr(555,root,root) /proc
|
||||
%attr(555,root,root) /proc
|
||||
%attr(550,root,root) /root
|
||||
/run
|
||||
/sbin
|
||||
/srv
|
||||
%ghost %attr(555,root,root) /sys
|
||||
%attr(555,root,root) /sys
|
||||
%attr(1777,root,root) /tmp
|
||||
%dir /usr
|
||||
%attr(555,root,root) /usr/bin
|
||||
/usr/games
|
||||
/usr/include
|
||||
%dir %attr(555,root,root) /usr/lib
|
||||
%dir /usr/lib/sysimage
|
||||
%dir /usr/lib/systemd
|
||||
/usr/lib/systemd/system
|
||||
/usr/lib/systemd/user
|
||||
%dir /usr/lib/sysusers.d
|
||||
%dir /usr/lib/tmpfiles.d
|
||||
%dir /usr/lib/locale
|
||||
%dir /usr/lib/modules
|
||||
%dir /usr/lib/debug
|
||||
%dir /usr/lib/debug/.dwz
|
||||
%ghost /usr/lib/debug/bin
|
||||
%ghost /usr/lib/debug/lib
|
||||
%ghost /usr/lib/debug/%{_lib}
|
||||
%ghost %dir /usr/lib/debug/usr
|
||||
%ghost /usr/lib/debug/usr
|
||||
%ghost /usr/lib/debug/usr/bin
|
||||
%ghost /usr/lib/debug/usr/sbin
|
||||
%ghost /usr/lib/debug/usr/lib
|
||||
@ -240,10 +208,11 @@ end
|
||||
%ghost /usr/lib/debug/usr/.dwz
|
||||
%ghost /usr/lib/debug/sbin
|
||||
%attr(555,root,root) /usr/lib/games
|
||||
%ifarch x86_64 ppc64 sparc64 s390x aarch64 ppc64le mips64 mips64el riscv64
|
||||
%attr(555,root,root) /usr/lib/sse2
|
||||
%ifarch x86_64 ppc64 sparc64 s390x aarch64 ppc64le mips64 mips64el
|
||||
%attr(555,root,root) /usr/%{_lib}
|
||||
%else
|
||||
%attr(555,root,root) /usr/lib/bpf
|
||||
%attr(555,root,root) /usr/lib/tls
|
||||
%attr(555,root,root) /usr/lib/X11
|
||||
%attr(555,root,root) /usr/lib/pm-utils
|
||||
%endif
|
||||
@ -256,46 +225,37 @@ end
|
||||
/usr/share/applications
|
||||
/usr/share/augeas
|
||||
/usr/share/backgrounds
|
||||
%dir /usr/share/bash-completion
|
||||
/usr/share/bash-completion/completions
|
||||
/usr/share/bash-completion/helpers
|
||||
/usr/share/desktop-directories
|
||||
/usr/share/dict
|
||||
/usr/share/doc
|
||||
%attr(555,root,root) %dir /usr/share/empty
|
||||
/usr/share/fish
|
||||
/usr/share/games
|
||||
/usr/share/ghostscript
|
||||
/usr/share/gnome
|
||||
/usr/share/help
|
||||
/usr/share/icons
|
||||
/usr/share/idl
|
||||
/usr/share/info
|
||||
%dir /usr/share/licenses
|
||||
%dir /usr/share/locale
|
||||
%dir /usr/share/man
|
||||
/usr/share/metainfo
|
||||
/usr/share/mime-info
|
||||
/usr/share/misc
|
||||
%dir /usr/share/modulefiles
|
||||
/usr/share/omf
|
||||
/usr/share/pixmaps
|
||||
/usr/share/sounds
|
||||
/usr/share/themes
|
||||
/usr/share/xsessions
|
||||
%dir /usr/share/X11
|
||||
/usr/share/X11/fonts
|
||||
/usr/share/X11
|
||||
/usr/share/wayland-sessions
|
||||
/usr/share/zsh
|
||||
/usr/src
|
||||
/usr/tmp
|
||||
%dir /var
|
||||
/var/adm
|
||||
%dir /var/cache
|
||||
/var/cache/bpf
|
||||
/var/cache
|
||||
/var/db
|
||||
/var/empty
|
||||
/var/ftp
|
||||
/var/games
|
||||
/var/gopher
|
||||
/var/lib
|
||||
/var/local
|
||||
%ghost /var/lock
|
||||
@ -312,132 +272,6 @@ end
|
||||
/var/yp
|
||||
|
||||
%changelog
|
||||
* Wed Mar 13 2024 Orion Poplawski <orion@fedoraproject.org> - 3.18-9
|
||||
- Add /usr/share/modulefiles for environment modules
|
||||
|
||||
* Wed Jan 24 2024 Fedora Release Engineering <releng@fedoraproject.org> - 3.18-8
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Fri Jan 19 2024 Fedora Release Engineering <releng@fedoraproject.org> - 3.18-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
* Fri Jul 21 2023 Peter Robinson <pbrobinson@fedoraproject.org> - 3.18-6
|
||||
- Add /etc/keys for initrd/kernel related keys
|
||||
|
||||
* Wed Jul 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 3.18-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||
|
||||
* Tue Feb 21 2023 Than Ngo <than@redhat.com> - 3.18-4
|
||||
- migrated to SPDX license
|
||||
|
||||
* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 3.18-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||
|
||||
* Tue Aug 09 2022 Martin Osvald <mosvald@redhat.com> - 3.18-2
|
||||
- Filesystem has a dependency on /bin/sh (rhbz#1306489)
|
||||
|
||||
* Tue Jul 26 2022 Martin Osvald <mosvald@redhat.com> - 3.18-1
|
||||
- Filesystem has a dependency on /bin/sh (#1306489)
|
||||
- Add /usr/share/X11/fonts/ to default filesystem (#2107447)
|
||||
- Remove obsolete and forbidden Group tag
|
||||
- Own zsh and fish completions directories (rhbz#1312594)
|
||||
- Improve directory creation to avoid 'Argument list too long' error
|
||||
|
||||
* Mon Jul 25 2022 Debarshi Ray <rishi@fedoraproject.org> - 3.17-1
|
||||
- Assume ownership of /usr/lib/tmpfiles.d
|
||||
|
||||
* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 3.16-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||
|
||||
* Thu Jan 20 2022 Petr Menšík <pemensik@redhat.com> - 3.16-3
|
||||
- Include systemd directories for %unitdir and similar
|
||||
|
||||
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 3.16-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||
|
||||
* Tue Aug 3 2021 Pavel Zhukov <pzhukov@redhat.com> - 3.15-1
|
||||
- Move /afs into main package
|
||||
|
||||
* Fri Aug 07 2020 Pavel Raiskup <praiskup@redhat.com> - 3.14-4
|
||||
- /proc and /sys made %%ghost to allow filesystem package updates in rootless
|
||||
container environments (rhbz#1548403)
|
||||
|
||||
* Mon Jan 27 2020 Ondrej Vasik <ovasik@redhat.com> - 3.14-1
|
||||
- do not restore context of /proc (#1722766)
|
||||
|
||||
* Wed Dec 18 2019 Ondrej Vasik <ovasik@redhat.com> - 3.13-1
|
||||
- add ownership for eBPF bytecode files directories (#1781646)
|
||||
|
||||
* Thu Jun 20 2019 David Howells <dhowells@redhat.com> - 3.12-1
|
||||
- add new -afs supbackage for /afs directory (#FPC888,#1720232)
|
||||
|
||||
* Mon Apr 29 2019 Ondrej Vasik <ovasik@redhat.com> - 3.11-1
|
||||
- drop ownership for /etc/xinet.d (#1691146)
|
||||
- drop ownership for %{_libdir}/tls, %{_libdir}/sse2 (#1702329)
|
||||
|
||||
* Mon Feb 11 2019 Ondrej Vasik <ovasik@redhat.com> - 3.10-1
|
||||
- drop legacy /var/gopher (#1667231)
|
||||
|
||||
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.9-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.9-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Thu Jun 21 2018 Ondrej Vasik <ovasik@redhat.com> - 3.9-1
|
||||
- add ownership of /etc/rwtab.d and /etc/statetab.d
|
||||
|
||||
* Tue Feb 20 2018 Adam Jackson <ajax@redhat.com> - 3.8-3
|
||||
- own /etc/X11/xinit/{,{xinitrc,xinput}.d}
|
||||
|
||||
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.8-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Sat Jan 13 2018 Ondrej Vasik <ovasik@redhat.com> - 3.8-1
|
||||
- drop the ownership of ghostscript dirs (#1533992)
|
||||
|
||||
* Thu Dec 14 2017 Ondrej Vasik <ovasik@redhat.com> - 3.7-1
|
||||
- own /usr/share/locale and /usr/lib/modules
|
||||
- own /usr/lib/sysimage
|
||||
- improve filesystem content file to include symlinks and rootdir
|
||||
|
||||
* Mon Nov 20 2017 Ondrej Vasik <ovasik@redhat.com> - 3.6-1
|
||||
- own /usr/share/bash-completion{,/completions,/helpers} (#1504616)
|
||||
- create and own /usr/lib/debug/.dwz dir to prevent
|
||||
dangling symlink (#1508610)
|
||||
|
||||
* Thu Oct 12 2017 Ondrej Vasik <ovasik@redhat.com> - 3.5-1
|
||||
- improve the content file creation
|
||||
|
||||
* Thu Oct 05 2017 Ondrej Vasik <ovasik@redhat.com> - 3.4-1
|
||||
- create and own file with the content of filesystem package
|
||||
|
||||
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.3-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||
|
||||
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.3-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Tue Mar 21 2017 Ondrej Vasik <ovasik@redhat.com> - 3.3-1
|
||||
- Move to Pagure.io
|
||||
- add ownership for /usr/share/metainfo/ (#1434008)
|
||||
|
||||
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.2-40
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||
|
||||
* Mon Jan 02 2017 Ondrej Vasik <ovasik@redhat.com> - 3.2-39
|
||||
- refresh lang-exceptions list - /usr/share/locale ownerships
|
||||
(#1409402, #1313421)
|
||||
- add ownership for /usr/share/help (#1357974)
|
||||
|
||||
* Tue Oct 11 2016 Richard W.M. Jones <rjones@redhat.com> - 3.2-38
|
||||
- Add riscv64 to list of 64 bit architectures.
|
||||
|
||||
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 3.2-37
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||
|
||||
* Fri Jan 29 2016 Ondrej Vasik <ovasik@redhat.com> - 3.2-36
|
||||
- own /var/ftp - homedir for system default ftp user (#1302711)
|
||||
|
||||
* Fri Sep 04 2015 Michal Toman <mtoman@fedoraproject.org> - 3.2-35
|
||||
- add mips64 and mips64el to the 64-bit arches
|
||||
|
||||
@ -501,7 +335,7 @@ end
|
||||
* Sun Jun 30 2013 Ondrej Vasik <ovasik@redhat.com> - 3.2-17
|
||||
- .dwz symlink is needed as well (#974130)
|
||||
|
||||
* Thu Jun 20 2013 Ondrej Vasik <ovasik@redhat.com> - 3.2-16
|
||||
* Wed Jun 20 2013 Ondrej Vasik <ovasik@redhat.com> - 3.2-16
|
||||
- /var/run and /var/lock can't be in payload for some reason
|
||||
|
||||
* Wed Jun 19 2013 Ondrej Vasik <ovasik@redhat.com> - 3.2-15
|
||||
|
16
gating.yaml
16
gating.yaml
@ -1,16 +0,0 @@
|
||||
--- !Policy
|
||||
product_versions:
|
||||
- fedora-*
|
||||
decision_contexts: [bodhi_update_push_testing]
|
||||
subject_type: koji_build
|
||||
rules:
|
||||
- !PassingTestCaseRule {test_case_name: fedora-ci.koji-build.tier0.functional}
|
||||
|
||||
#gating rawhide
|
||||
--- !Policy
|
||||
product_versions:
|
||||
- fedora-*
|
||||
decision_contexts: [bodhi_update_push_stable]
|
||||
subject_type: koji_build
|
||||
rules:
|
||||
- !PassingTestCaseRule {test_case_name: fedora-ci.koji-build.tier0.functional}
|
114
lang-exceptions
114
lang-exceptions
@ -8,60 +8,51 @@
|
||||
# and then sorting out the various invalid entires. (all_languages, locales
|
||||
# with charset definitions (.UTF-8, etc.))
|
||||
af_ZA
|
||||
agr
|
||||
aln
|
||||
ar_DZ
|
||||
am_ET
|
||||
ar_EG
|
||||
ar_OM
|
||||
ar_SY
|
||||
ayc
|
||||
aym
|
||||
az_AZ
|
||||
ast_ES
|
||||
az_IR
|
||||
be@latin
|
||||
bg_BG
|
||||
bn_BD
|
||||
bn_IN
|
||||
brx
|
||||
brx_IN
|
||||
bs_BA
|
||||
ca.us-ascii
|
||||
ca@valencia
|
||||
ca_AD
|
||||
ca_ES
|
||||
ca_ES@valencian
|
||||
ca_FR
|
||||
ca_IT
|
||||
cgg
|
||||
ckb
|
||||
cmn
|
||||
cn
|
||||
cs.cp1250
|
||||
ca@valencia
|
||||
cs_CZ
|
||||
da_DK
|
||||
de-CH
|
||||
de.us-ascii
|
||||
de@hebrew
|
||||
de_AT
|
||||
de_CH
|
||||
de_DE
|
||||
default
|
||||
de@hebrew
|
||||
el_GR
|
||||
en@arabic
|
||||
en_AU
|
||||
en@boldquot
|
||||
en_CA
|
||||
en@cyrillic
|
||||
en_GB
|
||||
en@greek
|
||||
en@hebrew
|
||||
en_NZ
|
||||
en@piglatin
|
||||
en@quot
|
||||
en@shaw
|
||||
en_AU
|
||||
en_CA
|
||||
en_CZ
|
||||
en_GB
|
||||
en_IE
|
||||
en_NZ
|
||||
en_US
|
||||
en_US@piglatin
|
||||
en_ZA
|
||||
es.us-ascii
|
||||
es_419
|
||||
es_AR
|
||||
es_CA
|
||||
es_CL
|
||||
es_CO
|
||||
es_CR
|
||||
@ -75,9 +66,7 @@ es_NI
|
||||
es_PA
|
||||
es_PE
|
||||
es_PR
|
||||
es_PY
|
||||
es_SV
|
||||
es_US
|
||||
es_UY
|
||||
es_VE
|
||||
et_EE
|
||||
@ -85,129 +74,76 @@ eu_ES
|
||||
fa_AF
|
||||
fa_IR
|
||||
fi_FI
|
||||
fr.us-ascii
|
||||
fr_BE
|
||||
fr_CA
|
||||
fr_CH
|
||||
fr_FR
|
||||
frp
|
||||
gl_ES
|
||||
gom
|
||||
gom@latin
|
||||
gos
|
||||
guc
|
||||
he_IL
|
||||
hi_IN
|
||||
hne
|
||||
hr_HR
|
||||
hu_HU
|
||||
hus
|
||||
ibo
|
||||
id_ID
|
||||
is_IS
|
||||
it_CH
|
||||
it_IT
|
||||
ja.euc-jp
|
||||
ja_JP
|
||||
ka_GE
|
||||
kk_KZ
|
||||
km_KH
|
||||
ko_KO
|
||||
ko_KR
|
||||
kok@latin
|
||||
ks@aran
|
||||
ks@devanagari
|
||||
ksw
|
||||
ku_IQ
|
||||
kw@kkcor
|
||||
kw@uccor
|
||||
kw_GB
|
||||
l10n
|
||||
lo_LA
|
||||
lt_LT
|
||||
ltg
|
||||
lv_LV
|
||||
mhr
|
||||
mk_MK
|
||||
ml_IN
|
||||
mni@beng
|
||||
mni@bengali
|
||||
mni@meiteimayek
|
||||
mnk
|
||||
mr_IN
|
||||
ms_MY
|
||||
mvo
|
||||
my_MM
|
||||
nan
|
||||
nb_NO
|
||||
nl.us-ascii
|
||||
nds_DE
|
||||
nds@NFE
|
||||
nl_BE
|
||||
nl_NL
|
||||
nn_NO
|
||||
no.us-ascii
|
||||
no_NO
|
||||
or_IN
|
||||
pbs
|
||||
pis
|
||||
pl_PL
|
||||
pms
|
||||
pt.us-ascii
|
||||
pt_BR
|
||||
pt_BR.us-ascii
|
||||
pt_PT
|
||||
quy
|
||||
quz
|
||||
ro_RO
|
||||
ru_RU
|
||||
ru_RU.KOI8-R
|
||||
rue
|
||||
sat@deva
|
||||
sat@olchiki
|
||||
sd@deva
|
||||
shs
|
||||
si_LK
|
||||
sk.cp1250
|
||||
sk_SK
|
||||
sl_SI
|
||||
sp
|
||||
sq_AL
|
||||
sr@Latn
|
||||
sr@ije
|
||||
sr@ijekavian
|
||||
sr@ijekavianlatin
|
||||
sr@latin
|
||||
sr_Cyrl
|
||||
sr_Latn
|
||||
sr@Latn
|
||||
sr_ME
|
||||
sr_RS
|
||||
sr_RS@latin
|
||||
srd
|
||||
sv_SE
|
||||
szl
|
||||
sv_SV
|
||||
ta_IN
|
||||
ta_LK
|
||||
te_IN
|
||||
tg_TJ
|
||||
th_TH
|
||||
tl_PH
|
||||
ton
|
||||
tr_TR
|
||||
tt@iqtelif
|
||||
tt_RU
|
||||
tzm
|
||||
tzo
|
||||
ua
|
||||
uk_UA
|
||||
ur_PK
|
||||
uz@Cyrl
|
||||
uz@Latn
|
||||
uz@cyrillic
|
||||
vec
|
||||
ven
|
||||
uz@Latn
|
||||
vi_VN
|
||||
wae
|
||||
wba
|
||||
zam
|
||||
zh-Hans
|
||||
zh-Hant
|
||||
zh_CN
|
||||
zh_CN.GB2312
|
||||
zh_HK
|
||||
zh_Hans_CN
|
||||
zh_Hant_TW
|
||||
zh_TW
|
||||
zh_TW.Big5
|
||||
|
@ -1,6 +0,0 @@
|
||||
summary: Test plan with all Fedora tests
|
||||
discover:
|
||||
how: fmf
|
||||
url: https://src.fedoraproject.org/tests/filesystem.git
|
||||
execute:
|
||||
how: tmt
|
Loading…
Reference in New Issue
Block a user