diff options
author | recht <recht> | 2004-02-16 20:43:27 +0000 |
---|---|---|
committer | recht <recht> | 2004-02-16 20:43:27 +0000 |
commit | f5fd10e202ec42bcc0b4012289acea9bafedc234 (patch) | |
tree | 6e15d5d827b196110daaffda2eef7e4cd3d60924 /devel/roundup/Makefile | |
parent | f9053f71f65f473e5e636866daf67d03a7d33fc7 (diff) | |
download | pkgsrc-f5fd10e202ec42bcc0b4012289acea9bafedc234.tar.gz |
update to 0.65
The 0.6.5 release fixes some bugs:
- mailgw handling of subject-line errors
- allow serving of FileClass file content when the class isn't called
"file" (eg. messages and other FileClasses)
- allowed negative ids (ie. new item markers) in HTMLClass.getItem,
allowing "db/file_with_status/-1/status/menu" to generate a useful
widget
- fixed content-type when templates are serving up xml (thanks Godefroid
Chapelle)
- fixed IE double-submit when it shouldn't (sf bug 842254)
- fixed check for JS pop()/push() to make more general (sf bug 877504)
- fix re-enabling queries (sf bug 861940)
- use supplied content-type on file uploads before trying filename
- fixed roundup-reminder script to use default schema (thanks Klamer Schutte)
- fixed edit action / parsePropsFromForm to handle index-page edits better
- safer logging from HTTP server (sf bug 896917)
Diffstat (limited to 'devel/roundup/Makefile')
-rw-r--r-- | devel/roundup/Makefile | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/devel/roundup/Makefile b/devel/roundup/Makefile index 2f887f3293a..54a6ef2562a 100644 --- a/devel/roundup/Makefile +++ b/devel/roundup/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.11 2003/12/25 19:51:45 recht Exp $ +# $NetBSD: Makefile,v 1.12 2004/02/16 20:43:27 recht Exp $ -DISTNAME= roundup-0.6.4 +DISTNAME= roundup-0.6.5 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=roundup/} @@ -10,12 +10,14 @@ COMMENT= Issue tracking system with command-line, web and email clients PYDISTUTILSPKG= yes PY_PATCHPLIST= yes -USE_BUILDLINK2= yes +USE_BUILDLINK3= yes PYTHON_VERSIONS_ACCEPTED= 23 23pth 22 22pth 21 21pth -PYTHON_PATCH_SCRIPTS= roundup/admin.py roundup/backends/locking.py \ - roundup/version_check.py cgi-bin/roundup.cgi +PYTHON_PATCH_SCRIPTS= cgi-bin/roundup.cgi demo.py roundup/admin.py +PYTHON_PATCH_SCRIPTS+= roundup/backends/locking.py roundup/version_check.py +PYTHON_PATCH_SCRIPTS+= run_tests scripts/add-issue scripts/roundup-reminder +PYTHON_PATCH_SCRIPTS+= setup.py tools/migrate-queries.py tools/pygettext.py ROUNDUPDOCDIR= ${PREFIX}/share/doc/roundup |