aboutsummaryrefslogtreecommitdiff
path: root/devel/bugzilla
diff options
context:
space:
mode:
authorSergey Skvortsov <skv@FreeBSD.org>2012-02-06 12:03:29 +0000
committerSergey Skvortsov <skv@FreeBSD.org>2012-02-06 12:03:29 +0000
commit4cf8edc874942c514b7d453d2d89ba7410d7dbac (patch)
treed638710eea12cadb2568e177023dccfaa6c5a765 /devel/bugzilla
parentc58bbd0e668fb94a08a1f108e65b251deb7983d6 (diff)
downloadports-4cf8edc874942c514b7d453d2d89ba7410d7dbac.tar.gz
ports-4cf8edc874942c514b7d453d2d89ba7410d7dbac.zip
Notes
Diffstat (limited to 'devel/bugzilla')
-rw-r--r--devel/bugzilla/Makefile2
-rw-r--r--devel/bugzilla/distinfo4
-rw-r--r--devel/bugzilla/files/patch-Bugzilla__WebService__Server__JSONRPC.pm33
3 files changed, 3 insertions, 36 deletions
diff --git a/devel/bugzilla/Makefile b/devel/bugzilla/Makefile
index 1c09454d028e..f5f2e17f8527 100644
--- a/devel/bugzilla/Makefile
+++ b/devel/bugzilla/Makefile
@@ -6,7 +6,7 @@
#
PORTNAME= bugzilla
-PORTVERSION= 4.0.3
+PORTVERSION= 4.0.4
CATEGORIES= devel
MASTER_SITES= ${MASTER_SITE_MOZILLA}
MASTER_SITE_SUBDIR= webtools webtools/archived
diff --git a/devel/bugzilla/distinfo b/devel/bugzilla/distinfo
index 26073a04e4a8..1fb93e476d8a 100644
--- a/devel/bugzilla/distinfo
+++ b/devel/bugzilla/distinfo
@@ -1,2 +1,2 @@
-SHA256 (bugzilla/bugzilla-4.0.3.tar.gz) = 0b24b5b44f9f14dd127f86bb2e560ac99e1dfba258bc0d8677968a9f3633435c
-SIZE (bugzilla/bugzilla-4.0.3.tar.gz) = 2991669
+SHA256 (bugzilla/bugzilla-4.0.4.tar.gz) = 67c321306e1f796ff1d159083dcdaba7e72c3ec5742292cb5980c23c46e2dc4d
+SIZE (bugzilla/bugzilla-4.0.4.tar.gz) = 2801949
diff --git a/devel/bugzilla/files/patch-Bugzilla__WebService__Server__JSONRPC.pm b/devel/bugzilla/files/patch-Bugzilla__WebService__Server__JSONRPC.pm
deleted file mode 100644
index 0a06d1c5fbe3..000000000000
--- a/devel/bugzilla/files/patch-Bugzilla__WebService__Server__JSONRPC.pm
+++ /dev/null
@@ -1,33 +0,0 @@
-Bug-Id: 706753
-Summary: Bugzilla will not work with newest version of
- JSON::RPC 1.01 due to non-backward compatibility
-URL: https://bugzilla.mozilla.org/show_bug.cgi?id=706753
-
-
-Index: Bugzilla/WebService/Server/JSONRPC.pm
-===================================================================
-RCS file: /cvsroot/mozilla/webtools/bugzilla/Bugzilla/WebService/Server/JSONRPC.pm,v
-retrieving revision 1.18
-diff -p -u -r1.18 JSONRPC.pm
---- Bugzilla/WebService/Server/JSONRPC.pm 14 Feb 2011 20:18:51 -0000 1.18
-+++ Bugzilla/WebService/Server/JSONRPC.pm 5 Jan 2012 00:04:31 -0000
-@@ -22,7 +22,18 @@
- package Bugzilla::WebService::Server::JSONRPC;
-
- use strict;
--use base qw(JSON::RPC::Server::CGI Bugzilla::WebService::Server);
-+use Bugzilla::WebService::Server;
-+BEGIN {
-+ our @ISA = qw(Bugzilla::WebService::Server);
-+
-+ if (eval { require JSON::RPC::Server::CGI }) {
-+ unshift(@ISA, 'JSON::RPC::Server::CGI');
-+ }
-+ else {
-+ require JSON::RPC::Legacy::Server::CGI;
-+ unshift(@ISA, 'JSON::RPC::Legacy::Server::CGI');
-+ }
-+}
-
- use Bugzilla::Error;
- use Bugzilla::WebService::Constants;