cdc3d91b9c
2005-07-18 0.8.4
Fixed:
- extra CRs in CSV export files on Windows platform (sf bug 1195742
)
- activity RDBMS columns were being reported in changes
- fix name collision in roundup.cgi script (sf bug 1203795)
- fix handling of invalid interval input
- search locale files relative ro roundup installation path (sf bug 1219689)
- use translation for boolean property rendering (sf bug 1225152)
- enabled disabling of REMOTE_USER for when it's not a valid username (sf
bug 1190187)
- fix invocation of hasPermission from templating code (sf bug 1224172)
- have 'roundup-admin security' display property restrictions (sf bug
1222135)
- fixed templating menu() sort_on handling (sf bug 1221936)
- allow specification of pagesize, sorting and filtering in "classhelp"
popups (sf bug 1211800)
- handle dropped properies in rdbms/metakit journal export (sf bug 1203569)
- handle missing Subject lines better (sf bug 1198729)
- sort/group by missing values correctly (sf bugs 1198623, 1176897)
- discard, don't bounce messages to the mailgw when the messages's sender
is invalid (ie. when we try to bounce, we get a 550 "unknown user
account" response from the SMTP server) (sf bug 1190906)
- removed debugging code from cgi/actions.py
- refactored hyperdb.rawToHyperdb, allowing a number of improvements
(thanks Ralf Schlatterbeck)
- don't try to set a timeout for IMAPS (thanks Paul Jimenez)
- present Reject exception messages to web users (sf bug 1237685)
44 lines
1.7 KiB
Makefile
44 lines
1.7 KiB
Makefile
# $NetBSD: Makefile,v 1.26 2005/08/06 20:34:00 recht Exp $
|
|
|
|
DISTNAME= roundup-0.8.4
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=roundup/}
|
|
|
|
MAINTAINER= recht@NetBSD.org
|
|
HOMEPAGE= http://roundup.sf.net/
|
|
COMMENT= Issue tracking system with command-line, web and email clients
|
|
|
|
PYDISTUTILSPKG= yes
|
|
PY_PATCHPLIST= yes
|
|
USE_LANGUAGES=
|
|
|
|
PYTHON_VERSIONS_ACCEPTED= 24 23
|
|
|
|
PYTHON_PATCH_SCRIPTS+= cgi-bin/roundup.cgi demo.py roundup/admin.py
|
|
PYTHON_PATCH_SCRIPTS+= roundup/backends/locking.py
|
|
PYTHON_PATCH_SCRIPTS+= roundup/cgi/TAL/talgettext.py
|
|
PYTHON_PATCH_SCRIPTS+= roundup/msgfmt.py
|
|
PYTHON_PATCH_SCRIPTS+= roundup/scripts/roundup_demo.py
|
|
PYTHON_PATCH_SCRIPTS+= roundup/scripts/roundup_gettext.py
|
|
PYTHON_PATCH_SCRIPTS+= roundup/version_check.py run_tests.py
|
|
PYTHON_PATCH_SCRIPTS+= scripts/add-issue scripts/copy-user.py
|
|
PYTHON_PATCH_SCRIPTS+= scripts/roundup-reminder scripts/schema_diagram.py
|
|
PYTHON_PATCH_SCRIPTS+= tools/load_tracker.py tools/migrate-queries.py
|
|
PYTHON_PATCH_SCRIPTS+= tools/pygettext.py
|
|
|
|
ROUNDUPDOCDIR= ${PREFIX}/share/doc/roundup
|
|
|
|
post-install:
|
|
${INSTALL_MAN} ${WRKSRC}/doc/roundup-admin.1 ${PREFIX}/man/man1
|
|
${INSTALL_MAN} ${WRKSRC}/doc/roundup-demo.1 ${PREFIX}/man/man1
|
|
${INSTALL_MAN} ${WRKSRC}/doc/roundup-mailgw.1 ${PREFIX}/man/man1
|
|
${INSTALL_MAN} ${WRKSRC}/doc/roundup-server.1 ${PREFIX}/man/man1
|
|
${INSTALL_DATA_DIR} ${ROUNDUPDOCDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/CHANGES.txt ${ROUNDUPDOCDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/COPYING.txt ${ROUNDUPDOCDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/README.txt ${ROUNDUPDOCDIR}
|
|
cd ${WRKSRC}/doc && ${PAX} -s '/.*\.1//g' -rw -pp -pm . ${ROUNDUPDOCDIR}
|
|
|
|
.include "../../lang/python/extension.mk"
|
|
.include "../../lang/python/application.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|