Skip to content

Latest commit

 

History

History
690 lines (576 loc) · 22.6 KB

glibc.spec

File metadata and controls

690 lines (576 loc) · 22.6 KB
 
Oct 4, 2011
Oct 4, 2011
1
2
# temporary needed for debuginfo change in rpm package
%define _unpackaged_files_terminate_build 0
Mar 31, 2014
Mar 31, 2014
3
%define glibcsrcdir eglibc-2.19
Oct 4, 2011
Oct 4, 2011
4
5
6
7
8
### glibc.spec.in follows:
%define run_glibc_tests 0
%define multiarcharches %{ix86} x86_64
Mar 24, 2012
Mar 24, 2012
9
Summary: Embedded GLIBC (EGLIBC) is a variant of the GNU C Library (GLIBC)
Oct 4, 2011
Oct 4, 2011
10
Name: glibc
Mar 31, 2014
Mar 31, 2014
11
Version: 2.19
Mar 24, 2012
Mar 24, 2012
12
13
Release: 1
Oct 4, 2011
Oct 4, 2011
14
15
16
17
18
19
20
# GPLv2+ is used in a bunch of programs, LGPLv2+ is used for libraries.
# Things that are linked directly into dynamically linked programs
# and shared libraries (e.g. crt files, lib*_nonshared.a) have an additional
# exception which allows linking it into any kind of programs or shared
# libraries without restrictions.
License: LGPLv2+ and LGPLv2+ with exceptions and GPLv2+
Group: System/Libraries
Mar 24, 2012
Mar 24, 2012
21
URL: http://www.eglibc.org/
Mar 31, 2014
Mar 31, 2014
22
23
Source0: https://launchpad.net/ubuntu/+archive/primary/+files/eglibc_2.19.orig.tar.xz
Source1: eglibc_2.19-0ubuntu2.debian.tar.xz
May 27, 2012
May 27, 2012
24
Source11: build-locale-archive.c
Mar 31, 2014
Mar 31, 2014
25
26
# glibc-arm-alignment-fix.patch: safe but probably not needed anymore
Mar 24, 2012
Mar 24, 2012
27
Patch1: glibc-arm-alignment-fix.patch
Mar 31, 2014
Mar 31, 2014
28
# glibc-arm-runfast.patch: performance improvement patch
Mar 24, 2012
Mar 24, 2012
29
Patch2: glibc-arm-runfast.patch
Mar 31, 2014
Mar 31, 2014
30
# glibc-2.19-ldso-rpath-prefix-option.2.diff: required for OBS
Mar 24, 2012
Mar 24, 2012
31
32
Patch3: glibc-2.13-no-timestamping.patch
Patch4: glibc-2.14.1-elf-rtld.c.1.diff
Mar 31, 2014
Mar 31, 2014
33
34
35
# glibc-2.19-ldso-rpath-prefix-option.2.diff: required from scratchbox2
Patch5: glibc-2.19-ldso-rpath-prefix-option.2.diff
# eglibc-2.15-nsswitchconf-location.3.diff: TODO review required
Mar 24, 2012
Mar 24, 2012
36
Patch6: eglibc-2.15-nsswitchconf-location.3.diff
Mar 31, 2014
Mar 31, 2014
37
# glibc-2.14.1-nscd-socket-location.4.diff: TODO review required
Mar 24, 2012
Mar 24, 2012
38
Patch7: glibc-2.14.1-nscd-socket-location.4.diff
Mar 31, 2014
Mar 31, 2014
39
40
41
42
43
44
45
46
47
48
49
# glibc-2.19-ldso-nodefaultdirs-option.5.diff: required from scratchbox2
Patch8: glibc-2.19-ldso-nodefaultdirs-option.5.diff
Patch9: glibc-2.14-locarchive-fedora.patch
# eglibc-2.15-use-usrbin-localedef.patch: TODO review required
Patch10: eglibc-2.15-use-usrbin-localedef.patch
# eglibc-2.15-fix-neon-libdl.patch: fix crash
Patch11: eglibc-2.15-fix-neon-libdl.patch
# eglibc-2.19-shlib-make.patch: fix build fail
Patch12: eglibc-2.19-shlib-make.patch
# eglibc-2.19-sb2-workaround.patch: fix build fail
Patch13: eglibc-2.19-sb2-workaround.patch
Feb 7, 2012
Feb 7, 2012
50
Oct 4, 2011
Oct 4, 2011
51
52
53
54
Provides: ldconfig
# The dynamic linker supports DT_GNU_HASH
Provides: rtld(GNU_HASH)
Requires: glibc-common = %{version}-%{release}
Sep 12, 2012
Sep 12, 2012
55
56
57
58
59
60
61
# This is a short term need until everything is rebuilt in armhf
%ifarch armv7hl armv7nhl armv7tnhl
Provides: ld-linux.so.3
Provides: ld-linux.so.3(GLIBC_2.4)
%endif
Oct 4, 2011
Oct 4, 2011
62
63
64
65
66
67
# Require libgcc in case some program calls pthread_cancel in its %%post
Requires(pre): libgcc
# This is for building auxiliary programs like memusage, nscd
# For initial glibc bootstraps it can be commented out
#BuildRequires: gd-devel libpng-devel zlib-devel texinfo
BuildRequires: zlib-devel texinfo
Apr 16, 2012
Apr 16, 2012
68
BuildRequires: sed >= 3.95, libcap-devel, gettext
Oct 4, 2011
Oct 4, 2011
69
#BuildRequires: /bin/ps, /bin/kill, /bin/awk, procps
Mar 24, 2012
Mar 24, 2012
70
71
BuildRequires: gawk, util-linux, quilt
# This gcc >= 3.2 is to ensure that __frame_state_for is exported by glibc
Oct 4, 2011
Oct 4, 2011
72
73
# will be compatible with egcs 1.x.y
BuildRequires: gcc >= 3.2
Mar 24, 2012
Mar 24, 2012
74
%define enablekernel 2.6.32
Oct 4, 2011
Oct 4, 2011
75
%ifarch %{ix86}
Oct 15, 2011
Oct 15, 2011
76
77
78
%ifarch i486
%define _target_cpu i486
%else
Oct 4, 2011
Oct 4, 2011
79
80
%define _target_cpu i686
%endif
Oct 15, 2011
Oct 15, 2011
81
%endif
Oct 4, 2011
Oct 4, 2011
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
%ifarch i386
%define nptl_target_cpu i486
%else
%define nptl_target_cpu %{_target_cpu}
%endif
# Need AS_NEEDED directive
# Need --hash-style=* support
BuildRequires: binutils >= 2.19.51.0.10
BuildRequires: gcc >= 3.2.1-5
BuildRequires: elfutils >= 0.72
BuildRequires: rpm >= 4.2-0.56
%define __find_provides %{_builddir}/%{glibcsrcdir}/find_provides.sh
%define _filter_GLIBC_PRIVATE 1
%description
The glibc package contains standard libraries which are used by
multiple programs on the system. In order to save disk space and
memory, as well as to make upgrading easier, common system code is
kept in one place and shared between programs. This particular package
contains the most important sets of shared libraries: the standard C
library and the standard math library. Without these two libraries, a
Linux system will not function.
%package devel
Summary: Object files for development using standard C libraries
Group: Development/Libraries
Requires(pre): /sbin/install-info
Requires(pre): %{name}-headers
Requires: %{name}-headers = %{version}-%{release}
Requires: %{name} = %{version}-%{release}
%description devel
The glibc-devel package contains the object files necessary
for developing programs which use the standard C libraries (which are
used by nearly all programs). If you are developing programs which
will use the standard C libraries, your system needs to have these
standard object files available in order to create the
executables.
Install glibc-devel if you are going to develop programs which will
use the standard C libraries.
%package static
Summary: C library static libraries for -static linking
Group: Development/Libraries
Requires: %{name}-devel = %{version}-%{release}
%description static
The glibc-static package contains the C library static libraries
for -static linking. You don't need these, unless you link statically,
which is highly discouraged.
%package headers
Summary: Header files for development using standard C libraries
Group: Development/Libraries
Provides: %{name}-headers(%{_target_cpu})
%ifarch x86_64
# If both -m32 and -m64 is to be supported on AMD64, x86_64 glibc-headers
# have to be installed, not i586 ones.
Obsoletes: %{name}-headers(i586)
Obsoletes: %{name}-headers(i686)
%endif
Requires(pre): kernel-headers
Requires: kernel-headers >= 2.2.1, %{name} = %{version}-%{release}
BuildRequires: kernel-headers >= 2.6.22
%description headers
The glibc-headers package contains the header files necessary
for developing programs which use the standard C libraries (which are
used by nearly all programs). If you are developing programs which
will use the standard C libraries, your system needs to have these
standard header files available in order to create the
executables.
Install glibc-headers if you are going to develop programs which will
use the standard C libraries.
%package common
Summary: Common binaries and locale data for glibc
Requires: %{name} = %{version}-%{release}
Requires: tzdata >= 2003a
Group: System/Base
%description common
The glibc-common package includes common binaries for the GNU libc
libraries, as well as national language (locale) support.
%package -n nscd
Summary: A Name Service Caching Daemon (nscd)
Group: System/Daemons
Requires(pre): /usr/sbin/useradd, /usr/sbin/userdel, sh-utils
%description -n nscd
Nscd caches name service lookups and can dramatically improve
performance with NIS+, and may help with DNS as well.
%package utils
Summary: Development utilities from GNU C library
Group: Development/Tools
Requires: %{name} = %{version}-%{release}
%description utils
The glibc-utils package contains memusage, a memory usage profiler,
mtrace, a memory leak tracer and xtrace, a function call tracer
which can be helpful during program debugging.
If unsure if you need this, don't install this package.
%prep
Mar 24, 2012
Mar 24, 2012
194
%setup -q -n %{glibcsrcdir} %{?glibc_release_unpack}
Jan 1, 2014
Jan 1, 2014
195
xz -dc %SOURCE1 | tar xf -
Mar 31, 2014
Mar 31, 2014
196
197
# glibc-arm-alignment-fix.patch
Oct 4, 2011
Oct 4, 2011
198
%patch1 -p1
Feb 7, 2012
Feb 7, 2012
199
%ifarch %{arm}
Mar 31, 2014
Mar 31, 2014
200
# glibc-arm-runfast.patch
Oct 4, 2011
Oct 4, 2011
201
202
%patch2 -p1
%endif
Mar 31, 2014
Mar 31, 2014
203
# glibc-2.13-no-timestamping.patch
Mar 24, 2012
Mar 24, 2012
204
%patch3 -p1
Mar 31, 2014
Mar 31, 2014
205
# glibc-2.14.1-elf-rtld.c.1.diff
Oct 4, 2011
Oct 4, 2011
206
%patch4 -p1
Mar 31, 2014
Mar 31, 2014
207
# glibc-2.19-ldso-rpath-prefix-option.2.diff
Oct 4, 2011
Oct 4, 2011
208
%patch5 -p1
Mar 31, 2014
Mar 31, 2014
209
# eglibc-2.15-nsswitchconf-location.3.diff
Oct 4, 2011
Oct 4, 2011
210
%patch6 -p1
Mar 31, 2014
Mar 31, 2014
211
# glibc-2.14.1-nscd-socket-location.4.diff
Oct 4, 2011
Oct 4, 2011
212
%patch7 -p1
Mar 31, 2014
Mar 31, 2014
213
# glibc-2.19-ldso-nodefaultdirs-option.5.diff
Oct 4, 2011
Oct 4, 2011
214
%patch8 -p1
Mar 31, 2014
Mar 31, 2014
215
216
# glibc-2.14-locarchive-fedora.patch
%patch9 -p1
Mar 18, 2013
Mar 18, 2013
217
%if 0%{?qemu_user_space_build}
Mar 31, 2014
Mar 31, 2014
218
219
220
221
# eglibc-2.15-use-usrbin-localedef.patch
%patch10 -p1
# eglibc-2.15-fix-neon-libdl.patch
%patch11 -p1
Mar 18, 2013
Mar 18, 2013
222
%endif
Mar 31, 2014
Mar 31, 2014
223
224
225
226
# eglibc-2.19-shlib-make.patch
%patch12 -p1
# eglibc-2.19-sb2-workaround.patch
%patch13 -p1
Mar 24, 2012
Mar 24, 2012
227
228
229
230
# Not well formatted locales --cvm
sed -i "s|^localedata/locale-eo_EO.diff$||g" debian/patches/series
sed -i "s|^localedata/locale-ia.diff$||g" debian/patches/series
Jun 11, 2012
Jun 11, 2012
231
232
233
234
# This screws up armv6, as it doesn't have ARMv7 instructions/Thumb2
%ifarch armv6l
sed -i "s|^arm/local-linaro-cortex-strings.diff$||g" debian/patches/series
%endif
Jan 1, 2014
Jan 1, 2014
235
236
sed -i "s|^kfreebsd.*$||g" debian/patches/series
Mar 24, 2012
Mar 24, 2012
237
QUILT_PATCHES=debian/patches quilt push -a
Oct 4, 2011
Oct 4, 2011
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
cat > find_provides.sh <<EOF
#!/bin/sh
/usr/lib/rpm/find-provides | grep -v GLIBC_PRIVATE
exit 0
EOF
chmod +x find_provides.sh
touch `find . -name configure`
touch locale/programs/*-kw.h
%build
GCC=gcc
GXX=g++
echo %{ix86}
%ifarch %{ix86}
Oct 15, 2011
Oct 15, 2011
253
254
255
%ifarch i486
BuildFlags="-march=i486"
%else
Oct 4, 2011
Oct 4, 2011
256
257
BuildFlags="-march=core2 -mtune=atom"
%endif
Oct 15, 2011
Oct 15, 2011
258
%endif
Oct 4, 2011
Oct 4, 2011
259
260
261
262
263
264
265
266
%ifnarch %{arm}
BuildFlags="$BuildFlags -fasynchronous-unwind-tables"
%endif
EnableKernel="--enable-kernel=%{enablekernel}"
echo "$GCC" > Gcc
Jan 1, 2014
Jan 1, 2014
267
%ifarch %{arm} mipsel aarch64
Mar 31, 2014
Mar 31, 2014
268
269
270
EnablePorts="ports,"
%else
EnablePorts=""
Oct 4, 2011
Oct 4, 2011
271
272
273
274
275
276
277
278
%endif
build_nptl()
{
builddir=build-%{nptl_target_cpu}-$1
shift
rm -rf $builddir
mkdir $builddir ; cd $builddir
Feb 5, 2013
Feb 5, 2013
279
280
281
echo libdir=/usr/lib > configparms
echo slibdir=/lib >> configparms
echo BUILD_CC=gcc >> configparms
Mar 8, 2014
Mar 8, 2014
282
283
284
%ifarch mipsel
build_CFLAGS="$BuildFlags -g -O1 $*"
%else
Oct 4, 2011
Oct 4, 2011
285
build_CFLAGS="$BuildFlags -g -O3 $*"
Mar 8, 2014
Mar 8, 2014
286
%endif
Jan 1, 2014
Jan 1, 2014
287
export MAKEINFO=:
Oct 4, 2011
Oct 4, 2011
288
289
../configure CC="$GCC" CXX="$GXX" CFLAGS="$build_CFLAGS" \
--prefix=%{_prefix} \
Mar 31, 2014
Mar 31, 2014
290
--enable-pt_chown "--enable-add-ons=libidn,"$EnablePorts"nptl" --without-cvs $EnableKernel \
Jan 1, 2014
Jan 1, 2014
291
292
--enable-bind-now --with-tls --with-__thread \
--with-headers=%{_prefix}/include \
Oct 4, 2011
Oct 4, 2011
293
294
295
%ifnarch %{arm}
--build %{nptl_target_cpu}-%{_vendor}-linux \
--host %{nptl_target_cpu}-%{_vendor}-linux \
Sep 12, 2012
Sep 12, 2012
296
297
298
299
%else
%ifarch armv7hl armv7tnhl armv7nhl
--build %{nptl_target_cpu}-%{_vendor}-linux-gnueabihf \
--host %{nptl_target_cpu}-%{_vendor}-linux-gnueabihf \
Oct 4, 2011
Oct 4, 2011
300
301
302
303
%else
--build %{nptl_target_cpu}-%{_vendor}-linux-gnueabi \
--host %{nptl_target_cpu}-%{_vendor}-linux-gnueabi \
%endif
Sep 12, 2012
Sep 12, 2012
304
%endif
Oct 4, 2011
Oct 4, 2011
305
306
307
%ifarch %{multiarcharches}
--enable-multi-arch \
%endif
Mar 31, 2014
Mar 31, 2014
308
--disable-profile --enable-obsolete-rpc
Jan 1, 2014
Jan 1, 2014
309
Feb 7, 2012
Feb 7, 2012
310
make %{?_smp_mflags} -r CFLAGS="$build_CFLAGS"
Oct 4, 2011
Oct 4, 2011
311
312
313
314
315
316
cd ..
}
build_nptl linuxnptl
May 27, 2012
May 27, 2012
317
318
319
320
321
322
$GCC -Os -static -o build-locale-archive %SOURCE11 \
./build-%{nptl_target_cpu}-linuxnptl/locale/locarchive.o \
./build-%{nptl_target_cpu}-linuxnptl/locale/md5.o \
-DDATADIR=\"%{_datadir}\" -DPREFIX=\"%{_prefix}\" \
-L./build-%{nptl_target_cpu}-linuxnptl -I./locale
Oct 4, 2011
Oct 4, 2011
323
324
325
326
327
%install
GCC=`cat Gcc`
rm -rf $RPM_BUILD_ROOT
mkdir -p $RPM_BUILD_ROOT
Mar 24, 2012
Mar 24, 2012
328
make -j1 install_root=$RPM_BUILD_ROOT install -C build-%{nptl_target_cpu}-linuxnptl PARALLELMFLAGS=
Oct 4, 2011
Oct 4, 2011
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
%ifnarch %{auxarches}
cd build-%{nptl_target_cpu}-linuxnptl && \
make %{?_smp_mflags} install_root=$RPM_BUILD_ROOT install-locales -C ../localedata objdir=`pwd` && \
cd ..
%endif
librtso=`basename $RPM_BUILD_ROOT/%{_lib}/librt.so.*`
# Remove the files we don't want to distribute
rm -f $RPM_BUILD_ROOT%{_prefix}/%{_lib}/libNoVersion*
rm -f $RPM_BUILD_ROOT/%{_lib}/libNoVersion*
if [ -d $RPM_BUILD_ROOT%{_prefix}/info -a "%{_infodir}" != "%{_prefix}/info" ]; then
mkdir -p $RPM_BUILD_ROOT%{_infodir}
mv -f $RPM_BUILD_ROOT%{_prefix}/info/* $RPM_BUILD_ROOT%{_infodir}
rm -rf $RPM_BUILD_ROOT%{_prefix}/info
fi
ln -sf libbsd-compat.a $RPM_BUILD_ROOT%{_prefix}/%{_lib}/libbsd.a
Mar 24, 2012
Mar 24, 2012
350
install -p -m 644 nss/nsswitch.conf $RPM_BUILD_ROOT/etc/nsswitch.conf
Oct 4, 2011
Oct 4, 2011
351
352
353
354
355
356
357
358
359
360
361
mkdir -p $RPM_BUILD_ROOT/etc/default
install -p -m 644 nis/nss $RPM_BUILD_ROOT/etc/default/nss
# This is for ncsd - in glibc 2.2
install -m 644 nscd/nscd.conf $RPM_BUILD_ROOT/etc
# Don't include ld.so.cache
rm -f $RPM_BUILD_ROOT/etc/ld.so.cache
# Include ld.so.conf
Apr 24, 2013
Apr 24, 2013
362
echo 'include /etc/ld.so.conf.d/*.conf' > $RPM_BUILD_ROOT/etc/ld.so.conf
Oct 4, 2011
Oct 4, 2011
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
> $RPM_BUILD_ROOT/etc/ld.so.cache
chmod 644 $RPM_BUILD_ROOT/etc/ld.so.conf
mkdir -p $RPM_BUILD_ROOT/etc/ld.so.conf.d
mkdir -p $RPM_BUILD_ROOT/etc/sysconfig
> $RPM_BUILD_ROOT/etc/sysconfig/nscd
# Include %{_prefix}/%{_lib}/gconv/gconv-modules.cache
> $RPM_BUILD_ROOT%{_prefix}/%{_lib}/gconv/gconv-modules.cache
chmod 644 $RPM_BUILD_ROOT%{_prefix}/%{_lib}/gconv/gconv-modules.cache
strip -g $RPM_BUILD_ROOT%{_prefix}/%{_lib}/*.o
mkdir -p $RPM_BUILD_ROOT%{_prefix}/lib/debug%{_prefix}/%{_lib}
cp -a $RPM_BUILD_ROOT%{_prefix}/%{_lib}/*.a \
$RPM_BUILD_ROOT%{_prefix}/lib/debug%{_prefix}/%{_lib}/
rm -f $RPM_BUILD_ROOT%{_prefix}/lib/debug%{_prefix}/%{_lib}/*_p.a
# Now strip debugging info from static libraries
pushd $RPM_BUILD_ROOT%{_prefix}/%{_lib}/
for i in *.a; do
if [ -f $i ]; then
case "$i" in
*_p.a) ;;
*) strip -g -R .comment $i ;;
esac
fi
done
popd
# Hardlink identical locale files together
%ifnarch %{auxarches}
#From 2.11, removed hardlink
olddir=`pwd`
pushd ${RPM_BUILD_ROOT}%{_prefix}/lib/locale
rm locale-archive || :
# Intentionally we do not pass --alias-file=, aliases will be added
# by build-locale-archive.
# note that due to qemu-arm emulation behaviour, we need to break this up into multiple invocations.
Mar 18, 2013
Mar 18, 2013
400
401
402
403
404
405
406
407
408
409
410
# see BMC 10526.
localedef_bin="$olddir/build-%{nptl_target_cpu}-linuxnptl/elf/ld.so --library-path $olddir/build-%{nptl_target_cpu}-linuxnptl/ $olddir/build-%{nptl_target_cpu}-linuxnptl/locale/localedef"
%if 0%{?qemu_user_space_build}
if [ -f /usr/bin/localedef ]; then
localedef_bin=/usr/bin/localedef
fi
%endif
find . -name '*_*' -maxdepth 1 | xargs -r -n10 -P1 --verbose $localedef_bin --prefix ${RPM_BUILD_ROOT} --add-to-archive
Oct 4, 2011
Oct 4, 2011
411
412
413
414
415
416
rm -rf *_*
mv locale-archive{,.tmpl}
popd
%endif
Sep 12, 2012
Sep 12, 2012
417
418
419
420
421
%ifarch armv7hl armv7tnhl armv7nhl
ln -s /lib/ld-linux-armhf.so.3 ${RPM_BUILD_ROOT}/lib/ld-linux.so.3
%endif
Oct 4, 2011
Oct 4, 2011
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
rm -f ${RPM_BUILD_ROOT}/%{_lib}/libnss1-*
rm -f ${RPM_BUILD_ROOT}/%{_lib}/libnss-*.so.1
# Ugly hack for buggy rpm
ln -f ${RPM_BUILD_ROOT}%{_sbindir}/iconvconfig{,.%{_target_cpu}}
rm -f $RPM_BUILD_ROOT/etc/gai.conf
# In F7+ this is provided by rpcbind rpm
rm -f $RPM_BUILD_ROOT%{_sbindir}/rpcinfo
# BUILD THE FILE LIST
{
find $RPM_BUILD_ROOT \( -type f -o -type l \) \
\( \
-name etc -printf "%%%%config " -o \
-name gconv-modules \
-printf "%%%%verify(not md5 size mtime) %%%%config(noreplace) " -o \
-name gconv-modules.cache \
-printf "%%%%verify(not md5 size mtime) " \
, \
! -path "*/lib/debug/*" -printf "/%%P\n" \)
find $RPM_BUILD_ROOT -type d \
\( -path '*%{_prefix}/share/*' ! -path '*%{_infodir}' -o \
-path "*%{_prefix}/include/*" -o \
-path "*%{_prefix}/lib/locale/*" \
\) -printf "%%%%dir /%%P\n"
} | {
# primary filelist
SHARE_LANG='s|.*/share/locale/\([^/_]\+\).*/LC_MESSAGES/.*\.mo|%lang(\1) &|'
LIB_LANG='s|.*/lib/locale/\([^/_]\+\)|%lang(\1) &|'
# rpm does not handle %lang() tagged files hardlinked together accross
# languages very well, temporarily disable
LIB_LANG=''
sed -e "$LIB_LANG" -e "$SHARE_LANG" \
-e '\,/etc/\(localtime\|nsswitch.conf\|ld\.so\.conf\|ld\.so\.cache\|default\),d' \
-e '\,/%{_lib}/lib\(pcprofile\|memusage\)\.so,d' \
-e '\,bin/\(memusage\|mtrace\|xtrace\|pcprofiledump\),d'
} | sort > rpm.filelist
mkdir -p $RPM_BUILD_ROOT%{_prefix}/%{_lib}
mv -f $RPM_BUILD_ROOT/%{_lib}/lib{pcprofile,memusage}.so $RPM_BUILD_ROOT%{_prefix}/%{_lib}
grep '%{_prefix}/include/gnu/stubs-[32164]\+\.h' < rpm.filelist >> devel.filelist || :
grep '%{_prefix}/include' < rpm.filelist |
egrep -v '%{_prefix}/include/(linuxthreads|gnu/stubs-[32164]+\.h)' \
> headers.filelist
sed -i -e '\|%{_prefix}/%{_lib}/lib.*_p.a|d' \
-e '\|%{_prefix}/include|d' \
-e '\|%{_infodir}|d' rpm.filelist
grep '%{_prefix}/%{_lib}/lib.*\.a' < rpm.filelist \
| grep '/lib\(\(c\|pthread\|nldbl\)_nonshared\|bsd\(\|-compat\)\|g\|ieee\|mcheck\|rpcsvc\)\.a$' \
>> devel.filelist
grep '%{_prefix}/%{_lib}/lib.*\.a' < rpm.filelist \
| grep -v '/lib\(\(c\|pthread\|nldbl\)_nonshared\|bsd\(\|-compat\)\|g\|ieee\|mcheck\|rpcsvc\)\.a$' \
> static.filelist
grep '%{_prefix}/%{_lib}/.*\.o' < rpm.filelist >> devel.filelist
grep '%{_prefix}/%{_lib}/lib.*\.so' < rpm.filelist >> devel.filelist
sed -i -e '\|%{_prefix}/%{_lib}/lib.*\.a|d' \
-e '\|%{_prefix}/%{_lib}/.*\.o|d' \
-e '\|%{_prefix}/%{_lib}/lib.*\.so|d' \
-e '\|%{_prefix}/%{_lib}/linuxthreads|d' \
-e '\|nscd|d' rpm.filelist
grep '%{_prefix}/bin' < rpm.filelist >> common.filelist
#grep '%{_prefix}/lib/locale' < rpm.filelist | grep -v /locale-archive.tmpl >> common.filelist
#grep '%{_prefix}/libexec/pt_chown' < rpm.filelist >> common.filelist
grep '%{_prefix}/sbin/[^gi]' < rpm.filelist >> common.filelist
grep '%{_prefix}/share' < rpm.filelist | \
grep -v '%{_prefix}/share/zoneinfo' >> common.filelist
sed -i -e '\|%{_prefix}/bin|d' \
-e '\|%{_prefix}/lib/locale|d' \
-e '\|%{_prefix}/libexec/pt_chown|d' \
-e '\|%{_prefix}/sbin/[^gi]|d' \
-e '\|%{_prefix}/share|d' rpm.filelist
> nosegneg.filelist
May 27, 2012
May 27, 2012
506
echo '%{_prefix}/sbin/build-locale-archive' >> common.filelist
Oct 4, 2011
Oct 4, 2011
507
508
509
510
511
512
513
514
515
516
517
518
519
520
echo '%{_prefix}/sbin/nscd' > nscd.filelist
cat > utils.filelist <<EOF
%{_prefix}/%{_lib}/libmemusage.so
%{_prefix}/%{_lib}/libpcprofile.so
#%{_prefix}/bin/memusage
#%{_prefix}/bin/memusagestat
%{_prefix}/bin/mtrace
%{_prefix}/bin/pcprofiledump
%{_prefix}/bin/xtrace
EOF
# /etc/localtime
rm -f $RPM_BUILD_ROOT/etc/localtime
Jan 1, 2014
Jan 1, 2014
521
522
523
#ls -al $RPM_BUILD_ROOT%{_prefix}/share/zoneinfo/
#cp -f $RPM_BUILD_ROOT%{_prefix}/share/zoneinfo/US/Eastern $RPM_BUILD_ROOT/etc/localtime
ln -sf %{_prefix}/share/zoneinfo/US/Eastern $RPM_BUILD_ROOT/etc/localtime
Oct 4, 2011
Oct 4, 2011
524
525
526
527
rm -rf $RPM_BUILD_ROOT%{_prefix}/share/zoneinfo
# Make sure %config files have the same timestamp
Mar 24, 2012
Mar 24, 2012
528
touch -r timezone/northamerica $RPM_BUILD_ROOT/etc/ld.so.conf
Oct 4, 2011
Oct 4, 2011
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
touch -r sunrpc/etc.rpc $RPM_BUILD_ROOT/etc/rpc
# the last bit: more documentation
rm -rf documentation
mkdir documentation
cp crypt/README.ufc-crypt documentation/README.ufc-crypt
cp timezone/README documentation/README.timezone
cp ChangeLog{,.15,.16} documentation
bzip2 -9 documentation/ChangeLog*
cp posix/gai.conf documentation/
%if 0%{run_glibc_tests}
# Increase timeouts
export TIMEOUTFACTOR=16
parent=$$
echo ====================TESTING=========================
cd build-%{nptl_target_cpu}-linuxnptl
( make %{?_smp_mflags} -k check PARALLELMFLAGS=-s 2>&1
sleep 10s
teepid="`ps -eo ppid,pid,command | awk '($1 == '${parent}' && $3 ~ /^tee/) { print $2 }'`"
[ -n "$teepid" ] && kill $teepid
) | tee check.log || :
cd ..
echo ====================TESTING DETAILS=================
for i in `sed -n 's|^.*\*\*\* \[\([^]]*\.out\)\].*$|\1|p' build-*-linux*/check.log`; do
echo =====$i=====
cat $i || :
echo ============
done
echo ====================TESTING END=====================
PLTCMD='/^Relocation section .*\(\.rela\?\.plt\|\.rela\.IA_64\.pltoff\)/,/^$/p'
echo ====================PLT RELOCS LD.SO================
readelf -Wr $RPM_BUILD_ROOT/%{_lib}/ld-*.so | sed -n -e "$PLTCMD"
echo ====================PLT RELOCS LIBC.SO==============
readelf -Wr $RPM_BUILD_ROOT/%{_lib}/libc-*.so | sed -n -e "$PLTCMD"
echo ====================PLT RELOCS END==================
%endif
pushd $RPM_BUILD_ROOT/usr/%{_lib}/
$GCC -r -nostdlib -o libpthread.o -Wl,--whole-archive ./libpthread.a
rm libpthread.a
ar rcs libpthread.a libpthread.o
rm libpthread.o
popd
%ifarch %{auxarches}
echo Cutting down the list of unpackaged files
>> debuginfocommon.filelist
sed -e '/%%dir/d;/%%config/d;/%%verify/d;s/%%lang([^)]*) //;s#^/*##' \
common.filelist devel.filelist static.filelist headers.filelist \
utils.filelist nscd.filelist debuginfocommon.filelist |
(cd $RPM_BUILD_ROOT; xargs --no-run-if-empty rm -f 2> /dev/null || :)
%else
mkdir -p $RPM_BUILD_ROOT/var/{db,run}/nscd
touch $RPM_BUILD_ROOT/var/{db,run}/nscd/{passwd,group,hosts,services}
touch $RPM_BUILD_ROOT/var/run/nscd/{socket,nscd.pid}
%endif
%ifnarch %{auxarches}
> $RPM_BUILD_ROOT/%{_prefix}/lib/locale/locale-archive
%endif
May 27, 2012
May 27, 2012
599
600
install -m 700 build-locale-archive $RPM_BUILD_ROOT/usr/sbin/build-locale-archive
Oct 4, 2011
Oct 4, 2011
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
mkdir -p $RPM_BUILD_ROOT/var/cache/ldconfig
> $RPM_BUILD_ROOT/var/cache/ldconfig/aux-cache
%postun -p /sbin/ldconfig
%pre headers
# this used to be a link and it is causing nightmares now
if [ -L %{_prefix}/include/scsi ] ; then
rm -f %{_prefix}/include/scsi
fi
%post utils -p /sbin/ldconfig
%postun utils -p /sbin/ldconfig
May 27, 2012
May 27, 2012
616
617
%post common -p /usr/sbin/build-locale-archive
Oct 4, 2011
Oct 4, 2011
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
%pre -n nscd
/usr/sbin/useradd -M -o -r -d / -s /sbin/nologin \
-c "NSCD Daemon" -u 28 nscd > /dev/null 2>&1 || :
%postun -n nscd
if [ $1 = 0 ] ; then
/usr/sbin/userdel nscd > /dev/null 2>&1 || :
fi
if [ "$1" -ge "1" ]; then
service nscd condrestart > /dev/null 2>&1 || :
fi
%files -f rpm.filelist
%defattr(-,root,root)
%verify(not md5 size mtime) %config(noreplace) /etc/localtime
%verify(not md5 size mtime) %config(noreplace) /etc/nsswitch.conf
%verify(not md5 size mtime) %config(noreplace) /etc/ld.so.conf
Sep 12, 2012
Sep 12, 2012
636
637
638
%ifarch armv7hl armv7tnhl armv7nhl
/lib/ld-linux.so.3
%endif
Oct 4, 2011
Oct 4, 2011
639
640
641
642
643
644
%dir /etc/ld.so.conf.d
%dir %{_prefix}/libexec/getconf
%dir %{_prefix}/%{_lib}/gconv
%dir %attr(0700,root,root) /var/cache/ldconfig
%attr(0600,root,root) %verify(not md5 size mtime) %ghost %config(missingok,noreplace) /var/cache/ldconfig/aux-cache
%attr(0644,root,root) %verify(not md5 size mtime) %ghost %config(missingok,noreplace) /etc/ld.so.cache
Jan 1, 2014
Jan 1, 2014
645
646
%doc README NEWS INSTALL BUGS PROJECTS CONFORMANCE
%doc COPYING COPYING.LIB LICENSES
Oct 4, 2011
Oct 4, 2011
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
%doc hesiod/README.hesiod
%ifnarch %{auxarches}
%files -f common.filelist common
%defattr(-,root,root)
%dir %{_prefix}/lib/locale
%attr(0644,root,root) %verify(not md5 size mtime) %{_prefix}/lib/locale/locale-archive.tmpl
%attr(0644,root,root) %verify(not md5 size mtime mode) %ghost %config(missingok,noreplace) %{_prefix}/lib/locale/locale-archive
%dir %attr(755,root,root) /etc/default
%verify(not md5 size mtime) %config(noreplace) /etc/default/nss
%attr(4711,root,root) %{_prefix}/libexec/pt_chown
%doc documentation/*
%files -f devel.filelist devel
%defattr(-,root,root)
%files -f static.filelist static
%defattr(-,root,root)
%files -f headers.filelist headers
%defattr(-,root,root)
%files -f utils.filelist utils
%defattr(-,root,root)
%files -f nscd.filelist -n nscd
%defattr(-,root,root)
%config(noreplace) /etc/nscd.conf
%dir %attr(0755,root,root) /var/run/nscd
%dir %attr(0755,root,root) /var/db/nscd
%attr(0644,root,root) %verify(not md5 size mtime) %ghost %config(missingok,noreplace) /var/run/nscd/nscd.pid
%attr(0666,root,root) %verify(not md5 size mtime) %ghost %config(missingok,noreplace) /var/run/nscd/socket
%attr(0600,root,root) %verify(not md5 size mtime) %ghost %config(missingok,noreplace) /var/run/nscd/passwd
%attr(0600,root,root) %verify(not md5 size mtime) %ghost %config(missingok,noreplace) /var/run/nscd/group
%attr(0600,root,root) %verify(not md5 size mtime) %ghost %config(missingok,noreplace) /var/run/nscd/hosts
%attr(0600,root,root) %verify(not md5 size mtime) %ghost %config(missingok,noreplace) /var/run/nscd/services
%attr(0600,root,root) %verify(not md5 size mtime) %ghost %config(missingok,noreplace) /var/db/nscd/passwd
%attr(0600,root,root) %verify(not md5 size mtime) %ghost %config(missingok,noreplace) /var/db/nscd/group
%attr(0600,root,root) %verify(not md5 size mtime) %ghost %config(missingok,noreplace) /var/db/nscd/hosts
%attr(0600,root,root) %verify(not md5 size mtime) %ghost %config(missingok,noreplace) /var/db/nscd/services
%ghost %config(missingok,noreplace) /etc/sysconfig/nscd
%endif