Hi,
it appears i'm stuck with [0] bug, in a slightly different situation :
see my debian/rules, in attachement #1,
the generated python-orbited.postinst.debhelper, attachment #2,
and a quote of the debuild log, attachement #3.

debian/control states one source package,
and two packages : python-orbited and libjs-orbited, in that order.

Is there something wrong in my rules ?
Regards,
Jérémy Lal


[0]
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=494288

#!/usr/bin/make -f

DEB_PYTHON_MODULE_PACKAGE=python-orbited
DEB_PYTHON_SYSTEM=pysupport
DEB_PYTHON_INSTALL_ARGS_ALL += --single-version-externally-managed

include /usr/share/cdbs/1/rules/debhelper.mk
include /usr/share/cdbs/1/class/python-distutils.mk
include /usr/share/cdbs/1/rules/patchsys-quilt.mk

# Automatically added by dh_installinit
if [ -x "/etc/init.d/python-orbited" ]; then
        update-rc.d python-orbited defaults >/dev/null
        if [ -x "`which invoke-rc.d 2>/dev/null`" ]; then
                invoke-rc.d python-orbited start || exit $?
        else
                /etc/init.d/python-orbited start || exit $?
        fi
fi
# End automatically added section
# Automatically added by dh_pysupport
if which update-python-modules >/dev/null 2>&1; then
        update-python-modules  python-orbited.public
fi
# End automatically added section

...
dh_installdirs -plibjs-orbited 
dh_installdocs -ppython-orbited   
dh_installexamples -ppython-orbited 
dh_installman -ppython-orbited  
dh_installinfo -ppython-orbited  
dh_installmenu -ppython-orbited 
dh_installcron -ppython-orbited 
dh_installinit -ppython-orbited   
dh_installdebconf -ppython-orbited 
dh_installemacsen -ppython-orbited   
dh_installcatalogs -ppython-orbited 
dh_installpam -ppython-orbited 
dh_installlogrotate -ppython-orbited 
dh_installlogcheck -ppython-orbited 
dh_installchangelogs -ppython-orbited   
dh_installudev -ppython-orbited 
dh_lintian -ppython-orbited 
dh_install -ppython-orbited  
dh_link -ppython-orbited  
dh_installmime -ppython-orbited 
dh_pysupport -ppython-orbited 
dh_installdocs -plibjs-orbited   
dh_installexamples -plibjs-orbited 
dh_installman -plibjs-orbited  
dh_installinfo -plibjs-orbited  
dh_installmenu -plibjs-orbited 
dh_installcron -plibjs-orbited 
dh_installinit -plibjs-orbited   
dh_installdebconf -plibjs-orbited 
dh_installemacsen -plibjs-orbited   
dh_installcatalogs -plibjs-orbited 
dh_installpam -plibjs-orbited 
dh_installlogrotate -plibjs-orbited 
dh_installlogcheck -plibjs-orbited 
dh_installchangelogs -plibjs-orbited 
...

Reply via email to