File: Constants.hx.in

package info (click to toggle)
mercurial-buildpackage 0.10.1%2Bnmu1
  • links: PTS
  • area: main
  • in suites: bullseye, buster, stretch
  • size: 244 kB
  • ctags: 10
  • sloc: makefile: 94
file content (163 lines) | stat: -rw-r--r-- 3,556 bytes parent folder | download | duplicates (2)
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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
// Copyright (c) 2010, Jens Peter Secher <jpsecher@gmail.com>
//
// Permission to use, copy, modify, and/or distribute this software for any
// purpose with or without fee is hereby granted, provided that the above
// copyright notice and this permission notice appear in all copies.
//
// THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
// WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
// MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
// ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
// WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
// ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
// OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

class Constants
{
	public static function packageName() : String
	{
		return "mercurial-buildpackage";
	}
	
	public static function upstream_version() : String
	{
		return "0.10.1";
	}

	public static function vendor_version() : String
	{
		return "@VENDOR@";
	}

	public static function version() : String
	{
		var vendor = vendor_version();
		return upstream_version() + (vendor == '' ? "" : " (" + vendor + ")");
	}

	public static function sudo() : String
	{
		return "sudo";
	}
	
	public static function fakeroot() : String
	{
		return "fakeroot";
	}
	
	public static function port() : String
	{
		return "mercurial-port";
	}
	
	public static function pristineTar() : String
	{
		return "mercurial-pristinetar";
	}
	
	public static function importOrig() : String
	{
		return "mercurial-importorig";
	}
	
	public static function importDsc() : String
	{
		return "mercurial-importdsc";
	}
	
	public static function tagVersion() : String
	{
		return "mercurial-tagversion";
	}
	
	public static function buildPackage() : String
	{
		return "mercurial-buildpackage";
	}
	
	public static function copyright() : String
	{
		return "Copyright (c) 2010, Jens Peter Secher <jpsecher@gmail.com>\n" +
		       "Copyright (c) 2012, Darren Salt <linux@youmustbejoking.demon.co.uk>";
	}

	public static function mainBranch() : String
	{
		return "default";
	}

	public static function upstreamBranch() : String
	{
		return "upstream";
	}

	public static function pristineBranch() : String
	{
		return "pristine";
	}

	public static function packageDirectory() : String
	{
		return "debian";
	}

	public static function xdeltaExtension() : String
	{
		return "xdelta";
	}

	public static function pristineExtension() : String
	{
		return "pristine";
	}

	public static function revisionExtension() : String
	{
		return "revision";
	}

	public static function dirExtension() : String
	{
		return "dir";
	}

	public static function tagsFile() : String
	{
		return ".hgtags";
	}

	//
	// Regular expression for matching files and directories that should be
	// ignored in an upstream tarball because they interfere with
	// mercurial-buildpackage and dpkg-source.
	//
	public static function interfere() : EReg
	{
		return ~/^\.(hg(ignore|tags)?|pc)$/;
	}

	//
	// Regular expression for matching special Mercurial files and directories
	// that should not be unlinked.
	//
	public static function precious() : EReg
	{
		return ~/^\.hg(ignore|tags)?$/;
	}

	//
	// Arguments to pass to tar for excluding special Mercurial files.
	//
	public static function tarExclude() : Array<String>
	{
		return [ "-I.hg", "-I.hgignore", "-I"+tagsFile() ];
	}

	//
	// Similarity percentage for file-move detection.
	//
	public static function similarity() : String
	{
		return "75";
	}
}