forked from pool/filesystem
Accepting request 1058014 from Base:System
- Revert "Remove /etc/sysconfig/network hierachy" for now (bsc#1206723). - Add languages that contain a lot of translations. For years we output statistics on how many translations are removed, but it wasn't collected so far. So adding languages with >50k translated messages (bsc#1134757) - Fixup previous change: X86_64 is not yet known to RPM, thus we need to make sure to explicitly include x86_64. - add subdirectories for x86_64 hwcaps - Remove unused /etc/sysconfig/scripts - Remove /etc/sysconfig/network hierachy, not used by default anymore OBS-URL: https://build.opensuse.org/request/show/1058014 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/filesystem?expand=0&rev=168
This commit is contained in:
commit
31a18393cb
@ -16,7 +16,6 @@
|
||||
0755 root root /etc/sysconfig/network/if-up.d
|
||||
0700 root root /etc/sysconfig/network/providers
|
||||
0755 root root /etc/sysconfig/network/scripts
|
||||
0755 root root /etc/sysconfig/scripts
|
||||
0755 root root /etc/sysctl.d
|
||||
0755 root root /etc/tmpfiles.d
|
||||
0755 root root /etc/opt
|
||||
|
3
directory.list64-x86_64
Normal file
3
directory.list64-x86_64
Normal file
@ -0,0 +1,3 @@
|
||||
0555 root root /usr/lib64/glibc-hwcaps/x86-64-v4
|
||||
0555 root root /usr/lib64/glibc-hwcaps/x86-64-v3
|
||||
0555 root root /usr/lib64/glibc-hwcaps/x86-64-v2
|
@ -1,3 +1,34 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 12 11:41:40 UTC 2023 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
- Revert "Remove /etc/sysconfig/network hierachy" for now
|
||||
(bsc#1206723).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 14 15:28:47 UTC 2022 - Stephan Kulow <coolo@suse.com>
|
||||
|
||||
- Add languages that contain a lot of translations. For years
|
||||
we output statistics on how many translations are removed, but
|
||||
it wasn't collected so far. So adding languages with >50k translated
|
||||
messages (bsc#1134757)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 14 09:11:42 UTC 2022 - Dominique Leuenberger <dimstar@opensuse.org>
|
||||
|
||||
- Fixup previous change: X86_64 is not yet known to RPM, thus we
|
||||
need to make sure to explicitly include x86_64.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 8 14:18:11 UTC 2022 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
- add subdirectories for x86_64 hwcaps
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 7 15:59:46 UTC 2022 - Thorsten Kukuk <kukuk@suse.com>
|
||||
|
||||
- Remove unused /etc/sysconfig/scripts
|
||||
- Remove /etc/sysconfig/network hierachy, not used by default anymore
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Nov 24 12:27:27 UTC 2022 - Dan Čermák <dcermak@suse.com>
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package filesystem
|
||||
#
|
||||
# Copyright (c) 2022 SUSE LLC
|
||||
# Copyright (c) 2023 SUSE LLC
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -41,7 +41,8 @@ Source2: languages
|
||||
Source3: ghost.list
|
||||
Source4: languages.man
|
||||
Source64: directory.list64
|
||||
Source65: ghost.list64
|
||||
Source65: directory.list64-x86_64
|
||||
Source66: ghost.list64
|
||||
Source99: LICENSE.txt
|
||||
|
||||
%description
|
||||
@ -53,8 +54,8 @@ the home directories of system users.
|
||||
cp %{SOURCE0} .
|
||||
cp %{SOURCE1} .
|
||||
cp %{SOURCE3} .
|
||||
%ifarch s390x %sparc x86_64 ppc64 ppc aarch64 ppc64le riscv64
|
||||
cat %{SOURCE65} >> ghost.list
|
||||
%ifarch s390x %sparc x86_64 %x86_64 ppc64 ppc aarch64 ppc64le riscv64
|
||||
cat %{SOURCE66} >> ghost.list
|
||||
%endif
|
||||
|
||||
%build
|
||||
@ -109,7 +110,7 @@ cat > pre.lua <<'EOF'
|
||||
needmigrate = false
|
||||
local dirs = {"/bin",
|
||||
"/sbin",
|
||||
%ifarch s390x %sparc x86_64 ppc64 ppc aarch64 ppc64le riscv64
|
||||
%ifarch s390x %sparc x86_64 %x86_64 ppc64 ppc aarch64 ppc64le riscv64
|
||||
"/lib64",
|
||||
%endif
|
||||
"/lib" }
|
||||
@ -174,14 +175,17 @@ function create_dir () {
|
||||
mkdir -p $RPM_BUILD_ROOT
|
||||
# generic directories first
|
||||
echo "%%defattr(-,root,root)" > filesystem.list
|
||||
%ifarch s390x %sparc x86_64 ppc64 ppc aarch64 ppc64le riscv64
|
||||
%ifarch s390x %sparc x86_64 %x86_64 ppc64 ppc aarch64 ppc64le riscv64
|
||||
cat %{SOURCE64} >> directory.list
|
||||
%endif
|
||||
%ifarch x86_64 %x86_64
|
||||
cat %{SOURCE65} >> directory.list
|
||||
%endif
|
||||
cat >> filesystem.links << EOF
|
||||
usr/bin /bin
|
||||
usr/sbin /sbin
|
||||
usr/lib /lib
|
||||
%ifarch s390x %sparc x86_64 ppc64 ppc aarch64 ppc64le riscv64
|
||||
%ifarch s390x %sparc x86_64 %x86_64 ppc64 ppc aarch64 ppc64le riscv64
|
||||
usr/lib64 /lib64
|
||||
%endif
|
||||
EOF
|
||||
|
13
languages
13
languages
@ -1,15 +1,20 @@
|
||||
af
|
||||
ar
|
||||
as
|
||||
ast
|
||||
az
|
||||
be
|
||||
be@latin
|
||||
bg
|
||||
bn
|
||||
bn_IN
|
||||
br
|
||||
bs
|
||||
ca
|
||||
ca@valencia
|
||||
cs
|
||||
cs_CZ
|
||||
cy
|
||||
da
|
||||
de
|
||||
de_AT
|
||||
@ -56,7 +61,9 @@ fr
|
||||
fr_CA
|
||||
fr_CH
|
||||
fr_FR
|
||||
fur
|
||||
ga
|
||||
gd
|
||||
gl
|
||||
gu
|
||||
he
|
||||
@ -69,6 +76,7 @@ is
|
||||
it
|
||||
it_IT
|
||||
ja
|
||||
ka
|
||||
kk
|
||||
km
|
||||
kn
|
||||
@ -79,6 +87,7 @@ mai
|
||||
mk
|
||||
ml
|
||||
mr
|
||||
ms
|
||||
nb
|
||||
nb_NO
|
||||
nds
|
||||
@ -87,6 +96,7 @@ nl
|
||||
nl_BE
|
||||
nn
|
||||
nn_NO
|
||||
oc
|
||||
or
|
||||
pa
|
||||
pl
|
||||
@ -98,12 +108,15 @@ ro
|
||||
ru
|
||||
ru_RU
|
||||
ru_UA.koi8u
|
||||
si
|
||||
sk
|
||||
sl
|
||||
sl_SI
|
||||
sq
|
||||
sr
|
||||
sr@ije
|
||||
sr@ijekavian
|
||||
sr@ijekavianlatin
|
||||
sr@latin
|
||||
sv
|
||||
ta
|
||||
|
@ -1,3 +1,4 @@
|
||||
bg
|
||||
ca
|
||||
cs
|
||||
da
|
||||
|
Loading…
Reference in New Issue
Block a user