-
Notifications
You must be signed in to change notification settings - Fork 3
/
k3b-rules
64 lines (56 loc) · 2.04 KB
/
k3b-rules
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
#
# Created by Abdurrahman AVCI <[email protected]>
#
#
# Create the k3b repository
#
create repository k3b
end repository
# Ignore some upheaval in KDE's SVN history.
match /
min revision 409202
max revision 409210
end match
match /
min revision 411973
max revision 411973
end match
# Import master
match /trunk/(kdemultimedia|kdeextragear-1|extragear/multimedia)/k3b/
repository k3b
branch master
end match
match /branches/extragear/kde3/multimedia/k3b/
repository k3b
branch master
end match
# Import branches
# 0.11 branch
match /branches/(k3b_0_11_branch|k3b/0.11)/kdeextragear-1/k3b/
repository k3b
branch 0.11
end match
# dvd_rw branch
match /branches/(k3b_dvd_rw_branch|k3b/dvd_rw_branch)/kdeextragear-1/k3b/
repository k3b
branch dvd_rw
end match
# 0.12 branch
match /branches/k3b/0.12/k3b/
repository k3b
branch 0.12
end match
# libk3b-redesign and other branches if any exists
match /branches/k3b/([^/]+)/
repository k3b
branch \1
end match
# Import tags
match /tags/k3b/([^/]+)/
repository k3b
branch refs/tags/v\1
annotated true
end match
# Ignore everything else
match /
end match