-
Notifications
You must be signed in to change notification settings - Fork 87
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
asu: allow the usage of branches.yml
It's easier to write and understand. It's now possible to define a file called `branches.yml` containing whatever branch information you'd like. It's loaded from the config option BRANCHES_PATH if defined, if not the internal branches.yml file is used. To stay compatible with existing setups changes only happen if BRANCHES wasn't previously defined, like it would be the case if still added in the config.py Signed-off-by: Paul Spooren <[email protected]>
- Loading branch information
Showing
5 changed files
with
79 additions
and
61 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
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,71 @@ | ||
branches: | ||
'21.02': | ||
enabled: true | ||
extra_keys: [] | ||
extra_repos: {} | ||
git_branch: openwrt-21.02 | ||
name: '21.02' | ||
path: releases/{version} | ||
path_packages: releases/packages-{branch} | ||
pubkey: RWQviwuY4IMGvwLfs6842A0m4EZU1IjczTxKMSk3BQP8DAQLHBwdQiaU | ||
release_date: '2021-08-04' | ||
repos: | ||
- base | ||
- packages | ||
- luci | ||
- routing | ||
- telephony | ||
snapshot: false | ||
updates: features | ||
versions: | ||
- 21.02.3 | ||
- 21.02-SNAPSHOT | ||
|
||
'22.03': | ||
enabled: true | ||
extra_keys: [] | ||
extra_repos: {} | ||
git_branch: openwrt-22.03 | ||
name: '22.03' | ||
path: releases/{version} | ||
path_packages: releases/packages-{branch} | ||
pubkey: RWRNAX5vHtXWFmt+n5di7XX8rTu0w+c8X7Ihv4oCyD6tzsUwmH0A6kO0 | ||
release_date: '2022-09-06' | ||
repos: | ||
- base | ||
- packages | ||
- luci | ||
- routing | ||
- telephony | ||
snapshot: false | ||
updates: features | ||
versions: | ||
- 22.03.0 | ||
- 22.03.0-rc6 | ||
- 22.03-SNAPSHOT | ||
package_changes: | ||
kmod-nft-nat6: | ||
firewall: firewall4 | ||
|
||
SNAPSHOT: | ||
enabled: true | ||
extra_keys: [] | ||
extra_repos: {} | ||
git_branch: master | ||
name: SNAPSHOT | ||
path: snapshots | ||
path_packages: snapshots/packages | ||
pubkey: RWS1BD5w+adc3j2Hqg9+b66CvLR7NlHbsj7wjNVj0XGt/othDgIAOJS+ | ||
repos: | ||
- base | ||
- packages | ||
- luci | ||
- routing | ||
- telephony | ||
snapshot: true | ||
updates: dev | ||
versions: | ||
- SNAPSHOT | ||
package_changes: | ||
kmod-nft-nat6: | ||
firewall: firewall4 |
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 |
---|---|---|
|
@@ -5,6 +5,7 @@ description = "An image on demand server for OpenWrt based distributions" | |
authors = ["Paul Spooren <[email protected]>"] | ||
license = "GPL-2.0" | ||
readme = "README.md" | ||
include = ["asu/branches.yml"] | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.7" | ||
|