mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 09:49:18 -04:00
Ignore patchfiles ending with .orig' and
.rej'.
This commit is contained in:
parent
5d9acace80
commit
025beb219e
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=52567
1 changed files with 7 additions and 1 deletions
|
@ -37,6 +37,7 @@ class Vars:
|
||||||
DIFF_ARGS = '-du'
|
DIFF_ARGS = '-du'
|
||||||
DIFF_SUFX = '.orig'
|
DIFF_SUFX = '.orig'
|
||||||
PATCH_PREFIX = 'patch-'
|
PATCH_PREFIX = 'patch-'
|
||||||
|
PATCH_IGN_SUFX = ('.orig', '.rej')
|
||||||
RCSDIFF_SUFX = ',v'
|
RCSDIFF_SUFX = ',v'
|
||||||
|
|
||||||
CD_CMD = 'cd'
|
CD_CMD = 'cd'
|
||||||
|
@ -433,7 +434,12 @@ class PatchesCollection:
|
||||||
# Not reached #
|
# Not reached #
|
||||||
|
|
||||||
for file in glob.glob(os.path.join(patchdir, Vars.PATCH_PREFIX + '*')):
|
for file in glob.glob(os.path.join(patchdir, Vars.PATCH_PREFIX + '*')):
|
||||||
self.addpatchfile(file, wrksrc)
|
for sufx in Vars.PATCH_IGN_SUFX:
|
||||||
|
if file[-len(sufx):] == sufx:
|
||||||
|
write_msg('WARNING: patchfile "%s" ignored\n' % file)
|
||||||
|
break
|
||||||
|
else:
|
||||||
|
self.addpatchfile(file, wrksrc)
|
||||||
|
|
||||||
def addpatchfile(self, path, wrksrc):
|
def addpatchfile(self, path, wrksrc):
|
||||||
path = os.path.abspath(path)
|
path = os.path.abspath(path)
|
||||||
|
|
Loading…
Add table
Reference in a new issue