719 Commits

Author SHA1 Message Date
Niels Thykier
5a19b4f74d Create a SourcePackage class
Signed-off-by: Niels Thykier <niels@thykier.net>
2016-10-03 18:29:09 +00:00
Niels Thykier
cd7cdda61e britney: Remove out a tuple lookup in get_dependency_solvers
Signed-off-by: Niels Thykier <niels@thykier.net>
2016-10-03 18:29:09 +00:00
Niels Thykier
f414b12130 britney: Make read_binaries read all binaries for a suite
Signed-off-by: Niels Thykier <niels@thykier.net>
2016-10-03 18:29:09 +00:00
Niels Thykier
ea166f5bd3 britney -> util: Extract a "create_provides_map"
Signed-off-by: Niels Thykier <niels@thykier.net>
2016-10-03 18:05:54 +00:00
Robert Bruce Park
190be31014 Python loop performance enhancements.
Signed-off-by: Niels Thykier <niels@thykier.net>
2016-10-03 18:05:54 +00:00
Niels Thykier
34d27bbd15 britney.py: Make hinted removal excuses valid
Signed-off-by: Niels Thykier <niels@thykier.net>
2016-10-03 18:05:53 +00:00
Mathieu Trudel-Lapierre
31669ac5bd Update whitespace; make the output easier to read
FAILED/SUCCESS lines would be separated by a whitespace from the list
of architectures, but not itself followed by whitespace. This is slightly
confusing, as one could interpret it as being a heading for the following
block of tested packages, rather that the final result of the previous
block.
2016-10-03 18:05:53 +00:00
Niels Thykier
d43311be03 Support policies registering their own hints
Signed-off-by: Niels Thykier <niels@thykier.net>
2016-10-03 18:05:53 +00:00
Niels Thykier
948d15d536 HintParser: Support adding new hints to the parser
This includes refining "HINTS_ALL" to cover all hints added at
runtime.

Currently, it is not very useful.  However, a later commit will allow
policies to use this feature.

Signed-off-by: Niels Thykier <niels@thykier.net>
2016-10-03 18:05:53 +00:00
Niels Thykier
13417c18e4 hint-tester: Use hint-parser for parsing excuse hints
Signed-off-by: Niels Thykier <niels@thykier.net>
2016-09-23 05:27:44 +00:00
Niels Thykier
6328b15a9c Change argument order for HintCollection.add_hint
Signed-off-by: Niels Thykier <niels@thykier.net>
2016-09-23 05:27:44 +00:00
Niels Thykier
ac13904f2a Really ignore nuninst issues for break arches
Signed-off-by: Niels Thykier <niels@thykier.net>
2016-07-11 17:55:46 +00:00
Niels Thykier
5dc162404f Actually forgive missing Packages files for new arches
Signed-off-by: Niels Thykier <niels@thykier.net>
2016-07-11 17:33:11 +00:00
Niels Thykier
ac670bc75e Forgive missing Packages files for new arches
Signed-off-by: Niels Thykier <niels@thykier.net>
2016-07-11 09:59:54 +00:00
Niels Thykier
2fadfe3724 britney.py: Fix typo in variable name
Signed-off-by: Niels Thykier <niels@thykier.net>
2016-07-05 23:24:08 +00:00
Niels Thykier
cb248a23eb Add more items to excuses.yaml
Signed-off-by: Niels Thykier <niels@thykier.net>
2016-07-05 22:44:56 +00:00
Niels Thykier
2fd6c59460 Ignore nuninst out-of-sync issues on break-arches
Signed-off-by: Niels Thykier <niels@thykier.net>
2016-07-05 08:02:04 +00:00
Niels Thykier
d76ccaca3b Show missing builds for age-less items in excuses.html
For items not having an age requirements (e.g. urgency=critical)
always list the "missing build" note if present.

Signed-off-by: Niels Thykier <niels@thykier.net>
2016-07-05 08:02:04 +00:00
Julien Cristau
e2c7dc97d6 Use https for links in excuses.html
Signed-off-by: Julien Cristau <jcristau@debian.org>
2016-07-02 13:21:14 +02:00
Julien Cristau
8545dc972a Fix link to source package bug page
pkg=src:foo and src=foo give different results.

Fixes https://bugs.debian.org/829240

Signed-off-by: Julien Cristau <jcristau@debian.org>
2016-07-02 13:21:09 +02:00
Niels Thykier
855fe68009 Make tpu optional in the config file
Signed-off-by: Niels Thykier <niels@thykier.net>
2016-06-03 15:34:24 +00:00
Niels Thykier
c224c55d88 Add a "block-all new-source" hint
This hint will block all "new" source migrations.  Source migrations
for packages already in testing will be affected by this.  As usual,
this hint can be overruled by an unblock hint.

Closes: GH#8

Signed-off-by: Niels Thykier <niels@thykier.net>
2016-06-03 15:34:24 +00:00
Niels Thykier
481f7fde08 auto-hinter: Reduce size of inner loop
Reduce a "loop over all valid items" to a "loop over an item's
dependencies + reverse dependencies".  For sparse graphs, this
is much more efficient.

Signed-off-by: Niels Thykier <niels@thykier.net>
2016-06-03 15:34:23 +00:00
Niels Thykier
e517c3f315 auto-hinter: Remove some now redundant conditionals
Made possibly be the previous commit.

Signed-off-by: Niels Thykier <niels@thykier.net>
2016-06-03 15:34:23 +00:00
Niels Thykier
3294c99036 auto-hinter: Prune size of valid excuses and their deps
Signed-off-by: Niels Thykier <niels@thykier.net>
2016-06-03 15:34:23 +00:00
Niels Thykier
43266ee091 auto hinter: Prune some duplicates earlier
The same item can re-appear multiple times in one iteration, so prune
duplicates in each iteration.

Signed-off-by: Niels Thykier <niels@thykier.net>
2016-06-03 15:34:23 +00:00
Niels Thykier
463d1a67d9 Prefer pkg_id.foo to pkg_id[X]
Signed-off-by: Niels Thykier <niels@thykier.net>
2016-05-28 09:37:28 +00:00
Niels Thykier
429e8f1199 britney.py: Turn pkg_ids into namedtuples
Signed-off-by: Niels Thykier <niels@thykier.net>
2016-05-28 09:37:28 +00:00
Niels Thykier
bee0a99528 Reuse pkg_ids instead of creating them ad-hoc
Signed-off-by: Niels Thykier <niels@thykier.net>
2016-05-28 09:37:28 +00:00
Niels Thykier
71d181aa83 Add pkg_id field to BinaryPackage
Signed-off-by: Niels Thykier <niels@thykier.net>
2016-05-28 09:37:28 +00:00
Niels Thykier
856bbba232 Add missing "None" guard for faux packages
Signed-off-by: Niels Thykier <niels@thykier.net>
2016-05-26 17:48:19 +00:00
Niels Thykier
c14ee0410b Let hintdir specific the actual directory of hints files
Signed-off-by: Niels Thykier <niels@thykier.net>
2016-05-26 16:49:09 +00:00
Niels Thykier
1ee1375d38 britney: Fix bug in reading d-i Packages
Signed-off-by: Niels Thykier <niels@thykier.net>
2016-05-26 16:46:19 +00:00
Niels Thykier
f23a72dcdb britney2: Mirror layout - also read d-i Packages files
Signed-off-by: Niels Thykier <niels@thykier.net>
2016-05-26 16:39:06 +00:00
Niels Thykier
3c0dcf0de3 britney: Permit comments in Package-List field of constraints
python-apt's "TagFile" seems to cut the field short if it meets a
comment.  Therefore allow comments in the actual field value to avoid
this nasty behaviour.

Signed-off-by: Niels Thykier <niels@thykier.net>
2016-05-21 17:13:22 +00:00
Niels Thykier
e50037a7da constraints parsing: Fix off-by-one in split
Signed-off-by: Niels Thykier <niels@thykier.net>
2016-05-21 16:44:20 +00:00
Niels Thykier
3fde3ca7a0 Make Faux packages default to non-free
Packages in main should not need them.  Presuming we eventually make
Britney enforce separation between components, "non-free" seems like a
better default.

Signed-off-by: Niels Thykier <niels@thykier.net>
2016-05-21 13:39:11 +00:00
Niels Thykier
17a8fd6cdc Correct error message to use the real field name
Signed-off-by: Niels Thykier <niels@thykier.net>
2016-05-21 13:38:52 +00:00
Niels Thykier
c9ed47ca6d britney.py: Remove unused import
Signed-off-by: Niels Thykier <niels@thykier.net>
2016-05-21 12:47:28 +00:00
Niels Thykier
ccb473e19f britney.py: Support compressed Packages/Sources
Signed-off-by: Niels Thykier <niels@thykier.net>
2016-05-21 12:47:28 +00:00
Niels Thykier
398c7a4959 Add support for loading faux packages
Part of GH#5.

Signed-off-by: Niels Thykier <niels@thykier.net>
2016-05-21 12:47:27 +00:00
Niels Thykier
58b704f3d0 britney.py: Extract a _parse_provides method
Signed-off-by: Niels Thykier <niels@thykier.net>
2016-05-21 12:47:27 +00:00
Niels Thykier
7ccbfe2fdf Make "Keep-installable" constraints overrule nuninst counters
If there is a regression in "present-and-installable" constraints (on
non-break architectures), then discard the item even if the nuninst
counters have improved.

Signed-off-by: Niels Thykier <niels@thykier.net>
2016-05-21 12:47:27 +00:00
Niels Thykier
f3e37faf7e Add present-and-installable constraints support
Solves first half of GH#5.

Signed-off-by: Niels Thykier <niels@thykier.net>
2016-05-21 12:47:23 +00:00
Niels Thykier
ec37bd06aa Optimise checking of affected packages
For (non-hint) migrations, split the set of affected into two
parts; one for reverse dependencies and one "negative dependencies"
(e.g. Conflicts).

If there are only regressions in the nuninst after checking the first
set, then there is no reason to continue with the second set (as
"negative dependencies" can only make it worse at that point).

Signed-off-by: Niels Thykier <niels@thykier.net>
2016-05-21 12:43:38 +00:00
Niels Thykier
a4daee0866 britney.py: Optimise scheduling a bit
Avoid rescheduling the tail of packages if we can avoid it.

Signed-off-by: Niels Thykier <niels@thykier.net>
2016-05-21 12:43:38 +00:00
Niels Thykier
ac66e3118d Reject some excuses with unsatisfiable depends
Ideally we would reject all items with known unsatisfiable
dependencies as they would not be installable in testing.  However,
there are a few known corner cases where we still want to migrate them
(notably when they are already broken in testing).

This commit is an attempt to weed out some of the "obviously" broken
items that will not successfully migrate.

Signed-off-by: Niels Thykier <niels@thykier.net>
2016-05-21 12:43:38 +00:00
Niels Thykier
8991889fad Prefer pkg.foo to pkg[FOO] for binary packages
Signed-off-by: Niels Thykier <niels@thykier.net>
2016-05-21 12:43:38 +00:00
Niels Thykier
4eebb5180f Make binary packages a namedtuple
Signed-off-by: Niels Thykier <niels@thykier.net>
2016-05-21 12:43:37 +00:00
Niels Thykier
7230cd29c0 Re-order parsing of suites to avoid changing binary pkgs
In the next commit, the binary packages will be turned into
namedtuples and will become immutable objects.

Signed-off-by: Niels Thykier <niels@thykier.net>
2016-05-21 12:43:37 +00:00