aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorskv <skv@FreeBSD.org>2012-02-06 20:03:29 +0800
committerskv <skv@FreeBSD.org>2012-02-06 20:03:29 +0800
commitb5ef49bdce234429254027bc6d50d10a571a1caa (patch)
treeffaa74d6b782e56cb55618eb8f3401542f398f51
parentb558b7b3fb8d6317bf96c21d081ff921bc93b897 (diff)
downloadfreebsd-ports-graphics-b5ef49bdce234429254027bc6d50d10a571a1caa.tar.gz
freebsd-ports-graphics-b5ef49bdce234429254027bc6d50d10a571a1caa.tar.zst
freebsd-ports-graphics-b5ef49bdce234429254027bc6d50d10a571a1caa.zip
Update to 4.0.4
Changes: http://www.bugzilla.org/releases/4.0.4/release-notes.html#v40_point Security: http://www.vuxml.org/freebsd/309542b5-50b9-11e1-b0d8-00151735203a.html
-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 1c09454d028..f5f2e17f852 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 26073a04e4a..1fb93e476d8 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 0a06d1c5fbe..00000000000
--- 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;