pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/devel/rt3 update of rt3 to next version (without the s...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/13da8b692806
branches:  trunk
changeset: 568103:13da8b692806
user:      spz <spz%pkgsrc.org@localhost>
date:      Fri Dec 04 09:30:20 2009 +0000

description:
update of rt3 to next version (without the session hijacking vulnerability)

upstream changelog:
UPGRADING FROM 3.8.5 and earlier - Changes:

You can now forward an entire Ticket history (in addition to specific
transactions) but this requires a new Template called forward ticket.
This template will be added when you run.

/opt/rt3/sbin/rt-setup-database --dba root --prompt-for-dba-password --action upgrade

Custom fields with categories can optionally be split out into
hierarchical custom fields.  If you wish to convert your old
category-based custom fields, run:

    perl etc/upgrade/split-out-cf-categories

It will prompt you for each custom field with categories that it
finds, and the name of the custom field to create to store the
categories.

If you were using the LocalizedDateTime RT::Date formatter from code
and passing a DateFormat or TimeFormat argument, you need to switch from
the strftime methods to the cldr methods (ie full_date_format becomes
date_format_full)
You may have done this from your RT_SiteConfig.pm by using
Set($DateTimeFormat, { Format => 'LocalizedDateTime', DateFormat => 'medium_date_format' );

diffstat:

 devel/rt3/Makefile         |  4 ++--
 devel/rt3/Makefile.install |  4 ++--
 devel/rt3/PLIST            |  7 ++++---
 devel/rt3/distinfo         |  8 ++++----
 4 files changed, 12 insertions(+), 11 deletions(-)

diffs (87 lines):

diff -r a43b05b17521 -r 13da8b692806 devel/rt3/Makefile
--- a/devel/rt3/Makefile        Fri Dec 04 09:18:14 2009 +0000
+++ b/devel/rt3/Makefile        Fri Dec 04 09:30:20 2009 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.39 2009/09/15 23:15:58 spz Exp $
+# $NetBSD: Makefile,v 1.40 2009/12/04 09:30:20 spz Exp $
 
-DISTNAME=              rt-3.8.5
+DISTNAME=              rt-3.8.6
 CATEGORIES=            devel
 MASTER_SITES=          http://download.bestpractical.com/pub/rt/release/
 
diff -r a43b05b17521 -r 13da8b692806 devel/rt3/Makefile.install
--- a/devel/rt3/Makefile.install        Fri Dec 04 09:18:14 2009 +0000
+++ b/devel/rt3/Makefile.install        Fri Dec 04 09:30:20 2009 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.install,v 1.13 2009/07/29 05:25:33 spz Exp $
+# $NetBSD: Makefile.install,v 1.14 2009/12/04 09:30:20 spz Exp $
 
 .include "dirs.mk"
 
@@ -56,7 +56,7 @@
                        schema.SQLite schema.mysql-4.0 schema.mysql-4.1
 RT_UPGRADE_DIRS=       3.3.0 3.3.11 3.5.1 3.7.1 3.7.3 3.7.10 3.7.15    \
                        3.7.19 3.7.81 3.7.82 3.7.85 3.7.86 3.7.87 \
-                       3.8.0 3.8.1 3.8.2 3.8.3 3.8.4
+                       3.8.0 3.8.1 3.8.2 3.8.3 3.8.4 3.8.6
 
 MESSAGE_SUBST+=                RTVARDIR=${RT_VAR_DIR:Q} RTSHAREDIR=${RT_SHARE_DIR:Q}
 
diff -r a43b05b17521 -r 13da8b692806 devel/rt3/PLIST
--- a/devel/rt3/PLIST   Fri Dec 04 09:18:14 2009 +0000
+++ b/devel/rt3/PLIST   Fri Dec 04 09:30:20 2009 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.15 2009/06/21 15:31:39 spz Exp $
+@comment $NetBSD: PLIST,v 1.16 2009/12/04 09:30:20 spz Exp $
 bin/mason_handler.fcgi
 ${PLIST.speedycgi}bin/mason_handler.scgi
 bin/mason_handler.svc
@@ -247,8 +247,8 @@
 lib/rt3/RT/Users.pm
 lib/rt3/RT/Users_Overlay.pm
 lib/rt3/RT/Util.pm
+sbin/rt-clean-sessions
 sbin/rt-dump-database
-sbin/rt-clean-sessions
 sbin/rt-email-dashboards
 sbin/rt-email-digest
 sbin/rt-email-group-admin
@@ -309,6 +309,7 @@
 share/rt3/etc/upgrade/3.8.3/content
 share/rt3/etc/upgrade/3.8.3/schema.Pg
 share/rt3/etc/upgrade/3.8.4/content
+share/rt3/etc/upgrade/3.8.6/content
 share/rt3/html/Admin/CustomFields/GroupRights.html
 share/rt3/html/Admin/CustomFields/Modify.html
 share/rt3/html/Admin/CustomFields/Objects.html
@@ -338,6 +339,7 @@
 share/rt3/html/Admin/Elements/PickObjects
 share/rt3/html/Admin/Elements/QueueRightsForUser
 share/rt3/html/Admin/Elements/QueueTabs
+share/rt3/html/Admin/Elements/SelectCustomField
 share/rt3/html/Admin/Elements/SelectCustomFieldLookupType
 share/rt3/html/Admin/Elements/SelectCustomFieldType
 share/rt3/html/Admin/Elements/SelectGroups
@@ -423,7 +425,6 @@
 share/rt3/html/Approvals/Elements/Tabs
 share/rt3/html/Approvals/autohandler
 share/rt3/html/Approvals/index.html
-share/rt3/html/CalPopup.html
 share/rt3/html/Dashboards/Elements/DashboardsForObject
 share/rt3/html/Dashboards/Elements/DashboardsForObjects
 share/rt3/html/Dashboards/Elements/Deleted
diff -r a43b05b17521 -r 13da8b692806 devel/rt3/distinfo
--- a/devel/rt3/distinfo        Fri Dec 04 09:18:14 2009 +0000
+++ b/devel/rt3/distinfo        Fri Dec 04 09:30:20 2009 +0000
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.13 2009/09/15 23:15:58 spz Exp $
+$NetBSD: distinfo,v 1.14 2009/12/04 09:30:20 spz Exp $
 
-SHA1 (rt-3.8.5.tar.gz) = 26854e1a34052a2a922dc0ff533056f782813ea7
-RMD160 (rt-3.8.5.tar.gz) = 132516bc5cd15a3a1f8fd0c46b3d95fafc1f53eb
-Size (rt-3.8.5.tar.gz) = 3323600 bytes
+SHA1 (rt-3.8.6.tar.gz) = a26350016a828ab4067438f0ea9b2b97ca9026f7
+RMD160 (rt-3.8.6.tar.gz) = 39b79564aa697beda78eb7b05fd718a3f9d4b28c
+Size (rt-3.8.6.tar.gz) = 3363499 bytes
 SHA1 (patch-aa) = 23964ba8d686931e1f92be88fa3a5d5e06070fce



Home | Main Index | Thread Index | Old Index