This helps you convert a Fedora RPM spec file from %py3_build
etc. to %pyproject
macros.
This program only operates on the spec file itself, and hence has limited knowledge.
The resulting spec file is not guaranteed to be buildable and manual verification
and completion of the transition is strongly advised.
$ python pyprojectize.py --help
usage: pyprojectize [-h] [-l] [-i MODIFIER] [-x MODIFIER [MODIFIER ...] | -o MODIFIER] [-s SOURCEDIR]
[SPECFILE]
positional arguments:
SPECFILE path to the spec file to convert
options:
-h, --help show this help message and exit
-l, --list-modifiers list all available modifiers and exit
-i, --info MODIFIER display documentation for given modifier
-x, --exclude MODIFIER [MODIFIER ...]
exclude given modifier
-o, --only MODIFIER run only one given modifier
-s, --sourcedir SOURCEDIR
path to the source directory, relevant for %include etc. (default: spec's parent)
If you wish to process multiple specfiles at a time, run this tool via parallel, etc. If you wish to
inspect/commit result of each modififer separatelly, you can loop over pyprojectize -l calling pyprojectize -o
$modifer each time.
$ python pyprojectize.py ampy.spec # 16a7deeb
✅ add_pyproject_buildrequires: %generate_buildrequires with %pyproject_buildrequires added
✅ remove_setuptools_br: removed BuildRequires for setuptools
✅ py3_build_to_pyproject_wheel: replaced %py3_build with %pyproject_wheel in %build
✅ py3_install_to_pyproject_install: replaced %py3_install with %pyproject_install in %install
✅ egginfo_to_distinfo: replaced .egg-info with .dist-info in %files
✅ add_pyproject_files: %{python3_sitelib}/%{python3_sitearch} lines replaced with %{pyproject_files}
✅ add_pyproject_check_import: existing %check prepended with %pyproject_check_import
👌 update_extras_subpkg: %{?python_extras_subpkg:%python_extras_subpkg ...} not found
✅ remove_python_provide: %python_provide removed or replaced with %py_provides
✅ remove_python_enable_dependency_generator: %python_enable_dependency_generator removed
✅ remove_pyp2rpm_comment: # Created by pyp2rpm-X.Y.Z comment removed
👌 remove_remove_bundled_egginfo: no removal of bundled .egg-info
https://github.com/hroncok/pyprojectize/compare/originals..specfiles
This is a pip-installable package.
pip install pyprojectize
Or use uv
, pipx
etc.
If there is no %generate_buildrequires
section, add it after %prep
.
Insert %pyproject_buildrequires
to the end of %generate_buildrequires
.
Remove BuildRequires for setuptools, they should be generated.
In the %build
section, replace %py3_build
with %pyproject_wheel
.
Arguments (if any) are passed to -C--global-option
.
Environment variables (if any) are exported on the previous line.
In the %install
section, replace %py3_install
with %pyproject_install
.
Any arguments or environment variables are discarded. Installing a wheel does not need those.
In all the %files
sections, replace .egg-info
with .dist-info
.
The .dist-info
filename is updated if possible (e.g. to use canonical name and version).
Works reasonably well even with macronized filenames.
If there is only one %files
section with %{python3_sitelib}
or %{python3_sitearch}
,
replace the manually listed files with %pyproject_save_files
and -f %{pyproject_files}
.
In case the %license
files match patterns recognized by setuptools' defaults,
uses %pyproject_save_files
with -l
and removes them.
If %pyproject_save_files
is used in %install
and %pyproject_check_import
is not used in %check
, add %pyproject_check_import
to the beginning of %check
(create the section if needed).
Replace %python_extras_subpkg -i ...
with %pyproject_extras_subpkg
,
preserve other arguments.
Remove %python_provide
or replace it with %py_provides
if the package name isn't the same.
If %py_provides
is added, also remove the Provides:
for the same name.
This does not detect packages without files yet.
Packages without files need %py_provides
even when the package name is the same.
Remove %python_enable_dependency_generator
, as the generator is enabled by default.
Remove the # Created by pyp2rpm-X.Y.Z
comment.
The spec file is changed enough for this to no longer matter.
Remove the # Remove bundled egg-info
comment and the followup rm ...egg-info
.
There is no such thing as "bundled egg-info".
MIT-0, see LICENSE.