@@ -824,9 +824,6 @@ pub fn extended(build: &Build, stage: u32, target: &str) {
824
824
let cargo_installer = dist. join ( format ! ( "{}-{}.tar.gz" ,
825
825
pkgname( build, "cargo" ) ,
826
826
target) ) ;
827
- let rls_installer = dist. join ( format ! ( "{}-{}.tar.gz" ,
828
- pkgname( build, "rls" ) ,
829
- target) ) ;
830
827
let analysis_installer = dist. join ( format ! ( "{}-{}.tar.gz" ,
831
828
pkgname( build, "rust-analysis" ) ,
832
829
target) ) ;
@@ -857,7 +854,7 @@ pub fn extended(build: &Build, stage: u32, target: &str) {
857
854
// upgrades rustc was upgraded before rust-std. To avoid rustc clobbering
858
855
// the std files during uninstall. To do this ensure that rustc comes
859
856
// 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,
861
858
analysis_installer, docs_installer, std_installer] ;
862
859
if target. contains ( "pc-windows-gnu" ) {
863
860
tarballs. push ( mingw_installer) ;
@@ -904,8 +901,6 @@ pub fn extended(build: &Build, stage: u32, target: &str) {
904
901
t ! ( fs:: create_dir_all( pkg. join( "cargo" ) ) ) ;
905
902
t ! ( fs:: create_dir_all( pkg. join( "rust-docs" ) ) ) ;
906
903
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" ) ) ) ;
909
904
910
905
cp_r ( & work. join ( & format ! ( "{}-{}" , pkgname( build, "rustc" ) , target) ) ,
911
906
& pkg. join ( "rustc" ) ) ;
@@ -915,17 +910,11 @@ pub fn extended(build: &Build, stage: u32, target: &str) {
915
910
& pkg. join ( "rust-docs" ) ) ;
916
911
cp_r ( & work. join ( & format ! ( "{}-{}" , pkgname( build, "rust-std" ) , target) ) ,
917
912
& 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" ) ) ;
922
913
923
914
install ( & etc. join ( "pkg/postinstall" ) , & pkg. join ( "rustc" ) , 0o755 ) ;
924
915
install ( & etc. join ( "pkg/postinstall" ) , & pkg. join ( "cargo" ) , 0o755 ) ;
925
916
install ( & etc. join ( "pkg/postinstall" ) , & pkg. join ( "rust-docs" ) , 0o755 ) ;
926
917
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 ) ;
929
918
930
919
let pkgbuild = |component : & str | {
931
920
let mut cmd = Command :: new ( "pkgbuild" ) ;
@@ -939,8 +928,6 @@ pub fn extended(build: &Build, stage: u32, target: &str) {
939
928
pkgbuild ( "cargo" ) ;
940
929
pkgbuild ( "rust-docs" ) ;
941
930
pkgbuild ( "rust-std" ) ;
942
- pkgbuild ( "rls" ) ;
943
- pkgbuild ( "rust-analysis" ) ;
944
931
945
932
// create an 'uninstall' package
946
933
install ( & etc. join ( "pkg/postinstall" ) , & pkg. join ( "uninstall" ) , 0o755 ) ;
@@ -964,8 +951,6 @@ pub fn extended(build: &Build, stage: u32, target: &str) {
964
951
let _ = fs:: remove_dir_all ( & exe) ;
965
952
t ! ( fs:: create_dir_all( exe. join( "rustc" ) ) ) ;
966
953
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" ) ) ) ;
969
954
t ! ( fs:: create_dir_all( exe. join( "rust-docs" ) ) ) ;
970
955
t ! ( fs:: create_dir_all( exe. join( "rust-std" ) ) ) ;
971
956
cp_r ( & work. join ( & format ! ( "{}-{}" , pkgname( build, "rustc" ) , target) )
@@ -980,19 +965,11 @@ pub fn extended(build: &Build, stage: u32, target: &str) {
980
965
cp_r ( & work. join ( & format ! ( "{}-{}" , pkgname( build, "rust-std" ) , target) )
981
966
. join ( format ! ( "rust-std-{}" , target) ) ,
982
967
& 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" ) ) ;
989
968
990
969
t ! ( fs:: remove_file( exe. join( "rustc/manifest.in" ) ) ) ;
991
970
t ! ( fs:: remove_file( exe. join( "cargo/manifest.in" ) ) ) ;
992
971
t ! ( fs:: remove_file( exe. join( "rust-docs/manifest.in" ) ) ) ;
993
972
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" ) ) ) ;
996
973
997
974
if target. contains ( "windows-gnu" ) {
998
975
t ! ( fs:: create_dir_all( exe. join( "rust-mingw" ) ) ) ;
@@ -1066,26 +1043,6 @@ pub fn extended(build: &Build, stage: u32, target: &str) {
1066
1043
. arg ( "-dr" ) . arg ( "Std" )
1067
1044
. arg ( "-var" ) . arg ( "var.StdDir" )
1068
1045
. 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" ) ) ) ;
1089
1046
if target. contains ( "windows-gnu" ) {
1090
1047
build. run ( Command :: new ( & heat)
1091
1048
. current_dir ( & exe)
@@ -1109,8 +1066,6 @@ pub fn extended(build: &Build, stage: u32, target: &str) {
1109
1066
. arg ( "-dDocsDir=rust-docs" )
1110
1067
. arg ( "-dCargoDir=cargo" )
1111
1068
. arg ( "-dStdDir=rust-std" )
1112
- . arg ( "-dRlsDir=rls" )
1113
- . arg ( "-dAnalysisDir=rust-analysis" )
1114
1069
. arg ( "-arch" ) . arg ( & arch)
1115
1070
. arg ( "-out" ) . arg ( & output)
1116
1071
. arg ( & input) ;
@@ -1128,8 +1083,6 @@ pub fn extended(build: &Build, stage: u32, target: &str) {
1128
1083
candle ( "DocsGroup.wxs" . as_ref ( ) ) ;
1129
1084
candle ( "CargoGroup.wxs" . as_ref ( ) ) ;
1130
1085
candle ( "StdGroup.wxs" . as_ref ( ) ) ;
1131
- candle ( "RlsGroup.wxs" . as_ref ( ) ) ;
1132
- candle ( "AnalysisGroup.wxs" . as_ref ( ) ) ;
1133
1086
1134
1087
if target. contains ( "windows-gnu" ) {
1135
1088
candle ( "GccGroup.wxs" . as_ref ( ) ) ;
@@ -1152,8 +1105,6 @@ pub fn extended(build: &Build, stage: u32, target: &str) {
1152
1105
. arg ( "DocsGroup.wixobj" )
1153
1106
. arg ( "CargoGroup.wixobj" )
1154
1107
. arg ( "StdGroup.wixobj" )
1155
- . arg ( "RlsGroup.wixobj" )
1156
- . arg ( "AnalysisGroup.wixobj" )
1157
1108
. current_dir ( & exe) ;
1158
1109
1159
1110
if target. contains ( "windows-gnu" ) {
@@ -1220,7 +1171,6 @@ pub fn hash_and_sign(build: &Build) {
1220
1171
cmd. arg ( today. trim ( ) ) ;
1221
1172
cmd. arg ( build. rust_package_vers ( ) ) ;
1222
1173
cmd. arg ( build. package_vers ( & build. release_num ( "cargo" ) ) ) ;
1223
- cmd. arg ( build. package_vers ( & build. release_num ( "rls" ) ) ) ;
1224
1174
cmd. arg ( addr) ;
1225
1175
1226
1176
t ! ( fs:: create_dir_all( distdir( build) ) ) ;
0 commit comments