aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Skvortsov <skv@FreeBSD.org>2012-02-06 12:08:25 +0000
committerSergey Skvortsov <skv@FreeBSD.org>2012-02-06 12:08:25 +0000
commit981fa11018d71b704718364a4fffb6589162ea64 (patch)
treeb1849f26633dd87db02f7de2c2c1f3b329ba59d4
parentb72ef10b11c27196896d55266e1af315ecd66f41 (diff)
downloadports-981fa11018d71b704718364a4fffb6589162ea64.tar.gz
ports-981fa11018d71b704718364a4fffb6589162ea64.zip
Notes
-rw-r--r--devel/bugzilla3/Makefile2
-rw-r--r--devel/bugzilla3/distinfo4
-rw-r--r--devel/bugzilla3/files/patch-Bugzilla__WebService__Server__JSONRPC.pm33
3 files changed, 3 insertions, 36 deletions
diff --git a/devel/bugzilla3/Makefile b/devel/bugzilla3/Makefile
index 6f219633910f..93be5401f04e 100644
--- a/devel/bugzilla3/Makefile
+++ b/devel/bugzilla3/Makefile
@@ -6,7 +6,7 @@
#
PORTNAME= bugzilla
-PORTVERSION= 3.6.7
+PORTVERSION= 3.6.8
CATEGORIES= devel
MASTER_SITES= ${MASTER_SITE_MOZILLA}
MASTER_SITE_SUBDIR= webtools webtools/archived
diff --git a/devel/bugzilla3/distinfo b/devel/bugzilla3/distinfo
index 83fde5c275b2..b08b78ff923f 100644
--- a/devel/bugzilla3/distinfo
+++ b/devel/bugzilla3/distinfo
@@ -1,2 +1,2 @@
-SHA256 (bugzilla/bugzilla-3.6.7.tar.gz) = bc4983b0b136a712e37414045383c0735bf23412d290141e1dc60c7a45d9cd11
-SIZE (bugzilla/bugzilla-3.6.7.tar.gz) = 2638159
+SHA256 (bugzilla/bugzilla-3.6.8.tar.gz) = a07efee28c905d3b0afd10d1efe6fa6ecaaa7e0e89c299f1f20fe21a74ad16bf
+SIZE (bugzilla/bugzilla-3.6.8.tar.gz) = 2509304
diff --git a/devel/bugzilla3/files/patch-Bugzilla__WebService__Server__JSONRPC.pm b/devel/bugzilla3/files/patch-Bugzilla__WebService__Server__JSONRPC.pm
deleted file mode 100644
index 0a06d1c5fbe3..000000000000
--- a/devel/bugzilla3/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;