@@ -1126,7 +1126,6 @@ impl Step for Extended {
1126
1126
compiler : builder. compiler ( stage, target) ,
1127
1127
} ) ;
1128
1128
let cargo_installer = builder. ensure ( Cargo { stage, target } ) ;
1129
- let rls_installer = builder. ensure ( Rls { stage, target } ) ;
1130
1129
let mingw_installer = builder. ensure ( Mingw { host : target } ) ;
1131
1130
let analysis_installer = builder. ensure ( Analysis {
1132
1131
compiler : builder. compiler ( stage, self . host ) ,
@@ -1156,7 +1155,7 @@ impl Step for Extended {
1156
1155
// upgrades rustc was upgraded before rust-std. To avoid rustc clobbering
1157
1156
// the std files during uninstall. To do this ensure that rustc comes
1158
1157
// 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,
1160
1159
analysis_installer, docs_installer, std_installer] ;
1161
1160
if target. contains ( "pc-windows-gnu" ) {
1162
1161
tarballs. push ( mingw_installer. unwrap ( ) ) ;
@@ -1203,8 +1202,6 @@ impl Step for Extended {
1203
1202
t ! ( fs:: create_dir_all( pkg. join( "cargo" ) ) ) ;
1204
1203
t ! ( fs:: create_dir_all( pkg. join( "rust-docs" ) ) ) ;
1205
1204
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" ) ) ) ;
1208
1205
1209
1206
cp_r ( & work. join ( & format ! ( "{}-{}" , pkgname( build, "rustc" ) , target) ) ,
1210
1207
& pkg. join ( "rustc" ) ) ;
@@ -1214,17 +1211,11 @@ impl Step for Extended {
1214
1211
& pkg. join ( "rust-docs" ) ) ;
1215
1212
cp_r ( & work. join ( & format ! ( "{}-{}" , pkgname( build, "rust-std" ) , target) ) ,
1216
1213
& 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" ) ) ;
1221
1214
1222
1215
install ( & etc. join ( "pkg/postinstall" ) , & pkg. join ( "rustc" ) , 0o755 ) ;
1223
1216
install ( & etc. join ( "pkg/postinstall" ) , & pkg. join ( "cargo" ) , 0o755 ) ;
1224
1217
install ( & etc. join ( "pkg/postinstall" ) , & pkg. join ( "rust-docs" ) , 0o755 ) ;
1225
1218
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 ) ;
1228
1219
1229
1220
let pkgbuild = |component : & str | {
1230
1221
let mut cmd = Command :: new ( "pkgbuild" ) ;
@@ -1238,8 +1229,6 @@ impl Step for Extended {
1238
1229
pkgbuild ( "cargo" ) ;
1239
1230
pkgbuild ( "rust-docs" ) ;
1240
1231
pkgbuild ( "rust-std" ) ;
1241
- pkgbuild ( "rls" ) ;
1242
- pkgbuild ( "rust-analysis" ) ;
1243
1232
1244
1233
// create an 'uninstall' package
1245
1234
install ( & etc. join ( "pkg/postinstall" ) , & pkg. join ( "uninstall" ) , 0o755 ) ;
@@ -1263,8 +1252,6 @@ impl Step for Extended {
1263
1252
let _ = fs:: remove_dir_all ( & exe) ;
1264
1253
t ! ( fs:: create_dir_all( exe. join( "rustc" ) ) ) ;
1265
1254
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" ) ) ) ;
1268
1255
t ! ( fs:: create_dir_all( exe. join( "rust-docs" ) ) ) ;
1269
1256
t ! ( fs:: create_dir_all( exe. join( "rust-std" ) ) ) ;
1270
1257
cp_r ( & work. join ( & format ! ( "{}-{}" , pkgname( build, "rustc" ) , target) )
@@ -1279,19 +1266,11 @@ impl Step for Extended {
1279
1266
cp_r ( & work. join ( & format ! ( "{}-{}" , pkgname( build, "rust-std" ) , target) )
1280
1267
. join ( format ! ( "rust-std-{}" , target) ) ,
1281
1268
& 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" ) ) ;
1288
1269
1289
1270
t ! ( fs:: remove_file( exe. join( "rustc/manifest.in" ) ) ) ;
1290
1271
t ! ( fs:: remove_file( exe. join( "cargo/manifest.in" ) ) ) ;
1291
1272
t ! ( fs:: remove_file( exe. join( "rust-docs/manifest.in" ) ) ) ;
1292
1273
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" ) ) ) ;
1295
1274
1296
1275
if target. contains ( "windows-gnu" ) {
1297
1276
t ! ( fs:: create_dir_all( exe. join( "rust-mingw" ) ) ) ;
@@ -1365,26 +1344,6 @@ impl Step for Extended {
1365
1344
. arg ( "-dr" ) . arg ( "Std" )
1366
1345
. arg ( "-var" ) . arg ( "var.StdDir" )
1367
1346
. 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" ) ) ) ;
1388
1347
if target. contains ( "windows-gnu" ) {
1389
1348
build. run ( Command :: new ( & heat)
1390
1349
. current_dir ( & exe)
@@ -1408,8 +1367,6 @@ impl Step for Extended {
1408
1367
. arg ( "-dDocsDir=rust-docs" )
1409
1368
. arg ( "-dCargoDir=cargo" )
1410
1369
. arg ( "-dStdDir=rust-std" )
1411
- . arg ( "-dRlsDir=rls" )
1412
- . arg ( "-dAnalysisDir=rust-analysis" )
1413
1370
. arg ( "-arch" ) . arg ( & arch)
1414
1371
. arg ( "-out" ) . arg ( & output)
1415
1372
. arg ( & input) ;
@@ -1427,8 +1384,6 @@ impl Step for Extended {
1427
1384
candle ( "DocsGroup.wxs" . as_ref ( ) ) ;
1428
1385
candle ( "CargoGroup.wxs" . as_ref ( ) ) ;
1429
1386
candle ( "StdGroup.wxs" . as_ref ( ) ) ;
1430
- candle ( "RlsGroup.wxs" . as_ref ( ) ) ;
1431
- candle ( "AnalysisGroup.wxs" . as_ref ( ) ) ;
1432
1387
1433
1388
if target. contains ( "windows-gnu" ) {
1434
1389
candle ( "GccGroup.wxs" . as_ref ( ) ) ;
@@ -1451,8 +1406,6 @@ impl Step for Extended {
1451
1406
. arg ( "DocsGroup.wixobj" )
1452
1407
. arg ( "CargoGroup.wixobj" )
1453
1408
. arg ( "StdGroup.wixobj" )
1454
- . arg ( "RlsGroup.wixobj" )
1455
- . arg ( "AnalysisGroup.wixobj" )
1456
1409
. current_dir ( & exe) ;
1457
1410
1458
1411
if target. contains ( "windows-gnu" ) {
@@ -1537,7 +1490,6 @@ impl Step for HashSign {
1537
1490
cmd. arg ( today. trim ( ) ) ;
1538
1491
cmd. arg ( build. rust_package_vers ( ) ) ;
1539
1492
cmd. arg ( build. package_vers ( & build. release_num ( "cargo" ) ) ) ;
1540
- cmd. arg ( build. package_vers ( & build. release_num ( "rls" ) ) ) ;
1541
1493
cmd. arg ( addr) ;
1542
1494
1543
1495
t ! ( fs:: create_dir_all( distdir( build) ) ) ;
0 commit comments