Debian build: Remove all patches, have setup.py not check modules.

In build scenarios, python modules may be missing from the build
machine. Then, allow setup.py to carry on.

bzr revid: p_christ@hol.gr-20090610173524-fmqucmype469zm9i
This commit is contained in:
P. Christeas 2009-06-10 20:35:24 +03:00
parent 358924f135
commit 9537f7b61b
3 changed files with 10 additions and 7 deletions

View File

@ -1,2 +0,0 @@
01-autobuild.patch
02-migrate.patch

12
debian/rules vendored
View File

@ -1,6 +1,6 @@
#!/usr/bin/make -f
include /usr/share/quilt/quilt.make
# include /usr/share/quilt/quilt.make
clean: clean-patched unpatch
clean-patched: patch
@ -8,7 +8,7 @@ clean-patched: patch
dh_testroot
rm -f build-stamp
python setup.py clean
NO_CHECK_MODULES=1 python setup.py clean
rm -rf build openerp-server
-find $(CURDIR) -type f -name "*.pyc" | xargs rm -f
@ -23,7 +23,7 @@ install: patch
dh_prep
dh_installdirs
python setup.py install --no-compile --prefix=$(CURDIR)/debian/openerp-server/usr
NO_CHECK_MODULES=1 python setup.py install --no-compile --prefix=$(CURDIR)/debian/openerp-server/usr
# Adjusting program location
sed -i -e 's|cd .*python.*/site-packages|cd /usr/lib|' debian/openerp-server/usr/bin/openerp-server
@ -56,4 +56,8 @@ binary-indep: install
dh_md5sums
dh_builddeb
.PHONY: clean build install binary binary-arch binary-indep
patch:
unpatch:
.PHONY: clean build install binary binary-arch binary-indep patch unpatch

View File

@ -121,7 +121,8 @@ def data_files():
return files
check_modules()
if not os.getenv('NO_CHECK_MODULES',False) :
check_modules()
f = file('openerp-server','w')
start_script = """#!/bin/sh\necho "OpenERP Setup - The content of this file is generated at the install stage\n" """