- 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:
Philip M. Gollucci 2010-10-19 05:56:15 +00:00
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

View file

@ -7,7 +7,7 @@
PORTNAME= rssdler
PORTVERSION= 0.4.2
PORTREVISION= 3
PORTREVISION= 4
CATEGORIES= www python
MASTER_SITES= GOOGLE_CODE
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}

View file

@ -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'

View 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 )