-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
If repo path for any package under extern dependencies is left empty it would throw an error. If unsupported architecture is provided in multilib it would throw an error. These issues are handeled in this commit. Sanity check is added for eextgen in eext.yaml file. - Check added to catch empty repo paths for a package in yaml:"external-dependencies" - Check added to catch unsupported architectures in yaml:"multilib" Fixes: BUG1001386
- Loading branch information
1 parent
7374f58
commit c0db5e4
Showing
4 changed files
with
68 additions
and
1 deletion.
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
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,20 @@ | ||
--- | ||
package: | ||
- name: openssl | ||
upstream-sources: | ||
- source-bundle: | ||
name: srpm | ||
override: | ||
version: 3.0.7-27.el9 | ||
type: srpm | ||
build: | ||
repo-bundle: | ||
- name: el9 | ||
dependencies: | ||
all: | ||
- crypto-policies | ||
- openssl3-fips | ||
eextgen: | ||
external-dependencies: | ||
crypto-policies: | ||
openssl3-fips: code.arista.io/eos/eext/openssl3-fips/ |
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,23 @@ | ||
--- | ||
package: | ||
- name: openssl | ||
upstream-sources: | ||
- source-bundle: | ||
name: srpm | ||
override: | ||
version: 3.0.7-27.el9 | ||
type: srpm | ||
build: | ||
repo-bundle: | ||
- name: el9 | ||
dependencies: | ||
all: | ||
- crypto-policies | ||
- openssl3-fips | ||
eextgen: | ||
multilib: | ||
aarch64: | ||
other-arch: | ||
patterns: | ||
- "openssl-devel*.rpm" | ||
remove: True |