/usr/share/pyshared/smart/const.py is in python-smartpm 1.4-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | #
# Copyright (c) 2004 Conectiva, Inc.
#
# Written by Gustavo Niemeyer <niemeyer@conectiva.com>
#
# This file is part of Smart Package Manager.
#
# Smart Package Manager 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.
#
# Smart Package Manager is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Smart Package Manager; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
import sys
VERSION = "1.4"
RECURSIONLIMIT = sys.getrecursionlimit()
class Enum(object):
_registry = {}
def __init__(self, name):
self._name = name
def __repr__(self):
return self._name
def __reduce__(self):
return self._name
def __new__(klass, name):
instance = klass._registry.get(name)
if not instance:
instance = klass._registry[name] = object.__new__(klass)
return instance
INSTALL = Enum("INSTALL")
REMOVE = Enum("REMOVE")
KEEP = Enum("KEEP")
REINSTALL = Enum("REINSTALL")
UPGRADE = Enum("UPGRADE")
FIX = Enum("FIX")
OPTIONAL = Enum("OPTIONAL")
NEVER = Enum("NEVER")
ENFORCE = Enum("ENFORCE")
ALWAYS = Enum("ALWAYS")
WAITING = Enum("WAITING")
RUNNING = Enum("RUNNING")
FAILED = Enum("FAILED")
SUCCEEDED = Enum("SUCCEEDED")
ERROR = 1
WARNING = 2
INFO = 3
DEBUG = 4
BLOCKSIZE = 16384
DISTROFILE = "/usr/lib/smart/distro.py"
PLUGINSDIR = "/usr/lib/smart/plugins/"
DATADIR = "/var/lib/smart/"
USERDATADIR = "~/.smart/"
CONFFILE = "config"
# vim:ts=4:sw=4:et
|