summaryrefslogtreecommitdiff
path: root/tests/setup/gbp2gdr
blob: b2561018c6669f106b4714fbb5a5a975e82671cb (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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
#!/bin/bash
set -e
. tests/lib
. $troot/lib-gdr

t-dependencies git-buildpackage

t-tstunt-parsechangelog


not-gdr-processable () {
	t-expect-fail F:'Cannot cope with this commit' \
	t-git-debrebase
}

p=example
t-worktree 1.1

cd example

: 'fake up some kind of upstream'
git checkout -b upstream quilt-tip
rm -rf debian
mkdir debian
echo junk >debian/rules
git add debian
git commit -m "an upstream retcon ($0)"

: 'fake up that our quilt-tip was descended from upstream'
git checkout quilt-tip
git merge --no-edit -s ours upstream

: 'fake up that our quilt-tip had the patch queue in it'
git checkout patch-queue/quilt-tip
gbp pq export
git add debian/patches
git commit -m "patch queue update ($0)"

not-gdr-processable

: 'fake up an upstream 2.0'
git checkout -b make-upstream upstream
echo upstream-v2 >>docs/README
git commit -a -m "an upstream v2 update"
ust=example_2.0.orig.tar.gz
git archive -o ../$ust --prefix=example-2.0/ upstream

: 'see what gbp import-orig does'
gbp import-orig --debian-branch=quilt-tip --upstream-version=2.0 ../$ust

not-gdr-processable

: xxx
t-ok
exit 0


git checkout quilt-tip
git merge --no-edit --allow-unrelated-histories -Xtheirs --no-commit upstream
git checkout HEAD -- debian
git commit --no-edit



false

revision=1

push-to () {
	t-refs-same-start
	t-ref-head
	t-dgit build
	t-dgit push --new $2
	t-pushed-good $1 $2
	t-archive-process-incoming $2
}

echo ancestor >which
git add which
t-commit Ancestor '' stable
push-to master stable

git checkout -b stable

echo stable >which
git add which
t-commit Stable '' stable
push-to stable stable

git checkout master

majorv=2
revision=0

echo sid >which
git add which
t-commit Sid
push-to master sid

echo sid-again >>which
git add which
t-commit Sid
push-to master sid

t-setup-done 'p v suitespecs majorv revision' "aq git mirror $p"

t-ok