#---------------------------------------------------------------------------- # package-states.txt - this file stores all the possible states of a package # during its lifecycle # # Creation : 2007-12-16 starwarsfan # Last Update: $Id$ # # Copyright (c) 2001-2009 the eisfair team, team(at)eisfair(dot)org> # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. #---------------------------------------------------------------------------- packageStates[0]='inwork' packageStates[1]='test' packageStates[2]='released' packageStates[3]='deprecated' packageStates[4]='closed' # 'inwork' # The package is under development. This means that there is no version # released ever. # # 'test' # At least one version of this package was released. This is at least a version # for the test team. # # 'released' # A release for the whole wide world. This means that there is no bugfix # branch for this package existing. # # 'deprecated' # For this Major.Minor version of the package a bugfix branch is existing, but # actually no bugfix version has been released. # # 'closed' # A bugfix version of this package has been released. So this package should # no longer bee used.