Converts a Fedora RPM spec file from %py3_build etc. to %pyproject macros
Project description
pyprojectize
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 MODIFIER, --info MODIFIER
display documentation for given modifier
-x MODIFIER [MODIFIER ...], --exclude MODIFIER [MODIFIER ...]
exclude given modifier
-o MODIFIER, --only MODIFIER
run only one given modifier
-s SOURCEDIR, --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}
👌 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
Demo
https://github.com/hroncok/pyprojectize/compare/originals..specfiles
Installation
This is a pip-installable package.
pip install pyprojectize
Or use uv
, pipx
etc.
Available modifiers
add_pyproject_buildrequires
If there is no %generate_buildrequires
section, add it after %prep
.
Insert %pyproject_buildrequires
to the end of %generate_buildrequires
.
remove_setuptools_br
Remove BuildRequires for setuptools, they should be generated.
py3_build_to_pyproject_wheel
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.
py3_install_to_pyproject_install
In the %install
section, replace %py3_install
with %pyproject_install
.
Any arguments or environment variables are discarded. Installing a wheel does not need those.
egginfo_to_distinfo
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.
add_pyproject_files
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.
update_extras_subpkg
Replace %python_extras_subpkg -i ...
with %pyproject_extras_subpkg
,
preserve other arguments.
remove_python_provide
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
Remove %python_enable_dependency_generator
, as the generator is enabled by default.
remove_pyp2rpm_comment
Remove the # Created by pyp2rpm-X.Y.Z
comment.
The spec file is changed enough for this to no longer matter.
remove_remove_bundled_egginfo
Remove the # Remove bundled egg-info
comment and the followup rm ...egg-info
.
There is no such thing as "bundled egg-info".
License
MIT-0, see LICENSE.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file pyprojectize-1a3.tar.gz
.
File metadata
- Download URL: pyprojectize-1a3.tar.gz
- Upload date:
- Size: 12.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8e6ab79154119d49600f3e61376dcd9823cb0640d0d97ba159b8068aea36db52 |
|
MD5 | ef9a3c006358a7683275f7834042ff3a |
|
BLAKE2b-256 | 1f3da77f31e4dd707e5536fac72999853326828c94a800d660701512c2c8cb5b |
File details
Details for the file pyprojectize-1a3-py3-none-any.whl
.
File metadata
- Download URL: pyprojectize-1a3-py3-none-any.whl
- Upload date:
- Size: 11.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7777b68ecc8bbe2a8856b5df0a3506992354c5593a88b552cd7ce6c3811df862 |
|
MD5 | 6719f19b1c9deab305a6084a8e075233 |
|
BLAKE2b-256 | b8878dcfc8a603956e9ed95b8f9ba48f4dd5299235421d37fe91df0a154f7c76 |