5 dh_python - calculates python dependencies and adds postinst and prerm python scripts
11 use Debian::Debhelper::Dh_Lib;
15 B<dh_python> [S<I<debhelper options>>] [B<-n>] [B<-V> I<version>] [S<I<module dirs ...>>]
19 Note: This program is deprecated. You should use dh_pysupport or
20 dh_pycentral instead. This program will do nothing if debian/pycompat
21 or a Python-Version control file field exists.
23 dh_python is a debhelper program that is responsible for generating the
24 ${python:Depends} substitutions and adding them to substvars files. It
25 will also add a postinst and a prerm script if required.
27 The program will look at python scripts and modules in your package, and
28 will use this information to generate a dependency on python, with the
29 current major version, or on pythonX.Y if your scripts or modules need a
30 specific python version. The dependency will be substituted into your
31 package's control file wherever you place the token "${python:Depends}".
33 If some modules need to be byte-compiled at install time, appropriate
34 postinst and prerm scripts will be generated. If already byte-compiled
35 modules are found, they are removed.
37 If you use this program, your package should build-depend on python.
45 If your package installs python modules in non-standard directories, you
46 can make dh_python check those directories by passing their names on the
47 command line. By default, it will check /usr/lib/site-python,
48 /usr/lib/$PACKAGE, /usr/share/$PACKAGE, /usr/lib/games/$PACKAGE,
49 /usr/share/games/$PACKAGE and /usr/lib/python?.?/site-packages.
51 Note: only /usr/lib/site-python, /usr/lib/python?.?/site-packages and the
52 extra names on the command line are searched for binary (.so) modules.
54 =item B<-V> I<version>
56 If the .py files your package ships are meant to be used by a specific
57 pythonX.Y version, you can use this option to specify the desired version,
58 such as 2.3. Do not use if you ship modules in /usr/lib/site-python.
60 =item B<-n>, B<--noscripts>
62 Do not modify postinst/postrm scripts.
68 Debian policy, version 3.5.7
70 Python policy, version 0.3.7
76 if (-e "debian/pycompat") {
77 warning("Doing nothing since dh_pycompat exists; dh_pysupport or dh_pycentral should do the work. You can remove dh_python from your rules file.");
80 elsif (`grep Python-Version: debian/control`) {
81 warning("Doing nothing since Python-Version is set; dh_pysupport or dh_pycentral should do the work. You can remove dh_python from your rules file.");
85 warning("This program is deprecated, you should use dh_pysupport or dh_pycentral instead.");
88 my $python = 'python';
90 # The current python major version
92 my $python_version = `$python -V 2>&1`;
93 if (! defined $python_version || $python_version eq "") {
94 error("Python is not installed, aborting. (Probably forgot to Build-Depend on python.)");
96 elsif ($python_version =~ m/^Python\s+(\d+)\.(\d+)(\.\d+)*/) {
97 $python_version = "$1.$2" ;
100 error("Unable to parse python version out of \"$python_version\".");
103 # The next python version
104 my $python_nextversion = $python_version + 0.1;
105 my $python_nextmajor = $python_major + 1;
107 my @python_allversions = ('1.5','2.1','2.2','2.3','2.4');
108 foreach (@python_allversions) {
113 my $usepython = "python$python_version";
114 if($dh{V_FLAG_SET}) {
115 $usepython = $dh{V_FLAG};
116 $usepython =~ s/^/python/;
117 if (! grep { $_ eq $usepython } @python_allversions) {
118 error("Unknown python version $dh{V_FLAG}");
122 # Cleaning the paths given on the command line
129 use constant PROGRAM => 1;
130 use constant PY_MODULE => 2;
131 use constant PY_MODULE_NONSTANDARD => 4;
132 use constant SO_MODULE => 8;
133 use constant SO_MODULE_NONSTANDARD => 16;
135 foreach my $package (@{$dh{DOPACKAGES}}) {
136 my $tmp = tmpdir($package);
138 delsubstvar($package, "python:Depends");
140 my @dirs = ("usr/lib/site-python", "usr/lib/$package", "usr/share/$package", "usr/lib/games/$package", "usr/share/games/$package", @ARGV );
141 my @dirs_so = ("usr/lib/site-python", @ARGV );
143 my $dep_on_python = 0;
145 my $look_for_pythonXY = 1;
147 # First, the case of python-foo and pythonX.Y-foo
148 if ($package =~ /^python-/) {
152 $pack =~ s/^python/python$python_version/;
153 if (grep { "$_" eq "$pack" } getpackages()) {
154 addsubstvar($package, "python:Depends", $pack);
157 if ($package !~ /^python[0-9].[0-9]-/) {
158 push @dirs, "usr/lib/$usepython/site-packages";
159 push @dirs_so, "usr/lib/$usepython/site-packages";
160 $look_for_pythonXY = 0;
163 @dirs = grep -d, map "$tmp/$_", @dirs;
164 @dirs_so = grep -d, map "$tmp/$_", @dirs_so;
168 foreach (@python_allversions) {
174 return unless -f and (-x or /\.py$/);
176 return unless open F, $_;
177 if (read F, local $_, 32 and m%^#!\s*/usr/bin/(env\s+)?(python(\d+\.\d+)?)\s%) {
178 if ( "python" eq $2 ) {
180 } elsif(defined $verdeps{$2}) {
181 $verdeps{$2} |= PROGRAM;
187 # Look for python modules
190 foreach my $curdir (@dirs) {
192 $curdir =~ s%^$tmp/%%;
197 doit(("rm","-f",$_."c",$_."o"));
201 if ($dh{V_FLAG_SET}) {
202 $verdeps{$usepython} |= PY_MODULE_NONSTANDARD;
206 $dirlist="$dirlist /$curdir";
211 foreach my $curdir (@dirs_so) {
213 $curdir =~ s%^$tmp/%%;
216 $has_module = 1 if /\.so$/;
219 if ($dh{V_FLAG_SET}) {
220 $verdeps{$usepython} |= SO_MODULE_NONSTANDARD;
229 # Dependencies on current python
230 $dep_on_python = 1 if $deps;
231 $strong_dep = 1 if($deps & (PY_MODULE|SO_MODULE));
233 if ($dep_on_python) {
234 addsubstvar($package, "python:Depends", $python, ">= $python_version");
236 addsubstvar($package, "python:Depends", $python, "<< $python_nextversion");
238 addsubstvar($package, "python:Depends", $python, "<< $python_nextmajor");
244 # Look for specific pythonX.Y modules
245 foreach my $pyver (@python_allversions) {
246 my $pydir="/usr/lib/$pyver/site-packages";
247 if ($look_for_pythonXY) {
248 if (grep -d,"$tmp$pydir") {
252 $verdeps{$pyver} |= PY_MODULE;
253 doit(("rm","-f",$_."c",$_."o"));
255 $verdeps{$pyver} |= SO_MODULE if /\.so$/;
260 # Go for the dependencies
261 addsubstvar($package, "python:Depends", $pyver) if $verdeps{$pyver};
263 # And now, the postinst and prerm stuff
264 if ($pyver eq "$usepython") {
265 if ($verdeps{$pyver} & PY_MODULE) {
266 $pydir = $pydir.$dirlist;
270 $verdeps{$pyver} |= PY_MODULE if($deps & PY_MODULE);
272 if ($verdeps{$pyver} & (PY_MODULE|PY_MODULE_NONSTANDARD) && ! $dh{NOSCRIPTS}) {
273 autoscript($package,"postinst","postinst-python","s%#PYVER#%$pyver%;s%#DIRLIST#%$pydir%");
277 if ($need_prerm && ! $dh{NOSCRIPTS}) {
278 autoscript($package,"prerm","prerm-python","s%#PACKAGE#%$package%");
286 This program is a part of debhelper.
290 Josselin Mouette <joss@debian.org>
292 most ideas stolen from Brendan O'Dea <bod@debian.org>