rstudio / packrat

Packrat is a dependency management system for R
http://rstudio.github.io/packrat/
401 stars 89 forks source link

support repository names with commas #620

Closed aronatkins closed 2 years ago

aronatkins commented 3 years ago

This change adds repository name support to lockfile parsing without introducing quoting or escaping. It assumes that URLs may be part of repository names but are unlikely to occur in repository URLs.

This means that a repository value of:

A=B,C,D=E

is interpreted as:

A=B
"C,D"=E

We will need to introduce quoting / escaping if we encounter commas in URLs as well as repository names.

fixes #587