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
|
version=4
# Alpha bare git branch
#
# Since v20, bare git snapshots must follow the tagged release cycle:
#
# pretty=20.0~alphaX+git%cd.%h, \
# pretty=20.0~betaX+git%cd.%h, \
# pretty=20.0~rcX+git%cd.%h, \
#
# where X starts with zero. The 'pretty' attribute must be changed manually
# after the correspondent tagged release is published.
#
#opts="mode=git, \
# pgpmode=none, \
# pretty=20.0~alpha0+git%cd.%h, \
# repack, \
# repacksuffix=+dfsg, \
# compression=xz, \
# uversionmangle=s/\([\.0-9a-zA-Z]\)-.*$/\1/;s/rc/~rc/;s/a/~alpha/;s/b/~beta/;s/RC/~rc/;s/A/~alpha/;s/B/~beta/, \
# dversionmangle=auto" \
#https://github.com/xbmc/xbmc \
#HEAD \
#debian
# Release git tags
# TODO: Change Kodi codename in refs/tags before packaging next Kodi major release
opts="mode=git, \
pgpmode=none, \
repack, \
repacksuffix=+dfsg, \
compression=xz, \
uversionmangle=s/\([\.0-9a-zA-Z]\)-.*$/\1/;s/rc/~rc/;s/a/~alpha/;s/b/~beta/;s/RC/~rc/;s/A/~alpha/;s/B/~beta/, \
dversionmangle=auto" \
https://github.com/xbmc/xbmc \
refs/tags/@ANY_VERSION@-Nexus \
debian
# libdvdread
opts="component=libdvdread-embedded, \
mode=git, \
pretty=%cd.%h, \
repack, \
compression=xz, \
dversionmangle=auto" \
https://code.videolan.org/videolan/libdvdread \
heads/master \
ignore
# libdvdnav
opts="component=libdvdnav-embedded, \
mode=git, \
pretty=%cd.%h, \
repack, \
compression=xz, \
dversionmangle=auto" \
https://code.videolan.org/videolan/libdvdnav \
heads/master \
ignore
# repo-resources
# TODO: Change Kodi codename in heads/ before packaging next Kodi major release
opts="component=repo-resources-embedded, \
mode=git, \
pretty=%cd.%h, \
repack, \
compression=xz, \
dversionmangle=auto" \
https://github.com/xbmc/repo-resources \
heads/nexus \
ignore
|