- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在努力使用 dh
为 python 3(而不是 python 2)创建包。我使用 setup.py
,当使用 python3
调用时,它会为 python 3 构建。我有一个单独的 debian
目录用于 py3k,所以我想要只为该版本构建。
debian/rules
看起来像这样:
export DH_VERBOSE=1
%:
dh $@ --with python3
和 debian/control
有所有常见的东西,包括 X-Python3-Version
:
Source: woo
Maintainer: Václav Šmilauer <eu@doxos.eu>
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 binary
时,setup.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
[...]
有什么问题?
最佳答案
解决方案是将 --buildsystem=pybuild
添加到 debian/rules
,这样它看起来像这样:
%:
dh $@ --with python3 --buildsystem=pybuild
关于python-3.x - debhelper 指示使用 python3,但使用 python2 运行 setup.py,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28696938/
我正在创建一个小的 deb 包来安装一些文件。其中一些将位于/usr/lib/mypackage/中,我想创建一个从/usr/lib/mypackage/mybin 到/usr/bin/mybin 的
我正在更新一个通过私有(private) deb 存储库部署的 python 包,以使用命名空间名称。 (我已经更改了细节以使其通用) 旧名称是: 旧的 python 包名称:useful_thing
我正在尝试使用 systemd 脚本构建一个 debian 软件包,但我不太明白最好的方法。 我的第一个问题是,我应该使用 --with=systemd 选项(并覆盖 dh_systemd_enabl
我正在尝试使用 systemd 脚本构建一个 debian 软件包,但我不太明白最好的方法。 我的第一个问题是,我应该使用 --with=systemd 选项(并覆盖 dh_systemd_enabl
我正在编写一个我想在 Travis CI 上测试的工具。 我可以假设包 开发脚本 debhelper git 核心 存在于我的测试将运行的 CI 环境中? 老实说,我实际上只需要 dch 和 git。
好吧,我有一个 debian/rules 文件,看起来像这样: #!/usr/bin/make -f PACKAGE = packagename SRC_VERSION := $(shell grep
例如,在我的 debian 包的 debian 文件夹中,我想添加一个删除目录的后期步骤。 我认为文件 *.postrm.debhelper 是正确的。但是这个文件会被几个帮助脚本(dh_instal
我有一个以开头的Makefile prefix = /opt/$(PACKAGE) 并期望make prefix=/usr以防有人想要非/opt安装。没有 ./configure (而且确实
我正在努力使用 dh 为 python 3(而不是 python 2)创建包。我使用 setup.py,当使用 python3 调用时,它会为 python 3 构建。我有一个单独的 debian 目
我想尝试 python Purple,但我没有 debian。有没有办法让它在 Windows 或不同的 Linux 上运行? 最佳答案 我想从源代码编译(如果可用)或寻找适合您的发行版的 dbhel
我是一名优秀的程序员,十分优秀!