@@ -1126,7 +1126,6 @@ impl Step for Extended {
11261126 compiler : builder. compiler ( stage, target) ,
11271127 } ) ;
11281128 let cargo_installer = builder. ensure ( Cargo { stage, target } ) ;
1129- let rls_installer = builder. ensure ( Rls { stage, target } ) ;
11301129 let mingw_installer = builder. ensure ( Mingw { host : target } ) ;
11311130 let analysis_installer = builder. ensure ( Analysis {
11321131 compiler : builder. compiler ( stage, self . host ) ,
@@ -1156,7 +1155,7 @@ impl Step for Extended {
11561155 // upgrades rustc was upgraded before rust-std. To avoid rustc clobbering
11571156 // the std files during uninstall. To do this ensure that rustc comes
11581157 // before rust-std in the list below.
1159- let mut tarballs = vec ! [ rustc_installer, cargo_installer, rls_installer ,
1158+ let mut tarballs = vec ! [ rustc_installer, cargo_installer,
11601159 analysis_installer, docs_installer, std_installer] ;
11611160 if target. contains ( "pc-windows-gnu" ) {
11621161 tarballs. push ( mingw_installer. unwrap ( ) ) ;
@@ -1203,8 +1202,6 @@ impl Step for Extended {
12031202 t ! ( fs:: create_dir_all( pkg. join( "cargo" ) ) ) ;
12041203 t ! ( fs:: create_dir_all( pkg. join( "rust-docs" ) ) ) ;
12051204 t ! ( fs:: create_dir_all( pkg. join( "rust-std" ) ) ) ;
1206- t ! ( fs:: create_dir_all( pkg. join( "rls" ) ) ) ;
1207- t ! ( fs:: create_dir_all( pkg. join( "rust-analysis" ) ) ) ;
12081205
12091206 cp_r ( & work. join ( & format ! ( "{}-{}" , pkgname( build, "rustc" ) , target) ) ,
12101207 & pkg. join ( "rustc" ) ) ;
@@ -1214,17 +1211,11 @@ impl Step for Extended {
12141211 & pkg. join ( "rust-docs" ) ) ;
12151212 cp_r ( & work. join ( & format ! ( "{}-{}" , pkgname( build, "rust-std" ) , target) ) ,
12161213 & pkg. join ( "rust-std" ) ) ;
1217- cp_r ( & work. join ( & format ! ( "{}-{}" , pkgname( build, "rls" ) , target) ) ,
1218- & pkg. join ( "rls" ) ) ;
1219- cp_r ( & work. join ( & format ! ( "{}-{}" , pkgname( build, "rust-analysis" ) , target) ) ,
1220- & pkg. join ( "rust-analysis" ) ) ;
12211214
12221215 install ( & etc. join ( "pkg/postinstall" ) , & pkg. join ( "rustc" ) , 0o755 ) ;
12231216 install ( & etc. join ( "pkg/postinstall" ) , & pkg. join ( "cargo" ) , 0o755 ) ;
12241217 install ( & etc. join ( "pkg/postinstall" ) , & pkg. join ( "rust-docs" ) , 0o755 ) ;
12251218 install ( & etc. join ( "pkg/postinstall" ) , & pkg. join ( "rust-std" ) , 0o755 ) ;
1226- install ( & etc. join ( "pkg/postinstall" ) , & pkg. join ( "rls" ) , 0o755 ) ;
1227- install ( & etc. join ( "pkg/postinstall" ) , & pkg. join ( "rust-analysis" ) , 0o755 ) ;
12281219
12291220 let pkgbuild = |component : & str | {
12301221 let mut cmd = Command :: new ( "pkgbuild" ) ;
@@ -1238,8 +1229,6 @@ impl Step for Extended {
12381229 pkgbuild ( "cargo" ) ;
12391230 pkgbuild ( "rust-docs" ) ;
12401231 pkgbuild ( "rust-std" ) ;
1241- pkgbuild ( "rls" ) ;
1242- pkgbuild ( "rust-analysis" ) ;
12431232
12441233 // create an 'uninstall' package
12451234 install ( & etc. join ( "pkg/postinstall" ) , & pkg. join ( "uninstall" ) , 0o755 ) ;
@@ -1263,8 +1252,6 @@ impl Step for Extended {
12631252 let _ = fs:: remove_dir_all ( & exe) ;
12641253 t ! ( fs:: create_dir_all( exe. join( "rustc" ) ) ) ;
12651254 t ! ( fs:: create_dir_all( exe. join( "cargo" ) ) ) ;
1266- t ! ( fs:: create_dir_all( exe. join( "rls" ) ) ) ;
1267- t ! ( fs:: create_dir_all( exe. join( "rust-analysis" ) ) ) ;
12681255 t ! ( fs:: create_dir_all( exe. join( "rust-docs" ) ) ) ;
12691256 t ! ( fs:: create_dir_all( exe. join( "rust-std" ) ) ) ;
12701257 cp_r ( & work. join ( & format ! ( "{}-{}" , pkgname( build, "rustc" ) , target) )
@@ -1279,19 +1266,11 @@ impl Step for Extended {
12791266 cp_r ( & work. join ( & format ! ( "{}-{}" , pkgname( build, "rust-std" ) , target) )
12801267 . join ( format ! ( "rust-std-{}" , target) ) ,
12811268 & exe. join ( "rust-std" ) ) ;
1282- cp_r ( & work. join ( & format ! ( "{}-{}" , pkgname( build, "rls" ) , target) )
1283- . join ( "rls" ) ,
1284- & exe. join ( "rls" ) ) ;
1285- cp_r ( & work. join ( & format ! ( "{}-{}" , pkgname( build, "rust-analysis" ) , target) )
1286- . join ( format ! ( "rust-analysis-{}" , target) ) ,
1287- & exe. join ( "rust-analysis" ) ) ;
12881269
12891270 t ! ( fs:: remove_file( exe. join( "rustc/manifest.in" ) ) ) ;
12901271 t ! ( fs:: remove_file( exe. join( "cargo/manifest.in" ) ) ) ;
12911272 t ! ( fs:: remove_file( exe. join( "rust-docs/manifest.in" ) ) ) ;
12921273 t ! ( fs:: remove_file( exe. join( "rust-std/manifest.in" ) ) ) ;
1293- t ! ( fs:: remove_file( exe. join( "rls/manifest.in" ) ) ) ;
1294- t ! ( fs:: remove_file( exe. join( "rust-analysis/manifest.in" ) ) ) ;
12951274
12961275 if target. contains ( "windows-gnu" ) {
12971276 t ! ( fs:: create_dir_all( exe. join( "rust-mingw" ) ) ) ;
@@ -1365,26 +1344,6 @@ impl Step for Extended {
13651344 . arg ( "-dr" ) . arg ( "Std" )
13661345 . arg ( "-var" ) . arg ( "var.StdDir" )
13671346 . arg ( "-out" ) . arg ( exe. join ( "StdGroup.wxs" ) ) ) ;
1368- build. run ( Command :: new ( & heat)
1369- . current_dir ( & exe)
1370- . arg ( "dir" )
1371- . arg ( "rls" )
1372- . args ( & heat_flags)
1373- . arg ( "-cg" ) . arg ( "RlsGroup" )
1374- . arg ( "-dr" ) . arg ( "Rls" )
1375- . arg ( "-var" ) . arg ( "var.RlsDir" )
1376- . arg ( "-out" ) . arg ( exe. join ( "RlsGroup.wxs" ) )
1377- . arg ( "-t" ) . arg ( etc. join ( "msi/remove-duplicates.xsl" ) ) ) ;
1378- build. run ( Command :: new ( & heat)
1379- . current_dir ( & exe)
1380- . arg ( "dir" )
1381- . arg ( "rust-analysis" )
1382- . args ( & heat_flags)
1383- . arg ( "-cg" ) . arg ( "AnalysisGroup" )
1384- . arg ( "-dr" ) . arg ( "Analysis" )
1385- . arg ( "-var" ) . arg ( "var.AnalysisDir" )
1386- . arg ( "-out" ) . arg ( exe. join ( "AnalysisGroup.wxs" ) )
1387- . arg ( "-t" ) . arg ( etc. join ( "msi/remove-duplicates.xsl" ) ) ) ;
13881347 if target. contains ( "windows-gnu" ) {
13891348 build. run ( Command :: new ( & heat)
13901349 . current_dir ( & exe)
@@ -1408,8 +1367,6 @@ impl Step for Extended {
14081367 . arg ( "-dDocsDir=rust-docs" )
14091368 . arg ( "-dCargoDir=cargo" )
14101369 . arg ( "-dStdDir=rust-std" )
1411- . arg ( "-dRlsDir=rls" )
1412- . arg ( "-dAnalysisDir=rust-analysis" )
14131370 . arg ( "-arch" ) . arg ( & arch)
14141371 . arg ( "-out" ) . arg ( & output)
14151372 . arg ( & input) ;
@@ -1427,8 +1384,6 @@ impl Step for Extended {
14271384 candle ( "DocsGroup.wxs" . as_ref ( ) ) ;
14281385 candle ( "CargoGroup.wxs" . as_ref ( ) ) ;
14291386 candle ( "StdGroup.wxs" . as_ref ( ) ) ;
1430- candle ( "RlsGroup.wxs" . as_ref ( ) ) ;
1431- candle ( "AnalysisGroup.wxs" . as_ref ( ) ) ;
14321387
14331388 if target. contains ( "windows-gnu" ) {
14341389 candle ( "GccGroup.wxs" . as_ref ( ) ) ;
@@ -1451,8 +1406,6 @@ impl Step for Extended {
14511406 . arg ( "DocsGroup.wixobj" )
14521407 . arg ( "CargoGroup.wixobj" )
14531408 . arg ( "StdGroup.wixobj" )
1454- . arg ( "RlsGroup.wixobj" )
1455- . arg ( "AnalysisGroup.wixobj" )
14561409 . current_dir ( & exe) ;
14571410
14581411 if target. contains ( "windows-gnu" ) {
@@ -1537,7 +1490,6 @@ impl Step for HashSign {
15371490 cmd. arg ( today. trim ( ) ) ;
15381491 cmd. arg ( build. rust_package_vers ( ) ) ;
15391492 cmd. arg ( build. package_vers ( & build. release_num ( "cargo" ) ) ) ;
1540- cmd. arg ( build. package_vers ( & build. release_num ( "rls" ) ) ) ;
15411493 cmd. arg ( addr) ;
15421494
15431495 t ! ( fs:: create_dir_all( distdir( build) ) ) ;
0 commit comments