]> git.pld-linux.org Git - packages/rpm.git/blob - x32.patch
a97fdb785d9a18148159ce0fe7836288578cbeb1
[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,15 @@
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 +       FORCE_RPMRC_GNU="%{?_gnu}"
121 +       TARGETCPU="x86_64"
122         ;;
123      ia64)
124         ISANAME=ia
125 @@ -190,6 +201,10 @@
126        LIB=${LIB}64
127    fi
128  
129 +  if [ "$OS" = "linux" ] && [ "$CANONARCH" = "x32" ]; then
130 +      LIB=${LIB}x32
131 +  fi
132 +
133    PPD="${DESTDIR}/${platformdir}/${ARCH}-${OS}"
134    [ -d $PPD ] || mkdir -p $PPD
135  
136 @@ -202,6 +221,8 @@
137         -e "s,@RPMCANONARCH@,$CANONARCH,g" \
138         -e "s,@RPMCANONCOLOR@,$CANONCOLOR," \
139         -e "s,@RPMRC_GNU@,$RPMRC_GNU," \
140 +       -e "s,@FORCE_RPMRC_GNU@,$FORCE_RPMRC_GNU," \
141 +       -e "s,@TARGETCPU@,$TARGETCPU," \
142         -e "s,@LIB@,$LIB," \
143         -e "s,@ARCH_INSTALL_POST@,$ARCH_INSTALL_POST," \
144         -e '/\${\w*:-/!s,\${,%{_,' \
145 diff -ur rpm-4.16.1.2/platform.in rpm-4.16.1.2.x32/platform.in
146 --- rpm-4.16.1.2/platform.in    2020-05-28 12:04:25.047136741 +0200
147 +++ rpm-4.16.1.2.x32/platform.in        2021-03-21 21:51:47.671145954 +0100
148 @@ -8,7 +8,7 @@
149  %_vendor               @RPMCANONVENDOR@
150  %_os                   @RPMCANONOS@
151  %_gnu                  @RPMRC_GNU@
152 -%_target_platform      %{_target_cpu}-%{_vendor}-%{_target_os}
153 +%_target_platform      @TARGETCPU@-%{_vendor}-%{_target_os}@FORCE_RPMRC_GNU@
154  %optflags              @RPMRC_OPTFLAGS@
155  
156  %__isa_name            @ISANAME@
157 diff -ur rpm-4.16.1.2/rpmrc.in rpm-4.16.1.2.x32/rpmrc.in
158 --- rpm-4.16.1.2/rpmrc.in       2020-05-28 12:04:25.075136894 +0200
159 +++ rpm-4.16.1.2.x32/rpmrc.in   2021-03-21 21:50:04.127398387 +0100
160 @@ -24,6 +24,7 @@
161  optflags: x86_64 -O2 -g
162  optflags: amd64 -O2 -g
163  optflags: ia32e -O2 -g
164 +optflags: x32 -O2 -g -mtune=generic -march=x86-64
165  
166  optflags: alpha -O2 -g -mieee
167  optflags: alphaev5 -O2 -g -mieee -mtune=ev5
168 @@ -155,6 +156,8 @@
169  
170  archcolor: riscv64 2
171  
172 +archcolor: x32 4
173 +
174  #############################################################
175  # Canonical arch names and numbers
176  
177 @@ -170,6 +173,7 @@
178  arch_canon:    amd64:  amd64   1
179  arch_canon:    ia32e:  ia32e   1
180  arch_canon:    em64t:  em64t   1
181 +arch_canon:    x32: x32        1
182  
183  arch_canon:    alpha:  alpha   2
184  arch_canon:    alphaev5: alphaev5      2
185 @@ -379,6 +383,8 @@
186  buildarchtranslate: amd64: x86_64
187  buildarchtranslate: ia32e: x86_64
188  
189 +buildarchtranslate: x32: x32
190 +
191  buildarchtranslate: sh3: sh3
192  buildarchtranslate: sh4: sh4
193  buildarchtranslate: sh4a: sh4
194 @@ -486,10 +492,12 @@
195  
196  arch_compat: ia64: noarch
197  
198 -arch_compat: x86_64: amd64 em64t athlon noarch
199 +arch_compat: x86_64: amd64 em64t athlon x32 noarch
200  arch_compat: amd64: x86_64 em64t athlon noarch
201  arch_compat: ia32e: x86_64 em64t athlon noarch
202  
203 +arch_compat: x32: x32 x86_64 noarch
204 +
205  arch_compat: sh3: noarch
206  arch_compat: sh4: noarch
207  arch_compat: sh4a: sh4
208 @@ -628,6 +636,8 @@
209  buildarch_compat: amd64: x86_64
210  buildarch_compat: ia32e: x86_64
211  
212 +buildarch_compat: x32: noarch
213 +
214  buildarch_compat: sh3: noarch
215  buildarch_compat: sh4: noarch
216  buildarch_compat: sh4a: sh4
217 diff -ur rpm-4.16.1.2/tools/elfdeps.c rpm-4.16.1.2.x32/tools/elfdeps.c
218 --- rpm-4.16.1.2/tools/elfdeps.c        2020-05-28 12:04:25.084136944 +0200
219 +++ rpm-4.16.1.2.x32/tools/elfdeps.c    2021-03-21 21:50:04.127398387 +0100
220 @@ -94,6 +94,9 @@
221             break;
222         }
223      }
224 +    if ((ehdr->e_ident[EI_CLASS] == ELFCLASS32) && (ehdr->e_machine == EM_X86_64)) {
225 +       marker = "(x32bit)";
226 +    }
227      return marker;
228  }
229  
This page took 0.053462 seconds and 2 git commands to generate.