]> git.pld-linux.org Git - packages/rpm.git/blob - x32.patch
- x32 patch fixes
[packages/rpm.git] / x32.patch
1 diff -ur rpm-4.16.1.2/build/rpmfc.c rpm-4.16.1.2.x32/build/rpmfc.c
2 --- rpm-4.16.1.2/build/rpmfc.c  2021-03-21 21:51:28.231530270 +0100
3 +++ rpm-4.16.1.2.x32/build/rpmfc.c      2021-03-21 21:50:04.127398387 +0100
4 @@ -641,6 +641,7 @@
5  
6    { "ELF 32-bit",              RPMFC_ELF32|RPMFC_INCLUDE },
7    { "ELF 64-bit",              RPMFC_ELF64|RPMFC_INCLUDE },
8 +//  { "ELF 32-bit",            RPMFC_ELFX32|RPMFC_INCLUDE },
9  
10    { "troff or preprocessor input",     RPMFC_INCLUDE },
11    { "GNU Info",                        RPMFC_INCLUDE },
12 @@ -746,7 +747,11 @@
13         if (strstr(fmstr, fct->token) == NULL)
14             continue;
15  
16 -       fcolor |= fct->colors;
17 +       // This is a nasty hack, but will have to do for now
18 +       if ((fct->colors & RPMFC_ELF32) && (strstr(fmstr, "x86-64") != NULL))
19 +           fcolor |= RPMFC_ELFX32|RPMFC_INCLUDE;
20 +       else
21 +           fcolor |= fct->colors;
22         if (fcolor & RPMFC_INCLUDE)
23             break;
24      }
25 @@ -1147,7 +1152,10 @@
26                 color = RPMFC_ELF64;
27                 break;
28             case ELFCLASS32:
29 -               color = RPMFC_ELF32;
30 +               if (ehdr.e_machine == EM_X86_64)
31 +                   color = RPMFC_ELFX32;
32 +               else
33 +                   color = RPMFC_ELF32;
34                 break;
35             }
36             elf_end(elf);
37 diff -ur rpm-4.16.1.2/build/rpmfc.h rpm-4.16.1.2.x32/build/rpmfc.h
38 --- rpm-4.16.1.2/build/rpmfc.h  2020-05-28 12:04:25.011136544 +0200
39 +++ rpm-4.16.1.2.x32/build/rpmfc.h      2021-03-21 21:50:04.127398387 +0100
40 @@ -26,8 +26,9 @@
41      RPMFC_BLACK                        = 0,
42      RPMFC_ELF32                        = (1 <<  0),
43      RPMFC_ELF64                        = (1 <<  1),
44 +    RPMFC_ELFX32               = (1 <<  2),
45      RPMFC_ELFMIPSN32           = (1 <<  2),
46 -#define        RPMFC_ELF       (RPMFC_ELF32|RPMFC_ELF64|RPMFC_ELFMIPSN32)
47 +#define        RPMFC_ELF       (RPMFC_ELF32|RPMFC_ELF64|RPMFC_ELFX32|RPMFC_ELFMIPSN32)
48         /* (1 << 3) leaks into package headers, reserved */
49  
50      RPMFC_WHITE                        = (1 << 29),
51 diff -ur rpm-4.16.1.2/configure.ac rpm-4.16.1.2.x32/configure.ac
52 --- rpm-4.16.1.2/configure.ac   2021-03-21 21:51:28.221530479 +0100
53 +++ rpm-4.16.1.2.x32/configure.ac       2021-03-21 21:50:04.127398387 +0100
54 @@ -930,6 +930,10 @@
55         host_os=`echo "${host_os}" | sed 's/-gnueabi$//'`
56         host_os_gnu=-gnueabi
57  fi
58 +if echo "$host_os" | grep '.*-gnux32' > /dev/null ; then
59 +       host_os=`echo "${host_os}" | sed 's/-gnux32$//'`
60 +       host_os_gnu=-gnux32
61 +fi
62  if echo "$host_os" | grep '.*-gnu' > /dev/null ; then
63         host_os=`echo "${host_os}" | sed 's/-gnu$//'`
64  fi
65 diff -ur rpm-4.16.1.2/fileattrs/python.attr rpm-4.16.1.2.x32/fileattrs/python.attr
66 --- rpm-4.16.1.2/fileattrs/python.attr  2020-08-31 11:14:07.991087349 +0200
67 +++ rpm-4.16.1.2.x32/fileattrs/python.attr      2021-03-21 21:50:04.127398387 +0100
68 @@ -14,14 +14,15 @@
69  %__python_requires() %{lua:
70      -- Match buildroot paths of the form
71      --    /PATH/OF/BUILDROOT/usr/lib/pythonMAJOR.MINOR/  and
72 -    --    /PATH/OF/BUILDROOT/usr/lib64/pythonMAJOR.MINOR/
73 +    --    /PATH/OF/BUILDROOT/usr/lib64/pythonMAJOR.MINOR/ and
74 +    --    /PATH/OF/BUILDROOT/usr/libx32/pythonMAJOR.MINOR/
75      -- generating a line of the form:
76      --    python(abi) = MAJOR.MINOR
77      local path = rpm.expand('%1')
78 -    if path:match('/usr/lib%d*/python%d+%.%d+/.*') then
79 -        local requires = path:gsub('.*/usr/lib%d*/python(%d+%.%d+)/.*', 'python(abi) = %1')
80 +    if path:match('/usr/lib%w*/python%d+%.%d+/.*') then
81 +        local requires = path:gsub('.*/usr/lib%w*/python(%d+%.%d+)/.*', 'python(abi) = %1')
82          print(requires)
83      end
84  }
85  
86 -%__python_path ^((%{_prefix}/lib(64)?/python[[:digit:]]+\\.[[:digit:]]+/.*\\.(py[oc]?|so))|(%{_bindir}/python[[:digit:]]+\\.[[:digit:]]+))$
87 +%__python_path ^((%{_prefix}/lib(64|x32)?/python[[:digit:]]+\\.[[:digit:]]+/.*\\.(py[oc]?|so))|(%{_bindir}/python[[:digit:]]+\\.[[:digit:]]+))$
88 diff -ur rpm-4.16.1.2/fileattrs/pythondist.attr rpm-4.16.1.2.x32/fileattrs/pythondist.attr
89 --- rpm-4.16.1.2/fileattrs/pythondist.attr      2020-05-28 12:04:25.026136626 +0200
90 +++ rpm-4.16.1.2.x32/fileattrs/pythondist.attr  2021-03-21 21:50:04.127398387 +0100
91 @@ -1,3 +1,3 @@
92  %__pythondist_provides %{_rpmconfigdir}/pythondistdeps.py --provides --majorver-provides
93  %__pythondist_requires %{_rpmconfigdir}/pythondistdeps.py --requires
94 -%__pythondist_path             /lib(64)?/python[[:digit:]]\\.[[:digit:]]+/site-packages/[^/]+\\.(dist-info|egg-info|egg-link)$
95 +%__pythondist_path             /lib(64|x32)?/python[[:digit:]]\\.[[:digit:]]+/site-packages/[^/]+\\.(dist-info|egg-info|egg-link)$
96 diff -ur rpm-4.16.1.2/installplatform rpm-4.16.1.2.x32/installplatform
97 --- rpm-4.16.1.2/installplatform        2020-05-28 12:04:25.027136631 +0200
98 +++ rpm-4.16.1.2.x32/installplatform    2021-03-21 21:51:47.671145954 +0100
99 @@ -21,6 +21,8 @@
100  
101    ARCH_INSTALL_POST='%{nil}'
102    LIB=lib
103 +  TARGETCPU="%{_target_cpu}"
104 +  FORCE_RPMRC_GNU=
105  
106    # XXX FIXME: incomplete and quite likely wrong too in places,
107    # consult various arch folks for correct names etc.
108 @@ -75,7 +77,16 @@
109         ISANAME=x86
110         ISABITS=64
111         CANONARCH=x86_64
112 -       CANONCOLOR=3
113 +       CANONCOLOR=7
114 +       ;;
115 +    x32)
116 +       ISANAME=x86
117 +       ISABITS=x32
118 +       CANONARCH=x32
119 +       CANONCOLOR=7
120 +       RPMRC_GNU="gnux32"
121 +       FORCE_RPMRC_GNU="%{?_gnu}"
122 +       TARGETCPU="x86_64"
123         ;;
124      ia64)
125         ISANAME=ia
126 @@ -190,6 +201,10 @@
127        LIB=${LIB}64
128    fi
129  
130 +  if [ "$OS" = "linux" ] && [ "$CANONARCH" = "x32" ]; then
131 +      LIB=${LIB}x32
132 +  fi
133 +
134    PPD="${DESTDIR}/${platformdir}/${ARCH}-${OS}"
135    [ -d $PPD ] || mkdir -p $PPD
136  
137 @@ -202,6 +221,8 @@
138         -e "s,@RPMCANONARCH@,$CANONARCH,g" \
139         -e "s,@RPMCANONCOLOR@,$CANONCOLOR," \
140         -e "s,@RPMRC_GNU@,$RPMRC_GNU," \
141 +       -e "s,@FORCE_RPMRC_GNU@,$FORCE_RPMRC_GNU," \
142 +       -e "s,@TARGETCPU@,$TARGETCPU," \
143         -e "s,@LIB@,$LIB," \
144         -e "s,@ARCH_INSTALL_POST@,$ARCH_INSTALL_POST," \
145         -e '/\${\w*:-/!s,\${,%{_,' \
146 diff -ur rpm-4.16.1.2/platform.in rpm-4.16.1.2.x32/platform.in
147 --- rpm-4.16.1.2/platform.in    2020-05-28 12:04:25.047136741 +0200
148 +++ rpm-4.16.1.2.x32/platform.in        2021-03-21 21:51:47.671145954 +0100
149 @@ -8,7 +8,7 @@
150  %_vendor               @RPMCANONVENDOR@
151  %_os                   @RPMCANONOS@
152  %_gnu                  @RPMRC_GNU@
153 -%_target_platform      %{_target_cpu}-%{_vendor}-%{_target_os}
154 +%_target_platform      @TARGETCPU@-%{_vendor}-%{_target_os}@FORCE_RPMRC_GNU@
155  %optflags              @RPMRC_OPTFLAGS@
156  
157  %__isa_name            @ISANAME@
158 diff -ur rpm-4.16.1.2/rpmrc.in rpm-4.16.1.2.x32/rpmrc.in
159 --- rpm-4.16.1.2/rpmrc.in       2020-05-28 12:04:25.075136894 +0200
160 +++ rpm-4.16.1.2.x32/rpmrc.in   2021-03-21 21:50:04.127398387 +0100
161 @@ -24,6 +24,7 @@
162  optflags: x86_64 -O2 -g
163  optflags: amd64 -O2 -g
164  optflags: ia32e -O2 -g
165 +optflags: x32 -O2 -g -mtune=generic -march=x86-64
166  
167  optflags: alpha -O2 -g -mieee
168  optflags: alphaev5 -O2 -g -mieee -mtune=ev5
169 @@ -155,6 +156,8 @@
170  
171  archcolor: riscv64 2
172  
173 +archcolor: x32 4
174 +
175  #############################################################
176  # Canonical arch names and numbers
177  
178 @@ -170,6 +173,7 @@
179  arch_canon:    amd64:  amd64   1
180  arch_canon:    ia32e:  ia32e   1
181  arch_canon:    em64t:  em64t   1
182 +arch_canon:    x32: x32        1
183  
184  arch_canon:    alpha:  alpha   2
185  arch_canon:    alphaev5: alphaev5      2
186 @@ -379,6 +383,8 @@
187  buildarchtranslate: amd64: x86_64
188  buildarchtranslate: ia32e: x86_64
189  
190 +buildarchtranslate: x32: x32
191 +
192  buildarchtranslate: sh3: sh3
193  buildarchtranslate: sh4: sh4
194  buildarchtranslate: sh4a: sh4
195 @@ -486,10 +492,12 @@
196  
197  arch_compat: ia64: noarch
198  
199 -arch_compat: x86_64: amd64 em64t athlon noarch
200 +arch_compat: x86_64: amd64 em64t athlon x32 noarch
201  arch_compat: amd64: x86_64 em64t athlon noarch
202  arch_compat: ia32e: x86_64 em64t athlon noarch
203  
204 +arch_compat: x32: x32 x86_64 noarch
205 +
206  arch_compat: sh3: noarch
207  arch_compat: sh4: noarch
208  arch_compat: sh4a: sh4
209 @@ -628,6 +636,8 @@
210  buildarch_compat: amd64: x86_64
211  buildarch_compat: ia32e: x86_64
212  
213 +buildarch_compat: x32: noarch
214 +
215  buildarch_compat: sh3: noarch
216  buildarch_compat: sh4: noarch
217  buildarch_compat: sh4a: sh4
218 diff -ur rpm-4.16.1.2/tools/elfdeps.c rpm-4.16.1.2.x32/tools/elfdeps.c
219 --- rpm-4.16.1.2/tools/elfdeps.c        2020-05-28 12:04:25.084136944 +0200
220 +++ rpm-4.16.1.2.x32/tools/elfdeps.c    2021-03-21 21:50:04.127398387 +0100
221 @@ -94,6 +94,9 @@
222             break;
223         }
224      }
225 +    if ((ehdr->e_ident[EI_CLASS] == ELFCLASS32) && (ehdr->e_machine == EM_X86_64)) {
226 +       marker = "(x32bit)";
227 +    }
228      return marker;
229  }
230  
This page took 0.038352 seconds and 4 git commands to generate.