blob: 3c4976aadeab6386c0594d66df94dd548fe92aee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
# test dup with orphaned packages
#
# part 1: simple update
#
# dup should leave orphaned a installed
#
repo system 0 testtags <inline>
#>=Pkg: a 1 1 i686
#>=Pkg: b 1 1 i686
repo available 0 testtags <inline>
#>=Pkg: b 2 1 i686
system i686 * system
job distupgrade all packages
result transaction,problems <inline>
#>upgrade b-1-1.i686@system b-2-1.i686@available
nextjob
job distupgrade repo available
result transaction,problems <inline>
#>upgrade b-1-1.i686@system b-2-1.i686@available
### same with keeporphans
nextjob
solverflags keeporphans
job distupgrade all packages
result transaction,problems <inline>
#>upgrade b-1-1.i686@system b-2-1.i686@available
nextjob
solverflags keeporphans
job distupgrade repo available
result transaction,problems <inline>
#>upgrade b-1-1.i686@system b-2-1.i686@available
### same with allowuninstall
nextjob
solverflags allowuninstall
job distupgrade all packages
result transaction,problems <inline>
#>upgrade b-1-1.i686@system b-2-1.i686@available
nextjob
solverflags allowuninstall
job distupgrade repo available
result transaction,problems <inline>
#>upgrade b-1-1.i686@system b-2-1.i686@available
### same with allowuninstall and keeporphans
nextjob
solverflags allowuninstall keeporphans
job distupgrade all packages
result transaction,problems <inline>
#>upgrade b-1-1.i686@system b-2-1.i686@available
nextjob
solverflags allowuninstall keeporphans
job distupgrade repo available
result transaction,problems <inline>
#>upgrade b-1-1.i686@system b-2-1.i686@available
|