diff options
author | gdt <gdt@pkgsrc.org> | 2013-02-13 17:10:45 +0000 |
---|---|---|
committer | gdt <gdt@pkgsrc.org> | 2013-02-13 17:10:45 +0000 |
commit | e5e6239ad5019091f68492a9f8d450d730d4b62f (patch) | |
tree | f1f3f8876db1d325453e6514645f7e52a5c12aa2 /www/trac | |
parent | f2c06653cdf7d525f8b7e576757af12d7a148645 (diff) | |
download | pkgsrc-e5e6239ad5019091f68492a9f8d450d730d4b62f.tar.gz |
Update to 1.0.
The only significant packaging change is to drop the dependency on
py-subversion. It's still needed to use subversion repositories, but
use of svn is now optional.
Update provided by Martin Resnick of BBN, with minor tweaks by me.
Trac 1.0 'Cell' (September 7, 2012)
http://svn.edgewall.org/repos/trac/tags/trac-1.0
Trac 1.0 is a major release adding refreshed user interface and
improved DVCS repository support as the most visible changes.
The following list contains only a few highlights:
- The default theme looks more modern, especially on recent browsers
(no effort has been made to make it look better on older browsers
like IE6 or 7)
- The TracHacks GitPlugin has been donated by Herbert Valerio Riedel
to the Trac project (many thanks!) and is now maintained here as an
optional component
- As a consequence, the Subversion support has been moved below
`tracopt.versioncontrol` as well
- The Git and Mercurial log view feature a visualization of the
branching structure
- Usability improvements for the tickets, with a better support for
conflict detection and resolution
- Integration of the TracHacks BatchModifyPlugin, contributed by
Brian Meeker (many thanks!) and is now maintained there as a
default component
- jQuery/UI integration, featuring a date picker for date fields
- Improved integration with Pygments syntax highlighting
- ... and numerous smaller features added and bugs fixed since 0.12!
Diffstat (limited to 'www/trac')
-rw-r--r-- | www/trac/DESCR | 2 | ||||
-rw-r--r-- | www/trac/Makefile | 30 | ||||
-rw-r--r-- | www/trac/PLIST | 126 | ||||
-rw-r--r-- | www/trac/distinfo | 8 |
4 files changed, 128 insertions, 38 deletions
diff --git a/www/trac/DESCR b/www/trac/DESCR index cc10ca57a4f..5a097a9498c 100644 --- a/www/trac/DESCR +++ b/www/trac/DESCR @@ -6,4 +6,4 @@ Trac provides: * An integrated system for managing software projects * An enhanced wiki * A flexible web-based issue tracker - * An interface to the Subversion revision control system + * Interfaces to the Subversion and git revision control systems diff --git a/www/trac/Makefile b/www/trac/Makefile index 8b61bf3cb89..55075e350b9 100644 --- a/www/trac/Makefile +++ b/www/trac/Makefile @@ -1,16 +1,15 @@ -# $NetBSD: Makefile,v 1.58 2012/10/28 06:31:07 asau Exp $ +# $NetBSD: Makefile,v 1.59 2013/02/13 17:10:45 gdt Exp $ # -DISTNAME= Trac-0.12.3 +DISTNAME= Trac-1.0 PKGNAME= ${DISTNAME:tl} -PKGREVISION= 1 CATEGORIES= devel www MASTER_SITES= http://ftp.edgewall.org/pub/trac/ \ ftp://ftp.edgewall.org/pub/trac/ MAINTAINER= gdt@NetBSD.org HOMEPAGE= http://trac.edgewall.org/ -COMMENT= Subversion repository browser, wiki, and issue tracking system +COMMENT= Repository browser, wiki, and issue tracking system LICENSE= modified-bsd # Maintainer notes: @@ -22,21 +21,16 @@ LICENSE= modified-bsd # existing trac installations that blindly upgrade, to the extent that # this is reasonable. # -# subversion dependency: ja-trac does not depend on subversion, -# because 1) trac is useful without a repo, and because one can use -# other than svn. Perhaps options to specify repo support (not a -# group, because trac can support multiple), defaulting to subversion -# is a good strategy for now. -# # www/trac options are not in options.mk (to be fixed). # -# sqlite2 vs sqlite3: This package has logic to choose sqlite2 vs -# sqlite3, and ja-trac uses only sqlite2. This is hard, because -# database format changes are disruptive, and gdt should consult -# upstream's idea of best practice. +# sqlite2 vs sqlite3: This package supports sqlite3 or postgresql. +# ja-trace supports sqlite2, postgresql, and mysql. -DEPENDS+= ${PYPKGPREFIX}-genshi>=0.5:../../www/py-genshi -DEPENDS+= ${PYPKGPREFIX}-subversion>=1.1.0:../../devel/py-subversion +DEPENDS+= ${PYPKGPREFIX}-genshi>=0.6:../../www/py-genshi +# Arguably there should be a trac-svn package that depends on +# subversion and trac. This line is residual from when trac always +# included subversion support. +#DEPENDS+= ${PYPKGPREFIX}-subversion>=1.6:../../devel/py-subversion USE_TOOLS+= pax @@ -49,7 +43,7 @@ PKG_SUGGESTED_OPTIONS= sqlite PYDISTUTILSPKG= YES PY_PATCHPLIST= YES -PYTHON_PATCH_SCRIPTS= cgi-bin/trac.* contrib/*.py contrib/*-hook +PYTHON_PATCH_SCRIPTS= contrib/cgi-bin/trac.* contrib/*.py contrib/*-hook PYTHON_PATCH_SCRIPTS+= trac/tests/functional/*.py .include "../../lang/python/application.mk" @@ -71,7 +65,7 @@ CGIBINDIR= ${PREFIX}/libexec/trac post-install: ${INSTALL_DATA_DIR} ${DESTDIR}${EGDIR} ${INSTALL_PROGRAM_DIR} ${DESTDIR}${CGIBINDIR} - ${INSTALL_SCRIPT} ${WRKSRC}/cgi-bin/trac.* ${DESTDIR}${CGIBINDIR} + ${INSTALL_SCRIPT} ${WRKSRC}/contrib/cgi-bin/trac.* ${DESTDIR}${CGIBINDIR} cd ${WRKSRC}/contrib && pax -rwppm -s ',./rpm/.*$$,,' -s ',./rpm$$,,' \ . ${DESTDIR}${EGDIR} diff --git a/www/trac/PLIST b/www/trac/PLIST index f27e5cdd93e..a9fa0631a36 100644 --- a/www/trac/PLIST +++ b/www/trac/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.20 2011/03/16 23:28:22 gdt Exp $ +@comment $NetBSD: PLIST,v 1.21 2013/02/13 17:10:45 gdt Exp $ bin/trac-admin bin/tracd ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO @@ -87,6 +87,7 @@ ${PYSITELIB}/trac/env.pyo ${PYSITELIB}/trac/htdocs/README ${PYSITELIB}/trac/htdocs/asc.png ${PYSITELIB}/trac/htdocs/attachment.png +${PYSITELIB}/trac/htdocs/batchmodify.png ${PYSITELIB}/trac/htdocs/changeset.png ${PYSITELIB}/trac/htdocs/closedticket.png ${PYSITELIB}/trac/htdocs/collapsed.png @@ -96,6 +97,24 @@ ${PYSITELIB}/trac/htdocs/css/browser.css ${PYSITELIB}/trac/htdocs/css/changeset.css ${PYSITELIB}/trac/htdocs/css/code.css ${PYSITELIB}/trac/htdocs/css/diff.css +${PYSITELIB}/trac/htdocs/css/jquery-ui-addons.css +${PYSITELIB}/trac/htdocs/css/jquery-ui/images/ui-bg_diagonals-thick_18_ffddcc_40x40.png +${PYSITELIB}/trac/htdocs/css/jquery-ui/images/ui-bg_diagonals-thick_20_666666_40x40.png +${PYSITELIB}/trac/htdocs/css/jquery-ui/images/ui-bg_flat_00_ffffff_40x100.png +${PYSITELIB}/trac/htdocs/css/jquery-ui/images/ui-bg_flat_0_ffffdd_40x100.png +${PYSITELIB}/trac/htdocs/css/jquery-ui/images/ui-bg_flat_0_ffffff_40x100.png +${PYSITELIB}/trac/htdocs/css/jquery-ui/images/ui-bg_flat_10_000000_40x100.png +${PYSITELIB}/trac/htdocs/css/jquery-ui/images/ui-bg_highlight-soft_30_303030_1x100.png +${PYSITELIB}/trac/htdocs/css/jquery-ui/images/ui-bg_highlight-soft_75_c0f0c0_1x100.png +${PYSITELIB}/trac/htdocs/css/jquery-ui/images/ui-bg_highlight-soft_80_ffffdd_1x100.png +${PYSITELIB}/trac/htdocs/css/jquery-ui/images/ui-icons_222222_256x240.png +${PYSITELIB}/trac/htdocs/css/jquery-ui/images/ui-icons_4b954f_256x240.png +${PYSITELIB}/trac/htdocs/css/jquery-ui/images/ui-icons_505050_256x240.png +${PYSITELIB}/trac/htdocs/css/jquery-ui/images/ui-icons_707070_256x240.png +${PYSITELIB}/trac/htdocs/css/jquery-ui/images/ui-icons_9b081d_256x240.png +${PYSITELIB}/trac/htdocs/css/jquery-ui/images/ui-icons_b00000_256x240.png +${PYSITELIB}/trac/htdocs/css/jquery-ui/images/ui-icons_d7d7d7_256x240.png +${PYSITELIB}/trac/htdocs/css/jquery-ui/jquery-ui.css ${PYSITELIB}/trac/htdocs/css/prefs.css ${PYSITELIB}/trac/htdocs/css/report.css ${PYSITELIB}/trac/htdocs/css/roadmap.css @@ -128,15 +147,20 @@ ${PYSITELIB}/trac/htdocs/guide/basic-workflow.png ${PYSITELIB}/trac/htdocs/guide/original-workflow.png ${PYSITELIB}/trac/htdocs/ics.png ${PYSITELIB}/trac/htdocs/imggrid.png +${PYSITELIB}/trac/htdocs/inreply.png ${PYSITELIB}/trac/htdocs/js/auto_preview.js ${PYSITELIB}/trac/htdocs/js/babel.js ${PYSITELIB}/trac/htdocs/js/blame.js ${PYSITELIB}/trac/htdocs/js/diff.js +${PYSITELIB}/trac/htdocs/js/excanvas.js ${PYSITELIB}/trac/htdocs/js/expand_dir.js ${PYSITELIB}/trac/htdocs/js/folding.js -${PYSITELIB}/trac/htdocs/js/ie_pre7_hacks.js +${PYSITELIB}/trac/htdocs/js/jquery-ui-addons.js +${PYSITELIB}/trac/htdocs/js/jquery-ui-i18n.js +${PYSITELIB}/trac/htdocs/js/jquery-ui.js ${PYSITELIB}/trac/htdocs/js/jquery.js ${PYSITELIB}/trac/htdocs/js/keyboard_nav.js +${PYSITELIB}/trac/htdocs/js/log_graph.js ${PYSITELIB}/trac/htdocs/js/messages/ca.js ${PYSITELIB}/trac/htdocs/js/messages/de.js ${PYSITELIB}/trac/htdocs/js/messages/en_GB.js @@ -144,6 +168,7 @@ ${PYSITELIB}/trac/htdocs/js/messages/en_US.js ${PYSITELIB}/trac/htdocs/js/messages/eo.js ${PYSITELIB}/trac/htdocs/js/messages/es.js ${PYSITELIB}/trac/htdocs/js/messages/es_AR.js +${PYSITELIB}/trac/htdocs/js/messages/et.js ${PYSITELIB}/trac/htdocs/js/messages/fi.js ${PYSITELIB}/trac/htdocs/js/messages/fr.js ${PYSITELIB}/trac/htdocs/js/messages/he.js @@ -158,6 +183,7 @@ ${PYSITELIB}/trac/htdocs/js/messages/ru.js ${PYSITELIB}/trac/htdocs/js/messages/sl.js ${PYSITELIB}/trac/htdocs/js/messages/sv.js ${PYSITELIB}/trac/htdocs/js/messages/tr.js +${PYSITELIB}/trac/htdocs/js/messages/uk.js ${PYSITELIB}/trac/htdocs/js/messages/zh_CN.js ${PYSITELIB}/trac/htdocs/js/messages/zh_TW.js ${PYSITELIB}/trac/htdocs/js/noconflict.js @@ -165,9 +191,11 @@ ${PYSITELIB}/trac/htdocs/js/query.js ${PYSITELIB}/trac/htdocs/js/resizer.js ${PYSITELIB}/trac/htdocs/js/search.js ${PYSITELIB}/trac/htdocs/js/suggest.js +${PYSITELIB}/trac/htdocs/js/threaded_comments.js ${PYSITELIB}/trac/htdocs/js/timeline_multirepos.js ${PYSITELIB}/trac/htdocs/js/trac.js ${PYSITELIB}/trac/htdocs/js/wikitoolbar.js +${PYSITELIB}/trac/htdocs/js/workflow_graph.js ${PYSITELIB}/trac/htdocs/loading.gif ${PYSITELIB}/trac/htdocs/lock-locked.png ${PYSITELIB}/trac/htdocs/milestone.png @@ -185,34 +213,64 @@ ${PYSITELIB}/trac/loader.py ${PYSITELIB}/trac/loader.pyc ${PYSITELIB}/trac/loader.pyo ${PYSITELIB}/trac/locale/ca/LC_MESSAGES/messages.mo +${PYSITELIB}/trac/locale/ca/LC_MESSAGES/tracini.mo ${PYSITELIB}/trac/locale/cs/LC_MESSAGES/messages.mo +${PYSITELIB}/trac/locale/cs/LC_MESSAGES/tracini.mo ${PYSITELIB}/trac/locale/de/LC_MESSAGES/messages.mo +${PYSITELIB}/trac/locale/de/LC_MESSAGES/tracini.mo +${PYSITELIB}/trac/locale/el/LC_MESSAGES/tracini.mo ${PYSITELIB}/trac/locale/en_GB/LC_MESSAGES/messages.mo +${PYSITELIB}/trac/locale/en_GB/LC_MESSAGES/tracini.mo ${PYSITELIB}/trac/locale/en_US/LC_MESSAGES/messages.mo +${PYSITELIB}/trac/locale/en_US/LC_MESSAGES/tracini.mo ${PYSITELIB}/trac/locale/eo/LC_MESSAGES/messages.mo +${PYSITELIB}/trac/locale/eo/LC_MESSAGES/tracini.mo ${PYSITELIB}/trac/locale/es/LC_MESSAGES/messages.mo +${PYSITELIB}/trac/locale/es/LC_MESSAGES/tracini.mo ${PYSITELIB}/trac/locale/es_AR/LC_MESSAGES/messages.mo +${PYSITELIB}/trac/locale/es_AR/LC_MESSAGES/tracini.mo +${PYSITELIB}/trac/locale/et/LC_MESSAGES/messages.mo +${PYSITELIB}/trac/locale/fa/LC_MESSAGES/tracini.mo ${PYSITELIB}/trac/locale/fi/LC_MESSAGES/messages.mo +${PYSITELIB}/trac/locale/fi/LC_MESSAGES/tracini.mo ${PYSITELIB}/trac/locale/fr/LC_MESSAGES/messages.mo +${PYSITELIB}/trac/locale/fr/LC_MESSAGES/tracini.mo ${PYSITELIB}/trac/locale/gl/LC_MESSAGES/messages.mo +${PYSITELIB}/trac/locale/gl/LC_MESSAGES/tracini.mo ${PYSITELIB}/trac/locale/he/LC_MESSAGES/messages.mo +${PYSITELIB}/trac/locale/he/LC_MESSAGES/tracini.mo ${PYSITELIB}/trac/locale/hu/LC_MESSAGES/messages.mo -${PYSITELIB}/trac/locale/hy/LC_MESSAGES/messages.mo +${PYSITELIB}/trac/locale/hu/LC_MESSAGES/tracini.mo +${PYSITELIB}/trac/locale/hy/LC_MESSAGES/tracini.mo ${PYSITELIB}/trac/locale/it/LC_MESSAGES/messages.mo +${PYSITELIB}/trac/locale/it/LC_MESSAGES/tracini.mo ${PYSITELIB}/trac/locale/ja/LC_MESSAGES/messages.mo -${PYSITELIB}/trac/locale/ko/LC_MESSAGES/messages.mo +${PYSITELIB}/trac/locale/ja/LC_MESSAGES/tracini.mo +${PYSITELIB}/trac/locale/ko/LC_MESSAGES/tracini.mo ${PYSITELIB}/trac/locale/nb/LC_MESSAGES/messages.mo +${PYSITELIB}/trac/locale/nb/LC_MESSAGES/tracini.mo ${PYSITELIB}/trac/locale/nl/LC_MESSAGES/messages.mo -${PYSITELIB}/trac/locale/pl/LC_MESSAGES/messages.mo +${PYSITELIB}/trac/locale/nl/LC_MESSAGES/tracini.mo +${PYSITELIB}/trac/locale/pl/LC_MESSAGES/tracini.mo ${PYSITELIB}/trac/locale/pt/LC_MESSAGES/messages.mo +${PYSITELIB}/trac/locale/pt/LC_MESSAGES/tracini.mo ${PYSITELIB}/trac/locale/pt_BR/LC_MESSAGES/messages.mo +${PYSITELIB}/trac/locale/pt_BR/LC_MESSAGES/tracini.mo ${PYSITELIB}/trac/locale/ro/LC_MESSAGES/messages.mo +${PYSITELIB}/trac/locale/ro/LC_MESSAGES/tracini.mo ${PYSITELIB}/trac/locale/ru/LC_MESSAGES/messages.mo +${PYSITELIB}/trac/locale/ru/LC_MESSAGES/tracini.mo ${PYSITELIB}/trac/locale/sl/LC_MESSAGES/messages.mo +${PYSITELIB}/trac/locale/sl/LC_MESSAGES/tracini.mo ${PYSITELIB}/trac/locale/sv/LC_MESSAGES/messages.mo -${PYSITELIB}/trac/locale/tr/LC_MESSAGES/messages.mo +${PYSITELIB}/trac/locale/sv/LC_MESSAGES/tracini.mo +${PYSITELIB}/trac/locale/tr/LC_MESSAGES/tracini.mo +${PYSITELIB}/trac/locale/uk/LC_MESSAGES/messages.mo +${PYSITELIB}/trac/locale/vi/LC_MESSAGES/tracini.mo ${PYSITELIB}/trac/locale/zh_CN/LC_MESSAGES/messages.mo +${PYSITELIB}/trac/locale/zh_CN/LC_MESSAGES/tracini.mo ${PYSITELIB}/trac/locale/zh_TW/LC_MESSAGES/messages.mo +${PYSITELIB}/trac/locale/zh_TW/LC_MESSAGES/tracini.mo ${PYSITELIB}/trac/log.py ${PYSITELIB}/trac/log.pyc ${PYSITELIB}/trac/log.pyo @@ -231,9 +289,6 @@ ${PYSITELIB}/trac/mimeview/pygments.pyo ${PYSITELIB}/trac/mimeview/rst.py ${PYSITELIB}/trac/mimeview/rst.pyc ${PYSITELIB}/trac/mimeview/rst.pyo -${PYSITELIB}/trac/mimeview/silvercity.py -${PYSITELIB}/trac/mimeview/silvercity.pyc -${PYSITELIB}/trac/mimeview/silvercity.pyo ${PYSITELIB}/trac/mimeview/txtl.py ${PYSITELIB}/trac/mimeview/txtl.pyc ${PYSITELIB}/trac/mimeview/txtl.pyo @@ -256,6 +311,7 @@ ${PYSITELIB}/trac/prefs/templates/prefs_general.html ${PYSITELIB}/trac/prefs/templates/prefs_keybindings.html ${PYSITELIB}/trac/prefs/templates/prefs_language.html ${PYSITELIB}/trac/prefs/templates/prefs_pygments.html +${PYSITELIB}/trac/prefs/templates/prefs_userinterface.html ${PYSITELIB}/trac/prefs/web_ui.py ${PYSITELIB}/trac/prefs/web_ui.pyc ${PYSITELIB}/trac/prefs/web_ui.pyo @@ -282,18 +338,16 @@ ${PYSITELIB}/trac/templates/diff_div.html ${PYSITELIB}/trac/templates/diff_options.html ${PYSITELIB}/trac/templates/diff_view.html ${PYSITELIB}/trac/templates/error.html -${PYSITELIB}/trac/templates/footer.cs -${PYSITELIB}/trac/templates/header.cs ${PYSITELIB}/trac/templates/history_view.html ${PYSITELIB}/trac/templates/index.html ${PYSITELIB}/trac/templates/layout.html ${PYSITELIB}/trac/templates/list_of_attachments.html -${PYSITELIB}/trac/templates/macros.cs ${PYSITELIB}/trac/templates/macros.html ${PYSITELIB}/trac/templates/macros.rss ${PYSITELIB}/trac/templates/page_index.html ${PYSITELIB}/trac/templates/preview_file.html ${PYSITELIB}/trac/templates/progress_bar.html +${PYSITELIB}/trac/templates/progress_bar_grouped.html ${PYSITELIB}/trac/templates/theme.html ${PYSITELIB}/trac/test.py ${PYSITELIB}/trac/test.pyc @@ -328,6 +382,9 @@ ${PYSITELIB}/trac/ticket/admin.pyo ${PYSITELIB}/trac/ticket/api.py ${PYSITELIB}/trac/ticket/api.pyc ${PYSITELIB}/trac/ticket/api.pyo +${PYSITELIB}/trac/ticket/batch.py +${PYSITELIB}/trac/ticket/batch.pyc +${PYSITELIB}/trac/ticket/batch.pyo ${PYSITELIB}/trac/ticket/default_workflow.py ${PYSITELIB}/trac/ticket/default_workflow.pyc ${PYSITELIB}/trac/ticket/default_workflow.pyo @@ -346,6 +403,8 @@ ${PYSITELIB}/trac/ticket/report.pyo ${PYSITELIB}/trac/ticket/roadmap.py ${PYSITELIB}/trac/ticket/roadmap.pyc ${PYSITELIB}/trac/ticket/roadmap.pyo +${PYSITELIB}/trac/ticket/templates/batch_modify.html +${PYSITELIB}/trac/ticket/templates/batch_ticket_notify_email.txt ${PYSITELIB}/trac/ticket/templates/milestone_delete.html ${PYSITELIB}/trac/ticket/templates/milestone_edit.html ${PYSITELIB}/trac/ticket/templates/milestone_view.html @@ -364,6 +423,7 @@ ${PYSITELIB}/trac/ticket/templates/ticket.rss ${PYSITELIB}/trac/ticket/templates/ticket_box.html ${PYSITELIB}/trac/ticket/templates/ticket_change.html ${PYSITELIB}/trac/ticket/templates/ticket_notify_email.txt +${PYSITELIB}/trac/ticket/templates/ticket_preview.html ${PYSITELIB}/trac/ticket/web_ui.py ${PYSITELIB}/trac/ticket/web_ui.pyc ${PYSITELIB}/trac/ticket/web_ui.pyo @@ -434,6 +494,15 @@ ${PYSITELIB}/trac/upgrades/db25.pyo ${PYSITELIB}/trac/upgrades/db26.py ${PYSITELIB}/trac/upgrades/db26.pyc ${PYSITELIB}/trac/upgrades/db26.pyo +${PYSITELIB}/trac/upgrades/db27.py +${PYSITELIB}/trac/upgrades/db27.pyc +${PYSITELIB}/trac/upgrades/db27.pyo +${PYSITELIB}/trac/upgrades/db28.py +${PYSITELIB}/trac/upgrades/db28.pyc +${PYSITELIB}/trac/upgrades/db28.pyo +${PYSITELIB}/trac/upgrades/db29.py +${PYSITELIB}/trac/upgrades/db29.pyc +${PYSITELIB}/trac/upgrades/db29.pyo ${PYSITELIB}/trac/upgrades/db3.py ${PYSITELIB}/trac/upgrades/db3.pyc ${PYSITELIB}/trac/upgrades/db3.pyo @@ -560,9 +629,6 @@ ${PYSITELIB}/trac/web/cgi_frontend.pyo ${PYSITELIB}/trac/web/chrome.py ${PYSITELIB}/trac/web/chrome.pyc ${PYSITELIB}/trac/web/chrome.pyo -${PYSITELIB}/trac/web/clearsilver.py -${PYSITELIB}/trac/web/clearsilver.pyc -${PYSITELIB}/trac/web/clearsilver.pyo ${PYSITELIB}/trac/web/fcgi_frontend.py ${PYSITELIB}/trac/web/fcgi_frontend.pyc ${PYSITELIB}/trac/web/fcgi_frontend.pyo @@ -604,6 +670,7 @@ ${PYSITELIB}/trac/wiki/default-pages/TitleIndex ${PYSITELIB}/trac/wiki/default-pages/TracAccessibility ${PYSITELIB}/trac/wiki/default-pages/TracAdmin ${PYSITELIB}/trac/wiki/default-pages/TracBackup +${PYSITELIB}/trac/wiki/default-pages/TracBatchModify ${PYSITELIB}/trac/wiki/default-pages/TracBrowser ${PYSITELIB}/trac/wiki/default-pages/TracCgi ${PYSITELIB}/trac/wiki/default-pages/TracChangeset @@ -693,6 +760,9 @@ ${PYSITELIB}/tracopt/mimeview/enscript.pyo ${PYSITELIB}/tracopt/mimeview/php.py ${PYSITELIB}/tracopt/mimeview/php.pyc ${PYSITELIB}/tracopt/mimeview/php.pyo +${PYSITELIB}/tracopt/mimeview/silvercity.py +${PYSITELIB}/tracopt/mimeview/silvercity.pyc +${PYSITELIB}/tracopt/mimeview/silvercity.pyo ${PYSITELIB}/tracopt/perm/__init__.py ${PYSITELIB}/tracopt/perm/__init__.pyc ${PYSITELIB}/tracopt/perm/__init__.pyo @@ -705,6 +775,9 @@ ${PYSITELIB}/tracopt/perm/config_perm_provider.pyo ${PYSITELIB}/tracopt/ticket/__init__.py ${PYSITELIB}/tracopt/ticket/__init__.pyc ${PYSITELIB}/tracopt/ticket/__init__.pyo +${PYSITELIB}/tracopt/ticket/clone.py +${PYSITELIB}/tracopt/ticket/clone.pyc +${PYSITELIB}/tracopt/ticket/clone.pyo ${PYSITELIB}/tracopt/ticket/commit_updater.py ${PYSITELIB}/tracopt/ticket/commit_updater.pyc ${PYSITELIB}/tracopt/ticket/commit_updater.pyo @@ -733,3 +806,26 @@ share/examples/trac/workflow/showworkflow share/examples/trac/workflow/simple-workflow.ini share/examples/trac/workflow/trivial-workflow.ini share/examples/trac/workflow/workflow_parser.py +share/examples/trac/cgi-bin/trac.cgi +share/examples/trac/cgi-bin/trac.fcgi +${PYSITELIB}/tracopt/versioncontrol/__init__.py +${PYSITELIB}/tracopt/versioncontrol/__init__.pyc +${PYSITELIB}/tracopt/versioncontrol/__init__.pyo +${PYSITELIB}/tracopt/versioncontrol/git/PyGIT.py +${PYSITELIB}/tracopt/versioncontrol/git/PyGIT.pyc +${PYSITELIB}/tracopt/versioncontrol/git/PyGIT.pyo +${PYSITELIB}/tracopt/versioncontrol/git/__init__.py +${PYSITELIB}/tracopt/versioncontrol/git/__init__.pyc +${PYSITELIB}/tracopt/versioncontrol/git/__init__.pyo +${PYSITELIB}/tracopt/versioncontrol/git/git_fs.py +${PYSITELIB}/tracopt/versioncontrol/git/git_fs.pyc +${PYSITELIB}/tracopt/versioncontrol/git/git_fs.pyo +${PYSITELIB}/tracopt/versioncontrol/svn/__init__.py +${PYSITELIB}/tracopt/versioncontrol/svn/__init__.pyc +${PYSITELIB}/tracopt/versioncontrol/svn/__init__.pyo +${PYSITELIB}/tracopt/versioncontrol/svn/svn_fs.py +${PYSITELIB}/tracopt/versioncontrol/svn/svn_fs.pyc +${PYSITELIB}/tracopt/versioncontrol/svn/svn_fs.pyo +${PYSITELIB}/tracopt/versioncontrol/svn/svn_prop.py +${PYSITELIB}/tracopt/versioncontrol/svn/svn_prop.pyc +${PYSITELIB}/tracopt/versioncontrol/svn/svn_prop.pyo diff --git a/www/trac/distinfo b/www/trac/distinfo index b50004d387e..2ffa34f08df 100644 --- a/www/trac/distinfo +++ b/www/trac/distinfo @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.30 2012/02/07 01:32:16 gdt Exp $ +$NetBSD: distinfo,v 1.31 2013/02/13 17:10:45 gdt Exp $ -SHA1 (Trac-0.12.3.tar.gz) = 3d272d6802bd2591f2ae024f7beaafa26499816f -RMD160 (Trac-0.12.3.tar.gz) = f7d828952f3e693140711e83dc5b543442b015e8 -Size (Trac-0.12.3.tar.gz) = 2239934 bytes +SHA1 (Trac-1.0.tar.gz) = c9720d28704b43a605620de2eb870ddc9073cd12 +RMD160 (Trac-1.0.tar.gz) = d87d87d809fdad35845cbcad5f81fc2d5c9830a1 +Size (Trac-1.0.tar.gz) = 3041136 bytes |