@@ -12,6 +12,11 @@ if [[ -n "$SHORT_CIRCUIT_SMOKE" ]] ; then exit 0 ; fi
1212
1313if [[ " $DEVREL_DEPS " == " true" ]] ; then
1414 PINS_REQUIRED+=( ' Data::Page~<2.04' )
15+
16+ # FIXME work around https://github.com/dbsrgits/sql-abstract/pull/16
17+ if ! perl -M5.010 -e1 & > /dev/null ; then
18+ PINS_REQUIRED+=( " I/IL/ILMARI/SQL-Abstract-1.86.tar.gz" )
19+ fi
1520fi
1621
1722# FIXME freeze Clone until H::M is erradicated
@@ -53,12 +58,6 @@ if [[ "$MVDT" == "true" ]] ; then
5358
5459 parallel_installdeps_notest DBD::
[email protected] 5560
56- # FIXME work around DBD::DB2 being silly: https://rt.cpan.org/Ticket/Display.html?id=101659
57- if [[ -n " $DBICTEST_DB2_DSN " ]] ; then
58- echo_err " Installing same DBI version into the main perl (above the current local::lib)"
59- $SHELL -lic " perlbrew use $( perlbrew use | grep -oP ' (?<=Currently using )[^@]+' ) && parallel_installdeps_notest T/TI/TIMB/DBI-1.614.tar.gz"
60- fi
61-
6261 # We need to stick with older DBD::Oracle, otherwise it will bump the DBI version up
6362 if [[ -n " $DBICTEST_ORA_DSN " ]] ; then
6463 parallel_installdeps_notest DBD::
[email protected] @@ -69,11 +68,6 @@ if [[ "$MVDT" == "true" ]] ; then
6968
7069 parallel_installdeps_notest DBD::
[email protected] 7170
72- # FIXME work around DBD::DB2 being silly: https://rt.cpan.org/Ticket/Display.html?id=101659
73- if [[ -n " $DBICTEST_DB2_DSN " ]] ; then
74- echo_err " Installing same DBI version into the main perl (above the current local::lib)"
75- $SHELL -lic " perlbrew use $( perlbrew use | grep -oP ' (?<=Currently using )[^@]+' ) && parallel_installdeps_notest T/TI/TIMB/DBI-1.57.tar.gz"
76- fi
7771 fi
7872
7973 # Test both minimum DBD::SQLite and minimum BigInt SQLite
@@ -184,6 +178,11 @@ else
184178 parallel_installdeps_notest git://github.com/ribasushi/patchup-Perl5-DBD-InterBase.git
185179 fi
186180
181+ # FIXME work around DBD::DB2 being silly: https://rt.cpan.org/Ticket/Display.html?id=101659
182+ if [[ -n " $DBICTEST_DB2_DSN " ]] ; then
183+ parallel_installdeps_notest git://github.com/ribasushi/patchup-Perl5-DBD-DB2.git
184+ fi
185+
187186 # SCGI does not install under ASan nor < 5.8.8 perls nor under parallel make
188187 # FIXME: The 5.8.8 thing is likely fixable, something to do with
189188 # #define speedy_new(s,n,t) Newx(s,n,t)
0 commit comments