svn commit: r301498 - in head/devel: . bugzilla bugzilla42
Olli Hauer
ohauer at FreeBSD.org
Tue Jul 24 21:37:08 UTC 2012
Author: ohauer
Date: Tue Jul 24 21:37:07 2012
New Revision: 301498
URL: http://svn.freebsd.org/changeset/ports/301498
Log:
- new port bugzilla42
New Features and Improvements:
- Experimental SQLite Support
- Creating an Attachment by Pasting Text Into a Text Field
- HTML Bugmail (default: on can be disabled in user preference)
- Improved Searching System
- Disabling Old Components, Versions and Milestones
- Displaying a Custom Field Value Based on Multiple Values of Another Field
- Auditing of All Changes Within Bugzilla
- Accessibility Improvements
And many other Improvements, for complete list see:
http://www.bugzilla.org/releases/4.2.1/release-notes.html
Added:
head/devel/bugzilla42/
- copied from r301493, head/devel/bugzilla/
Modified:
head/devel/Makefile
head/devel/bugzilla/Makefile.common
head/devel/bugzilla42/Makefile
head/devel/bugzilla42/Makefile.common
head/devel/bugzilla42/Makefile.options
head/devel/bugzilla42/pkg-plist
Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile Tue Jul 24 21:27:13 2012 (r301497)
+++ head/devel/Makefile Tue Jul 24 21:37:07 2012 (r301498)
@@ -134,6 +134,7 @@
SUBDIR += bug-buddy
SUBDIR += bugzilla
SUBDIR += bugzilla3
+ SUBDIR += bugzilla42
SUBDIR += build
SUBDIR += buildapp
SUBDIR += buildbot
Modified: head/devel/bugzilla/Makefile.common
==============================================================================
--- head/devel/bugzilla/Makefile.common Tue Jul 24 21:27:13 2012 (r301497)
+++ head/devel/bugzilla/Makefile.common Tue Jul 24 21:37:07 2012 (r301498)
@@ -4,7 +4,8 @@
DIST_SUBDIR= ${PORTNAME}
-CONFLICTS= bugzilla-3.*
+CONFLICTS= bugzilla-3.* \
+ bugzilla-4.2.*
PORTSCOUT= limitw:1,even
Modified: head/devel/bugzilla42/Makefile
==============================================================================
--- head/devel/bugzilla/Makefile Tue Jul 24 20:50:26 2012 (r301493)
+++ head/devel/bugzilla42/Makefile Tue Jul 24 21:37:07 2012 (r301498)
@@ -6,12 +6,12 @@
#
PORTNAME= bugzilla
-PORTVERSION= 4.0.6
+PORTVERSION= 4.2.1
CATEGORIES= devel
MASTER_SITES= ${MASTER_SITE_MOZILLA}
MASTER_SITE_SUBDIR= webtools webtools/archived
-MAINTAINER= skv at FreeBSD.org
+MAINTAINER= ohauer at FreeBSD.org
COMMENT= Bug-tracking system developed by Mozilla Project
LICENSE= MPL
@@ -23,11 +23,14 @@ RUN_DEPENDS= \
p5-DateTime>=0.28:${PORTSDIR}/devel/p5-DateTime \
p5-Email-MIME>=1.904:${PORTSDIR}/mail/p5-Email-MIME \
p5-Email-Send>=2.00:${PORTSDIR}/mail/p5-Email-Send \
+ p5-Encode-Detect>=0:${PORTSDIR}/converters/p5-Encode-Detect \
p5-List-MoreUtils>=0.22:${PORTSDIR}/lang/p5-List-MoreUtils \
- p5-Math-Random-Secure>=0.05:${PORTSDIR}/math/p5-Math-Random-Secure \
+ p5-Math-Random-ISAAC>=1.001:${PORTSDIR}/math/p5-Math-Random-ISAAC \
p5-Template-Toolkit>=2.22:${PORTSDIR}/www/p5-Template-Toolkit \
p5-TimeDate>=1.19:${PORTSDIR}/devel/p5-TimeDate \
- p5-URI>=0:${PORTSDIR}/net/p5-URI
+ p5-URI>=1.37:${PORTSDIR}/net/p5-URI
+
+LATEST_LINK= bugzilla42
USE_PERL5= yes
@@ -52,8 +55,9 @@ RUN_DEPENDS+= p5-Digest-SHA>=5.47:${PORT
.endif
.if ${PORT_OPTIONS:MMYSQL}
-USE_MYSQL= yes
-RUN_DEPENDS+= p5-DBD-mysql>=2.9003:${PORTSDIR}/databases/p5-DBD-mysql
+USE_MYSQL= yes
+IGNORE_WITH_MYSQL= 41
+RUN_DEPENDS+= p5-DBD-mysql>=4.0001:${PORTSDIR}/databases/p5-DBD-mysql
.endif
.if ${PORT_OPTIONS:MPGSQL}
@@ -61,6 +65,12 @@ USE_PGSQL= yes
RUN_DEPENDS+= p5-DBD-Pg>=1.45:${PORTSDIR}/databases/p5-DBD-Pg
.endif
+.if ${PORT_OPTIONS:MSQLITE}
+USE_SQLITE= yes
+RUN_DEPENDS+= p5-DBD-SQLite>=1.29:${PORTSDIR}/databases/p5-DBD-SQLite \
+ sqlite3>=3:${PORTSDIR}/databases/sqlite3
+.endif
+
.if ${PORT_OPTIONS:MGRAPH_REPORTS}
RUN_DEPENDS+= p5-GD>=1.20:${PORTSDIR}/graphics/p5-GD \
p5-GD-Graph>=0:${PORTSDIR}/graphics/p5-GD-Graph \
@@ -73,7 +83,7 @@ RUN_DEPENDS+= p5-Chart>=2.1:${PORTSDIR}/
.endif
.if ${PORT_OPTIONS:MPATCH_VIEWER}
-RUN_DEPENDS+= p5-PatchReader>=0.9.4:${PORTSDIR}/devel/p5-PatchReader \
+RUN_DEPENDS+= p5-PatchReader>=0.9.6:${PORTSDIR}/devel/p5-PatchReader \
interdiff:${PORTSDIR}/misc/patchutils
.endif
Modified: head/devel/bugzilla42/Makefile.common
==============================================================================
--- head/devel/bugzilla/Makefile.common Tue Jul 24 20:50:26 2012 (r301493)
+++ head/devel/bugzilla42/Makefile.common Tue Jul 24 21:37:07 2012 (r301498)
@@ -5,6 +5,7 @@
DIST_SUBDIR= ${PORTNAME}
CONFLICTS= bugzilla-3.*
+ bugzilla-4.0.*
PORTSCOUT= limitw:1,even
Modified: head/devel/bugzilla42/Makefile.options
==============================================================================
--- head/devel/bugzilla/Makefile.options Tue Jul 24 20:50:26 2012 (r301493)
+++ head/devel/bugzilla42/Makefile.options Tue Jul 24 21:37:07 2012 (r301498)
@@ -6,6 +6,7 @@ OPTIONS_DEFINE= \
DOCS \
MYSQL \
PGSQL \
+ SQLITE \
GRAPHVIZ \
GRAPH_REPORTS \
CHARTING_MODULES\
Modified: head/devel/bugzilla42/pkg-plist
==============================================================================
--- head/devel/bugzilla/pkg-plist Tue Jul 24 20:50:26 2012 (r301493)
+++ head/devel/bugzilla42/pkg-plist Tue Jul 24 21:37:07 2012 (r301498)
@@ -18,6 +18,7 @@
%%PORTDOCS%%%%DOCSDIR%%/en/html/api/Bugzilla/DB/Oracle.html
%%PORTDOCS%%%%DOCSDIR%%/en/html/api/Bugzilla/DB/Pg.html
%%PORTDOCS%%%%DOCSDIR%%/en/html/api/Bugzilla/DB/Schema.html
+%%PORTDOCS%%%%DOCSDIR%%/en/html/api/Bugzilla/DB/Sqlite.html
%%PORTDOCS%%%%DOCSDIR%%/en/html/api/Bugzilla/Error.html
%%PORTDOCS%%%%DOCSDIR%%/en/html/api/Bugzilla/Extension.html
%%PORTDOCS%%%%DOCSDIR%%/en/html/api/Bugzilla/Field.html
@@ -60,6 +61,7 @@
%%PORTDOCS%%%%DOCSDIR%%/en/html/api/Bugzilla/WebService.html
%%PORTDOCS%%%%DOCSDIR%%/en/html/api/Bugzilla/WebService/Bug.html
%%PORTDOCS%%%%DOCSDIR%%/en/html/api/Bugzilla/WebService/Bugzilla.html
+%%PORTDOCS%%%%DOCSDIR%%/en/html/api/Bugzilla/WebService/Group.html
%%PORTDOCS%%%%DOCSDIR%%/en/html/api/Bugzilla/WebService/Product.html
%%PORTDOCS%%%%DOCSDIR%%/en/html/api/Bugzilla/WebService/Server/JSONRPC.html
%%PORTDOCS%%%%DOCSDIR%%/en/html/api/Bugzilla/WebService/Server/XMLRPC.html
@@ -69,6 +71,7 @@
%%PORTDOCS%%%%DOCSDIR%%/en/html/api/Bugzilla/Whine/Query.html
%%PORTDOCS%%%%DOCSDIR%%/en/html/api/Bugzilla/Whine/Schedule.html
%%PORTDOCS%%%%DOCSDIR%%/en/html/api/checksetup.html
+%%PORTDOCS%%%%DOCSDIR%%/en/html/api/collectstats.html
%%PORTDOCS%%%%DOCSDIR%%/en/html/api/contrib/bz_webservice_demo.html
%%PORTDOCS%%%%DOCSDIR%%/en/html/api/contrib/bzdbcopy.html
%%PORTDOCS%%%%DOCSDIR%%/en/html/api/contrib/console.html
@@ -216,6 +219,16 @@
%%WWWDIR%%/Bugzilla/Auth/Verify/Stack.pm
%%WWWDIR%%/Bugzilla/Bug.pm
%%WWWDIR%%/Bugzilla/BugMail.pm
+%%WWWDIR%%/Bugzilla/BugUrl.pm
+%%WWWDIR%%/Bugzilla/BugUrl/Bugzilla.pm
+%%WWWDIR%%/Bugzilla/BugUrl/Bugzilla/Local.pm
+%%WWWDIR%%/Bugzilla/BugUrl/Debian.pm
+%%WWWDIR%%/Bugzilla/BugUrl/Google.pm
+%%WWWDIR%%/Bugzilla/BugUrl/JIRA.pm
+%%WWWDIR%%/Bugzilla/BugUrl/Launchpad.pm
+%%WWWDIR%%/Bugzilla/BugUrl/MantisBT.pm
+%%WWWDIR%%/Bugzilla/BugUrl/SourceForge.pm
+%%WWWDIR%%/Bugzilla/BugUrl/Trac.pm
%%WWWDIR%%/Bugzilla/CGI.pm
%%WWWDIR%%/Bugzilla/Chart.pm
%%WWWDIR%%/Bugzilla/Classification.pm
@@ -249,6 +262,8 @@
%%WWWDIR%%/Bugzilla/DB/Schema/Mysql.pm
%%WWWDIR%%/Bugzilla/DB/Schema/Oracle.pm
%%WWWDIR%%/Bugzilla/DB/Schema/Pg.pm
+%%WWWDIR%%/Bugzilla/DB/Schema/Sqlite.pm
+%%WWWDIR%%/Bugzilla/DB/Sqlite.pm
%%WWWDIR%%/Bugzilla/Error.pm
%%WWWDIR%%/Bugzilla/Extension.pm
%%WWWDIR%%/Bugzilla/Field.pm
@@ -275,7 +290,10 @@
%%WWWDIR%%/Bugzilla/Milestone.pm
%%WWWDIR%%/Bugzilla/Object.pm
%%WWWDIR%%/Bugzilla/Product.pm
+%%WWWDIR%%/Bugzilla/RNG.pm
%%WWWDIR%%/Bugzilla/Search.pm
+%%WWWDIR%%/Bugzilla/Search/Clause.pm
+%%WWWDIR%%/Bugzilla/Search/Condition.pm
%%WWWDIR%%/Bugzilla/Search/Quicksearch.pm
%%WWWDIR%%/Bugzilla/Search/Recent.pm
%%WWWDIR%%/Bugzilla/Search/Saved.pm
@@ -299,6 +317,7 @@
%%WWWDIR%%/Bugzilla/WebService/Bug.pm
%%WWWDIR%%/Bugzilla/WebService/Bugzilla.pm
%%WWWDIR%%/Bugzilla/WebService/Constants.pm
+%%WWWDIR%%/Bugzilla/WebService/Group.pm
%%WWWDIR%%/Bugzilla/WebService/Product.pm
%%WWWDIR%%/Bugzilla/WebService/README
%%WWWDIR%%/Bugzilla/WebService/Server.pm
@@ -326,7 +345,6 @@
%%CONTRIB%%%%WWWDIR%%/contrib/bugzilla-submit/bugdata.txt
%%CONTRIB%%%%WWWDIR%%/contrib/bugzilla-submit/bugzilla-submit
%%CONTRIB%%%%WWWDIR%%/contrib/bugzilla-submit/bugzilla-submit.xml
-%%CONTRIB%%%%WWWDIR%%/contrib/bugzilla_ldapsync.rb
%%CONTRIB%%%%WWWDIR%%/contrib/bz_webservice_demo.pl
%%CONTRIB%%%%WWWDIR%%/contrib/bzdbcopy.pl
%%CONTRIB%%%%WWWDIR%%/contrib/cmdline/bugcount
@@ -349,7 +367,6 @@
%%CONTRIB%%%%WWWDIR%%/contrib/sendbugmail.pl
%%CONTRIB%%%%WWWDIR%%/contrib/sendunsentbugmail.pl
%%CONTRIB%%%%WWWDIR%%/contrib/syncLDAP.pl
-%%CONTRIB%%%%WWWDIR%%/contrib/yp_nomail.sh
%%WWWDIR%%/createaccount.cgi
%%WWWDIR%%/describecomponents.cgi
%%WWWDIR%%/describekeywords.cgi
@@ -382,10 +399,14 @@
%%WWWDIR%%/js/bug.js
%%WWWDIR%%/js/change-columns.js
%%WWWDIR%%/js/comments.js
+%%WWWDIR%%/js/custom-search.js
%%WWWDIR%%/js/expanding-tree.js
%%WWWDIR%%/js/field.js
%%WWWDIR%%/js/flag.js
%%WWWDIR%%/js/global.js
+%%WWWDIR%%/js/history.js/license.txt
+%%WWWDIR%%/js/history.js/native.history.js
+%%WWWDIR%%/js/history.js/readme.txt
%%WWWDIR%%/js/params.js
%%WWWDIR%%/js/productform.js
%%WWWDIR%%/js/util.js
@@ -514,7 +535,6 @@
%%WWWDIR%%/js/yui/yuitest/yuitest-min.js
%%WWWDIR%%/js/yui/yuitest/yuitest_core-min.js
%%WWWDIR%%/jsonrpc.cgi
-%%WWWDIR%%/long_list.cgi
%%WWWDIR%%/migrate.pl
%%WWWDIR%%/mod_perl.pl
%%WWWDIR%%/page.cgi
@@ -533,10 +553,8 @@
%%WWWDIR%%/search_plugin.cgi
%%WWWDIR%%/show_activity.cgi
%%WWWDIR%%/show_bug.cgi
-%%WWWDIR%%/showattachment.cgi
%%WWWDIR%%/showdependencygraph.cgi
%%WWWDIR%%/showdependencytree.cgi
-%%WWWDIR%%/sidebar.cgi
%%WWWDIR%%/skins/README
%%WWWDIR%%/skins/contrib/Dusk/buglist.css
%%WWWDIR%%/skins/contrib/Dusk/global.css
@@ -556,18 +574,13 @@
%%WWWDIR%%/skins/standard/global.css
%%WWWDIR%%/skins/standard/global/body-back.gif
%%WWWDIR%%/skins/standard/global/calendar.png
-%%WWWDIR%%/skins/standard/global/down.png
%%WWWDIR%%/skins/standard/global/header.png
-%%WWWDIR%%/skins/standard/global/left.png
-%%WWWDIR%%/skins/standard/global/right.png
-%%WWWDIR%%/skins/standard/global/up.png
%%WWWDIR%%/skins/standard/index.css
%%WWWDIR%%/skins/standard/index/file-a-bug.png
%%WWWDIR%%/skins/standard/index/help.png
%%WWWDIR%%/skins/standard/index/new-account.png
%%WWWDIR%%/skins/standard/index/search.png
%%WWWDIR%%/skins/standard/page.css
-%%WWWDIR%%/skins/standard/panel.css
%%WWWDIR%%/skins/standard/params.css
%%WWWDIR%%/skins/standard/reports.css
%%WWWDIR%%/skins/standard/search_form.css
@@ -691,7 +704,6 @@
%%WWWDIR%%/template/en/default/admin/versions/select-product.html.tmpl
%%WWWDIR%%/template/en/default/admin/workflow/comment.html.tmpl
%%WWWDIR%%/template/en/default/admin/workflow/edit.html.tmpl
-%%WWWDIR%%/template/en/default/attachment/cancel-create-dupe.html.tmpl
%%WWWDIR%%/template/en/default/attachment/choose.html.tmpl
%%WWWDIR%%/template/en/default/attachment/confirm-delete.html.tmpl
%%WWWDIR%%/template/en/default/attachment/create.html.tmpl
@@ -712,7 +724,6 @@
%%WWWDIR%%/template/en/default/bug/comments.html.tmpl
%%WWWDIR%%/template/en/default/bug/create/comment-guided.txt.tmpl
%%WWWDIR%%/template/en/default/bug/create/comment.txt.tmpl
-%%WWWDIR%%/template/en/default/bug/create/confirm-create-dupe.html.tmpl
%%WWWDIR%%/template/en/default/bug/create/create-guided.html.tmpl
%%WWWDIR%%/template/en/default/bug/create/create.html.tmpl
%%WWWDIR%%/template/en/default/bug/create/created.html.tmpl
@@ -727,6 +738,7 @@
%%WWWDIR%%/template/en/default/bug/field.html.tmpl
%%WWWDIR%%/template/en/default/bug/format_comment.txt.tmpl
%%WWWDIR%%/template/en/default/bug/knob.html.tmpl
+%%WWWDIR%%/template/en/default/bug/link.html.tmpl
%%WWWDIR%%/template/en/default/bug/navigate.html.tmpl
%%WWWDIR%%/template/en/default/bug/process/bugmail.html.tmpl
%%WWWDIR%%/template/en/default/bug/process/confirm-duplicate.html.tmpl
@@ -742,8 +754,11 @@
%%WWWDIR%%/template/en/default/bug/time.html.tmpl
%%WWWDIR%%/template/en/default/config.js.tmpl
%%WWWDIR%%/template/en/default/config.rdf.tmpl
+%%WWWDIR%%/template/en/default/email/bugmail-common.txt.tmpl
+%%WWWDIR%%/template/en/default/email/bugmail-header.txt.tmpl
+%%WWWDIR%%/template/en/default/email/bugmail.html.tmpl
+%%WWWDIR%%/template/en/default/email/bugmail.txt.tmpl
%%WWWDIR%%/template/en/default/email/lockout.txt.tmpl
-%%WWWDIR%%/template/en/default/email/newchangedmail.txt.tmpl
%%WWWDIR%%/template/en/default/email/sanitycheck.txt.tmpl
%%WWWDIR%%/template/en/default/email/sudo.txt.tmpl
%%WWWDIR%%/template/en/default/email/whine.txt.tmpl
@@ -786,6 +801,7 @@
%%WWWDIR%%/template/en/default/global/user.html.tmpl
%%WWWDIR%%/template/en/default/global/userselect.html.tmpl
%%WWWDIR%%/template/en/default/global/value-descs.js.tmpl
+%%WWWDIR%%/template/en/default/global/value-descs.none.tmpl
%%WWWDIR%%/template/en/default/global/variables.none.tmpl
%%WWWDIR%%/template/en/default/index.html.tmpl
%%WWWDIR%%/template/en/default/list/change-columns.html.tmpl
@@ -805,6 +821,7 @@
%%WWWDIR%%/template/en/default/pages/linkify.html.tmpl
%%WWWDIR%%/template/en/default/pages/quicksearch.html.tmpl
%%WWWDIR%%/template/en/default/pages/release-notes.html.tmpl
+%%WWWDIR%%/template/en/default/pages/release-notes3.html.tmpl
%%WWWDIR%%/template/en/default/pages/sudo.html.tmpl
%%WWWDIR%%/template/en/default/reports/chart.csv.tmpl
%%WWWDIR%%/template/en/default/reports/chart.html.tmpl
@@ -845,7 +862,6 @@
%%WWWDIR%%/template/en/default/search/tabs.html.tmpl
%%WWWDIR%%/template/en/default/search/type-select.html.tmpl
%%WWWDIR%%/template/en/default/setup/strings.txt.pl
-%%WWWDIR%%/template/en/default/sidebar.xul.tmpl
%%WWWDIR%%/template/en/default/welcome-admin.html.tmpl
%%WWWDIR%%/template/en/default/whine/mail.html.tmpl
%%WWWDIR%%/template/en/default/whine/mail.txt.tmpl
@@ -858,7 +874,6 @@
%%WWWDIR%%/votes.cgi
%%WWWDIR%%/whine.pl
%%WWWDIR%%/whineatnews.pl
-%%WWWDIR%%/xml.cgi
%%WWWDIR%%/xmlrpc.cgi
@dirrmtry %%WWWDIR%%/xt
@dirrm %%WWWDIR%%/template/en/default/whine
@@ -969,6 +984,7 @@
@dirrmtry %%WWWDIR%%/js/yui/assets
@dirrmtry %%WWWDIR%%/js/yui/animation
@dirrmtry %%WWWDIR%%/js/yui
+ at dirrmtry %%WWWDIR%%/js/history.js
@dirrmtry %%WWWDIR%%/js
@dirrm %%WWWDIR%%/images
%%CONTRIB%%@dirrm %%WWWDIR%%/contrib/cmdline
@@ -990,6 +1006,8 @@
@dirrm %%WWWDIR%%/Bugzilla/DB/Schema
@dirrm %%WWWDIR%%/Bugzilla/DB
@dirrm %%WWWDIR%%/Bugzilla/Config
+ at dirrm %%WWWDIR%%/Bugzilla/BugUrl/Bugzilla
+ at dirrm %%WWWDIR%%/Bugzilla/BugUrl
@dirrm %%WWWDIR%%/Bugzilla/Auth/Verify
@dirrm %%WWWDIR%%/Bugzilla/Auth/Persist
@dirrm %%WWWDIR%%/Bugzilla/Auth/Login
More information about the svn-ports-all
mailing list