- Regenerate patches at maintainer/submitter request to be by function
name instead of file name. PR: ports/151339 Requested by swell.k@gmail.com (maintainer)
This commit is contained in:
parent
817f70f417
commit
3f05fc4f46
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=263253
3 changed files with 19 additions and 3 deletions
|
@ -7,7 +7,7 @@
|
|||
|
||||
PORTNAME= rssdler
|
||||
PORTVERSION= 0.4.2
|
||||
PORTREVISION= 3
|
||||
PORTREVISION= 4
|
||||
CATEGORIES= www python
|
||||
MASTER_SITES= GOOGLE_CODE
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
--- ./rssdler.py.orig 2010-10-10 03:58:44.112133159 +0000
|
||||
+++ ./rssdler.py 2010-10-10 03:59:10.937002223 +0000
|
||||
Index: rssdler.py
|
||||
===================================================================
|
||||
--- rssdler.py (revision 169)
|
||||
+++ rssdler.py (working copy)
|
||||
@@ -2180,6 +2180,7 @@
|
||||
elif param == "--purge-saved": _action = 'purge-saved'
|
||||
elif param == "--comment-config": _action = 'comment-config'
|
14
www/py-rssdler/files/patch-main
Normal file
14
www/py-rssdler/files/patch-main
Normal file
|
@ -0,0 +1,14 @@
|
|||
Index: rssdler.py
|
||||
===================================================================
|
||||
--- rssdler.py (revision 169)
|
||||
+++ rssdler.py (working copy)
|
||||
@@ -2085,6 +2085,9 @@
|
||||
raise
|
||||
if _runOnce:
|
||||
logging.info( u"[Complete] %s" % time.asctime() )
|
||||
+ try: codecs.open(os.path.join(getConfig()['global']['workingDir'],
|
||||
+ getConfig()['global']['daemonInfo']), 'w', 'utf-8').write('')
|
||||
+ except IOError, m: pass
|
||||
break
|
||||
logging.info( u"[Sleeping] %s" % time.asctime() )
|
||||
checkSleep( getConfig()['global']['scanMins'] * 60 )
|
Loading…
Reference in a new issue