aboutsummaryrefslogtreecommitdiff
path: root/bpkg
AgeCommit message (Collapse)AuthorFilesLines
2023-11-02Add support for preserving old package configuration on up/downgrade and ↵Karen Arutyunov6-178/+323
reconfiguration
2023-11-02Fix configuration negotiation machinery to postpone collecting cluster's ↵Karen Arutyunov1-43/+65
existing dependent which is already a dependency in some cluster
2023-11-02Load both user and dependent configurations in (pre-)reevaluate modesKaren Arutyunov5-17/+61
2023-11-02Scratch plan on refinement caused by dependency up/down-grade/drop if any ↵Karen Arutyunov1-2/+5
unsatisfied dependents have been ignored
2023-11-02Fix crash due to dereferencing of available package NULL pointer in trace lambdaKaren Arutyunov1-3/+2
2023-11-02Improve pkg-build's 'unable to upgrade package' diagnosticsKaren Arutyunov7-123/+382
2023-11-02Suppress constraints duplicates when merge build_package objectsKaren Arutyunov1-6/+20
2023-11-02Always postpone 'unable to satisfy constraints' failure in ↵Karen Arutyunov3-206/+300
collect_build_prerequisites() and fix unexpected 'unable to satisfy dependency' failure
2023-11-02Fix collect_build_prerequisites() pre-reevaluation mode to always iterate ↵Karen Arutyunov1-8/+8
through all the depends clauses
2023-11-02Fix configuration negotiation machinery to also save/restore unsatisfied ↵Karen Arutyunov1-6/+53
dependents
2023-11-02Fix pkg-build not to collect repointed dependent recursivelly if its ↵Karen Arutyunov1-25/+70
collection is postponed
2023-10-20Fix 'unordered build' assertion failure due to bug in build_packages::order()Karen Arutyunov3-97/+83
2023-10-19Postpone 'unable to satisfy constraints' failure similar to what we do in ↵Karen Arutyunov3-254/+487
collect_order_dependents()
2023-10-18When print constraints version for multiple packages use per-package printed ↵Karen Arutyunov1-9/+24
constraints sets
2023-10-17Print version constraints recursively in 'unable to satisfy constraints' ↵Karen Arutyunov3-94/+288
diagnostics
2023-10-03Sidestep pkg-build tests bus error on macos/homebrewKaren Arutyunov1-1/+1
2023-09-26Improve 'unable to upgrade package' diagnostics in pkg-buildKaren Arutyunov1-5/+5
2023-09-25Fix configuration negotiation not to compare dependency's config checksums ↵Karen Arutyunov2-34/+55
if collection is postponed
2023-09-25Don't create config cluster for existing dependents in simple casesKaren Arutyunov2-164/+287
2023-09-25Properly re-collect existing packages scheduled for recursive re-collection ↵Karen Arutyunov2-4/+29
even if their collection has been pruned
2023-09-25Fix build_packages::collect_build_postponed() to try to collect bogus ↵Karen Arutyunov1-4/+60
postponements via existing dependent Also add some "big" configuration negotiation tests.
2023-09-25Fix build_packages::collect_build_postponed() to also make snapshots of ↵Karen Arutyunov1-1/+10
replaced_versions
2023-09-25Fix configuration negotiation so that existing dependents with config ↵Karen Arutyunov2-43/+201
clauses are always considered for negotiation
2023-09-25Fix configuration negotiation not to cycle due to existing dependent ↵Karen Arutyunov2-62/+226
re-evaluation failure
2023-09-25In postponed_configuration::merge() also save ids of clusters merged into ↵Karen Arutyunov2-2/+5
cluster being merged from
2023-09-25Scratch plan on refinement caused by dependency up/down-grade/drop if any ↵Karen Arutyunov3-77/+93
configuration negotiation has been performed
2023-09-25Fix configuration negotiation not to yo-yo due to dependency collection ↵Karen Arutyunov3-193/+255
postponements Also add some "big" configuration negotiation tests.
2023-09-25Disable in-place version replacement in pkg-build since sometimes it is ↵Karen Arutyunov1-2/+23
applied erroneously
2023-09-25Fix configuration negotiation for cases when existing dependent collection ↵Karen Arutyunov2-29/+84
is postponed
2023-09-25Fix pkg-build not to issue 'unable to reconfigure dependent' instead of ↵Karen Arutyunov2-28/+41
'unable to up/downgrade package' error message
2023-09-25Fix configuration negotiation to throw postpone_dependency for collected ↵Karen Arutyunov1-26/+52
dependency which belongs to not (being) negotiated cluster
2023-09-25Fix configuration negotiation in pkg-build to re-evaluate being reconfigured ↵Karen Arutyunov9-1293/+1478
existing dependents
2023-09-25Fix system_package_manager_fedora::generate() to suppress cpio's 'Cannot ↵Karen Arutyunov1-20/+87
stat' complaints
2023-09-25Treat empty --archive-lang* values as request to clear previous entriesBoris Kolpackov2-20/+33
2023-09-19Add `none` value to bpkg-pkg-bindist --recursive optionBoris Kolpackov2-6/+8
2023-09-19Fix system_package_manager_fedora::generate() not to return debuginfo ↵Karen Arutyunov1-6/+16
package if not generated
2023-08-04Add support for specifying package archive and directory as a dependency for ↵Karen Arutyunov6-104/+230
pkg-build Also make sure that a package specified as an archive or directory always replaces selected package. Also add support for deorphaning and upgrading of such a package.
2023-08-04Fix pkg-build which could leave orphan dependency unchanged in ↵Karen Arutyunov1-14/+20
up/downgrade+deorphan mode
2023-08-04Fix pkg-fetch which failed to re-fetch same package version in --replace modeKaren Arutyunov7-8/+124
2023-07-31Fix unexpected 'no package available for dependency' error when building ↵Karen Arutyunov6-4/+59
from archives (GH issue #303)
2023-07-28Add another test case for pkg_configure() flawsKaren Arutyunov1-6/+9
2023-07-28Fix inability to fetch repository containing toolchain-unsatisfied packages ↵Karen Arutyunov1-9/+14
(GH issue #305) Note: the breaking commit is d6d72bc6e454.
2023-07-28Fix unexpected 'manual configuration of dependents with prefer or require ↵Karen Arutyunov3-51/+210
clauses is not yet supported' error (GH issue #302)
2023-07-25Advice user to re-fetch repositories if package fetch ends up with 404 HTTP ↵Karen Arutyunov5-78/+242
status code (GH issue #299)
2023-07-25Ignore version iteration in satisfies() overloads (GH issue #293)Karen Arutyunov3-7/+23
2023-07-20Don't creare new configuration cluster for dependency which already belongs ↵Karen Arutyunov1-3/+20
to some cluster
2023-07-20Fix re-evaluating multiple existing dependents with config clause of common ↵Karen Arutyunov1-19/+37
dependency
2023-07-19Don't reconfigure re-evaluated dependent if it's dependencies are not ↵Karen Arutyunov2-6/+16
reconfigured
2023-07-19Don't reconfigure dependency if negotiated configuration doesn't changeKaren Arutyunov8-55/+164
2023-06-30Allow re-adding identical dependency to non-existent dependentBoris Kolpackov1-5/+13