FreeBSD Bugzilla – Attachment 105175 Details for
Bug 145577
x11-wm/fvwm-crystal: Added a patch to avoid a problem with the variable with used by python
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
fvwm-crystal.diff
fvwm-crystal.diff (text/plain), 5.19 KB, created by
giacomomariani
on 2010-04-09 17:10:08 UTC
(
hide
)
Description:
fvwm-crystal.diff
Filename:
MIME Type:
Creator:
giacomomariani
Created:
2010-04-09 17:10:08 UTC
Size:
5.19 KB
patch
obsolete
>diff -ruN fvwm-crystal.bak/Makefile fvwm-crystal/Makefile >--- fvwm-crystal.bak/Makefile 2010-03-28 08:47:40.000000000 +0200 >+++ fvwm-crystal/Makefile 2010-04-09 12:01:22.000000000 +0200 >@@ -76,6 +76,7 @@ > post-patch: > @${REINPLACE_CMD} -e 's|cp -r -d|cp -r|; s|cp -d|cp|' \ > ${WRKSRC}/${MAKEFILE} >+ patch ./work/fvwm-crystal-3.0.6/bin/fvwm-crystal.apps < files/fvwm-crystal.apps.diff > .for i in addons/* bin/* fvwm/scripts/speed_value > @${REINPLACE_CMD} -e 's|/bin/bash|${PREFIX}/bin/bash|g' ${WRKSRC}/${i} > @${FIND} ${WRKSRC} -name '*.bak' -delete >diff -ruN fvwm-crystal.bak/files/fvwm-crystal.apps.diff fvwm-crystal/files/fvwm-crystal.apps.diff >--- fvwm-crystal.bak/files/fvwm-crystal.apps.diff 1970-01-01 01:00:00.000000000 +0100 >+++ fvwm-crystal/files/fvwm-crystal.apps.diff 2010-04-09 12:01:22.000000000 +0200 >@@ -0,0 +1,74 @@ >+--- fvwm-crystal.apps_old 2008-06-23 23:42:54.000000000 +0300 >++++ fvwm-crystal.apps_new 2010-03-22 14:07:57.000000000 +0200 >+@@ -102,7 +102,7 @@ >+ group = OptionGroup(parser, "General creation options", "Options definig what should be generated") >+ # group.add_option('-g', '--generate', action = 'store', choices=['all','menus','panel','topapps'], dest='generate', default='all', metavar='WHAT', >+ # help = "what should be generated. aviable options are: all, menus, panel, topapps. default is all.") >+- group.add_option('--with', action = 'append', type='string', dest='with', metavar='DIRECTORY', >++ group.add_option('--with', action = 'append', type='string', dest='xwith', metavar='DIRECTORY', >+ help = 'generate entries only for defined entries (directories or files)') >+ group.add_option('--without', action = 'append', type='string', dest='without', metavar='DIRECTORY', >+ help = 'do NOT use defined entries (directories or files) for generating output.') >+@@ -206,12 +206,12 @@ >+ #end of parseArgv >+ >+ >+-def getAppsData(databases=[database],checkExecs=False,searchIconsIn='',sortOrder='prio',minLength=3,with=None,without=None,rootName='/Applications',topInSub=True,fileIcon='default.png',dirIcon='directory.png'): >++def getAppsData(databases=[database],checkExecs=False,searchIconsIn='',sortOrder='prio',minLength=3,xwith=None,without=None,rootName='/Applications',topInSub=True,fileIcon='default.png',dirIcon='directory.png'): >+ """Read application databases from directories. >+ if checkExecs is True then use exec_field from file name to check access before adding it to database >+ if searchIconsIn is provided then use this path to check icons existence >+ sortOrder defines sorting order for entries >+- with is a list of entries (relative to the database root) that should be read >++ xwith is a list of entries (relative to the database root) that should be read >+ without is a list of entries (relative to the database root or absolute targets for symlinks) that should be left out >+ """ >+ >+@@ -235,7 +235,7 @@ >+ return True >+ return False >+ >+- def get_entry(root,dir,cat,sort,check,with,without,realcat): >++ def get_entry(root,dir,cat,sort,check,xwith,without,realcat): >+ if not os.path.isdir(os.path.join(root,dir)) or not os.access(os.path.join(root,dir),os.R_OK): >+ yield None >+ for entry in os.listdir(os.path.join(root,dir)): >+@@ -268,9 +268,9 @@ >+ if not checkFileAccess(test): >+ continue >+ >+- if with and len(with)>0: >++ if xwith and len(xwith)>0: >+ cont=False >+- for i,v in enumerate(with): >++ for i,v in enumerate(xwith): >+ if not (os.path.join(cat,name).startswith(v) or os.path.join(cat,name.replace('_',' ')).startswith(v)): >+ cont=True >+ break >+@@ -305,7 +305,7 @@ >+ x = realcat[:] >+ x.extend([prio,name]) >+ if access: >+- for sub in get_entry(root,os.path.join(dir,entry),os.path.join(cat,name).replace(' ','_'),sort,check,with,without,x): >++ for sub in get_entry(root,os.path.join(dir,entry),os.path.join(cat,name).replace(' ','_'),sort,check,xwith,without,x): >+ yield sub >+ elif os.path.isfile(file): >+ if sort=='name' or sort=='rname': >+@@ -327,7 +327,7 @@ >+ db=os.path.abspath(os.path.expanduser(databases[i])) >+ if not os.path.isdir(db) or not os.access(db,os.R_OK): >+ continue >+- for entry in get_entry(db,'',os.path.join('/',rootName),sortOrder,checkExecs,with,without,[0,rootName]): >++ for entry in get_entry(db,'',os.path.join('/',rootName),sortOrder,checkExecs,xwith,without,[0,rootName]): >+ if not entry: >+ continue >+ if not entry[5]: >+@@ -850,7 +850,7 @@ >+ if params[0].database and len(params[0].database)>0: >+ database=params[0].database >+ >+-apps=getAppsData(database,checkExecs=params[0].checkExecs,searchIconsIn=params[0].iconPath,sortOrder=params[0].sortOrder,minLength=params[0].subLength,with=params[0].with,without=params[0].without,rootName=params[0].rootCat,topInSub=params[0].topInSub,fileIcon=params[0].fileDefault,dirIcon=params[0].dirDefault) >++apps=getAppsData(database,checkExecs=params[0].checkExecs,searchIconsIn=params[0].iconPath,sortOrder=params[0].sortOrder,minLength=params[0].subLength,xwith=params[0].xwith,without=params[0].without,rootName=params[0].rootCat,topInSub=params[0].topInSub,fileIcon=params[0].fileDefault,dirIcon=params[0].dirDefault) >+ >+ ########################## DEBUG ################################ >+ if params[0].verbosity > 1:
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 145577
: 105175