Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 20 Jun 2013 22:21:37 +0000 (UTC)
From:      Olli Hauer <ohauer@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r321429 - in head: devel devel/bugzilla44 german german/bugzilla44 japanese/bugzilla44
Message-ID:  <201306202221.r5KMLbWS002493@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: ohauer
Date: Thu Jun 20 22:21:36 2013
New Revision: 321429
URL: http://svnweb.freebsd.org/changeset/ports/321429

Log:
  New ports for bugzilla44
  - devel/bugzilla44
  - japanese/bugzilla44
  - german/bugzilla44
  
  Release Notes:
  http://www.bugzilla.org/releases/4.4/release-notes.html

Added:
  head/devel/bugzilla44/
     - copied from r321428, head/devel/bugzilla42/
  head/german/bugzilla44/
     - copied from r321428, head/german/bugzilla42/
  head/japanese/bugzilla44/
     - copied from r321428, head/japanese/bugzilla42/
Modified:
  head/devel/Makefile
  head/devel/bugzilla44/Makefile
  head/devel/bugzilla44/Makefile.common
  head/devel/bugzilla44/Makefile.options
  head/devel/bugzilla44/distinfo
  head/devel/bugzilla44/pkg-plist
  head/german/Makefile
  head/german/bugzilla44/Makefile
  head/german/bugzilla44/distinfo
  head/german/bugzilla44/pkg-plist
  head/japanese/bugzilla44/Makefile
  head/japanese/bugzilla44/distinfo
  head/japanese/bugzilla44/pkg-plist

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Thu Jun 20 21:54:02 2013	(r321428)
+++ head/devel/Makefile	Thu Jun 20 22:21:36 2013	(r321429)
@@ -148,6 +148,7 @@
     SUBDIR += bugzilla
     SUBDIR += bugzilla3
     SUBDIR += bugzilla42
+    SUBDIR += bugzilla44
     SUBDIR += build
     SUBDIR += buildapp
     SUBDIR += buildbot

Modified: head/devel/bugzilla44/Makefile
==============================================================================
--- head/devel/bugzilla42/Makefile	Thu Jun 20 21:54:02 2013	(r321428)
+++ head/devel/bugzilla44/Makefile	Thu Jun 20 22:21:36 2013	(r321429)
@@ -1,7 +1,7 @@
 # $FreeBSD$
 
 PORTNAME=	bugzilla
-PORTVERSION=	4.2.6
+PORTVERSION=	4.4
 CATEGORIES=	devel
 MASTER_SITES=	${MASTER_SITE_MOZILLA}
 MASTER_SITE_SUBDIR=	webtools webtools/archived
@@ -13,11 +13,11 @@ LICENSE=	MPL
 
 RUN_DEPENDS=	\
 		p5-CGI.pm>=3.51:${PORTSDIR}/www/p5-CGI.pm \
-		p5-DBI>=1.41:${PORTSDIR}/databases/p5-DBI \
+		p5-DBI>=1.54:${PORTSDIR}/databases/p5-DBI \
 		p5-DateTime-TimeZone>=0.71:${PORTSDIR}/devel/p5-DateTime-TimeZone \
 		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-Email-Send>=2.04:${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-ISAAC>=1.001:${PORTSDIR}/math/p5-Math-Random-ISAAC \
@@ -25,7 +25,7 @@ RUN_DEPENDS=	\
 		p5-TimeDate>=1.19:${PORTSDIR}/devel/p5-TimeDate \
 		p5-URI>=1.37:${PORTSDIR}/net/p5-URI
 
-LATEST_LINK=	bugzilla42
+LATEST_LINK=	bugzilla44
 
 USE_PERL5=	yes
 
@@ -87,7 +87,8 @@ RUN_DEPENDS+=	p5-HTML-Parser>=3.40:${POR
 
 .if ${PORT_OPTIONS:MINBOUND_EMAIL}
 RUN_DEPENDS+=	p5-Email-MIME-Attachment-Stripper>=0:${PORTSDIR}/mail/p5-Email-MIME-Attachment-Stripper \
-		p5-Email-Reply>=0:${PORTSDIR}/mail/p5-Email-Reply
+		p5-Email-Reply>=0:${PORTSDIR}/mail/p5-Email-Reply \
+		p5-HTML-FormatText-WithLinks>=0.13:${PORTSDIR}/textproc/p5-HTML-FormatText-WithLinks
 .endif
 
 .if ${PORT_OPTIONS:MMAIL_QUEUEING}
@@ -145,6 +146,19 @@ RUN_DEPENDS+=	p5-perl-ldap>=0:${PORTSDIR
 RUN_DEPENDS+=	p5-Authen-Radius>=0:${PORTSDIR}/security/p5-Authen-Radius
 .endif
 
+.if ${PORT_OPTIONS:MSMTP_AUTH}
+RUN_DEPENDS+=	p5-Authen-SASL>=2.16:${PORTSDIR}/security/p5-Authen-SASL
+.endif
+
+.if ${PORT_OPTIONS:MSMTP_SSL}
+RUN_DEPENDS+=	p5-Net-SMTP-SSL>=1.01:${PORTSDIR}/mail/p5-Net-SMTP-SSL
+.endif
+
+.if ${PORT_OPTIONS:MMIME_SNIFF}
+RUN_DEPENDS+=	p5-File-MimeInfo>=0.16:${PORTSDIR}/devel/p5-File-MimeInfo \
+		p5-IO-stringy>=2.110:${PORTSDIR}/devel/p5-IO-stringy
+.endif
+
 post-patch:
 	@${PERL} -pi -e 's/(default => ON_WINDOWS.+)apache/$$1www/' \
 		${WRKSRC}/Bugzilla/Install/Localconfig.pm

Modified: head/devel/bugzilla44/Makefile.common
==============================================================================
--- head/devel/bugzilla42/Makefile.common	Thu Jun 20 21:54:02 2013	(r321428)
+++ head/devel/bugzilla44/Makefile.common	Thu Jun 20 22:21:36 2013	(r321429)
@@ -4,7 +4,7 @@ DIST_SUBDIR=	${PORTNAME}
 
 CONFLICTS_INSTALL=	\
 		bugzilla-3.* \
-		bugzilla-4.[^2].*
+		bugzilla-4.[^4].*
 
 PORTSCOUT=	limitw:1,even
 

Modified: head/devel/bugzilla44/Makefile.options
==============================================================================
--- head/devel/bugzilla42/Makefile.options	Thu Jun 20 21:54:02 2013	(r321428)
+++ head/devel/bugzilla44/Makefile.options	Thu Jun 20 22:21:36 2013	(r321429)
@@ -11,10 +11,11 @@ OPTION_GROUP_ADMIN=	\
 	EXPORT_IMPORT	\
 	CONTRIB
 
-OPTIONS_GROUP_ATTACHMENT= \
-	BMP2PNG
+OPTIONS_GROUP_ATTACHMENT=\
+	BMP2PNG		\
+	MIME_SNIFF
 
-OPTIONS_GROUP_AUTH= 	\
+OPTIONS_GROUP_AUTH=	\
 	LDAP		\
 	RADIUS
 
@@ -25,7 +26,9 @@ OPTIONS_GROUP_DBBACKEND= \
 
 OPTIONS_GROUP_EMAIL= 	\
 	INBOUND_EMAIL	\
-	MAIL_QUEUEING
+	MAIL_QUEUEING	\
+	SMTP_AUTH	\
+	SMTP_SSL
 
 OPTIONS_GROUP_REPORTING= \
 	GRAPHVIZ	\
@@ -55,9 +58,12 @@ GRAPH_REPORTS_DESC=	Graphical Reports
 INBOUND_EMAIL_DESC=	Inbound Email
 JSONRPC_DESC=		JSON-RPC Interface
 MAIL_QUEUEING_DESC=	Mail Queueing
+MIME_SNIFF_DESC=	Sniff MIME type of attachments
 MORE_HTML_DESC=		More HTML in Product/Group Descriptions
 MOVE_BUGZ_DESC=		Move Bugs Between Installations
 PATCH_VIEWER_DESC=	Patch Viewer
+SMTP_AUTH_DESC=		SMTP Authentication
+SMTP_SSL_DESC=		SSL Support for SMTP
 XMLRPC_DESC=		XML-RPC Interface
 
 # Option group description

Modified: head/devel/bugzilla44/distinfo
==============================================================================
--- head/devel/bugzilla42/distinfo	Thu Jun 20 21:54:02 2013	(r321428)
+++ head/devel/bugzilla44/distinfo	Thu Jun 20 22:21:36 2013	(r321429)
@@ -1,2 +1,2 @@
-SHA256 (bugzilla/bugzilla-4.2.6.tar.gz) = 16ede21f92e672ed19aadeddd24136a8ec76ec14e6bf9627fe33207f2531807d
-SIZE (bugzilla/bugzilla-4.2.6.tar.gz) = 2425903
+SHA256 (bugzilla/bugzilla-4.4.tar.gz) = 709e1b07ca23a91fbf5fb3d34645a8b574af39034b216daa1811effd02ebd72e
+SIZE (bugzilla/bugzilla-4.4.tar.gz) = 2441533

Modified: head/devel/bugzilla44/pkg-plist
==============================================================================
--- head/devel/bugzilla42/pkg-plist	Thu Jun 20 21:54:02 2013	(r321428)
+++ head/devel/bugzilla44/pkg-plist	Thu Jun 20 22:21:36 2013	(r321429)
@@ -1,4 +1,5 @@
 %%PORTDOCS%%%%DOCSDIR%%/bugzilla.ent
+%%PORTDOCS%%%%DOCSDIR%%/bugzilla.ent.tmpl
 %%PORTDOCS%%%%DOCSDIR%%/en/html/Bugzilla-Guide.html
 %%PORTDOCS%%%%DOCSDIR%%/en/html/about.html
 %%PORTDOCS%%%%DOCSDIR%%/en/html/administration.html
@@ -42,13 +43,14 @@
 %%PORTDOCS%%%%DOCSDIR%%/en/html/api/Bugzilla/Milestone.html
 %%PORTDOCS%%%%DOCSDIR%%/en/html/api/Bugzilla/Object.html
 %%PORTDOCS%%%%DOCSDIR%%/en/html/api/Bugzilla/Product.html
+%%PORTDOCS%%%%DOCSDIR%%/en/html/api/Bugzilla/Report.html
+%%PORTDOCS%%%%DOCSDIR%%/en/html/api/Bugzilla/Search.html
 %%PORTDOCS%%%%DOCSDIR%%/en/html/api/Bugzilla/Search/Recent.html
 %%PORTDOCS%%%%DOCSDIR%%/en/html/api/Bugzilla/Search/Saved.html
 %%PORTDOCS%%%%DOCSDIR%%/en/html/api/Bugzilla/Status.html
 %%PORTDOCS%%%%DOCSDIR%%/en/html/api/Bugzilla/Template.html
 %%PORTDOCS%%%%DOCSDIR%%/en/html/api/Bugzilla/Template/Plugin/Bugzilla.html
 %%PORTDOCS%%%%DOCSDIR%%/en/html/api/Bugzilla/Template/Plugin/Hook.html
-%%PORTDOCS%%%%DOCSDIR%%/en/html/api/Bugzilla/Template/Plugin/User.html
 %%PORTDOCS%%%%DOCSDIR%%/en/html/api/Bugzilla/Token.html
 %%PORTDOCS%%%%DOCSDIR%%/en/html/api/Bugzilla/Update.html
 %%PORTDOCS%%%%DOCSDIR%%/en/html/api/Bugzilla/User.html
@@ -56,11 +58,13 @@
 %%PORTDOCS%%%%DOCSDIR%%/en/html/api/Bugzilla/User/Setting/Lang.html
 %%PORTDOCS%%%%DOCSDIR%%/en/html/api/Bugzilla/User/Setting/Skin.html
 %%PORTDOCS%%%%DOCSDIR%%/en/html/api/Bugzilla/User/Setting/Timezone.html
+%%PORTDOCS%%%%DOCSDIR%%/en/html/api/Bugzilla/UserAgent.html
 %%PORTDOCS%%%%DOCSDIR%%/en/html/api/Bugzilla/Util.html
 %%PORTDOCS%%%%DOCSDIR%%/en/html/api/Bugzilla/Version.html
 %%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/Classification.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
@@ -155,7 +159,7 @@
 %%PORTDOCS%%%%DOCSDIR%%/en/html/security-webserver.html
 %%PORTDOCS%%%%DOCSDIR%%/en/html/security.html
 %%PORTDOCS%%%%DOCSDIR%%/en/html/timetracking.html
-%%PORTDOCS%%%%DOCSDIR%%/en/html/trbl-dbdsponge.html
+%%PORTDOCS%%%%DOCSDIR%%/en/html/trbl-dbdSponge.html
 %%PORTDOCS%%%%DOCSDIR%%/en/html/trbl-index.html
 %%PORTDOCS%%%%DOCSDIR%%/en/html/trbl-passwd-encryption.html
 %%PORTDOCS%%%%DOCSDIR%%/en/html/trbl-perlmodule.html
@@ -201,6 +205,10 @@
 %%PORTDOCS%%%%DOCSDIR%%/lib/Pod/Simple/HTMLBatch/Bugzilla.pm
 %%PORTDOCS%%%%DOCSDIR%%/makedocs.pl
 %%PORTDOCS%%%%DOCSDIR%%/style.css
+%%PORTDOCS%%%%DOCSDIR%%/xsl/bugzilla-docs.xsl
+%%PORTDOCS%%%%DOCSDIR%%/xsl/chunks.xsl
+%%PORTDOCS%%%%DOCSDIR%%/xsl/nochunks.xsl
+%%PORTDOCS%%%%DOCSDIR%%/xsl/pdf.xsl
 %%WWWDIR%%/.htaccess
 %%WWWDIR%%/Bugzilla.pm
 %%WWWDIR%%/Bugzilla/Attachment.pm
@@ -223,6 +231,7 @@
 %%WWWDIR%%/Bugzilla/BugUrl/Bugzilla.pm
 %%WWWDIR%%/Bugzilla/BugUrl/Bugzilla/Local.pm
 %%WWWDIR%%/Bugzilla/BugUrl/Debian.pm
+%%WWWDIR%%/Bugzilla/BugUrl/GitHub.pm
 %%WWWDIR%%/Bugzilla/BugUrl/Google.pm
 %%WWWDIR%%/Bugzilla/BugUrl/JIRA.pm
 %%WWWDIR%%/Bugzilla/BugUrl/Launchpad.pm
@@ -291,19 +300,21 @@
 %%WWWDIR%%/Bugzilla/Object.pm
 %%WWWDIR%%/Bugzilla/Product.pm
 %%WWWDIR%%/Bugzilla/RNG.pm
+%%WWWDIR%%/Bugzilla/Report.pm
 %%WWWDIR%%/Bugzilla/Search.pm
 %%WWWDIR%%/Bugzilla/Search/Clause.pm
+%%WWWDIR%%/Bugzilla/Search/ClauseGroup.pm
 %%WWWDIR%%/Bugzilla/Search/Condition.pm
 %%WWWDIR%%/Bugzilla/Search/Quicksearch.pm
 %%WWWDIR%%/Bugzilla/Search/Recent.pm
 %%WWWDIR%%/Bugzilla/Search/Saved.pm
+%%WWWDIR%%/Bugzilla/Send/Sendmail.pm
 %%WWWDIR%%/Bugzilla/Series.pm
 %%WWWDIR%%/Bugzilla/Status.pm
 %%WWWDIR%%/Bugzilla/Template.pm
 %%WWWDIR%%/Bugzilla/Template/Context.pm
 %%WWWDIR%%/Bugzilla/Template/Plugin/Bugzilla.pm
 %%WWWDIR%%/Bugzilla/Template/Plugin/Hook.pm
-%%WWWDIR%%/Bugzilla/Template/Plugin/User.pm
 %%WWWDIR%%/Bugzilla/Token.pm
 %%WWWDIR%%/Bugzilla/Update.pm
 %%WWWDIR%%/Bugzilla/User.pm
@@ -311,11 +322,13 @@
 %%WWWDIR%%/Bugzilla/User/Setting/Lang.pm
 %%WWWDIR%%/Bugzilla/User/Setting/Skin.pm
 %%WWWDIR%%/Bugzilla/User/Setting/Timezone.pm
+%%WWWDIR%%/Bugzilla/UserAgent.pm
 %%WWWDIR%%/Bugzilla/Util.pm
 %%WWWDIR%%/Bugzilla/Version.pm
 %%WWWDIR%%/Bugzilla/WebService.pm
 %%WWWDIR%%/Bugzilla/WebService/Bug.pm
 %%WWWDIR%%/Bugzilla/WebService/Bugzilla.pm
+%%WWWDIR%%/Bugzilla/WebService/Classification.pm
 %%WWWDIR%%/Bugzilla/WebService/Constants.pm
 %%WWWDIR%%/Bugzilla/WebService/Group.pm
 %%WWWDIR%%/Bugzilla/WebService/Product.pm
@@ -332,12 +345,12 @@
 %%WWWDIR%%/admin.cgi
 %%WWWDIR%%/attachment.cgi
 %%WWWDIR%%/buglist.cgi
-%%WWWDIR%%/bugzilla.dtd
 %%WWWDIR%%/chart.cgi
 %%WWWDIR%%/checksetup.pl
 %%WWWDIR%%/colchange.cgi
 %%WWWDIR%%/collectstats.pl
 %%WWWDIR%%/config.cgi
+%%CONTRIB%%%%WWWDIR%%/contrib/Bugzilla.pm
 %%CONTRIB%%%%WWWDIR%%/contrib/README
 %%CONTRIB%%%%WWWDIR%%/contrib/bugzilla-queue.rhel
 %%CONTRIB%%%%WWWDIR%%/contrib/bugzilla-queue.suse
@@ -758,6 +771,7 @@
 %%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/flagmail.txt.tmpl
 %%WWWDIR%%/template/en/default/email/lockout.txt.tmpl
 %%WWWDIR%%/template/en/default/email/sanitycheck.txt.tmpl
 %%WWWDIR%%/template/en/default/email/sudo.txt.tmpl
@@ -772,6 +786,7 @@
 %%WWWDIR%%/template/en/default/filterexceptions.pl
 %%WWWDIR%%/template/en/default/flag/list.html.tmpl
 %%WWWDIR%%/template/en/default/global/banner.html.tmpl
+%%WWWDIR%%/template/en/default/global/calendar.js.tmpl
 %%WWWDIR%%/template/en/default/global/choose-classification.html.tmpl
 %%WWWDIR%%/template/en/default/global/choose-product.html.tmpl
 %%WWWDIR%%/template/en/default/global/code-error.html.tmpl
@@ -782,14 +797,11 @@
 %%WWWDIR%%/template/en/default/global/field-descs.none.tmpl
 %%WWWDIR%%/template/en/default/global/footer.html.tmpl
 %%WWWDIR%%/template/en/default/global/header.html.tmpl
-%%WWWDIR%%/template/en/default/global/help.html.tmpl
 %%WWWDIR%%/template/en/default/global/hidden-fields.html.tmpl
-%%WWWDIR%%/template/en/default/global/initialize.none.tmpl
 %%WWWDIR%%/template/en/default/global/js-products.html.tmpl
 %%WWWDIR%%/template/en/default/global/message.html.tmpl
 %%WWWDIR%%/template/en/default/global/message.txt.tmpl
 %%WWWDIR%%/template/en/default/global/messages.html.tmpl
-%%WWWDIR%%/template/en/default/global/per-bug-queries.html.tmpl
 %%WWWDIR%%/template/en/default/global/reason-descs.none.tmpl
 %%WWWDIR%%/template/en/default/global/select-menu.html.tmpl
 %%WWWDIR%%/template/en/default/global/setting-descs.none.tmpl
@@ -816,6 +828,7 @@
 %%WWWDIR%%/template/en/default/list/server-push.html.tmpl
 %%WWWDIR%%/template/en/default/list/table.html.tmpl
 %%WWWDIR%%/template/en/default/pages/bug-writing.html.tmpl
+%%WWWDIR%%/template/en/default/pages/bugzilla.dtd.tmpl
 %%WWWDIR%%/template/en/default/pages/fields.html.tmpl
 %%WWWDIR%%/template/en/default/pages/linked.html.tmpl
 %%WWWDIR%%/template/en/default/pages/linkify.html.tmpl
@@ -846,7 +859,6 @@
 %%WWWDIR%%/template/en/default/reports/report.html.tmpl
 %%WWWDIR%%/template/en/default/reports/series-common.html.tmpl
 %%WWWDIR%%/template/en/default/reports/series.html.tmpl
-%%WWWDIR%%/template/en/default/request/email.txt.tmpl
 %%WWWDIR%%/template/en/default/request/queue.html.tmpl
 %%WWWDIR%%/template/en/default/search/boolean-charts.html.tmpl
 %%WWWDIR%%/template/en/default/search/field.html.tmpl
@@ -997,6 +1009,7 @@
 @dirrm %%WWWDIR%%/Bugzilla/User
 @dirrm %%WWWDIR%%/Bugzilla/Template/Plugin
 @dirrm %%WWWDIR%%/Bugzilla/Template
+@dirrm %%WWWDIR%%/Bugzilla/Send
 @dirrm %%WWWDIR%%/Bugzilla/Search
 @dirrm %%WWWDIR%%/Bugzilla/Migrate
 @dirrm %%WWWDIR%%/Bugzilla/JobQueue
@@ -1017,6 +1030,7 @@
 @dirrmtry %%WWWDIR%%/data
 @dirrmtry %%WWWDIR%%/graphs
 @dirrmtry %%WWWDIR%%
+%%PORTDOCS%%@dirrm %%DOCSDIR%%/xsl
 %%PORTDOCS%%@dirrm %%DOCSDIR%%/lib/Pod/Simple/HTMLBatch
 %%PORTDOCS%%@dirrm %%DOCSDIR%%/lib/Pod/Simple/HTML
 %%PORTDOCS%%@dirrm %%DOCSDIR%%/lib/Pod/Simple
@@ -1054,3 +1068,4 @@
 @exec mkdir -p %D/%%WWWDIR%%/graphs
 @exec mkdir -p %D/%%WWWDIR%%/data
 @exec mkdir -p %D/%%WWWDIR%%/contrib
+%%PORTDOCS%%@exec mkdir -p %D/%%DOCSDIR%%/en/pdf

Modified: head/german/Makefile
==============================================================================
--- head/german/Makefile	Thu Jun 20 21:54:02 2013	(r321428)
+++ head/german/Makefile	Thu Jun 20 22:21:36 2013	(r321429)
@@ -14,6 +14,7 @@
     SUBDIR += bugzilla
     SUBDIR += bugzilla3
     SUBDIR += bugzilla42
+    SUBDIR += bugzilla44
     SUBDIR += calligra-l10n
     SUBDIR += dict
     SUBDIR += ding

Modified: head/german/bugzilla44/Makefile
==============================================================================
--- head/german/bugzilla42/Makefile	Thu Jun 20 21:54:02 2013	(r321428)
+++ head/german/bugzilla44/Makefile	Thu Jun 20 22:21:36 2013	(r321429)
@@ -1,10 +1,10 @@
 # $FreeBSD$
 
 PORTNAME=	bugzilla
-PORTVERSION=	4.2.6
+PORTVERSION=	4.4
 CATEGORIES=	german
 MASTER_SITES=	SF
-MASTER_SITE_SUBDIR=bugzilla-de/${PORTVERSION:R}/${PORTVERSION}
+MASTER_SITE_SUBDIR=bugzilla-de/${PORTVERSION}/${PORTVERSION}
 DISTNAME=	germzilla-${PORTVERSION}-1.utf-8
 
 MAINTAINER=	bugzilla@FreeBSD.org
@@ -12,11 +12,11 @@ COMMENT=	German localization for Bugzill
 
 RUN_DEPENDS=	bugzilla>=${PORTVERSION}:${PORTSDIR}/devel/bugzilla42
 
-LATEST_LINK=	${PKGNAMEPREFIX}bugzilla42
+LATEST_LINK=	${PKGNAMEPREFIX}bugzilla44
 
 NO_WRKSUBDIR=	yes
 
-.include "${.CURDIR}/../../devel/bugzilla42/Makefile.common"
+.include "${.CURDIR}/../../devel/bugzilla44/Makefile.common"
 
 LANGDIR=	${WWWDIR}/template/de
 

Modified: head/german/bugzilla44/distinfo
==============================================================================
--- head/german/bugzilla42/distinfo	Thu Jun 20 21:54:02 2013	(r321428)
+++ head/german/bugzilla44/distinfo	Thu Jun 20 22:21:36 2013	(r321429)
@@ -1,2 +1,2 @@
-SHA256 (bugzilla/germzilla-4.2.6-1.utf-8.tar.gz) = fc33e867a67cede8977c13e3da783902dc979484d53f26cbd898e410fe7d1764
-SIZE (bugzilla/germzilla-4.2.6-1.utf-8.tar.gz) = 270909
+SHA256 (bugzilla/germzilla-4.4-1.utf-8.tar.gz) = 2393b1280ea7848b58e177f260d5ddb35273aed704b984885c86286f6dad50c9
+SIZE (bugzilla/germzilla-4.4-1.utf-8.tar.gz) = 262581

Modified: head/german/bugzilla44/pkg-plist
==============================================================================
--- head/german/bugzilla42/pkg-plist	Thu Jun 20 21:54:02 2013	(r321428)
+++ head/german/bugzilla44/pkg-plist	Thu Jun 20 22:21:36 2013	(r321429)
@@ -160,12 +160,14 @@
 %%WWWDIR%%/template/de/default/email/bugmail-header.txt.tmpl
 %%WWWDIR%%/template/de/default/email/bugmail.html.tmpl
 %%WWWDIR%%/template/de/default/email/bugmail.txt.tmpl
+%%WWWDIR%%/template/de/default/email/flagmail.txt.tmpl
 %%WWWDIR%%/template/de/default/email/lockout.txt.tmpl
 %%WWWDIR%%/template/de/default/email/sanitycheck.txt.tmpl
 %%WWWDIR%%/template/de/default/email/sudo.txt.tmpl
 %%WWWDIR%%/template/de/default/email/whine.txt.tmpl
 %%WWWDIR%%/template/de/default/filterexceptions.pl
 %%WWWDIR%%/template/de/default/flag/list.html.tmpl
+%%WWWDIR%%/template/de/default/global/calendar.js.tmpl
 %%WWWDIR%%/template/de/default/global/choose-classification.html.tmpl
 %%WWWDIR%%/template/de/default/global/choose-product.html.tmpl
 %%WWWDIR%%/template/de/default/global/code-error.html.tmpl
@@ -179,7 +181,6 @@
 %%WWWDIR%%/template/de/default/global/message.html.tmpl
 %%WWWDIR%%/template/de/default/global/message.txt.tmpl
 %%WWWDIR%%/template/de/default/global/messages.html.tmpl
-%%WWWDIR%%/template/de/default/global/per-bug-queries.html.tmpl
 %%WWWDIR%%/template/de/default/global/reason-descs.none.tmpl
 %%WWWDIR%%/template/de/default/global/setting-descs.none.tmpl
 %%WWWDIR%%/template/de/default/global/site-navigation.html.tmpl
@@ -220,7 +221,6 @@
 %%WWWDIR%%/template/de/default/reports/report-table.html.tmpl
 %%WWWDIR%%/template/de/default/reports/report.html.tmpl
 %%WWWDIR%%/template/de/default/reports/series.html.tmpl
-%%WWWDIR%%/template/de/default/request/email.txt.tmpl
 %%WWWDIR%%/template/de/default/request/queue.html.tmpl
 %%WWWDIR%%/template/de/default/search/boolean-charts.html.tmpl
 %%WWWDIR%%/template/de/default/search/field.html.tmpl

Modified: head/japanese/bugzilla44/Makefile
==============================================================================
--- head/japanese/bugzilla42/Makefile	Thu Jun 20 21:54:02 2013	(r321428)
+++ head/japanese/bugzilla44/Makefile	Thu Jun 20 22:21:36 2013	(r321429)
@@ -1,9 +1,9 @@
 # $FreeBSD$
 
 PORTNAME=	bugzilla
-PORTVERSION=	4.2.6
+PORTVERSION=	4.4
 CATEGORIES=	japanese
-MASTER_SITES=	http://bug-ja.org/releases/4.2/ \
+MASTER_SITES=	http://bug-ja.org/releases/4.4/ \
 		LOCAL
 MASTER_SITE_SUBDIR=	tota/bugzilla-ja
 DISTNAME=	Bugzilla-ja-${PORTVERSION}-template
@@ -11,13 +11,13 @@ DISTNAME=	Bugzilla-ja-${PORTVERSION}-tem
 MAINTAINER=	bugzilla@FreeBSD.org
 COMMENT=	Japanese localization for Bugzilla
 
-RUN_DEPENDS=	bugzilla>=${PORTVERSION}:${PORTSDIR}/devel/bugzilla42
+RUN_DEPENDS=	bugzilla>=${PORTVERSION}:${PORTSDIR}/devel/bugzilla44
 
-LATEST_LINK=	${PKGNAMEPREFIX}bugzilla42
+LATEST_LINK=	${PKGNAMEPREFIX}bugzilla44
 
 NO_WRKSUBDIR=	yes
 
-.include "${.CURDIR}/../../devel/bugzilla42/Makefile.common"
+.include "${.CURDIR}/../../devel/bugzilla44/Makefile.common"
 
 USE_BZIP2=	yes
 

Modified: head/japanese/bugzilla44/distinfo
==============================================================================
--- head/japanese/bugzilla42/distinfo	Thu Jun 20 21:54:02 2013	(r321428)
+++ head/japanese/bugzilla44/distinfo	Thu Jun 20 22:21:36 2013	(r321429)
@@ -1,2 +1,2 @@
-SHA256 (bugzilla/Bugzilla-ja-4.2.6-template.tar.bz2) = d655736d2c18c7a216a945f5aad74484c0c3484b256017495a517714bdfb0d05
-SIZE (bugzilla/Bugzilla-ja-4.2.6-template.tar.bz2) = 237118
+SHA256 (bugzilla/Bugzilla-ja-4.4-template.tar.bz2) = f7bbb54e9af3360298418480f089b3f880426f0f184722d4f1f2d2b4a819e4b8
+SIZE (bugzilla/Bugzilla-ja-4.4-template.tar.bz2) = 239313

Modified: head/japanese/bugzilla44/pkg-plist
==============================================================================
--- head/japanese/bugzilla42/pkg-plist	Thu Jun 20 21:54:02 2013	(r321428)
+++ head/japanese/bugzilla44/pkg-plist	Thu Jun 20 22:21:36 2013	(r321429)
@@ -168,6 +168,7 @@
 %%WWWDIR%%/template/ja/default/email/bugmail-header.txt.tmpl
 %%WWWDIR%%/template/ja/default/email/bugmail.html.tmpl
 %%WWWDIR%%/template/ja/default/email/bugmail.txt.tmpl
+%%WWWDIR%%/template/ja/default/email/flagmail.txt.tmpl
 %%WWWDIR%%/template/ja/default/email/lockout.txt.tmpl
 %%WWWDIR%%/template/ja/default/email/sanitycheck.txt.tmpl
 %%WWWDIR%%/template/ja/default/email/sudo.txt.tmpl
@@ -182,6 +183,7 @@
 %%WWWDIR%%/template/ja/default/filterexceptions.pl
 %%WWWDIR%%/template/ja/default/flag/list.html.tmpl
 %%WWWDIR%%/template/ja/default/global/banner.html.tmpl
+%%WWWDIR%%/template/ja/default/global/calendar.js.tmpl
 %%WWWDIR%%/template/ja/default/global/choose-classification.html.tmpl
 %%WWWDIR%%/template/ja/default/global/choose-product.html.tmpl
 %%WWWDIR%%/template/ja/default/global/code-error.html.tmpl
@@ -192,14 +194,11 @@
 %%WWWDIR%%/template/ja/default/global/field-descs.none.tmpl
 %%WWWDIR%%/template/ja/default/global/footer.html.tmpl
 %%WWWDIR%%/template/ja/default/global/header.html.tmpl
-%%WWWDIR%%/template/ja/default/global/help.html.tmpl
 %%WWWDIR%%/template/ja/default/global/hidden-fields.html.tmpl
-%%WWWDIR%%/template/ja/default/global/initialize.none.tmpl
 %%WWWDIR%%/template/ja/default/global/js-products.html.tmpl
 %%WWWDIR%%/template/ja/default/global/message.html.tmpl
 %%WWWDIR%%/template/ja/default/global/message.txt.tmpl
 %%WWWDIR%%/template/ja/default/global/messages.html.tmpl
-%%WWWDIR%%/template/ja/default/global/per-bug-queries.html.tmpl
 %%WWWDIR%%/template/ja/default/global/reason-descs.none.tmpl
 %%WWWDIR%%/template/ja/default/global/select-menu.html.tmpl
 %%WWWDIR%%/template/ja/default/global/setting-descs.none.tmpl
@@ -226,6 +225,7 @@
 %%WWWDIR%%/template/ja/default/list/server-push.html.tmpl
 %%WWWDIR%%/template/ja/default/list/table.html.tmpl
 %%WWWDIR%%/template/ja/default/pages/bug-writing.html.tmpl
+%%WWWDIR%%/template/ja/default/pages/bugzilla.dtd.tmpl
 %%WWWDIR%%/template/ja/default/pages/fields.html.tmpl
 %%WWWDIR%%/template/ja/default/pages/linked.html.tmpl
 %%WWWDIR%%/template/ja/default/pages/linkify.html.tmpl
@@ -256,7 +256,6 @@
 %%WWWDIR%%/template/ja/default/reports/report.html.tmpl
 %%WWWDIR%%/template/ja/default/reports/series-common.html.tmpl
 %%WWWDIR%%/template/ja/default/reports/series.html.tmpl
-%%WWWDIR%%/template/ja/default/request/email.txt.tmpl
 %%WWWDIR%%/template/ja/default/request/queue.html.tmpl
 %%WWWDIR%%/template/ja/default/search/boolean-charts.html.tmpl
 %%WWWDIR%%/template/ja/default/search/field.html.tmpl



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201306202221.r5KMLbWS002493>