Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
best-practical
rt-extension-mergeusers
Commits
b6247f8f
Commit
b6247f8f
authored
Oct 17, 2011
by
Thomas Sibley
Browse files
Releng for 0.06
parent
e9b9dbd5
Changes
14
Hide whitespace changes
Inline
Side-by-side
Changes
View file @
b6247f8f
0.06
Actually clear the seen_users cache when we get undef back from SUPER::Next
0.05
Update packaging and install infrastructure for RT 4
0.04
Also clear cache when merging
Update docs
...
...
META.yml
View file @
b6247f8f
...
...
@@ -7,7 +7,7 @@ build_requires:
configure_requires
:
ExtUtils::MakeMaker:
6.42
distribution_type
:
module
generated_by
:
'
Module::Install
version
1.0
1
'
generated_by
:
'
Module::Install
version
1.0
2
'
license
:
gpl
meta-spec
:
url
:
http://module-build.sourceforge.net/META-spec-v1.4.html
...
...
@@ -23,4 +23,4 @@ requires:
perl
:
5.8.3
resources
:
license
:
http://opensource.org/licenses/gpl-license.php
version
:
0.0
5
version
:
0.0
6
inc/Module/AutoInstall.pm
View file @
b6247f8f
...
...
@@ -17,11 +17,14 @@ my %FeatureMap = (
);
# various lexical flags
my
(
@Missing
,
@Existing
,
%DisabledTests
,
$UnderCPAN
,
$HasCPANPLUS
);
my
(
@Missing
,
@Existing
,
%DisabledTests
,
$UnderCPAN
,
$InstallDepsTarget
,
$HasCPANPLUS
);
my
(
$Config
,
$CheckOnly
,
$SkipInstall
,
$AcceptDefault
,
$TestOnly
,
$AllDeps
$Config
,
$CheckOnly
,
$SkipInstall
,
$AcceptDefault
,
$TestOnly
,
$AllDeps
,
$UpgradeDeps
);
my
(
$PostambleActions
,
$PostambleUsed
);
my
(
$PostambleActions
,
$PostambleActionsNoTest
,
$PostambleActionsUpgradeDeps
,
$PostambleActionsUpgradeDepsNoTest
,
$PostambleActionsListDeps
,
$PostambleActionsListAllDeps
,
$PostambleUsed
,
$NoTest
);
# See if it's a testing or non-interactive session
_accept_default
(
$ENV
{
AUTOMATED_TESTING
}
or
!
-
t
STDIN
);
...
...
@@ -31,6 +34,10 @@ sub _accept_default {
$AcceptDefault
=
shift
;
}
sub
_installdeps_target
{
$InstallDepsTarget
=
shift
;
}
sub
missing_modules
{
return
@Missing
;
}
...
...
@@ -63,6 +70,11 @@ sub _init {
__PACKAGE__
->
install
(
$Config
,
@Missing
=
split
(
/,/
,
$
1
)
);
exit
0
;
}
elsif
(
$arg
=~
/^--upgradedeps=(.*)$/
)
{
$UpgradeDeps
=
1
;
__PACKAGE__
->
install
(
$Config
,
@Missing
=
split
(
/,/
,
$
1
)
);
exit
0
;
}
elsif
(
$arg
=~
/^--default(?:deps)?$/
)
{
$AcceptDefault
=
1
;
}
...
...
@@ -125,7 +137,7 @@ sub import {
# check entirely since we don't want to have to load (and configure)
# an old CPAN just for a cosmetic message
$UnderCPAN
=
_check_lock
(
1
)
unless
$SkipInstall
;
$UnderCPAN
=
_check_lock
(
1
)
unless
$SkipInstall
||
$InstallDepsTarget
;
while
(
my
(
$feature
,
$modules
)
=
splice
(
@args
,
0
,
2
)
)
{
my
(
@required
,
@tests
,
@skiptests
);
...
...
@@ -207,6 +219,7 @@ sub import {
$CheckOnly
or
(
$mandatory
and
$UnderCPAN
)
or
$AllDeps
or
$InstallDepsTarget
or
_prompt
(
qq{==> Auto-install the }
.
(
@required
/
2
)
...
...
@@ -237,10 +250,17 @@ sub import {
}
}
if
(
@Missing
and
not
(
$CheckOnly
or
$UnderCPAN
)
)
{
if
(
@Missing
and
not
(
$CheckOnly
or
$UnderCPAN
)
)
{
require
Config
;
print
"
*** Dependencies will be installed the next time you type '
$Config
::Config{make}'.
\n
";
my
$make
=
$
Config::
Config
{
make
};
if
(
$InstallDepsTarget
)
{
print
"
*** To install dependencies type '
$make
installdeps' or '
$make
installdeps_notest'.
\n
";
}
else
{
print
"
*** Dependencies will be installed the next time you type '
$make
'.
\n
";
}
# make an educated guess of whether we'll need root permission.
print
"
(You may need to do that as the 'root' user.)
\n
"
...
...
@@ -271,6 +291,10 @@ END_MESSAGE
sub
_check_lock
{
return
unless
@Missing
or
@_
;
if
(
$ENV
{
PERL5_CPANM_IS_RUNNING
})
{
return
_running_under
('
cpanminus
');
}
my
$cpan_env
=
$ENV
{
PERL5_CPAN_IS_RUNNING
};
if
(
$ENV
{
PERL5_CPANPLUS_IS_RUNNING
})
{
...
...
@@ -332,6 +356,11 @@ sub install {
}
}
if
(
$UpgradeDeps
)
{
push
@modules
,
@installed
;
@installed
=
();
}
return
@installed
unless
@modules
;
# nothing to do
return
@installed
if
_check_lock
();
# defer to the CPAN shell
...
...
@@ -463,6 +492,11 @@ sub _cpanplus_config {
}
else
{
die
"
*** Cannot convert option
$key
= '
$value
' to CPANPLUS version.
\n
";
}
push
@config
,
'
prereqs
',
$value
;
}
elsif
(
$key
eq
'
force
'
)
{
push
@config
,
$key
,
$value
;
}
elsif
(
$key
eq
'
notest
'
)
{
push
@config
,
'
skiptest
',
$value
;
}
else
{
die
"
*** Cannot convert option
$key
to CPANPLUS version.
\n
";
}
...
...
@@ -497,10 +531,14 @@ sub _install_cpan {
# set additional options
while
(
my
(
$opt
,
$arg
)
=
splice
(
@config
,
0
,
2
)
)
{
(
$args
{
$opt
}
=
$arg
,
next
)
if
$opt
=~
/^force$/
;
# pseudo-option
if
$opt
=~
/^
(?:
force
|notest)
$/
;
# pseudo-option
$
CPAN::
Config
->
{
$opt
}
=
$arg
;
}
if
(
$args
{
notest
}
&&
(
not
CPAN::
Shell
->
can
('
notest
')))
{
die
"
Your version of CPAN is too old to support the 'notest' pragma
";
}
local
$
CPAN::
Config
->
{
prerequisites_policy
}
=
'
follow
';
while
(
my
(
$pkg
,
$ver
)
=
splice
(
@modules
,
0
,
2
)
)
{
...
...
@@ -519,8 +557,16 @@ sub _install_cpan {
delete
$INC
{
$inc
};
}
my
$rv
=
$args
{
force
}
?
CPAN::
Shell
->
force
(
install
=>
$pkg
)
:
CPAN::
Shell
->
install
(
$pkg
);
my
$rv
=
do
{
if
(
$args
{
force
})
{
CPAN::
Shell
->
force
(
install
=>
$pkg
)
}
elsif
(
$args
{
notest
})
{
CPAN::
Shell
->
notest
(
install
=>
$pkg
)
}
else
{
CPAN::
Shell
->
install
(
$pkg
)
}
};
$rv
||=
eval
{
$
CPAN::
META
->
instance
(
'
CPAN::Distribution
',
$obj
->
cpan_file
,
)
->
{
install
}
...
...
@@ -763,6 +809,35 @@ sub _make_args {
:
"
\$
(NOECHO)
\$
(NOOP)
"
);
my
$deps_list
=
join
(
'
,
',
@Missing
,
@Existing
);
$PostambleActionsUpgradeDeps
=
"
\$
(PERL) $0 --config=
$config
--upgradedeps=
$deps_list
";
my
$config_notest
=
join
(
'
,
',
(
UNIVERSAL::
isa
(
$Config
,
'
HASH
'
)
?
%
{
$Config
}
:
@
{
$Config
}),
'
notest
',
1
)
if
$Config
;
$PostambleActionsNoTest
=
(
(
$missing
and
not
$UnderCPAN
)
?
"
\$
(PERL) $0 --config=
$config_notest
--installdeps=
$missing
"
:
"
\$
(NOECHO)
\$
(NOOP)
"
);
$PostambleActionsUpgradeDepsNoTest
=
"
\$
(PERL) $0 --config=
$config_notest
--upgradedeps=
$deps_list
";
$PostambleActionsListDeps
=
'
@$(PERL) -le "print for @ARGV"
'
.
join
('
',
map
$Missing
[
$_
],
grep
$_
%
2
==
0
,
0
..
$#Missing
);
my
@all
=
(
@Missing
,
@Existing
);
$PostambleActionsListAllDeps
=
'
@$(PERL) -le "print for @ARGV"
'
.
join
('
',
map
$all
[
$_
],
grep
$_
%
2
==
0
,
0
..
$#all
);
return
%args
;
}
...
...
@@ -797,11 +872,15 @@ sub Write {
sub
postamble
{
$PostambleUsed
=
1
;
my
$fragment
;
return
<<"END_MAKE"
;
$fragment
.=
<<
"
AUTO_INSTALL
"
if
!
$InstallDepsTarget
;
config
::
installdeps
\
t
\
$
(
NOECHO
)
\
$
(
NOOP
)
AUTO_INSTALL
$fragment
.=
<<"END_MAKE";
checkdeps ::
\t\$(PERL) $0 --checkdeps
...
...
@@ -809,12 +888,28 @@ checkdeps ::
installdeps ::
\t$PostambleActions
installdeps_notest ::
\t$PostambleActionsNoTest
upgradedeps ::
\t$PostambleActionsUpgradeDeps
upgradedeps_notest ::
\t$PostambleActionsUpgradeDepsNoTest
listdeps ::
\t$PostambleActionsListDeps
listalldeps ::
\t$PostambleActionsListAllDeps
END_MAKE
return
$fragment
;
}
1
;
__END__
#line 1
071
#line 1
178
inc/Module/Install.pm
View file @
b6247f8f
...
...
@@ -31,7 +31,7 @@ BEGIN {
# This is not enforced yet, but will be some time in the next few
# releases once we can make sure it won't clash with custom
# Module::Install extensions.
$VERSION
=
'
1.0
1
';
$VERSION
=
'
1.0
2
';
# Storage for the pseudo-singleton
$MAIN
=
undef
;
...
...
inc/Module/Install/AutoInstall.pm
View file @
b6247f8f
...
...
@@ -6,7 +6,7 @@ use Module::Install::Base ();
use
vars
qw{$VERSION @ISA $ISCORE}
;
BEGIN
{
$VERSION
=
'
1.0
1
';
$VERSION
=
'
1.0
2
';
@ISA
=
'
Module::Install::Base
';
$ISCORE
=
1
;
}
...
...
@@ -73,6 +73,17 @@ sub auto_install {
);
}
sub
installdeps_target
{
my
(
$self
,
@args
)
=
@_
;
$self
->
include
('
Module::AutoInstall
');
require
Module::
AutoInstall
;
Module::AutoInstall::
_installdeps_target
(
1
);
$self
->
auto_install
(
@args
);
}
sub
auto_install_now
{
my
$self
=
shift
;
$self
->
auto_install
(
@
_
);
...
...
inc/Module/Install/Base.pm
View file @
b6247f8f
...
...
@@ -4,7 +4,7 @@ package Module::Install::Base;
use
strict
'
vars
';
use
vars
qw{$VERSION}
;
BEGIN
{
$VERSION
=
'
1.0
1
';
$VERSION
=
'
1.0
2
';
}
# Suspend handler for "redefined" warnings
...
...
inc/Module/Install/Can.pm
View file @
b6247f8f
...
...
@@ -9,7 +9,7 @@ use Module::Install::Base ();
use
vars
qw{$VERSION @ISA $ISCORE}
;
BEGIN
{
$VERSION
=
'
1.0
1
';
$VERSION
=
'
1.0
2
';
@ISA
=
'
Module::Install::Base
';
$ISCORE
=
1
;
}
...
...
inc/Module/Install/Fetch.pm
View file @
b6247f8f
...
...
@@ -6,7 +6,7 @@ use Module::Install::Base ();
use
vars
qw{$VERSION @ISA $ISCORE}
;
BEGIN
{
$VERSION
=
'
1.0
1
';
$VERSION
=
'
1.0
2
';
@ISA
=
'
Module::Install::Base
';
$ISCORE
=
1
;
}
...
...
inc/Module/Install/Include.pm
View file @
b6247f8f
...
...
@@ -6,7 +6,7 @@ use Module::Install::Base ();
use
vars
qw{$VERSION @ISA $ISCORE}
;
BEGIN
{
$VERSION
=
'
1.0
1
';
$VERSION
=
'
1.0
2
';
@ISA
=
'
Module::Install::Base
';
$ISCORE
=
1
;
}
...
...
inc/Module/Install/Makefile.pm
View file @
b6247f8f
...
...
@@ -8,7 +8,7 @@ use Fcntl qw/:flock :seek/;
use
vars
qw{$VERSION
@ISA
$ISCORE};
BEGIN
{
$VERSION
=
'1.0
1
'
;
$VERSION
=
'1.0
2
'
;
@ISA = 'Module
::
Install::Base';
$ISCORE
=
1
;
}
...
...
inc/Module/Install/Metadata.pm
View file @
b6247f8f
...
...
@@ -6,7 +6,7 @@ use Module::Install::Base ();
use
vars
qw{$VERSION @ISA $ISCORE}
;
BEGIN
{
$VERSION
=
'
1.0
1
';
$VERSION
=
'
1.0
2
';
@ISA
=
'
Module::Install::Base
';
$ISCORE
=
1
;
}
...
...
@@ -170,7 +170,7 @@ sub perl_version {
# Normalize the version
$version
=
$self
->
_perl_version
(
$version
);
# We don't support the reall old versions
# We don't support the reall
y
old versions
unless
(
$version
>=
5.005
)
{
die
"
Module::Install only supports 5.005 or newer (use ExtUtils::MakeMaker)
\n
";
}
...
...
@@ -582,7 +582,7 @@ sub bugtracker_from {
sub
requires_from
{
my
$self
=
shift
;
my
$content
=
Module::Install::
_readperl
(
$_
[
0
]);
my
@requires
=
$content
=~
m/^use\s+([^\W\d]\w*(?:::\w+)*)\s+([\d\.]+)/mg
;
my
@requires
=
$content
=~
m/^use\s+([^\W\d]\w*(?:::\w+)*)\s+(
v?
[\d\.]+)/mg
;
while
(
@requires
)
{
my
$module
=
shift
@requires
;
my
$version
=
shift
@requires
;
...
...
inc/Module/Install/Win32.pm
View file @
b6247f8f
...
...
@@ -6,7 +6,7 @@ use Module::Install::Base ();
use
vars
qw{$VERSION @ISA $ISCORE}
;
BEGIN
{
$VERSION
=
'
1.0
1
';
$VERSION
=
'
1.0
2
';
@ISA
=
'
Module::Install::Base
';
$ISCORE
=
1
;
}
...
...
inc/Module/Install/WriteAll.pm
View file @
b6247f8f
...
...
@@ -6,7 +6,7 @@ use Module::Install::Base ();
use
vars
qw{$VERSION @ISA $ISCORE}
;
BEGIN
{
$VERSION
=
'
1.0
1
';
$VERSION
=
'
1.0
2
';
@ISA
=
qw{Module::Install::Base}
;
$ISCORE
=
1
;
}
...
...
lib/RT/Extension/MergeUsers.pm
View file @
b6247f8f
...
...
@@ -49,7 +49,7 @@ use warnings; no warnings qw(redefine);
package
RT::Extension::
MergeUsers
;
our
$VERSION
=
'
0.0
5
';
our
$VERSION
=
'
0.0
6
';
=head1 NAME
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment