-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathkrecipes-rules
147 lines (115 loc) · 2.46 KB
/
krecipes-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
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
#
# Create the krecipes' repository
# Just FYI krecipes development starts at commit 226097
#
create repository krecipes
end repository
# master branch
match /trunk/(extragear/utils|kdeextragear-3)/krecipes/
repository krecipes
branch master
end match
match /branches/krecipes/work/krecipes-rating-support/
repository krecipes
branch master
end match
match /branches/krecipes/work/krecipes-new-layout/
repository krecipes
branch master
end match
# 1.1 branch
match /branches/extragear/kde3/utils/krecipes/
repository krecipes
branch 1.1
end match
match /branches/extragear/kde3/utils
min revision 670725
max revision 670725
action recurse
end match
# 1.0 branch
match /branches/krecipes/1.0-betas/utils/krecipes/
repository krecipes
branch 1.0
end match
match /branches/krecipes/1.0-betas
min revision 580863
max revision 580863
action recurse
end match
match /tags/krecipes/1.0-beta1/utils/krecipes/
repository krecipes
branch 1.0
end match
# 0.9 branch
match /branches/krecipes/0.9/
repository krecipes
branch 0.9
end match
match /tags/krecipes/0.9/
repository krecipes
branch 0.9
end match
# 0.8 branch
match /branches/krecipes/0.8beta/
repository krecipes
branch 0.8
end match
match /tags/krecipes/krecipes_beta_0_8/
repository krecipes
branch 0.8
end match
# 0.7 branch
match /branches/beta_0_7_branch/kdeextragear-3/krecipes/
repository krecipes
branch 0.7
end match
match /branches/beta_0_7_branch/kdeextragear-3/$
min revision 386536
max revision 386536
action recurse
end match
match /branches/beta_0_7_branch/$
min revision 386536
max revision 386536
action recurse
end match
# 0.6 branch
match /branches/beta_0_6_branch/kdeextragear-3/krecipes/
repository krecipes
branch 0.6
end match
match /branches/beta_0_6_branch/kdeextragear-3/$
min revision 349866
max revision 349866
action recurse
end match
match /branches/beta_0_6_branch/$
min revision 349866
max revision 349866
action recurse
end match
# 0.4 branch
match /branches/alpha_0_4_branch/kdeextragear-3/krecipes/
repository krecipes
branch 0.4
end match
match /branches/alpha_0_4_branch/kdeextragear-3/$
min revision 267383
max revision 267383
action recurse
end match
match /branches/alpha_0_4_branch/$
min revision 267383
max revision 267383
action recurse
end match
# Tags
match /tags/krecipes/([^/]+)/
repository krecipes
branch refs/tags/v\1
annotated true
end match
# Ignore everything else
match /
end match