-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
45 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
<table> | ||
<tr><td> Title </td><td> Hosting repodata.json and packages separately by adding a base_url property. </td> | ||
<tr><td> Status </td><td> Draft </td></tr> | ||
<tr><td> Author(s) </td><td> Daniel Holth <[email protected]></td></tr> | ||
<tr><td> Created </td><td> Aug 24, 2023</td></tr> | ||
<tr><td> Updated </td><td> Aug 24, 2023</td></tr> | ||
<tr><td> Discussion </td><td> </td></tr> | ||
<tr><td> Implementation </td><td> </td></tr> | ||
</table> | ||
|
||
## Abstract | ||
|
||
Conda packages need to be stored in the same directory as repodata.json. | ||
|
||
This can be inconvenient especially when generating alternative repodata.json for the same set of packages. | ||
|
||
## Specification | ||
|
||
A minimal `repodata.json` looks like this. | ||
|
||
``` | ||
{"info": {"subdir": "linux-64"}, | ||
"packages": {}, | ||
"packages.conda": {"package-name.conda":{...}}, | ||
"removed": [], | ||
"repodata_version": 1} | ||
``` | ||
|
||
Add `base_url` to the `info` object. | ||
|
||
``` | ||
{"info": {"subdir": "...", "base_url":"https://repo.anaconda.com/repo/main/linux-64/"}, | ||
"packages": {}, | ||
"packages.conda": {"package-name.conda":{...}}, | ||
"removed": [], | ||
"repodata_version": 1} | ||
``` | ||
|
||
Append `base_url` and `package-name.conda` when downloading a package. | ||
|
||
`base_url` can be an absolute or a relative URL. | ||
|
||
## Copyright | ||
|
||
All CEPs are explicitly [CC0 1.0 Universal](https://creativecommons.org/publicdomain/zero/1.0/). |