forked from pulp/pulpcore
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merged PR 6563359: Python and file content support
This PR adds support for two new types of content: Python packages and files. Each can be managed by Pulp. For right now, I am referring to file content (e.g. [the clamav signatures](https://packages.microsoft.com/clamav/)) with the name `FilePackage` to be consistent with the other types of content we offer (RpmPackage, PythonPackage, DebPackage). I'm not totally happy with this name but there are two arguments for it: 1. It keeps things consistent/easy/simple 2. We (the pmc team) will probably be the only ones to manage file content so the name doesn't matter too much IMO That said, I'm open to suggestion for how to name things. Here are some examples of where/how this name manifests: ``` # schemas RpmPackageResponse DebPackageResponse PythonPackageResponse FilePackageResponse ? # api endpoints /rpm/packages/ /python/packages/ /python/packages/ /file/packages/ ? # cli commands pmc package rpm list pmc package deb list pmc package python list pmc package file list ? ``` Related work items: #15206527
- Loading branch information
1 parent
757cb21
commit 09bb29e
Showing
23 changed files
with
445 additions
and
129 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 |
---|---|---|
@@ -1 +1,2 @@ | ||
tests/settings.toml | ||
dist |
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
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
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
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
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 @@ | ||
world |
Binary file not shown.
Binary file not shown.
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
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
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
Oops, something went wrong.