Skip to content

Commit 6f0bf83

Browse files
Wine: Show how to list Windows-only CRAN packages
1 parent d3351ae commit 6f0bf83

File tree

3 files changed

+26
-2
lines changed

3 files changed

+26
-2
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Package: parallelly
2-
Version: 1.46.1-9002
2+
Version: 1.46.1-9003
33
Title: Enhancing the 'parallel' Package
44
Imports:
55
parallel,

inst/WORDLIST

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,7 @@ nproc
134134
ntasks
135135
parallelization
136136
parallelly
137+
parsers
137138
pc
138139
pid
139140
plink

vignettes/parallelly-22-wine-workers.md

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ only on MS Windows.
1818
The below instructions assume that you already have Wine installed.
1919

2020

21-
## Install R for MS Windows 10
21+
## Install R for MS Windows 11
2222

2323
To install R for MS Windows in Wine, first configure Wine to use
2424
Windows 11;
@@ -73,6 +73,8 @@ print(cl)
7373

7474
# Appendix
7575

76+
## Wine and R warnings
77+
7678
It might be that Wine produces warnings like:
7779

7880
```plain
@@ -91,5 +93,26 @@ These are typically harmless. Environment variable setting
9193
`LC_ALL=en_US.UTF-8` the second one.
9294

9395

96+
## Windows-only CRAN packages
97+
98+
A small number of the CRAN packages install only on MS Windows. Here
99+
is how to see which are:
100+
101+
```r
102+
db <- read.dcf(url("https://cran.r-project.org/src/contrib/PACKAGES"))
103+
db <- as.data.frame(db)
104+
win_only <- subset(db, OS_type == "windows")
105+
print(win_only$Package)
106+
```
107+
108+
As of 2026-01-21, this outputs:
109+
110+
```r
111+
[1] "BiplotGUI" "blatr" "excel.link"
112+
[4] "KeyboardSimulator" "MDSGUI" "MediaNews"
113+
[7] "R2PPT" "R2wd" "rFUSION"
114+
[10] "RWinEdt" "spectrino" "taskscheduleR"
115+
```
116+
94117
[R for Windows]: https://cran.r-project.org/bin/windows/base/
95118
[Winetricks]: https://github.com/Winetricks/winetricks

0 commit comments

Comments
 (0)