~cprov/britney/boottesting-arch-indep

297.1.43 by Niels Thykier
Move "constants" to a new consts module
1
# -*- coding: utf-8 -*-
2
3
# Constants from britney.py
4
#
5
# Assuming constants are copyrightable, then they are:
6
# Copyright (C) 2001-2008 Anthony Towns <ajt@debian.org>
7
#                         Andreas Barth <aba@debian.org>
8
#                         Fabio Tranchitella <kobold@debian.org>
9
# Copyright (C) 2010-2012 Adam D. Barratt <adsb@debian.org>
10
11
# This program is free software; you can redistribute it and/or modify
12
# it under the terms of the GNU General Public License as published by
13
# the Free Software Foundation; either version 2 of the License, or
14
# (at your option) any later version.
15
16
# This program is distributed in the hope that it will be useful,
17
# but WITHOUT ANY WARRANTY; without even the implied warranty of
18
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19
# GNU General Public License for more details.
20
21
# source package
22
VERSION = 0
23
SECTION = 1
24
BINARIES = 2
25
MAINTAINER = 3
26
FAKESRC = 4
27
28
# binary package
29
SOURCE = 2
30
SOURCEVER = 3
31
ARCHITECTURE = 4
367 by Colin Watson
merge trunk up to 2013-07-10
32
MULTIARCH = 5
297.1.67 by Adam D. Barratt
Remove the C library placeholder for "pre-depends"
33
DEPENDS = 6
34
CONFLICTS = 7
35
PROVIDES = 8
36
RDEPENDS = 9
37
RCONFLICTS = 10
297.1.74 by Niels Thykier
Rewrite installability tester
38
ESSENTIAL = 11