2015-02-24 33 views
3

我正在努力与dh创建包的python 3(而不是python 2)。我使用setup.py,当它与python3一起调用时,为python 3构建。我有一个单独的用于py3k的debian目录,所以我想为该版本构建。debhelper指示使用python3,但运行setup.py与python2

debian/rules看起来是这样的:

export DH_VERBOSE=1 
%: 
    dh [email protected] --with python3 

debian/control拥有所有平常的东西,包括X-Python3-Version

Source: woo 
Maintainer: Václav Šmilauer <[email protected]> 
Section: python 
Priority: optional 
Build-Depends: python3-setuptools (>= 0.6b3), python3-all, python3-all-dev, debhelper (>= 7.4.3), libboost-all-dev, pyqt4-dev-tools, libqt4-dev, libqt4-dev-bin, qt4-dev-tools, libgle3-dev, libqglviewer-qt4-dev | libqglviewer-dev, libvtk5-dev, libgts-dev, libeigen3-dev, freeglut3-dev 
X-Python3-Version: >= 3.4 
Standards-Version: 3.9.1 

Package: python3-woo 
Architecture: any 
Depends: ${misc:Depends}, ${python3:Depends}, ${shlibs:Depends}, python3-xlrd, python3-xlwt, python3-numpy, python3-matplotlib, python3-colorama, python3-qt4, python3-xlib, python3-genshi, python3-psutil, python3-minieigen, python3-imaging, python3-h5py, python3-lockfile, ipython3, mencoder | libav-tools | ffmpeg, python3-prettytable 
Description: Discrete dynamic compuations, esp. granular mechanics (python 3) 
... 

现在,当我运行fakeroot debian/rules binarysetup.py运行与python而非python3,尽管--with python3

$ fakeroot debian/rules binary 
dh binary --with python3 
    dh_auto_build 
pyversions: missing X(S)-Python-Version in control file, fall back to debian/pyversions 
pyversions: missing debian/pyversions file, fall back to supported versions 
    python setup.py build --force 
[...] 

有什么问题?

回答

3

解决的办法是增加--buildsystem=pybuilddebian/rules,所以它看起来是这样的:

%: 
    dh [email protected] --with python3 --buildsystem=pybuild 
相关问题