Commits on Source (27)
-
-
Caleb Connolly authored
No reason to handle abuild separately here. Signed-off-by:
Caleb Connolly <caleb@postmarketos.org>
-
Caleb Connolly authored
Ensure we get our fork of apk straight away without having to run `apk upgrade -a` immediately afterwards. Signed-off-by:
Caleb Connolly <caleb@postmarketos.org>
-
Caleb Connolly authored
Let us install packages without announcing. Useful if there is some more contextual message display already. Signed-off-by:
Caleb Connolly <caleb@postmarketos.org>
-
Caleb Connolly authored
We might have just built some other package which will later be used to build more packages. Handle all of them and don't special case abuild. Signed-off-by:
Caleb Connolly <caleb@postmarketos.org>
-
Caleb Connolly authored
If you build a package with --src but some dep is outdated, force you to build it (or otherwise handle the situation yourself). We can't guess what to do here. This could be made configurable (opt-in) in the future. Signed-off-by:
Caleb Connolly <caleb@postmarketos.org>
-
Caleb Connolly authored
In ("build: special case building abuild (MR 2356)") we tried to ensure that abuild would be built before anything else, however this implementation failed miserably if the first package given didn't actually need to be built (since we skip building deps of packages that aren't flagged for build). Let's take a different stab at this by actually inserting build_packages into the build queue if they need building. They're inserted at the end just before the queue is reversed, so they will always be built first. This makes the order of pmb.config.build_packages important, enshrine this with a comment. Signed-off-by:
Caleb Connolly <caleb@postmarketos.org>
-
Caleb Connolly authored
If you init and set a custom work dir it will not be relative to pmaports anymore. Detect this and reset config.aports to be relative to the new workdir. Fixes #2406 Signed-off-by:
Caleb Connolly <caleb@postmarketos.org>
-
Caleb Connolly authored
Was left in for debugging Signed-off-by:
Caleb Connolly <caleb@postmarketos.org>
-
This was missed in fc010bc7 Before this fix: ``` ... [18:34:35] Enable background timer to prevent repeated sudo authorization? (y/n) [n]: y (020272) [18:34:44] ERROR: 'Config' object has no attribute 'mirrors_postmarketos' (020272) [18:34:44] See also: <https://postmarketos.org/troubleshooting> (020272) [18:34:44] Traceback (most recent call last): File "/home/arnavion/src/pmbootstrap/pmb/__init__.py", line 72, in main return config_init.frontend(args) ^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/home/arnavion/src/pmbootstrap/pmb/config/init.py", line 729, in frontend ask_for_additional_options(config) File "/home/arnavion/src/pmbootstrap/pmb/config/init.py", line 542, in ask_for_additional_options logging.info("Selected mirror:" f" {','.join(context.config.mirrors_postmarketos)}") ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/home/arnavion/src/pmbootstrap/pmb/core/config.py", line 130, in __getattribute__ return super().__getattribute__(key) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ AttributeError: 'Config' object has no attribute 'mirrors_postmarketos' ```
-
- Change some arguments' types to bool to avoid type mismatch errors after refactoring in the future - Add more arguments from parse/arguments with corresponding types - Change type of pmbootstrap log --lines argument to int
-
Tweaked-By:
Oliver Smith <ollieparanoid@postmarketos.org>
-
Oliver Smith authored
-
Oliver Smith authored
Now that we have target-version = "py310" in [tool.ruff] in pyproject.toml, ruff check complains about using typing.Optional and typing.Union instead of newer syntax. Run the tool to fix it.
-
Oliver Smith authored
-
Oliver Smith authored
Manual fixes for things that ruff didn't fix automatically. From python3 docs: > Union[X, Y] is equivalent to X | Y and means either X or Y.
-
Oliver Smith authored
-
Oliver Smith authored
When selecting a different mirror in "pmbootstrap init", then select the systemd mirror as well. It will always be the normal postmarketOS mirror plus some path appended. Currently it is the path for the staging repository, this will change when the systemd changes are merged to pmaports master and bpo can build it. I'll adjust this before we release pmbootstrap v3. I have considered changing the code so that we don't store a separate systemd mirror in the config. But I think it's useful to be able to point to systemd mirrors with different paths for debugging purposes, and also it would make the logic more complex once we re-introduce support for multiple mirrors of the same type for bpo. So I've intentionally kept that part as-is.
-
Oliver Smith authored
We have decided to let the user generate a pmbootstrap_v3.cfg file instead of attempting to automatically migrate the file. This way we don't need to worry about potential migration bugs and users can also temporarily go back to v2 to compare behavior with v3 without problems. Remove migration logic related to mirror_alpine and mirrors_postmarketos, before I add support for using multiple repositories with these again (as needed for bpo). This reduces complexity and removes a note about "multiple mirrors are not supported" that won't be valid anymore.
-
Oliver Smith authored
-
Oliver Smith authored
Allow setting _custom mirrors in the config: * alpine_custom * pmaports_custom * systemd_custom When these are set, they are added to /etc/apk/repositories before real repositories. This is used by bpo to build packages with a WIP repository enabled, in addition to the final repository. All mirrors can also be set to "none" to be disabled. This is important for bootstrapping from pure Alpine without any binary repository, and the bpo testsuite also uses this. I've discussed with Caleb whether to name it _wip instead of _custom, but the latter is more generic and people may also use this for other use cases than the bpo wip repository thing.
-
Oliver Smith authored
Let's write all new documentation in markdown, and convert existing ones at some point. I think we are all much more familiar with markdown than with the rst format.
-
Oliver Smith authored
-
Iuri Jikidze authored
-
Oliver Smith authored
Fix writing config options that are stored as CSV-list. Without this patch: $ pmbootstrap config aports /tmp/pmaports [23:43:58] Config changed: aports='/tmp/pmaports' $ pmbootstrap config aports [PosixPath('/'), PosixPath('t'), PosixPath('m'), PosixPath('p'), PosixPath('/'), PosixPath('p'), PosixPath('m'), PosixPath('a'), PosixPath('p'), PosixPath('o'), PosixPath('r'), PosixPath('t'), PosixPath('s')] Storing strings as CSV list isn't great and we probably want to implement this more elegantly, see the related issue. But let's fix this first. Related: pmbootstrap issue 2412
-
Caleb Connolly authored
Bail on empty build queue after checking if build_packages need building. So if apk-tools / alpine-base / etc are outdated but nothing else is they'll still be built. Signed-off-by:
Caleb Connolly <caleb@postmarketos.org>
Showing
- .ci/docs.sh 2 additions, 1 deletion.ci/docs.sh
- .ci/vermin.sh 1 addition, 1 deletion.ci/vermin.sh
- README.md 2 additions, 2 deletionsREADME.md
- docs/conf.py 2 additions, 0 deletionsdocs/conf.py
- docs/index.rst 1 addition, 0 deletionsdocs/index.rst
- docs/mirrors.md 45 additions, 0 deletionsdocs/mirrors.md
- docs/usage.rst 2 additions, 2 deletionsdocs/usage.rst
- pmb/__init__.py 9 additions, 2 deletionspmb/__init__.py
- pmb/build/_package.py 44 additions, 12 deletionspmb/build/_package.py
- pmb/build/autodetect.py 3 additions, 3 deletionspmb/build/autodetect.py
- pmb/build/init.py 6 additions, 3 deletionspmb/build/init.py
- pmb/chroot/apk.py 3 additions, 2 deletionspmb/chroot/apk.py
- pmb/chroot/init.py 4 additions, 18 deletionspmb/chroot/init.py
- pmb/commands/__init__.py 1 addition, 1 deletionpmb/commands/__init__.py
- pmb/commands/repo_bootstrap.py 1 addition, 2 deletionspmb/commands/repo_bootstrap.py
- pmb/config/__init__.py 3 additions, 1 deletionpmb/config/__init__.py
- pmb/config/file.py 0 additions, 18 deletionspmb/config/file.py
- pmb/config/init.py 14 additions, 3 deletionspmb/config/init.py
- pmb/config/pmaports.py 1 addition, 2 deletionspmb/config/pmaports.py
- pmb/config/sudo.py 1 addition, 2 deletionspmb/config/sudo.py
docs/mirrors.md
0 → 100644