summaryrefslogtreecommitdiff
path: root/Debian/Debhelper/Buildsystem/python_distutils.pm
blob: 2a6df37b0a1ce933bd87072fcfab0ef31a63cbe6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# A buildsystem plugin for building Python Distutils based
# projects.
#
# Copyright: © 2008 Joey Hess
#            © 2008-2009 Modestas Vainius
# License: GPL-2+

package Debian::Debhelper::Buildsystem::python_distutils;

use strict;
use Debian::Debhelper::Dh_Lib;
use Debian::Debhelper::Dh_Buildsystem_Bases;
use base 'Debian::Debhelper::Dh_Buildsystem_Option';

sub DESCRIPTION {
	"support for building Python distutils based packages"
}

sub is_buildable {
	return -e "setup.py";
}

sub get_builddir_option {
	my $self=shift;
	if ($self->get_builddir()) {
		return "--build-base=". $self->get_builddir();
	}
	return;
}

sub configure_impl {
	# Do nothing
	1;
}

sub build_impl {
	my $self=shift;
	doit("python", "setup.py", "build", @_);
}

sub test_impl {
	1;
}

sub install_impl {
	my $self=shift;
	my $destdir=shift;

	doit("python", "setup.py", "install", 
	     "--root=$destdir",
	     "--no-compile", "-O0", @_);
}

sub clean_impl {
	my $self=shift;
	doit("python", "setup.py", "clean", "-a", @_);
	# The setup.py might import files, leading to python creating pyc
	# files.
	doit('find', '.', '-name', '*.pyc', '-exec', 'rm', '{}', ';');
}

1;