diff options
author | rm <rm@FreeBSD.org> | 2013-09-01 03:01:59 +0800 |
---|---|---|
committer | rm <rm@FreeBSD.org> | 2013-09-01 03:01:59 +0800 |
commit | 963c7393ae851ad642b488504650a58a3ca3877c (patch) | |
tree | 6dd2b4d59c0271276591edac93db686f090a615b /www | |
parent | 720a58417ad71b57b50e9649c8bc9875b4c3cf52 (diff) | |
download | freebsd-ports-gnome-963c7393ae851ad642b488504650a58a3ca3877c.tar.gz freebsd-ports-gnome-963c7393ae851ad642b488504650a58a3ca3877c.tar.zst freebsd-ports-gnome-963c7393ae851ad642b488504650a58a3ca3877c.zip |
- add patch to fix type handling bug
- bump PORTREVISION
PR: 181689
Submitted by: Hung-Yi Chen <gaod@hychen.org> (maintainer)
Diffstat (limited to 'www')
-rw-r--r-- | www/trac-watchlist/Makefile | 4 | ||||
-rw-r--r-- | www/trac-watchlist/files/patch-trachwatchlist_plugin.py | 11 |
2 files changed, 13 insertions, 2 deletions
diff --git a/www/trac-watchlist/Makefile b/www/trac-watchlist/Makefile index 099138c8fe50..047e8ee37500 100644 --- a/www/trac-watchlist/Makefile +++ b/www/trac-watchlist/Makefile @@ -3,7 +3,7 @@ PORTNAME= watchlist PORTVERSION= 1.0.${SVN_REV} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= www devel python MASTER_SITES= http://distfiles.cse.tw/ \ http://trac-hacks.org/changeset/${SVN_REV}/watchlistplugin?old_path=/&format=zip&filename=/ @@ -11,7 +11,7 @@ PKGNAMEPREFIX= trac- DISTNAME= ${PORTNAME}plugin-r${SVN_REV} MAINTAINER= gaod@hychen.org -COMMENT= Provide watchlist feature for wikis and tickets of Trac +COMMENT= Watchlist feature for wikis and tickets of Trac LICENSE= BSD diff --git a/www/trac-watchlist/files/patch-trachwatchlist_plugin.py b/www/trac-watchlist/files/patch-trachwatchlist_plugin.py new file mode 100644 index 000000000000..b6b18da3a4ae --- /dev/null +++ b/www/trac-watchlist/files/patch-trachwatchlist_plugin.py @@ -0,0 +1,11 @@ +--- tracwatchlist/plugin.py.orig 2013-08-30 19:07:32.000000000 +0800 ++++ tracwatchlist/plugin.py 2013-08-30 19:08:43.000000000 +0800 +@@ -527,7 +527,7 @@ + self.set_notify(req, realm, res) + db.commit() + if redirectback and len(new_res) == 1: +- req.redirect(req.href(realm,new_res[0])) ++ req.redirect(req.href(realm,list(new_res)[0])) + action = 'view' + + elif action == "unwatch": |