当你安装一个应用程序时,你通常是在安装一个软件包,其中包含应用程序的可执行代码和重要文件,如文档、图标等。在 Linux上,软件一般被打包成 RPM 或 DEB 等格式,用户只要通过 dnf或者apt等命令就可以进行安装了,这取决于你使用的 Linux 发行版。然而几乎每天都有新的 Python 模块发布,因此你很容易遇到一个尚未打包的 Python 模块。这就是pyp2rpm存在的意义了。
最近我在尝试安装一个叫 python-concentration的模块,但是进展并不太顺利:
$ sudo dnf install python-concentrationUpdating Subscription Management repositories.Last metadata expiration check: 1:23:32 ago on Sat 11 Jun 2022 06:37:25.No match for argument: python-concentrationError: Unable to find a match: python-concentration
虽然这是一个发布在 PyPi 的包,但它仍不能被打包成 RPM 包。好消息是你可以使用 pyp2rpm以一个相对简单的过程将它打包成 RPM 包。
下面以 python-concentration为例演示如何构建一个 spec 文件:
$ pyp2rpm concentration > ~/rpmbuild/SPECS/concentration.spec
下面是它生成的文件:
# Created by pyp2rpm-3.3.8%global pypi_name concentration%global pypi_version 1.1.5Name: python-%{pypi_name}Version: %{pypi_version}Release: 1%{?dist}Summary: Get work done when you need to, goof off when you don'tLicense: NoneURL: NoneSource0: %{pypi_source}BuildArch: noarchBuildRequires: python3-develBuildRequires: python3dist(setuptools)%descriptionConcentration [ >= 2.6.1 with python3dist(hug)
2、运行 rpmlint
为了确保 spec 文件符合标准,你需要对文件使用 rpmlint命令:
$ rpmlint ~/rpmbuild/SPEC/concentration.specerror: bad date in %changelog: - 1.1.5-10 packages and 1 specfiles checked; 0 errors, 0 warnings.
看起来更新日志(%changelog)需要记录日期。
%changelog* Sat Jun 11 2022 Tux
再次运行 rpmint:
$ rpmlint ~/rpmbuild/SPEC/concentration.spec0 packages and 1 specfiles checked; 0 errors, 0 warnings.
成功!