<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/xhtml; charset=utf-8">
</head>
<body><div style="font-family: sans-serif;"><div class="markdown" style="white-space: normal;">
<p dir="auto">Thanks Jim, that’s a very well phrased summary!</p>
<p dir="auto">Duncan,</p>
</div><div class="plaintext" style="white-space: normal;"><blockquote style="margin: 0 0 5px; padding-left: 5px; border-left: 2px solid #777777; color: #777777;"><p dir="auto">So when I install R using the MacOS installer, where should it be installed, and where should it install packages?</p>
</blockquote></div>
<div class="markdown" style="white-space: normal;">
<p dir="auto">There is only one place the official CRAN installer will install things into which is <code style="margin: 0 0; padding: 0 0.25em; border-radius: 3px; background-color: #F7F7F7;">/Library/Frameworks/R.framework</code>.<br>
However, the proposal is not about the install location of <em>R</em> or <em>R.app</em> (which resides in <code style="margin: 0 0; padding: 0 0.25em; border-radius: 3px; background-color: #F7F7F7;">/Applications/R.app</code>) but about base and recommended packages (which go into the “system lib”) and “other” packages.</p>
</div><div class="plaintext" style="white-space: normal;"><blockquote style="margin: 0 0 5px; padding-left: 5px; border-left: 2px solid #777777; color: #777777;"><p dir="auto">The installer also installs two kinds of R packages:  base and recommended ones.  Base packages are closely tied to the internals and can't be updated without updating everything, so it makes sense to install them in the system library if R itself is going there.</p>
</blockquote></div>
<div class="markdown" style="white-space: normal;">
<p dir="auto">Both base and recommended packaged are placed in <code style="margin: 0 0; padding: 0 0.25em; border-radius: 3px; background-color: #F7F7F7;">/Library/Frameworks/R.framework/Resources/library</code>.<br>
And yes, base packages should not be touched while recommended packages can be. Yet, the discussion is not about these two but about the location where all other packages go into which the user install <em>after</em> R has been installed.</p>
</div><div class="plaintext" style="white-space: normal;"><blockquote style="margin: 0 0 5px; padding-left: 5px; border-left: 2px solid #777777; color: #777777;"><p dir="auto">But what about recommended packages?  They are contributed packages, and they are often updated between R releases.  Should they go by default into a user library?</p>
</blockquote></div>
<div class="markdown" style="white-space: normal;">
<p dir="auto">Recommended packages can live in both system and user library. If a user library exists, the package instance within the user library will be loaded as it is first in the library path (<code style="margin: 0 0; padding: 0 0.25em; border-radius: 3px; background-color: #F7F7F7;">.libPaths()</code>).</p>
<p dir="auto">One practical issue is that if users upgrade from one minor version to the next (e.g. 4.1 to 4.2), they loose <em>all</em> packages because in this scenario the system lib is overwritten. One could argue that this is needed as packages are not compatible between minor versions anyhow (which is true) but this is not the overall/actual point: actually “the point” is manifold:</p>
<ul>
<li>prevent users from accidentally deleting/interacting with base and recommended packages</li>
<li>prompt the creation of a user lib by default by not allowing unauthorized (sudo) write actions into the system lib</li>
<li>align the overall experience/flow with R on Linux and by this reduce confusion for users</li>
<li>retain user packages for a specific minor version between minor version upgrades and by this simplify the existence of multiple R versions side-by-side (this would even open the door for multiple R patch versions of the same minor side by side, which is not officially supported by the CRAN installer for macOS but only possible with tools like <a href="https://rud.is/rswitch/" style="color: #3983C4;">RSwitch</a> or <a href="https://rcli.pat-s.me/" style="color: #3983C4;">rcli</a>)</li>
</ul>
<p dir="auto">On the flip side I am having a hard time to fine arguments which would speak against the change. What I took away so far from Simon’s replies (and apologies if I am wrong here) was mainly along the lines of</p>
<ul>
<li>makes admin work easier (I don’t understand this point)</li>
<li>local admin users should be able to write into directories owned by <code style="margin: 0 0; padding: 0 0.25em; border-radius: 3px; background-color: #F7F7F7;">admin</code> (yes and I am not voting against this, but they should use explicitly authenticate with <code style="margin: 0 0; padding: 0 0.25em; border-radius: 3px; background-color: #F7F7F7;">sudo</code>)</li>
<li>a bit of “it has been like this since XY, let’s keep it like this” (apologies if I misinterpreted this potentially :))</li>
</ul>
<p dir="auto">There are additional things which could be simplified WRT to the macOS CRAN installer (e.g. the addition of the option to change the root install location to allow for other install locations than <code style="margin: 0 0; padding: 0 0.25em; border-radius: 3px; background-color: #F7F7F7;">/Library/Frameworks/R.framework/Resources/library</code> which would allow the installation of multiple R patch versions side-by-side) but this is clearly a separate discussion.</p>
<p dir="auto">I am happy to see that more people are joining the discussion and I would also happy to create an official proposal for such a change (if this is required and backed up by more people than just myself).</p>
<p dir="auto">Cheers<br>
Patrick</p>
<p dir="auto">On 2 May 2022, at 20:00, Duncan Murdoch wrote:</p>
</div><div class="plaintext" style="white-space: normal;"><blockquote style="margin: 0 0 5px; padding-left: 5px; border-left: 2px solid #777777; color: #777777;"><p dir="auto">On 02/05/2022 1:08 p.m., Jim Hester wrote:</p>
<blockquote style="margin: 0 0 5px; padding-left: 5px; border-left: 2px solid #777777; border-left-color: #999999; color: #999999;"><p dir="auto">I agree with Patrick that if the macOS behavior was more like the
<br>
default on linux it would benefit most users on macOS. His proposal to
<br>
change the group writability of the system library seems a good one to
<br>
me.</p>
<p dir="auto">The current behavior (installing by default into the system library)
<br>
is quite surprising to users when they install a new version of R
<br>
(even just a new patch version) and they lose their entire package
<br>
library. It causes some users to avoid updating R frequently as a
<br>
result.</p>
<p dir="auto">As far as R.app having an option for this, that is good, unfortunately
<br>
many users aren't using R.app, often they are either using R through
<br>
RStudio or using the command line version of R directly. In these
<br>
cases it is not as obvious they could install packages to a user
<br>
library.</p>
</blockquote><p dir="auto">I think migrating packages is something the installer could do.</p>
<p dir="auto">I'm not sure I understand the details of the proposed change.  I'm in the admin group on my laptop, because I'm the only user.  So when I install R using the MacOS installer, where should it be installed, and where should it install packages?</p>
<p dir="auto">I would find it strange if the installer wanted to install R.app anywhere but the system /Applications folder.  That's where almost everything else I use gets installed.</p>
<p dir="auto">The installer also installs two kinds of R packages:  base and recommended ones.  Base packages are closely tied to the internals and can't be updated without updating everything, so it makes sense to install them in the system library if R itself is going there.</p>
<p dir="auto">But what about recommended packages?  They are contributed packages, and they are often updated between R releases.  Should they go by default into a user library?</p>
<p dir="auto">Duncan Murdoch</p>
<blockquote style="margin: 0 0 5px; padding-left: 5px; border-left: 2px solid #777777; border-left-color: #999999; color: #999999;"><p dir="auto">Jim</p>
<p dir="auto">On Sun, May 1, 2022 at 9:12 AM Duncan Murdoch <murdoch.duncan@gmail.com> wrote:</p>
<blockquote style="margin: 0 0 5px; padding-left: 5px; border-left: 2px solid #777777; border-left-color: #BBBBBB; color: #BBBBBB;"><p dir="auto">On 30/04/2022 2:58 p.m., Patrick Schratz wrote:</p>
<blockquote style="margin: 0 0 5px; padding-left: 5px; border-left: 2px solid #777777; border-left-color: #BBBBBB; color: #BBBBBB;"><p dir="auto">     They don't go there "silently" as in unnoticed - they go there if
<br>
     you instruct R to do so. That's why there is an explicit choice in
<br>
     the Installer. Otherwise regular R rules apply.</p>
<p dir="auto">Where is this choice in the installer? I don’t see a menu/setting which
<br>
users could change to install packages into a user lib instead of the
<br>
system lib (if they are part of the |admin| group).
<br>
To me, they go there if the lib is writable - and “the common” R user
<br>
does not know that the system lib is writeable by default.</p>
</blockquote><p dir="auto">I think Simon is talking about the package installer in R.app and you
<br>
are talking about the installer for R itself.  The package installer
<br>
dialog in R.app has a pretty clear section called Install Location.</p>
<p dir="auto">Duncan Murdoch</p>
<blockquote style="margin: 0 0 5px; padding-left: 5px; border-left: 2px solid #777777; border-left-color: #BBBBBB; color: #BBBBBB;"><p dir="auto">     It only does so for admin users. Unlike "managed" unix systems, on
<br>
     macOS you have essentially two situations:</p>
<p dir="auto">     On a "personal" machine (like laptop) the user is the main user and
<br>
     admin. Therefore it makes a lot more sense for the user to use a
<br>
     single location for managing packages which is at the system level.
<br>
     This also allows easy R upgrades. In addition, locations in user
<br>
     home raise a lot of issues (see the various discussion where this
<br>
     bites people on Windows) due to interactions with software that does
<br>
     mirroring, backups etc.. Hence this approach "just works" as one
<br>
     would expect on a Mac.</p>
<p dir="auto">To be clear: I don’t question the system-wide installation and I think
<br>
this is good as is (this also happens on Linux).
<br>
I am questioning the group write permissions for the system lib.</p>
<p dir="auto">     If the user wishes to use his/her private library, it is trivial -
<br>
     just click on "At User Level" and from then on all packages are
<br>
     managed user's local library just like on any other platform.</p>
<p dir="auto">I might be missing something obvious but where is this option “at the
<br>
user level”? I assumed you’re talking about the official |.dmg|
<br>
installer - which does not have such an option AFAICS?</p>
<p dir="auto">     On a "managed" Mac the user is not an admin and therefore the
<br>
     behavior makes no difference. The status quo just makes it easier
<br>
     for admins to manage the shared library, but in reality this doesn't
<br>
     matter as one would assume the admins know what they are doing.</p>
<p dir="auto">I disagree on this, especially the point “makes it easier for admins to
<br>
manage the shared library”.
<br>
Admins should (and will) always be able to manage the system lib /after/
<br>
authenticating (as on Linux). The authentication step does not really
<br>
make a difference in practice for admins and is required in almost all
<br>
places where system-wide changes are desired.</p>
<p dir="auto">This is also the /core/ of the whole discussion: 775 vs 755 (WRT to
<br>
directory permissions).
<br>
I don’t see any (strong) reason that would result in 775 > 755.
<br>
(If so, then the default should probably also be changed on Linux.)
<br>
In a previous message, Kevin Ushey also agreed on the point that
<br>
explicit authorization should be required to write into the system lib.
<br>
I assume there might be many more people who would actually agree on
<br>
this 755 being preferable in this situation.
<br>
How can a proposal be phrased to reconsider this setting that is
<br>
evaluated by a representative group of people?
<br>
I am not claiming to be right but I’d be interested in a multi-person
<br>
evaluation of this setting rather than keeping this at a
<br>
person-to-person discussion level.</p>
<p dir="auto">     Well, having administered company-wide R installations in large
<br>
     companies for almost two decades I'd strongly disagree. As an admin
<br>
     you want as few user-installed packages as possible, because they
<br>
     are guaranteed to cause problems. You want to limit this for things
<br>
     like development of packages where you want the stable version
<br>
     globally and development version locally (and this is not just me -
<br>
     have a look how the top tech companies manage their software). You
<br>
     have a reliable, stable central location - if you don't do that then
<br>
     you'll have n libraries to manage for n users which is absolutely
<br>
     not sustainable as users will break their libraries and you cannot
<br>
     even upgrade R. Also having a central, shared library is crucial for
<br>
     collaboration. Unlike in Python in R it actually works since R and
<br>
     CRAN doesn't allow randomly breaking reverse-dependencies.</p>
<p dir="auto">As a system engineer and admin myself (for several “large”
<br>
companies/institutions), I kindly disagree on your view here.
<br>
User packages are not a problem but /a feature/, everyone can install
<br>
the versions they need for their project.
<br>
They don’t interfere with packages from other users and are not forced
<br>
go with the update interval of an admin.
<br>
With the additional use of renv (thanks Kevin!), redundancy is highly
<br>
reduced as a shared cache can be used from with users can simply use
<br>
symlinks rather than installing the x-th copy of the same R package
<br>
version. But this is partly off-topic WRT to the actual discussion.</p>
<p dir="auto">Overall this sub-discussion part might come down to the philosophy of
<br>
having a “centrally managed, unflexible admin installation” or a
<br>
“centrally managed, partly-flexible admin installation” where only the R
<br>
versions and system libs are managed but users have the freedom to
<br>
install any R packages they want.
<br>
Also in “my” philosophy, it’s not about “upgrading” R and removing the
<br>
previous version but adding new versions as they come in and keeping
<br>
previous ones - for the purpose of reproducibility.
<br>
I usually keep the latest patch version of a minor version and aim to
<br>
provide a consistent R environment for various minor versions where
<br>
users are guaranteed to be able to work with that minor version in a
<br>
flexible way (i.e. by installing user packages as they want) for many
<br>
years ahead.</p>
<p dir="auto">     As mentioned before and above I disagree. The proposal doesn't
<br>
     matter for managed Macs but would negatively affect users that are
<br>
     single-user admins and since that is typically the case for the
<br>
     majority of Mac R users (as they typically are on their personal
<br>
     machines) I don't see any upshot. All it would do is to prevent
<br>
     typical R users to install packages directly.</p>
<p dir="auto">How would it affect single-user admins in a negative way?
<br>
They can</p>
<p dir="auto">   * still install packages per R minor version into a dedicated user library
<br>
   * install multiple R minor versions side by side
<br>
   * actually enjoy the same behavior as on Linux</p>
<p dir="auto">     All it would do is to prevent typical R users to install packages
<br>
     directly.</p>
<p dir="auto">I don’t understand this point. It would behave similar as on Linux,
<br>
where users are prompted to create a user library (on first use and if
<br>
non exists yet).</p>
<p dir="auto">As you can see, the overall discussion topic is quite important to me
<br>
and I am still convinced that the current state on macOS is suboptimal.
<br>
Thanks for your time and sharing your thoughts.</p>
<p dir="auto">Cheers
<br>
Patrick</p>
<p dir="auto">On 25 Apr 2022, at 1:46, Simon Urbanek wrote:</p>
<p dir="auto">     Patrick,</p>
<p dir="auto">     sorry fo the delayed reply - this was not a quick e-mail so I had to
<br>
     find time after the release :)</p>
<p dir="auto">         On Apr 3, 2022, at 8:26 PM, Patrick Schratz
<br>
         <patrick.schratz@gmail.com> wrote:</p>
<p dir="auto">         Hi Simon,</p>
<p dir="auto">         thanks for your extensive reply.</p>
<p dir="auto">         The choice is deliberate: the admin group on macOS corresponds
<br>
         to users that are allowed to install system-wide software so it
<br>
         allows all admins on the machine to install packages which is
<br>
         the expected way on macOS.</p>
<p dir="auto">         I think this choice is unfortunate as it contrasts with existing
<br>
         behavior on other platforms where one needs to explicitly
<br>
         request admin privileges by either using sudo or starting R as
<br>
         an admin.
<br>
         On macOS, packages just go into the system lib “silently”
<br>
         because of the write permissions granted via the admin group.
<br>
         See also my comments further down for more details on this.</p>
<p dir="auto">     They don't go there "silently" as in unnoticed - they go there if
<br>
     you instruct R to do so. That's why there is an explicit choice in
<br>
     the Installer. Otherwise regular R rules apply.</p>
<p dir="auto">         Also the versioning of the R framework as x.y is also deliberate
<br>
         - upgrading R to a new patch version does *not* require
<br>
         re-installation of packages, they work by design so in fact the
<br>
         system location is the safest way to do that. Also note that
<br>
         packages are never removed by the installer.</p>
<p dir="auto">         Thanks, I am aware that a patch update does not require a
<br>
         reinstallation as the packages are functional across minor versions.</p>
<p dir="auto">         I checked again and was indeed wrong, patch updates from the
<br>
         CRAN installer do not remove additional custom packages in the
<br>
         system lib.
<br>
         I was confused by some custom approaches of mine which cause
<br>
         this behavior - sorry for this!</p>
<p dir="auto">         So out of the items listed in "The problem" they are all not
<br>
         true with the exception of the comparison with the other
<br>
         platforms, but even that difference is very subtle as it only
<br>
         affects the default on the first installation and not regular
<br>
         use (and I'm, not even sure it that is true since admin users
<br>
         can still install in the system location on other platforms).</p>
<p dir="auto">         On Linux you would need to do explicitly invoke sudo R to allow
<br>
         writing into the system lib.
<br>
         The issue on macOS is that a regular start of R allows system
<br>
         lib write permissions.
<br>
         In my current view I think a similar behavior as on Linux would
<br>
         be great, i.e. to explicitly having to request admin privileges
<br>
         for this task.</p>
<p dir="auto">     It only does so for admin users. Unlike "managed" unix systems, on
<br>
     macOS you have essentially two situations:</p>
<p dir="auto">     On a "personal" machine (like laptop) the user is the main user and
<br>
     admin. Therefore it makes a lot more sense for the user to use a
<br>
     single location for managing packages which is at the system level.
<br>
     This also allows easy R upgrades. In addition, locations in user
<br>
     home raise a lot of issues (see the various discussion where this
<br>
     bites people on Windows) due to interactions with software that does
<br>
     mirroring, backups etc.. Hence this approach "just works" as one
<br>
     would expect on a Mac. If the user wishes to use his/her private
<br>
     library, it is trivial - just click on "At User Level" and from then
<br>
     on all packages are managed user's local library just like on any
<br>
     other platform.</p>
<p dir="auto">     On a "managed" Mac the user is not an admin and therefore the
<br>
     behavior makes no difference. The status quo just makes it easier
<br>
     for admins to manage the shared library, but in reality this doesn't
<br>
     matter as one would assume the admins know what they are doing.</p>
<p dir="auto">         I don’t understand the part “as it only affects the default on
<br>
         the first installation and not regular use” of your reply -
<br>
         could you clarify this?
<br>
         Unless a user creates a user lib manually, packages will always
<br>
         go into the system lib - not only on first use - but I might be
<br>
         misunderstanding your comment here.</p>
<p dir="auto">         I would argue that the current setup tends to be a lot safer
<br>
         than the alternatives, because it allows commonly used packages
<br>
         to be installed at the system level and private packages to be
<br>
         installed at user level. This is also the design typically used
<br>
         on shared machines, where you separate local packages from user
<br>
         packages where local ones are installed by administrators - so
<br>
         exactly the same setup. Moreover R upgrades are a lot cleaner,
<br>
         since you can easily upgrade all system packages at once so you
<br>
         don't have to worry about individual users having stale packages
<br>
         - the biggest problem for admins.</p>
<p dir="auto">         Yes and no.
<br>
         Sometimes system admins want to install certain packages
<br>
         globally - however, I never do so for the following reason:
<br>
         Often this will lead to multiple package installations, i.e. one
<br>
         in the syslib and one in the user lib (if the user installs the
<br>
         package again for some reason which quite often happens).
<br>
         Often these duplicated packages will have different versions and
<br>
         users are confused which one is actually loaded (the user lib
<br>
         one is as it is first in the path).</p>
<p dir="auto">         Aside from this practical point, Macs are rarely used in a
<br>
         shared way.
<br>
         And even if, I’d highly favor having to request write
<br>
         permissions into the syslib rather it happening by default.</p>
<p dir="auto">         Imagine a scenario where the admin of a shared Mac constantly
<br>
         writes into the syslib (because this is the default). This
<br>
         syslib is then also used by other non-admin users on the system.
<br>
         I don’t think this is a desired scenario and might cause lot’s
<br>
         of confusion (not even mentioning the fact if all people in this
<br>
         scenario are aware what’s going on given that this is a niche
<br>
         topic).
<br>
         Here I think a one-time central installation of R and then only
<br>
         working with user libs (as on Linux) would be preferable.</p>
<p dir="auto">     Well, having administered company-wide R installations in large
<br>
     companies for almost two decades I'd strongly disagree. As an admin
<br>
     you want as few user-installed packages as possible, because they
<br>
     are guaranteed to cause problems. You want to limit this for things
<br>
     like development of packages where you want the stable version
<br>
     globally and development version locally (and this is not just me -
<br>
     have a look how the top tech companies manage their software). You
<br>
     have a reliable, stable central location - if you don't do that then
<br>
     you'll have n libraries to manage for n users which is absolutely
<br>
     not sustainable as users will break their libraries and you cannot
<br>
     even upgrade R. Also having a central, shared library is crucial for
<br>
     collaboration. Unlike in Python in R it actually works since R and
<br>
     CRAN doesn't allow randomly breaking reverse-dependencies.</p>
<p dir="auto">          From a technical perspective, I know that setting root:root on
<br>
         macOS is not possible. My proposed change to 755 (and leaving
<br>
         root:admin) would however exactly mimic this (and the one of
<br>
         Linux installs) behavior:</p>
<p dir="auto">         • admins would need to do sudo R to install into the system library
<br>
         • otherwise they are prompted to create a user library
<br>
         Which downsides would this approach have? Currently I don’t see
<br>
         any. It would even harmonize CRAN installer behavior across
<br>
         platforms.</p>
<p dir="auto">         I'd be happy to hear from more Mac user if there are reasons to
<br>
         change the default, but as I outlined the choices were
<br>
         deliberate after weighting the pros and cons. In my view the
<br>
         major issue with the proposal it that is would prevent sharing
<br>
         of packages, make R upgrades a lot harder and prevent admin
<br>
         users from using the current tools for package management - and
<br>
         that includes the ability to separate system and user packages
<br>
         on single-user machines.</p>
<p dir="auto">         I’ll try to vision the practical changes of this:</p>
<p dir="auto">         • Patch update experience would not change as custom packages
<br>
         will be in the user lib for the respective minor version (by
<br>
         default)
<br>
         • Admins are still able to install into the system lib when
<br>
         using sudo R
<br>
         • AFAICS admins will still be able to separate system and user
<br>
         packages as they can use sudo R for syslib installs. To me, the
<br>
         proposed change would even make the behaviour more clear than
<br>
         before (which requires to create a hidden folder (user lib) in
<br>
         the right place to actually use a user lib).
<br>
         Let me know if I overlook something - but currently I don’t see
<br>
         any downside but various positive impacts.</p>
<p dir="auto">     As mentioned before and above I disagree. The proposal doesn't
<br>
     matter for managed Macs but would negatively affect users that are
<br>
     single-user admins and since that is typically the case for the
<br>
     majority of Mac R users (as they typically are on their personal
<br>
     machines) I don't see any upshot. All it would do is to prevent
<br>
     typical R users to install packages directly.</p>
<p dir="auto">         Last, I wanted to ask if the source code for the CRAN installer
<br>
         is publicly available? I could not find it and would be
<br>
         interested to take a look into it. If this is not possible for
<br>
         some reason, I would also be interested in getting to know the
<br>
         reason for this decision.</p>
<p dir="auto">     Everything is in the R SVN, the R build and release system is in
<br>
 <a href="https://svn.r-project.org/R-dev-web/trunk/QA/Simon/R4" style="color: #BBBBBB;">https://svn.r-project.org/R-dev-web/trunk/QA/Simon/R4</a>
<br>
     <<a href="https://svn.r-project.org/R-dev-web/trunk/QA/Simon/R4" style="color: #BBBBBB;">https://svn.r-project.org/R-dev-web/trunk/QA/Simon/R4</a>>
<br>
     and Apple Installer packaging is in
<br>
 <a href="https://svn.r-project.org/R-dev-web/trunk/QA/Simon/R4/packaging" style="color: #BBBBBB;">https://svn.r-project.org/R-dev-web/trunk/QA/Simon/R4/packaging</a>
<br>
     <<a href="https://svn.r-project.org/R-dev-web/trunk/QA/Simon/R4/packaging" style="color: #BBBBBB;">https://svn.r-project.org/R-dev-web/trunk/QA/Simon/R4/packaging</a>>
<br>
     and the relevant postflight script is in
<br>
 <a href="https://svn.r-project.org/R-dev-web/trunk/QA/Simon/R4/packaging/scripts-R-fw/postflight" style="color: #BBBBBB;">https://svn.r-project.org/R-dev-web/trunk/QA/Simon/R4/packaging/scripts-R-fw/postflight</a>
<br>
     <<a href="https://svn.r-project.org/R-dev-web/trunk/QA/Simon/R4/packaging/scripts-R-fw/postflight" style="color: #BBBBBB;">https://svn.r-project.org/R-dev-web/trunk/QA/Simon/R4/packaging/scripts-R-fw/postflight</a>></p>
<p dir="auto">         On Apr 13, 2022, at 8:43 PM, Patrick Schratz
<br>
         <patrick.schratz@gmail.com> wrote:</p>
<p dir="auto">         Related to this Q: Are the macOS CRAN policies actively
<br>
         discussed by a team of people (who might eventually also be
<br>
         willing to share their thoughts or could be addressed with such
<br>
         questions) or are you solely responsible for it?</p>
<p dir="auto">     CRAN is an entire team, so yes, but as for anything Mac-related it
<br>
     includes R-core and other stake holders that have expressed interest
<br>
     before (e.g. Bioconductor). Obviously, this (R-SIG-Mac) is also a
<br>
     good place as that includes anyone who cares about R on macOS.</p>
<p dir="auto">     Cheers,</p>
<p dir="auto">     Simon</p>
<p dir="auto">_______________________________________________
<br>
R-SIG-Mac mailing list
<br>
R-SIG-Mac@r-project.org
<br>
<a href="https://stat.ethz.ch/mailman/listinfo/r-sig-mac" style="color: #BBBBBB;">https://stat.ethz.ch/mailman/listinfo/r-sig-mac</a></p>
</blockquote><p dir="auto">_______________________________________________
<br>
R-SIG-Mac mailing list
<br>
R-SIG-Mac@r-project.org</p>
</blockquote></blockquote></blockquote></div>
<div class="markdown" style="white-space: normal;">
<blockquote style="margin: 0 0 5px; padding-left: 5px; border-left: 2px solid #777777; color: #777777;">
<blockquote style="margin: 0 0 5px; padding-left: 5px; border-left: 2px solid #777777; border-left-color: #999999; color: #999999;">
<blockquote style="margin: 0 0 5px; padding-left: 5px; border-left: 2px solid #777777; border-left-color: #BBBBBB; color: #BBBBBB;">
<p dir="auto"><a href="https://stat.ethz.ch/mailman/listinfo/r-sig-mac" style="color: #BBBBBB;">https://stat.ethz.ch/mailman/listinfo/r-sig-mac</a></p>
</blockquote>
</blockquote>
</blockquote>

</div>
</div>
</body>

</html>