aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorskv <skv@FreeBSD.org>2012-02-06 20:08:25 +0800
committerskv <skv@FreeBSD.org>2012-02-06 20:08:25 +0800
commit504d004c59f44f526f67693d7f3dd239cfbff589 (patch)
tree1e22885e378fbb996053d68a4610f09d2b57c210
parent490a5b7a133c7b84c6ca5d9461e293d92777bcb3 (diff)
downloadfreebsd-ports-graphics-504d004c59f44f526f67693d7f3dd239cfbff589.tar.gz
freebsd-ports-graphics-504d004c59f44f526f67693d7f3dd239cfbff589.tar.zst
freebsd-ports-graphics-504d004c59f44f526f67693d7f3dd239cfbff589.zip
Update to 3.6.8
Changes: http://www.bugzilla.org/releases/3.6.8/release-notes.html#v36_point Security: http://www.vuxml.org/freebsd/309542b5-50b9-11e1-b0d8-00151735203a.html
-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 6f219633910..93be5401f04 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 83fde5c275b..b08b78ff923 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 0a06d1c5fbe..00000000000
--- 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;