@@ -824,9 +824,6 @@ pub fn extended(build: &Build, stage: u32, target: &str) {
824824 let cargo_installer = dist. join ( format ! ( "{}-{}.tar.gz" ,
825825 pkgname( build, "cargo" ) ,
826826 target) ) ;
827- let rls_installer = dist. join ( format ! ( "{}-{}.tar.gz" ,
828- pkgname( build, "rls" ) ,
829- target) ) ;
830827 let analysis_installer = dist. join ( format ! ( "{}-{}.tar.gz" ,
831828 pkgname( build, "rust-analysis" ) ,
832829 target) ) ;
@@ -857,7 +854,7 @@ pub fn extended(build: &Build, stage: u32, target: &str) {
857854 // upgrades rustc was upgraded before rust-std. To avoid rustc clobbering
858855 // the std files during uninstall. To do this ensure that rustc comes
859856 // before rust-std in the list below.
860- let mut tarballs = vec ! [ rustc_installer, cargo_installer, rls_installer ,
857+ let mut tarballs = vec ! [ rustc_installer, cargo_installer,
861858 analysis_installer, docs_installer, std_installer] ;
862859 if target. contains ( "pc-windows-gnu" ) {
863860 tarballs. push ( mingw_installer) ;
@@ -904,8 +901,6 @@ pub fn extended(build: &Build, stage: u32, target: &str) {
904901 t ! ( fs:: create_dir_all( pkg. join( "cargo" ) ) ) ;
905902 t ! ( fs:: create_dir_all( pkg. join( "rust-docs" ) ) ) ;
906903 t ! ( fs:: create_dir_all( pkg. join( "rust-std" ) ) ) ;
907- t ! ( fs:: create_dir_all( pkg. join( "rls" ) ) ) ;
908- t ! ( fs:: create_dir_all( pkg. join( "rust-analysis" ) ) ) ;
909904
910905 cp_r ( & work. join ( & format ! ( "{}-{}" , pkgname( build, "rustc" ) , target) ) ,
911906 & pkg. join ( "rustc" ) ) ;
@@ -915,17 +910,11 @@ pub fn extended(build: &Build, stage: u32, target: &str) {
915910 & pkg. join ( "rust-docs" ) ) ;
916911 cp_r ( & work. join ( & format ! ( "{}-{}" , pkgname( build, "rust-std" ) , target) ) ,
917912 & pkg. join ( "rust-std" ) ) ;
918- cp_r ( & work. join ( & format ! ( "{}-{}" , pkgname( build, "rls" ) , target) ) ,
919- & pkg. join ( "rls" ) ) ;
920- cp_r ( & work. join ( & format ! ( "{}-{}" , pkgname( build, "rust-analysis" ) , target) ) ,
921- & pkg. join ( "rust-analysis" ) ) ;
922913
923914 install ( & etc. join ( "pkg/postinstall" ) , & pkg. join ( "rustc" ) , 0o755 ) ;
924915 install ( & etc. join ( "pkg/postinstall" ) , & pkg. join ( "cargo" ) , 0o755 ) ;
925916 install ( & etc. join ( "pkg/postinstall" ) , & pkg. join ( "rust-docs" ) , 0o755 ) ;
926917 install ( & etc. join ( "pkg/postinstall" ) , & pkg. join ( "rust-std" ) , 0o755 ) ;
927- install ( & etc. join ( "pkg/postinstall" ) , & pkg. join ( "rls" ) , 0o755 ) ;
928- install ( & etc. join ( "pkg/postinstall" ) , & pkg. join ( "rust-analysis" ) , 0o755 ) ;
929918
930919 let pkgbuild = |component : & str | {
931920 let mut cmd = Command :: new ( "pkgbuild" ) ;
@@ -939,8 +928,6 @@ pub fn extended(build: &Build, stage: u32, target: &str) {
939928 pkgbuild ( "cargo" ) ;
940929 pkgbuild ( "rust-docs" ) ;
941930 pkgbuild ( "rust-std" ) ;
942- pkgbuild ( "rls" ) ;
943- pkgbuild ( "rust-analysis" ) ;
944931
945932 // create an 'uninstall' package
946933 install ( & etc. join ( "pkg/postinstall" ) , & pkg. join ( "uninstall" ) , 0o755 ) ;
@@ -964,8 +951,6 @@ pub fn extended(build: &Build, stage: u32, target: &str) {
964951 let _ = fs:: remove_dir_all ( & exe) ;
965952 t ! ( fs:: create_dir_all( exe. join( "rustc" ) ) ) ;
966953 t ! ( fs:: create_dir_all( exe. join( "cargo" ) ) ) ;
967- t ! ( fs:: create_dir_all( exe. join( "rls" ) ) ) ;
968- t ! ( fs:: create_dir_all( exe. join( "rust-analysis" ) ) ) ;
969954 t ! ( fs:: create_dir_all( exe. join( "rust-docs" ) ) ) ;
970955 t ! ( fs:: create_dir_all( exe. join( "rust-std" ) ) ) ;
971956 cp_r ( & work. join ( & format ! ( "{}-{}" , pkgname( build, "rustc" ) , target) )
@@ -980,19 +965,11 @@ pub fn extended(build: &Build, stage: u32, target: &str) {
980965 cp_r ( & work. join ( & format ! ( "{}-{}" , pkgname( build, "rust-std" ) , target) )
981966 . join ( format ! ( "rust-std-{}" , target) ) ,
982967 & exe. join ( "rust-std" ) ) ;
983- cp_r ( & work. join ( & format ! ( "{}-{}" , pkgname( build, "rls" ) , target) )
984- . join ( "rls" ) ,
985- & exe. join ( "rls" ) ) ;
986- cp_r ( & work. join ( & format ! ( "{}-{}" , pkgname( build, "rust-analysis" ) , target) )
987- . join ( format ! ( "rust-analysis-{}" , target) ) ,
988- & exe. join ( "rust-analysis" ) ) ;
989968
990969 t ! ( fs:: remove_file( exe. join( "rustc/manifest.in" ) ) ) ;
991970 t ! ( fs:: remove_file( exe. join( "cargo/manifest.in" ) ) ) ;
992971 t ! ( fs:: remove_file( exe. join( "rust-docs/manifest.in" ) ) ) ;
993972 t ! ( fs:: remove_file( exe. join( "rust-std/manifest.in" ) ) ) ;
994- t ! ( fs:: remove_file( exe. join( "rls/manifest.in" ) ) ) ;
995- t ! ( fs:: remove_file( exe. join( "rust-analysis/manifest.in" ) ) ) ;
996973
997974 if target. contains ( "windows-gnu" ) {
998975 t ! ( fs:: create_dir_all( exe. join( "rust-mingw" ) ) ) ;
@@ -1066,26 +1043,6 @@ pub fn extended(build: &Build, stage: u32, target: &str) {
10661043 . arg ( "-dr" ) . arg ( "Std" )
10671044 . arg ( "-var" ) . arg ( "var.StdDir" )
10681045 . arg ( "-out" ) . arg ( exe. join ( "StdGroup.wxs" ) ) ) ;
1069- build. run ( Command :: new ( & heat)
1070- . current_dir ( & exe)
1071- . arg ( "dir" )
1072- . arg ( "rls" )
1073- . args ( & heat_flags)
1074- . arg ( "-cg" ) . arg ( "RlsGroup" )
1075- . arg ( "-dr" ) . arg ( "Rls" )
1076- . arg ( "-var" ) . arg ( "var.RlsDir" )
1077- . arg ( "-out" ) . arg ( exe. join ( "RlsGroup.wxs" ) )
1078- . arg ( "-t" ) . arg ( etc. join ( "msi/remove-duplicates.xsl" ) ) ) ;
1079- build. run ( Command :: new ( & heat)
1080- . current_dir ( & exe)
1081- . arg ( "dir" )
1082- . arg ( "rust-analysis" )
1083- . args ( & heat_flags)
1084- . arg ( "-cg" ) . arg ( "AnalysisGroup" )
1085- . arg ( "-dr" ) . arg ( "Analysis" )
1086- . arg ( "-var" ) . arg ( "var.AnalysisDir" )
1087- . arg ( "-out" ) . arg ( exe. join ( "AnalysisGroup.wxs" ) )
1088- . arg ( "-t" ) . arg ( etc. join ( "msi/remove-duplicates.xsl" ) ) ) ;
10891046 if target. contains ( "windows-gnu" ) {
10901047 build. run ( Command :: new ( & heat)
10911048 . current_dir ( & exe)
@@ -1109,8 +1066,6 @@ pub fn extended(build: &Build, stage: u32, target: &str) {
11091066 . arg ( "-dDocsDir=rust-docs" )
11101067 . arg ( "-dCargoDir=cargo" )
11111068 . arg ( "-dStdDir=rust-std" )
1112- . arg ( "-dRlsDir=rls" )
1113- . arg ( "-dAnalysisDir=rust-analysis" )
11141069 . arg ( "-arch" ) . arg ( & arch)
11151070 . arg ( "-out" ) . arg ( & output)
11161071 . arg ( & input) ;
@@ -1128,8 +1083,6 @@ pub fn extended(build: &Build, stage: u32, target: &str) {
11281083 candle ( "DocsGroup.wxs" . as_ref ( ) ) ;
11291084 candle ( "CargoGroup.wxs" . as_ref ( ) ) ;
11301085 candle ( "StdGroup.wxs" . as_ref ( ) ) ;
1131- candle ( "RlsGroup.wxs" . as_ref ( ) ) ;
1132- candle ( "AnalysisGroup.wxs" . as_ref ( ) ) ;
11331086
11341087 if target. contains ( "windows-gnu" ) {
11351088 candle ( "GccGroup.wxs" . as_ref ( ) ) ;
@@ -1152,8 +1105,6 @@ pub fn extended(build: &Build, stage: u32, target: &str) {
11521105 . arg ( "DocsGroup.wixobj" )
11531106 . arg ( "CargoGroup.wixobj" )
11541107 . arg ( "StdGroup.wixobj" )
1155- . arg ( "RlsGroup.wixobj" )
1156- . arg ( "AnalysisGroup.wixobj" )
11571108 . current_dir ( & exe) ;
11581109
11591110 if target. contains ( "windows-gnu" ) {
@@ -1220,7 +1171,6 @@ pub fn hash_and_sign(build: &Build) {
12201171 cmd. arg ( today. trim ( ) ) ;
12211172 cmd. arg ( build. rust_package_vers ( ) ) ;
12221173 cmd. arg ( build. package_vers ( & build. release_num ( "cargo" ) ) ) ;
1223- cmd. arg ( build. package_vers ( & build. release_num ( "rls" ) ) ) ;
12241174 cmd. arg ( addr) ;
12251175
12261176 t ! ( fs:: create_dir_all( distdir( build) ) ) ;
0 commit comments