summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbsiegert <bsiegert@pkgsrc.org>2017-04-29 11:56:26 +0000
committerbsiegert <bsiegert@pkgsrc.org>2017-04-29 11:56:26 +0000
commitb9ff75e0c774a3f3196fec090a7422a47b94237b (patch)
tree4cce5674b12978c968a1c89df8b1da5d20577076
parent045955d08e0fac4dcbfa5d47963bc79dbf0f76e2 (diff)
downloadpkgsrc-b9ff75e0c774a3f3196fec090a7422a47b94237b.tar.gz
Pullup ticket #5319 - requested by sevan
devel/rt3: build fix Revisions pulled up: - devel/rt3/Makefile 1.64 - devel/rt3/distinfo 1.28 - devel/rt3/patches/patch-bin_rt.in 1.1 - devel/rt3/patches/patch-share_html_REST_1.0_Forms_ticket_default 1.1 --- Module Name: pkgsrc Committed By: spz Date: Wed Apr 19 06:34:10 UTC 2017 Modified Files: pkgsrc/devel/rt3: Makefile distinfo Added Files: pkgsrc/devel/rt3/patches: patch-bin_rt.in patch-share_html_REST_1.0_Forms_ticket_default Log Message: add perl24 updates that escaped me - from leot@
-rw-r--r--devel/rt3/Makefile4
-rw-r--r--devel/rt3/distinfo4
-rw-r--r--devel/rt3/patches/patch-bin_rt.in26
-rw-r--r--devel/rt3/patches/patch-share_html_REST_1.0_Forms_ticket_default25
4 files changed, 56 insertions, 3 deletions
diff --git a/devel/rt3/Makefile b/devel/rt3/Makefile
index a07fc6c091a..936bea40c86 100644
--- a/devel/rt3/Makefile
+++ b/devel/rt3/Makefile
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.63 2017/03/12 19:55:49 spz Exp $
+# $NetBSD: Makefile,v 1.63.2.1 2017/04/29 11:56:26 bsiegert Exp $
DISTNAME= rt-3.8.17
-PKGREVISION= 8
+PKGREVISION= 9
CATEGORIES= devel
MASTER_SITES= http://download.bestpractical.com/pub/rt/release/
diff --git a/devel/rt3/distinfo b/devel/rt3/distinfo
index 3018942fbfb..ccd13402cdf 100644
--- a/devel/rt3/distinfo
+++ b/devel/rt3/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.27 2017/03/12 19:55:49 spz Exp $
+$NetBSD: distinfo,v 1.27.2.1 2017/04/29 11:56:26 bsiegert Exp $
SHA1 (rt-3.8.17.tar.gz) = 4765c68f91a0e8e21ed0fd39397cd8e3970ca992
RMD160 (rt-3.8.17.tar.gz) = 6da8fca56976233417bd47b26e1a7326fde5d2d0
@@ -6,6 +6,7 @@ SHA512 (rt-3.8.17.tar.gz) = 8ea1069c54572393192ef7785aaefa05e321af8d64214d309fad
Size (rt-3.8.17.tar.gz) = 5728368 bytes
SHA1 (patch-aa) = 6f78710f4460a25c75afbdf7128c0fe34914927c
SHA1 (patch-ab) = ee455dd683c84d3a745a29a132e28903ba03144d
+SHA1 (patch-bin_rt.in) = 19464de8c541bb7bd23c5bdb0ffafd1161be3342
SHA1 (patch-lib_RT.pm) = 6544ae59a8da37b1fe41df69ab459c85e67756d0
SHA1 (patch-lib_RT_CustomFieldValues_External.pm) = 4404ca98c9e50687323892df1aa95c8b5a6dedd9
SHA1 (patch-lib_RT_Date.pm) = 09d454c7ee81baa49b7c0452e52df4dba839c78c
@@ -15,6 +16,7 @@ SHA1 (patch-lib_RT_Interface_Web.pm) = 4a53145b10bb2e6c1a3999542f348713bbfcf6ab
SHA1 (patch-sbin_rt-attributes-viewer) = e1c963800b76282cda4ca46e006f30d9abfc29c9
SHA1 (patch-sbin_rt-attributes-viewer.in) = 99a15cca9a394b5743edc3929f43593f1384c8da
SHA1 (patch-share_html_Helpers_CalPopup.html) = 3920ac6448d1d21c7ff32ef67344b19aa53616a4
+SHA1 (patch-share_html_REST_1.0_Forms_ticket_default) = 5cb5e35a02824d4a04005251dfd824a1debf59a1
SHA1 (patch-share_html_Search_Elements_ResultsRSSView) = 62eeea9f4bea1bb98fd3509748123ecca3256185
SHA1 (patch-t_approval_admincc.t) = 4fddf5fa844d15e8698e00fe6863daaafa661315
SHA1 (patch-t_approval_basic.t) = 209303cc34370518a2600e28570627e1dc7e698b
diff --git a/devel/rt3/patches/patch-bin_rt.in b/devel/rt3/patches/patch-bin_rt.in
new file mode 100644
index 00000000000..a8de328d3db
--- /dev/null
+++ b/devel/rt3/patches/patch-bin_rt.in
@@ -0,0 +1,26 @@
+$NetBSD: patch-bin_rt.in,v 1.1.2.2 2017/04/29 11:56:26 bsiegert Exp $
+
+Properly escape braces to make it compatible with Perl >=5.24.
+
+--- bin/rt.in.orig 2013-05-22 19:03:04.000000000 +0000
++++ bin/rt.in
+@@ -1531,15 +1531,15 @@ sub vsplit {
+ }
+ push @words, $s;
+ }
+- elsif ( $a =~ /^q{/ ) {
++ elsif ( $a =~ /^q\{/ ) {
+ my $s = $a;
+- while ( $a !~ /}$/ ) {
++ while ( $a !~ /\}$/ ) {
+ ( $a, $b ) =
+ split /\s*,\s*/, $b, 2;
+ $s .= ',' . $a;
+ }
+- $s =~ s/^q{/'/;
+- $s =~ s/}/'/;
++ $s =~ s/^q\{/'/;
++ $s =~ s/\}/'/;
+ push @words, $s;
+ }
+ else {
diff --git a/devel/rt3/patches/patch-share_html_REST_1.0_Forms_ticket_default b/devel/rt3/patches/patch-share_html_REST_1.0_Forms_ticket_default
new file mode 100644
index 00000000000..097ca647f5c
--- /dev/null
+++ b/devel/rt3/patches/patch-share_html_REST_1.0_Forms_ticket_default
@@ -0,0 +1,25 @@
+$NetBSD: patch-share_html_REST_1.0_Forms_ticket_default,v 1.1.2.2 2017/04/29 11:56:26 bsiegert Exp $
+
+Properly escape braces to make it compatible with Perl >=5.24.
+
+--- share/html/REST/1.0/Forms/ticket/default.orig 2013-05-22 19:03:04.000000000 +0000
++++ share/html/REST/1.0/Forms/ticket/default
+@@ -383,14 +383,14 @@ else {
+ $s =~ s/\\'/'/g;
+ push @new, $s;
+ }
+- elsif ( $a =~ /^q{/ ) {
++ elsif ( $a =~ /^q\{/ ) {
+ my $s = $a;
+- while ( $a !~ /}$/ ) {
++ while ( $a !~ /\}$/ ) {
+ ( $a, $b ) = split /\s*,\s*/, $b, 2;
+ $s .= ',' . $a;
+ }
+- $s =~ s/^q{//;
+- $s =~ s/}//;
++ $s =~ s/^q\{//;
++ $s =~ s/\}//;
+ push @new, $s;
+ }
+ else {