/usr/share/pyshared/childsplay_sp/SPVersion.py is in childsplay 1.6-1.
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 | # needed for version numbers
import pygame, sys
import sqlalchemy as sqla
import Version
version=Version.version
### don't make changes below this line ################
spversion = "Childsplay version: %s" % version
plat = "Platform :%s" % sys.platform
pyversion = "Python version: %s" % sys.version.split('\n')[0]
pgversion = "Pygame version: %s" % pygame.version.ver
sdlversion = "SDL version: %s.%s.%s" % pygame.get_sdl_version()
ocwversion = "Childsplay.ocempgui version: %s" % Version.ocwversion
sqlaversion = "Sqlalchemy version: %s" % sqla.__version__
# Needed for the option parser
optversion = '\n'.join(['-'*60,spversion,plat, pyversion, pgversion,\
sdlversion,ocwversion,sqlaversion,'-'*60])
|