source: projects/specs/trunk/s/shadow-utils/shadow-utils-vl.spec @ 12335

Revision 12335, 17.5 KB checked in by tomop, 4 years ago (diff)

updated 14 packages

chkconfig-1.3.61-3

diffutils-3.7-1

findutils-4.7.0-1

libmpc-1.1.0-1

libuser-0.62-1

libutempter-1.1.6-2

mpfr-4.0.2-1

mpfr3-3.1.6-1

psmisc-23.2-1

sed-4.8-1

shadow-utils-4.8-1

tcsh-6.22.02-1

texinfo-6.7-1

usermode-1.109-2

Line 
1%define WITH_SELINUX 0
2
3Summary: Utilities for managing accounts and shadow password files.
4Summary(ja): シャドウパスワードファイルとアカウントを管理するユーティリティ
5Name: shadow-utils
6Epoch: 2
7Version: 4.8
8Release: 1%{?_dist_release}
9Group: System Environment/Base
10
11Vendor: Project Vine
12Distribution: Vine Linux
13
14License: BSD and GPLv2+
15URL: http://pkg-shadow.alioth.debian.org/
16
17Source0: http://pkg-shadow.alioth.debian.org/shadow-%{version}.tar.xz
18Source1: shadow-4.0.17-login.defs
19Source2: shadow-utils.useradd
20
21# Misc small changes - most probably non-upstreamable
22Patch0: shadow-4.6-redhat.patch
23# Be more lenient with acceptable user/group names - non upstreamable
24Patch1: shadow-4.8-goodname.patch
25# Docfix for newusers - could be upstreamed
26Patch2: shadow-4.1.5.1-info-parent-dir.patch
27# Misc SElinux related changes - upstreamability unknown
28Patch6: shadow-4.8-selinux.patch
29# Syslog message change - could be upstreamed
30Patch11: shadow-4.1.5.1-logmsg.patch
31# SElinux related - upstreamability unknown
32Patch14: shadow-4.1.5.1-default-range.patch
33# Misc manual page changes - only some of them could be upstreamed
34Patch15: shadow-4.8-manfix.patch
35# Userdel usage message change - could be upstreamed
36Patch17: shadow-4.1.5.1-userdel-helpfix.patch
37# Date parsing improvement - could be upstreamed
38Patch19: shadow-4.2.1-date-parsing.patch
39# Additional error message - could be upstreamed
40Patch21: shadow-4.6-move-home.patch
41# Audit message changes - upstreamability unknown
42Patch22: shadow-4.8-audit-update.patch
43# Changes related to password unlocking - could be upstreamed
44Patch23: shadow-4.5-usermod-unlock.patch
45# Additional SElinux related changes - upstreamability unknown
46Patch28: shadow-4.8-selinux-perms.patch
47# Handle NULL return from *time funcs - could be upstreamed
48Patch29: shadow-4.2.1-null-tm.patch
49# SElinux related - upstreamability unknown
50Patch31: shadow-4.6-getenforce.patch
51# Handle include of crypt.h - could be upstreamed
52Patch32: shadow-4.8-crypt_h.patch
53# Handle /etc/passwd corruption - could be upstreamed
54Patch33: shadow-4.8-long-entry.patch
55# Limit uid/gid allocation to non-zero - could be upstreamed
56Patch38: shadow-4.6-sysugid-min-limit.patch
57# Ignore LOGIN_PLAIN_PROMPT in login.defs - upstreamability unknown
58Patch40: shadow-4.8-ignore-login-prompt.patch
59# Make the missing shell check into warning - could be upstreamed
60Patch41: shadow-4.8-invalid-shell-check.patch
61# Generate /var/spool/mail/$USER with the proper SELinux user identity - already  upstreamed
62Patch42: shadow-4.8-useradd-selinux-mail.patch
63
64BuildRoot: %{_tmppath}/%{name}-%{version}-root
65BuildRequires: gcc
66BuildRequires: audit-libs-devel >= 1.6.5
67BuildRequires: libacl-devel, libattr-devel
68BuildRequires: bison, flex, docbook-style-xsl, docbook-dtds
69BuildRequires: autoconf, automake, libtool, gettext-devel
70BuildRequires: /usr/bin/xsltproc, /usr/bin/itstool
71Obsoletes: adduser
72
73%description
74The shadow-utils package includes the necessary programs for
75converting UNIX password files to the shadow password format, plus
76programs for managing user and group accounts. The pwconv command
77converts passwords to the shadow password format. The pwunconv command
78unconverts shadow passwords and generates an npasswd file (a standard
79UNIX password file). The pwck command checks the integrity of password
80and shadow files. The lastlog command prints out the last login times
81for all users. The useradd, userdel, and usermod commands are used for
82managing user accounts. The groupadd, groupdel, and groupmod commands
83are used for managing group accounts.
84
85%description -l ja
86shadow-utilsパッケージはUNIXパスワードファイルをシャドウパスワー
87ドフォーマットに変換するのに必要なプログラムとユーザやグループア
88カウントを管理するプログラムを含みます。
89pwconvコマンドはパスワードをシャドウパスワードフォーマットに変換
90します。pwunconvコマンドはシャドウパスワードを逆変換し、npasswd
91ファイル(標準のUNIXパスワードファイル)を生成します。pwckコマンド
92はパスワードファイルとシャドウパスワードファイルの完全性をチェッ
93クします。lastlogコマンドは全ユーザの最後にログインした時間を出
94力します。useradd、userdelやusermodコマンドはユーザーアカウント
95を管理するのに使用されます。groupadd、groupdelやgroupmodコマンド
96はグループアカウントを管理するのに使用されます。
97 
98
99%prep
100%setup -q -n shadow-%{version}
101%patch0 -p1 -b .redhat
102%patch1 -p1 -b .goodname
103%patch2 -p1 -b .info-parent-dir
104%if %{WITH_SELINUX}
105%patch6 -p1 -b .selinux
106%endif
107%patch11 -p1 -b .logmsg
108%patch14 -p1 -b .default-range
109%patch15 -p1 -b .manfix
110%patch17 -p1 -b .userdel
111%patch19 -p1 -b .date-parsing
112%patch21 -p1 -b .move-home
113%patch22 -p1 -b .audit-update
114%patch23 -p1 -b .unlock
115%patch28 -p1 -b .selinux-perms
116%patch29 -p1 -b .null-tm
117%if %{WITH_SELINUX}
118%patch31 -p1 -b .getenforce
119%endif
120%patch32 -p1 -b .crypt_h
121%patch33 -p1 -b .long-entry
122%patch38 -p1 -b .sysugid-min-limit
123%patch40 -p1 -b .login-prompt
124%patch41 -p1 -b .invalid-shell
125%if %{WITH_SELINUX}
126%patch42 -p1 -b .useradd-selinux-mail
127%endif
128
129iconv -f ISO88591 -t utf-8  doc/HOWTO > doc/HOWTO.utf8
130cp -f doc/HOWTO.utf8 doc/HOWTO
131
132# Force regeneration of getdate.c
133rm libmisc/getdate.c
134
135
136%build
137export CFLAGS="$RPM_OPT_FLAGS -fpie"
138export LDFLAGS="-pie -Wl,-z,relro -Wl,-z,now"
139
140%configure \
141        --enable-shadowgrp \
142        --without-libcrack \
143        --with-sha-crypt \
144%if %{WITH_SELINUX}
145        --with-selinux \
146%else
147        --without-selinux \
148%endif
149        --without-libpam \
150        --disable-shared \
151        --with-group-name-max-length=32
152make %{_smp_mflags}
153
154%install
155rm -rf %{buildroot}
156make install DESTDIR=%{buildroot} gnulocaledir=%{buildroot}/%{_datadir}/locale MKINSTALLDIRS=`pwd`/mkinstalldirs
157install -d -m 755 %{buildroot}/etc/default
158install -c -m 0644 %{SOURCE1} %{buildroot}/etc/login.defs
159install -c -m 0600 %{SOURCE2} %{buildroot}/etc/default/useradd
160
161
162ln -s useradd %{buildroot}%{_sbindir}/adduser
163ln -s useradd.8 %{buildroot}/%{_mandir}/man8/adduser.8
164for subdir in %{buildroot}/%{_mandir}/{??,??_??,??_??.*}/man* ; do
165        test -d $subdir && test -e $subdir/useradd.8 && echo ".so man8/useradd.8" > $subdir/adduser.8
166done
167
168# Remove binaries we don't use.
169rm %{buildroot}/%{_bindir}/chfn
170rm %{buildroot}/%{_bindir}/chsh
171rm %{buildroot}/%{_bindir}/expiry
172rm %{buildroot}/%{_bindir}/groups
173rm %{buildroot}/%{_bindir}/login
174rm %{buildroot}/%{_bindir}/passwd
175rm %{buildroot}/%{_bindir}/su
176rm %{buildroot}/%{_sysconfdir}/login.access
177rm %{buildroot}/%{_sysconfdir}/limits
178rm %{buildroot}/%{_sbindir}/logoutd
179rm %{buildroot}/%{_sbindir}/nologin
180rm %{buildroot}/%{_sbindir}/chgpasswd
181rm %{buildroot}/%{_mandir}/man1/chfn.*
182rm %{buildroot}/%{_mandir}/*/man1/chfn.*
183rm %{buildroot}/%{_mandir}/man1/chsh.*
184rm %{buildroot}/%{_mandir}/*/man1/chsh.*
185rm %{buildroot}/%{_mandir}/man1/expiry.*
186rm %{buildroot}/%{_mandir}/*/man1/expiry.*
187rm %{buildroot}/%{_mandir}/man1/groups.*
188rm %{buildroot}/%{_mandir}/*/man1/groups.*
189rm %{buildroot}/%{_mandir}/man1/login.*
190rm %{buildroot}/%{_mandir}/*/man1/login.*
191rm %{buildroot}/%{_mandir}/man1/passwd.*
192rm %{buildroot}/%{_mandir}/*/man1/passwd.*
193rm %{buildroot}/%{_mandir}/man1/su.*
194rm %{buildroot}/%{_mandir}/*/man1/su.*
195rm %{buildroot}/%{_mandir}/man5/limits.*
196rm %{buildroot}/%{_mandir}/*/man5/limits.*
197rm %{buildroot}/%{_mandir}/man5/login.access.*
198rm %{buildroot}/%{_mandir}/*/man5/login.access.*
199rm %{buildroot}/%{_mandir}/man5/passwd.*
200rm %{buildroot}/%{_mandir}/*/man5/passwd.*
201rm %{buildroot}/%{_mandir}/man5/porttime.*
202rm %{buildroot}/%{_mandir}/*/man5/porttime.*
203rm %{buildroot}/%{_mandir}/man5/suauth.*
204rm %{buildroot}/%{_mandir}/*/man5/suauth.*
205rm %{buildroot}/%{_mandir}/man8/logoutd.*
206rm %{buildroot}/%{_mandir}/*/man8/logoutd.*
207rm %{buildroot}/%{_mandir}/man8/nologin.*
208rm %{buildroot}/%{_mandir}/*/man8/nologin.*
209rm %{buildroot}/%{_mandir}/man8/chgpasswd.*
210rm %{buildroot}/%{_mandir}/*/man8/chgpasswd.*
211
212%find_lang shadow
213
214%clean
215rm -rf %{buildroot}
216
217%files -f shadow.lang
218%defattr(-,root,root)
219%doc NEWS doc/HOWTO README
220%dir /etc/default
221%attr(0644,root,root)   %config /etc/login.defs
222%attr(0600,root,root)   %config /etc/default/useradd
223%{_bindir}/sg
224%{_bindir}/chage
225%{_bindir}/faillog
226%{_bindir}/gpasswd
227%{_bindir}/lastlog
228%{_bindir}/newgrp
229%attr(0755,root,root) %caps(cap_setgid=ep) %{_bindir}/newgidmap
230%attr(0755,root,root) %caps(cap_setuid=ep) %{_bindir}/newuidmap
231%{_sbindir}/adduser
232%{_sbindir}/user*
233%{_sbindir}/group*
234%{_sbindir}/grpck
235%{_sbindir}/pwck
236%{_sbindir}/*conv
237%{_sbindir}/chpasswd
238%{_sbindir}/newusers
239%{_sbindir}/vipw
240%{_sbindir}/vigr
241%{_mandir}/man1/chage.1*
242%{_mandir}/*/man1/chage.1*
243%{_mandir}/man1/gpasswd.1*
244%{_mandir}/*/man1/gpasswd.1*
245%{_mandir}/man1/sg.1*
246%{_mandir}/*/man1/sg.1*
247%{_mandir}/man1/newgrp.1*
248%{_mandir}/*/man1/newgrp.1*
249%{_mandir}/man1/newgidmap.1*
250%{_mandir}/*/man1/newgidmap.1*
251%{_mandir}/man1/newuidmap.1*
252%{_mandir}/*/man1/newuidmap.1*
253%{_mandir}/man3/shadow.3*
254%{_mandir}/*/man3/shadow.3*
255%{_mandir}/man3/getspnam.3*
256%{_mandir}/*/man3/getspnam.3*
257%{_mandir}/man5/shadow.5*
258%{_mandir}/*/man5/shadow.5*
259%{_mandir}/man5/login.defs.5*
260%{_mandir}/*/man5/login.defs.5*
261%{_mandir}/man5/gshadow.5*
262%{_mandir}/*/man5/gshadow.5*
263%{_mandir}/man5/faillog.5*
264%{_mandir}/*/man5/faillog.5*
265%{_mandir}/man5/subgid.5*
266%{_mandir}/*/man5/subgid.5*
267%{_mandir}/man5/subuid.5*
268%{_mandir}/*/man5/subuid.5*
269%{_mandir}/man8/adduser.8*
270%{_mandir}/*/man8/adduser.8*
271%{_mandir}/man8/group*.8*
272%{_mandir}/*/man8/group*.8*
273%{_mandir}/man8/user*.8*
274%{_mandir}/*/man8/user*.8*
275%{_mandir}/man8/pwck.8*
276%{_mandir}/*/man8/pwck.8*
277%{_mandir}/man8/grpck.8*
278%{_mandir}/*/man8/grpck.8*
279%{_mandir}/man8/chpasswd.8*
280%{_mandir}/*/man8/chpasswd.8*
281%{_mandir}/man8/newusers.8*
282%{_mandir}/*/man8/newusers.8*
283%{_mandir}/man8/*conv.8*
284%{_mandir}/*/man8/*conv.8*
285%{_mandir}/man8/lastlog.8*
286%{_mandir}/*/man8/lastlog.8*
287%{_mandir}/man8/faillog.8*
288%{_mandir}/*/man8/faillog.8*
289%{_mandir}/man8/vipw.8*
290%{_mandir}/*/man8/vipw.8*
291%{_mandir}/man8/vigr.8*
292%{_mandir}/*/man8/vigr.8*
293
294%changelog
295* Wed Mar 18 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2:4.8-1
296- updated to 4.8.
297- updated patches.
298
299* Wed Jul 09 2014 Daisuke SUZUKI <daisuke@vinelinux.org> 2:4.1.5.1-1
300- update to 4.1.5.1
301
302* Sun Apr 17 2011 Shu KONNO <owa@bg.wakwak.com> 2:4.1.4.2-2
303- rebuilt with rpm-4.8.1-3
304
305* Mon Apr 12 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 2:4.1.4.2-1
306- new upstream release
307- add vipw/vigr (moved from util-linux-ng)
308- max group name length set to 32 characters
309- update Patch0
310  - increase threshold for uid/gid reservations to 200
311- import Patch1,2,3 from fedora
312- disable autoreconf
313
314* Mon Jun 15 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2:4.1.4.1-1
315- new upstream release
316  - NEW UPSTREAM: http://pkg-shadow.alioth.debian.org/
317  - update URL:, SOURCES: to new upstream
318
319* Fri Aug 15 2008 Shu KONNO <owa@bg.wakwak.com> 2:4.0.16-1vl5
320- applied new versioning policy, spec in utf-8
321
322* Mon Aug 14 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2:4.0.16-0vl3
323- update Patch0 to fix <BTS:0499>
324  - select smaller gid value for system account
325
326* Tue Aug 08 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2:4.0.16-0vl2
327- update ja.po from debian-doc (committed in upstream)
328
329* Mon Jun 05 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2:4.0.16-0vl1
330- new upstream release
331- add Japanese Summary and descriptions from spec file translation project.
332- convert Japanese man pages to EUC-JP from UTF-8
333- import changes from FC pacakge.
334
335* Mon Jan 31 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1:4.0.3-35vl2
336- rebuild for VineSeed
337
338* Sun Jan 09 2005 IKEDA Katsumi <ikeda@webmasters.gr.jp> 2:4.0.3-35vl1.1
339- added a security patch (shadow-4.0.3-can-2004-1001.patch) for CAN-2004-1001.
340
341* Mon Oct 18 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2:4.0.3-35vl1
342- import Patch1[3-7] from fedora development.
343- fixed username/groupname limits. (vine-users:54797)
344
345* Sat Apr 10 2004 <tkoba@vinelinux.org> 4.0.3-21vl1
346- sync to fedora
347
348* Fri Jun 08 2001 <sagami@vinelinux.org>
349- 20000902-1vl1: added ja.po from 19990827-10vl2
350- disable patch9 (creating mailspool in /var/mail)
351
352* Tue May 22 2001 Bernhard Rosenkraenzer <bero@redhat.com> 20000902-1
353- Create an empty mailspool when creating a user so non-setuid/non-setgid
354  MDAs (postfix+procmail) can deliver mail (#41811)
355- 20000902
356- adapt patches
357
358* Fri Mar  9 2001 Nalin Dahyabhai <nalin@redhat.com>
359- don't overwrite user dot files in useradd (#19982)
360- truncate new files when moving overwriting files with the contents of other
361  files while moving directories (keeps files from looking weird later on)
362- configure using %%{_prefix} as the prefix
363
364* Fri Feb 23 2001 Trond Eivind Glomsr藷?<teg@redhat.com>
365- langify
366
367* Wed Aug 30 2000 Bernhard Rosenkraenzer <bero@redhat.com>
368- Fix up chage behavior (Bug #15883)
369
370* Wed Aug 30 2000 Bernhard Rosenkraenzer <bero@redhat.com>
371- 20000826
372- Fix up useradd man page (Bug #17036)
373
374* Tue Aug  8 2000 Bernhard Rosenkraenzer <bero@redhat.com>
375- check for vipw lock before adding or deleting users (Bug #6489)
376
377* Mon Aug  7 2000 Nalin Dahyabhai <nalin@redhat.com>
378- take LOG_CONS out of the openlog() call so that we don't litter the
379  screen during text-mode upgrades
380
381* Tue Jul 18 2000 Bernhard Rosenkraenzer <bero@redhat.com>
382- Remove a fixed-size buffer that caused problems when adding a huge number
383  of users to a group (>8192 bytes) (Bugs #3809, #11930)
384
385* Tue Jul 18 2000 Bernhard Rosenkraenzer <bero@redhat.com>
386- remove dependency on util-linux because it causes prereq loops
387
388* Tue Jul 18 2000 Nalin Dahyabhai <nalin@redhat.com>
389- change symlinked man pages to includers
390- require /usr/bin/newgrp (util-linux) so that /usr/bin/sg isn't left dangling
391
392* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
393- automatic rebuild
394
395* Sun Jun 18 2000 Matt Wilson <msw@redhat.com>
396- use mandir for FHS
397- added patches in src/ and po/ to honor DESTDIR
398- use make install DESTDIR=$RPM_BUILD_ROOT
399
400* Wed Feb 16 2000 Bernhard Rosenkraenzer <bero@redhat.com>
401- Fix up usermod's symlink behavior (Bug #5458)
402
403* Fri Feb 11 2000 Cristian Gafton <gafton@redhat.com>
404- get rid of mkpasswd
405
406* Mon Feb  7 2000 Nalin Dahyabhai <nalin@redhat.com>
407- fix usermod patch to check for shadow before doing any shadow-specific stuff
408  and merge it into the pwlock patch
409
410* Sat Feb  5 2000 Bernhard Rosenkraenzer <bero@redhat.com>
411- fix man symlinks
412
413* Wed Feb  2 2000 Nalin Dahyabhai <gafton@redhat.com>
414- make -p only change shadow password (bug #8923)
415
416* Mon Jan 31 2000 Cristian Gafton <gafton@redhat.com>
417- rebuild to fix dependeencies
418- man pages are compressed
419
420* Wed Jan 19 2000 Bernhard Rosenkraenzer <bero@redhat.com>
421- Fix a security bug (adduser could overwrite previously existing
422  groups, Bug #8609)
423
424* Sun Jan  9 2000 Bernhard Rosenkraenzer <bero@redhat.com>
425- unset LINGUAS before building
426- Fix typo in newusers manpage (Bug #8258)
427- libtoolize
428
429* Wed Sep 22 1999 Cristian Gafton <gafton@redhat.com>
430- fix segfault for userdel when the primary group for the user is not
431  defined
432
433* Tue Sep 21 1999 Cristian Gafton <gafton@redhat.com>
434- Serial: 1 because now we are using 19990827 (why the heck can't they have
435  a normal version just like everybody else?!)
436- ported all patches to the new code base
437
438* Thu Apr 15 1999 Bill Nottingham <notting@redhat.com>
439- SIGHUP nscd from usermod, too
440
441* Fri Apr 09 1999 Michael K. Johnson <johnsonm@redhat.com>
442- added usermod password locking from Chris Adams <cadams@ro.com>
443
444* Thu Apr 08 1999 Bill Nottingham <notting@redhat.com>
445- have things that modify users/groups SIGHUP nscd on exit
446
447* Wed Mar 31 1999 Michael K. Johnson <johnsonm@redhat.com>
448- have userdel remove user private groups when it is safe to do so
449- allow -f to force user removal even when user appears busy in utmp
450
451* Tue Mar 23 1999 Preston Brown <pbrown@redhat.com>
452- edit out unused CHFN fields from login.defs.
453
454* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com>
455- auto rebuild in the new build environment (release 7)
456
457* Wed Jan 13 1999 Bill Nottingham <notting@redhat.com>
458- configure fix for arm
459
460* Wed Dec 30 1998 Cristian Gafton <gafton@redhat.com>
461- build against glibc 2.1
462
463* Fri Aug 21 1998 Jeff Johnson <jbj@redhat.com>
464- Note that /usr/sbin/mkpasswd conflicts with /usr/bin/mkpasswd;
465  one of these (I think /usr/sbin/mkpasswd but other opinions are valid)
466  should probably be renamed.  In any case, mkpasswd.8 from this package
467  needs to be installed. (problem #823)
468
469* Fri May 08 1998 Prospector System <bugs@redhat.com>
470- translations modified for de, fr, tr
471
472* Tue Apr 21 1998 Cristian Gafton <gafton@redhat.com>
473- updated to 980403
474- redid the patches
475
476* Tue Dec 30 1997 Cristian Gafton <gafton@redhat.com>
477- updated the spec file
478- updated the patch so that new accounts created on shadowed system won't
479  confuse pam_pwdb anymore ('!!' default password instead on '!')
480- fixed a bug that made useradd -G segfault
481- the check for the ut_user is now patched into configure
482
483* Thu Nov 13 1997 Erik Troan <ewt@redhat.com>
484- added patch for XOPEN oddities in glibc headers
485- check for ut_user before checking for ut_name -- this works around some
486  confusion on glibc 2.1 due to the utmpx header not defining the ut_name
487  compatibility stuff. I used a gross sed hack here because I couldn't make
488  automake work properly on the sparc (this could be a glibc 2.0.99 problem
489  though). The utuser patch works fine, but I don't apply it.
490- sleep after running autoconf
491
492* Thu Nov 06 1997 Cristian Gafton <gafton@redhat.com>
493- added forgot lastlog command to the spec file
494
495* Sun Oct 26 1997 Cristian Gafton <gafton@redhat.com>
496- obsoletes adduser
497
498* Thu Oct 23 1997 Cristian Gafton <gafton@redhat.com>
499- modified groupadd; updated the patch
500
501* Fri Sep 12 1997 Cristian Gafton <gafton@redhat.com>
502- updated to 970616
503- changed useradd to meet RH specs
504- fixed some bugs
505
506* Tue Jun 17 1997 Erik Troan <ewt@redhat.com>
507- built against glibc
Note: See TracBrowser for help on using the repository browser.