You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$ git grep Patch
src/tito/builder/main.py: patch_pattern = re.compile(r'^Patch(\d+):')
src/tito/builder/main.py: # Find the largest PatchX: line, or failing that SourceX:
src/tito/builder/main.py: patch_number = 0 # What number should we use for our PatchX line
src/tito/builder/main.py: patch_insert_index = 0 # Where to insert our PatchX line in the list
src/tito/builder/main.py: error_out("Unable to insert PatchX or %patchX lines in spec file")
src/tito/builder/main.py: debug("Patch: %s" % patch_file)
src/tito/builder/main.py: lines.insert(patch_insert_index, "Patch%s: %s\n" % (patch_number,
src/tito/distributionbuilder.py: Patch0: foo-1.2.13-1-to-foo-1.2.13-3-sat.patch
src/tito/distributionbuilder.py: Patch0: foo-1.2.13-1-to-foo-1.2.13-2-sat.patch
src/tito/distributionbuilder.py: Patch1: foo-1.2.13-2-to-foo-1.2.13-3-sat.patch
src/tito/distributionbuilder.py: lines.insert(patch_insert_index, "Patch%s: %s\n" % (patch_number, patch))
tito.props.5.asciidoc:put in spec file as Patch0.
tito.props.5.asciidoc: Patch0: foo-1.2-1-to-foo-1.2-2.patch
tito.props.5.asciidoc: Patch1: foo-1.2-1-to-foo-1.2-3.patch
The text was updated successfully, but these errors were encountered:
RPM has deprecated the %patchN syntax in favor of %patch -PN where N is
the patch number for a year now.
See https://lists.fedoraproject.org/archives/list/[email protected]/thread/IYU7AG53C6YWZWHUJJYQBVVU2O7EQ2F6/
And Tito will be affected:
The text was updated successfully, but these errors were encountered: