%define pypi_name payload_dumper %define python_name python3-%{pypi_name} Name: python-%{pypi_name} Version: 0.2.1 Release: %autorelease # Fill in the actual package summary to submit package to Fedora Summary: File transport adapter for Requests # Check if the automatically generated License and its spelling is correct for Fedora # https://docs.fedoraproject.org/en-US/packaging-guidelines/LicensingGuidelines/ License: Apache-2.0 URL: https://github.com/huakim/payload-dumper Source: payload_dumper-%{version}.tar.gz BuildRequires: pyproject-rpm-macros BuildRequires: python3-devel BuildRequires: fdupes BuildArch: noarch # Fill in the actual package description to submit package to Fedora %global _description %{expand: # payload dumper Dumps the `payload.bin` image found in Android update images. Has significant performance gains over other tools due to using multiprocessing. ## Installation ### Requirements - Python3 - pip ### Install using pip ```sh pip install --user payload_dumper ``` ## Example ASCIIcast [![asciicast](https://asciinema.org/a/UbDZGZwCXux50sSzy1fc1bhaO.svg)](https://asciinema.org/a/UbDZGZwCXux50sSzy1fc1bhaO) ## Usage ### Dumping the entirety of `payload.bin` ``` payload_dumper payload.bin ``` ### Dumping specific partitions Use a comma-separated list of partitions to dump: ``` payload_dumper --partitions boot,dtbo,vendor payload.bin ``` ### Patching older image with OTA Assuming the old partitions are in a directory named `old/`: ``` payload_dumper --diff payload.bin ``` } %description %_description %package -n %{python_name} Summary: %{summary} %description -n %{python_name} %_description %prep %autosetup -p1 -n %{pypi_name}-%{version} %generate_buildrequires # Keep only those extras which you actually want to package or use during tests %pyproject_buildrequires %build %pyproject_wheel %install %pyproject_install # For official Fedora packages, including files with '*' +auto is not allowed # Replace it with a list of relevant Python modules/globs and list extra files in %%files %pyproject_save_files '*' +auto %files -n %{python_name} -f %{pyproject_files} %changelog %autochangelog