用于创建 no-arch rpm 的 Python 命令
我正在为我的项目创建 rpm,它是纯 python 的。我正在运行命令
python setup.py bdist_rpm
构建 rpm。这将创建特定于架构的 rpm(x86 或 x86-64)。我想要的是一个无架构的 rpm。任何 python 大师都可以帮助我创建一个 no-arch rpm 吗?任何帮助将不胜感激。提前致谢。
I am creating rpm's for my project which is in pure python. I am running the command
python setup.py bdist_rpm
to build the rpm. This is creating architechture specific rpm's (x86 or x86-64). What I would like is to have a no-arch rpm. Can any of python guru's help me with creating a no-arch rpm. Any help would be appriciated. Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您的软件不包含扩展模块(用 C/C++ 编写的模块),distutils 将使 RPM 成为 noarch。我认为没有办法明确控制它。
If your software does not contain extension modules (modules written in C/C++), distutils will make the RPM noarch. I don’t think there’s a way to explicitly control it.