]> git.donarmstrong.com Git - debhelper.git/blob - dh_makeshlibs
merge
[debhelper.git] / dh_makeshlibs
1 #!/usr/bin/perl -w
2
3 =head1 NAME
4
5 dh_makeshlibs - automatically create shlibs file and call dpkg-gensymbols
6
7 =cut
8
9 use strict;
10 use Debian::Debhelper::Dh_Lib;
11
12 =head1 SYNOPSIS
13
14 B<dh_makeshlibs> [S<I<debhelper options>>] [B<-m>I<major>] [B<-V>I<[dependencies]>] [B<-n>] [B<-X>I<item>] [S<B<--> I<params>>]
15
16 =head1 DESCRIPTION
17
18 B<dh_makeshlibs> is a debhelper program that automatically scans for shared
19 libraries, and generates a shlibs file for the libraries it finds.
20
21 It also adds a call to ldconfig in the F<postinst> and F<postrm> scripts (in
22 v3 mode and above only) to any packages in which it finds shared libraries.
23
24 =head1 FILES
25
26 =over 4
27
28 =item debian/I<package>.symbols
29
30 =item debian/I<package>.symbols.I<arch>
31
32 These symbols files, if present, are passed to L<dpkg-gensymbols(1)> to
33 be processed and installed. Use the I<arch> specific names if you need
34 to provide different symbols files for different architectures.
35
36 =back
37
38 =head1 OPTIONS
39
40 =over 4
41
42 =item B<-m>I<major>, B<--major=>I<major>
43
44 Instead of trying to guess the major number of the library with /postobjdump,
45 use the major number specified after the -m parameter. This is much less
46 useful than it used to be, back in the bad old days when this program
47 looked at library filenames rather than using objdump.
48
49 =item B<-V>, B<-V>I<dependencies>
50
51 =item B<--version-info>, B<--version-info=>I<dependencies>
52
53 By default, the shlibs file generated by this program does not make packages
54 depend on any particular version of the package containing the shared
55 library. It may be necessary for you to add some version dependancy
56 information to the shlibs file. If B<-V> is specified with no dependency
57 information, the current upstream version of the package is plugged into a
58 dependency that looks like "I<packagename> B<(=E<gt>> I<packageversion>B<)>". Note that in
59 debhelper compatibility levels before v4, the Debian part of the package
60 version number is also included. If B<-V> is specified with parameters, the
61 parameters can be used to specify the exact dependency information needed
62 (be sure to include the package name).
63
64 Beware of using B<-V> without any parameters; this is a conservative setting
65 that always ensures that other packages' shared library dependencies are at
66 least as tight as they need to be (unless your library is prone to changing
67 ABI without updating the upstream version number), so that if the
68 maintainer screws up then they won't break. The flip side is that packages
69 might end up with dependencies that are too tight and so find it harder to
70 be upgraded.
71
72 =item B<-n>, B<--noscripts>
73
74 Do not modify F<postinst>/F<postrm> scripts.
75
76 =item B<-X>I<item>, B<--exclude=>I<item>
77
78 Exclude files that contain I<item> anywhere in their filename or directory 
79 from being treated as shared libraries.
80
81 =item B<--add-udeb=>I<udeb>
82
83 Create an additional line for udebs in the shlibs file and use I<udeb> as the
84 package name for udebs to depend on instead of the regular library package.
85
86 =item B<--> I<params>
87
88 Pass I<params> to L<dpkg-gensymbols(1)>.
89
90 =back
91
92 =head1 EXAMPLES
93
94 =over 4
95
96 =item B<dh_makeshlibs>
97
98 Assuming this is a package named F<libfoobar1>, generates a shlibs file that
99 looks something like:
100  libfoobar 1 libfoobar1
101
102 =item B<dh_makeshlibs -V>
103
104 Assuming the current version of the package is 1.1-3, generates a shlibs
105 file that looks something like:
106  libfoobar 1 libfoobar1 (>= 1.1)
107
108 =item B<dh_makeshlibs -V 'libfoobar1 (E<gt>= 1.0)'>
109
110 Generates a shlibs file that looks something like:
111   libfoobar 1 libfoobar1 (>= 1.0)
112
113 =back
114
115 =cut
116
117 init(options => {
118         "m=s", => \$dh{M_PARAMS},
119         "major=s" => \$dh{M_PARAMS},
120         "version-info:s" => \$dh{V_FLAG},
121         "add-udeb=s" => \$dh{SHLIBS_UDEB},
122 });
123
124 my $od = "objdump";
125 # cross-compiling?
126 if (dpkg_architecture_value("DEB_BUILD_GNU_TYPE")
127     ne dpkg_architecture_value("DEB_HOST_GNU_TYPE")) {
128         $od=dpkg_architecture_value("DEB_HOST_GNU_TYPE") . "-objdump";
129 }
130
131 foreach my $package (@{$dh{DOPACKAGES}}) {
132         next if is_udeb($package);
133         
134         my $tmp=tmpdir($package);
135
136         my %seen;
137         my $need_ldconfig = 0;
138
139         doit("rm", "-f", "$tmp/DEBIAN/shlibs");
140
141         # So, we look for files or links to existing files with names that
142         # match "*.so.*". And we only look at real files not
143         # symlinks, so we don't accidentually add shlibs data to -dev
144         # packages. This may have a few false positives, which is ok,
145         # because only if we can get a library name and a major number from
146         # objdump is anything actually added.
147         my $exclude='';
148         my (@udeb_lines, @lib_files);
149         if (defined($dh{EXCLUDE_FIND}) && $dh{EXCLUDE_FIND} ne '') {
150                 $exclude="! \\( $dh{EXCLUDE_FIND} \\) ";
151         }
152         open (FIND, "find $tmp -type f \\( -name '*.so' -or -name '*.so.*' \\) $exclude |");
153         while (<FIND>) {
154                 my ($library, $major);
155                 push @lib_files, $_;
156                 my $objdump=`$od -p $_`;
157                 if ($objdump=~m/\s+SONAME\s+(.+)\.so\.(.+)/) {
158                         # proper soname format
159                         $library=$1;
160                         $major=$2;
161                 }
162                 elsif ($objdump=~m/\s+SONAME\s+(.+)-(.+)\.so/) {
163                         # idiotic crap soname format
164                         $library=$1;
165                         $major=$2;
166                 }
167
168                 if (defined($dh{M_PARAMS}) && $dh{M_PARAMS} ne '') {
169                         $major=$dh{M_PARAMS};
170                 }
171                 
172                 if (! -d "$tmp/DEBIAN") {
173                         doit("install","-d","$tmp/DEBIAN");
174                 }
175                 my $deps=$package;
176                 if ($dh{V_FLAG_SET}) {
177                         if ($dh{V_FLAG} ne '') {
178                                 $deps=$dh{V_FLAG};
179                         }       
180                         else {
181                                 # Call isnative becuase it sets $dh{VERSION}
182                                 # as a side effect.
183                                 isnative($package);
184                                 my $version = $dh{VERSION};
185                                 # Old compatibility levels include the
186                                 # debian revision, while new do not.
187                                 if (! compat(3)) {
188                                         # Remove debian version, if any.
189                                         $version =~ s/-[^-]+$//;
190                                 }
191                                 $deps="$package (>= $version)";
192                         }
193                 }
194                 if (defined($library) && defined($major) && defined($deps) &&
195                     $library ne '' && $major ne '' && $deps ne '') {
196                         $need_ldconfig=1;
197                         # Prevent duplicate lines from entering the file.
198                         my $line="$library $major $deps";
199                         if (! $seen{$line}) {
200                                 $seen{$line}=1;
201                                 complex_doit("echo '$line' >>$tmp/DEBIAN/shlibs");
202                                 if (defined($dh{SHLIBS_UDEB}) && $dh{SHLIBS_UDEB} ne '') {
203                                         my $udeb_deps = $deps;
204                                         $udeb_deps =~ s/\Q$package\E/$dh{SHLIBS_UDEB}/e;
205                                         $line="udeb: "."$library $major $udeb_deps";
206                                         push @udeb_lines, $line;
207                                 }
208                         }
209                 }
210         }
211         close FIND;
212
213         # Write udeb: lines last.
214         foreach (@udeb_lines) {
215                 complex_doit("echo '$_' >>$tmp/DEBIAN/shlibs");
216         }
217
218         # New as of dh_v3.
219         if (! compat(2) && ! $dh{NOSCRIPTS} && $need_ldconfig) {
220                 autoscript($package,"postinst","postinst-makeshlibs");
221                 autoscript($package,"postrm","postrm-makeshlibs");
222         }
223
224         if (-e "$tmp/DEBIAN/shlibs") {
225                 doit("chmod",644,"$tmp/DEBIAN/shlibs");
226                 doit("chown","0:0","$tmp/DEBIAN/shlibs");
227         }
228
229         # dpkg-gensymbols files
230         my $symbols=pkgfile($package, "symbols");
231         if (-e $symbols) {
232                 my @liblist;
233                 if (! compat(7)) {
234                         @liblist=map { "-e$_" } @lib_files;
235                 }
236                 # -I is used rather than using dpkg-gensymbols
237                 # own search for symbols files, since that search
238                 # is not 100% compatible with debhelper. (For example,
239                 # this supports --ignore being used.)
240                 doit("dpkg-gensymbols", "-p$package", "-I$symbols",
241                         "-P$tmp",
242                         @liblist,
243                         @{$dh{U_PARAMS}});
244                 if (-s "$tmp/DEBIAN/symbols" == 0) {
245                         doit("rm", "-f", "$tmp/DEBIAN/symbols");
246                 }
247         }
248 }
249
250 =head1 SEE ALSO
251
252 L<debhelper(7)>
253
254 This program is a part of debhelper.
255
256 =head1 AUTHOR
257
258 Joey Hess <joeyh@debian.org>
259
260 =cut