-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathkdevplatform-rules
102 lines (89 loc) · 2.15 KB
/
kdevplatform-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
#
# Created by Andreas Pakulat <[email protected]>
#
# When using a gitorious git-hosting these should go into a KDevelop project
# The following two tags needed manual redoing them as svn2git is not able to
# find the right commit for a tag, it always takes the last commit on the
# branch for creating a tag
#
# KDevplatform: 0.10.2 from r1115445 "Prepare RC3." by apaku 2010-04-16 15:47:10 +0200
#
#
# Create the KDevPlatform modules
#
create repository kdevplatform
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
#########################################################
# KDevPlatform rules
#
match /trunk/KDE/kdevplatform/
repository kdevplatform
branch master
end match
match /trunk/extragear/sdk/kdevplatform/
repository kdevplatform
branch master
end match
#
# KDevPlatform branches
#
match /branches/kdevelop/sublime_rework/kdevplatform/
repository kdevplatform
branch sublime_rework
end match
match /branches/kdevelop/class-generation-extraction/kdevplatform/
repository kdevplatform
branch class-generation-extraction
end match
match /branches/kdevelop/interfaces_cleanup/kdevplatform/
repository kdevplatform
branch interfaces_cleanup
end match
match /branches/kdevelop/kdevplatform_no_splitters_ui/
repository kdevplatform
branch no_splitters_ui
end match
#
# KDevPlatform tags
#
# for tags that were re-created only take the last one
match /tags/kdevplatform/0.9.85/
min revision 907191
max revision 907345
end match
match /tags/kdevplatform/0.9.85/
min revision 907346
max revision 907346
repository kdevplatform
annotated true
branch refs/tags/v0.9.85
end match
match /tags/kdevplatform/0.9.93/
min revision 972084
max revision 975676
end match
match /tags/kdevplatform/0.9.93/
min revision 975678
max revision 975678
repository kdevplatform
annotated true
branch refs/tags/v0.9.93
end match
# All other tags are fine
match /tags/kdevplatform/([^/]+)/
repository kdevplatform
branch refs/tags/v\1
annotated true
end match
# Ignore everything else
match /
end match