forked from bestpractical/module-install-rtx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChanges
119 lines (70 loc) · 3.18 KB
/
Changes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
[Changes for 0.27 2010-12-16]
* Include RT's lib/ directory in INC so that requires()
on RT::VERSION work properly
[Changes for 0.26 2010-12-14]
* Search RTHOME before searching @INC
This works around distribution packages lurking in @INC
[Changes for 0.25 2009-10-08]
* Make prompt for lib path clearer [rt.cpan.org #50328]
* trim RT.pm from lib paths entered by users
[Changes for 0.24 2008-09-15]
* updated docs
* die when target is RT 3.8.0
* install libs only into one path, don't double-install them
on RT 3.8.x
* delete VERSION from POD, we just always forget to update it
[Changes for 0.23 2008-05-09]
* RT now respects the --datafile flag to rt-setup-database when
used with --action acl or --action schema.
Don't pass the initialdata file when we're doing schema changes
[Changes for 0.22 2008-03-25]
* Add local lib path to the @INC when we call any script that may
load RT config.
[Changes for 0.21 2007-12-07]
* LICENSING CHANGE: This compilation and all individual files in it
are now under the permissive "MIT" license. See the COPYRIGHT
section in README for the new terms.
* Cleanup on POD, changelog, README, etc.
* Bump dependency of Module::Install::Admin to 0.40, so we can make use of
all_from() and drop the parentheses in Makefile.PL commands.
[ Changes for 0.20 2007-12-05]
* Support for new RT 3.7 "RT Plugin" mechanism.
* No longer tries to write to the global local perl man and site directories
(packlists and manpages), instead installing them within the RT hierarchy.
[Changes for 0.11 - 2005-02-26]
* make initdb now prompts for dba password.
[Changes for 0.10 - 2004-09-09]
* "make initialize-database" added as an alias to "make initdb",
for better consistency with core RT installation.
Reported by: Sika.
[Changes for 0.09 - 2004-09-09]
* Moved under SVK management; remove all keyword expansion lines.
* Corrected the use of $ENV{RTHOME} and documented it.
[Changes for 0.08 - 2004-05-31]
* "make initdb" now moved to M::I::RTx::Factory, so the person
running "perl Makefile.PL" needs not have permission to read
RT_SiteConfig.pm.
* M::I::RTx::Factory now survives pod-stripping.
* Jesse reports that RTx('RT-Foo-Bar') breaks.
* Improve table detection in Pg.
* Better handling failed require() on _Overlay classes in the factory.
[Changes for 0.07 - 2004-05-13]
* Need to use RT::LoadConfig instead of requiring the config files directly.
Reported by: Jesse Vincent
[Changes for 0.06 - 2004-05-10]
* Support "make factory", "make initdb", "make dropdb"
for extensions that has its own initialdata and schema.
[Changes for 0.05 - 2004-02-01]
* Now installs libs to $RT::LocalPath/lib instead of perl's sitelib.
* Now properly skips lib installation when WITH_SUBDIRS does not include lib.
* Allow overriding prefix with $ENV{PREFIX}
[Changes for 0.04 - 2004-01-10]
* Update copyright years.
* Make var/ directory writable
* Some people insist on doing "make initialize-database" before "make install".
* Add etc/initialdata insertion.
* Take care of "inplace" layout by also probing in lib/RT.pm.
* Now takes WITH_SUBDIRS to restrict the subdirectories to install.
* Some POD cleanups.
[Changes for 0.01 - 2003-12-15]
* Initial release.