-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtar_git.service
More file actions
27 lines (26 loc) · 1.02 KB
/
tar_git.service
File metadata and controls
27 lines (26 loc) · 1.02 KB
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
<service name="tar_git">
<summary>Create a tar ball from a git repository</summary>
<description>This service checksout or updates from a git.</description>
<parameter name="url">
<description>Checkout url</description>
<required/>
</parameter>
<parameter name="branch">
<description>Branch name</description>
</parameter>
<parameter name="revision">
<description>Revision sha1sum or tag name</description>
</parameter>
<parameter name="token">
<description>Token used to differentiate tags and changelog entries to be handled from upstream ones</description>
</parameter>
<parameter name="debian">
<description>Also generate debian packaging from a debian subdir if available (Y/N)</description>
</parameter>
<parameter name="dumb">
<description>Take content of revision as-is without automatic processing (Y/N)</description>
</parameter>
<parameter name="use-spec-version">
<description>Use version from spec file instead of git tag (Y/N)</description>
</parameter>
</service>