packaging problems

This commit is contained in:
Mathieu Comandon 2010-09-25 12:25:07 +02:00
parent cd10ff30ce
commit bafcdf39c0
17 changed files with 39 additions and 42 deletions

View file

@ -1,4 +1,4 @@
project = lutris
template = ubuntu-application
lp_id = lutris
version = 0.4.3
version = 0.6

View file

@ -1,6 +1,6 @@
# Apport integration for lutris
#
# -*- coding: utf-8 -*-
# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*-
### BEGIN LICENSE
# Copyright (C) 2010 Mathieu Comandon <strycore@gmail.com>
# This program is free software: you can redistribute it and/or modify it

View file

@ -1,5 +1,5 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*-
### BEGIN LICENSE
# Copyright (C) 2010 Mathieu Comandon <strycore@gmail.com>
# This program is free software: you can redistribute it and/or modify it

6
debian/control vendored
View file

@ -5,13 +5,11 @@ Build-Depends: cdbs (>= 0.4.43), debhelper (>= 6), python,
python-support (>= 0.6.4), python-distutils-extra (>= 2.10)
Maintainer: Mathieu Comandon <strycore@gmail.com>
Standards-Version: 3.9.1
XS-Python-Version: current
Package: lutris
Architecture: all
XB-Python-Version: ${python:Versions}
Depends: ${misc:Depends}, ${python:Depends}, python-apport,
python-gobject, python-apt, python-gtk2, python-yaml, python-gconf, python-pyglet
Depends: ${misc:Depends}, ${python:Depends}, python-apport, python-pyglet,
python-gobject, python-apt, python-gtk2, python-yaml, python-gconf, joy2key
Description: Install and play any video game easily
Lutris is a gaming platform for GNU/Linux. It's goal is to make
gaming on Linux as easy as possible by taking care of installing

1
debian/pycompat vendored Normal file
View file

@ -0,0 +1 @@
2

1
debian/pyversions vendored Normal file
View file

@ -0,0 +1 @@
2.6

View file

@ -1,4 +1,4 @@
# -*- coding: utf-8 -*-
# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*-
### BEGIN LICENSE
# Copyright (C) 2010 Mathieu Comandon <strycore@gmail.com>
# This program is free software: you can redistribute it and/or modify it

View file

@ -1,4 +1,4 @@
# -*- coding: utf-8 -*-
# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*-
### BEGIN LICENSE
# Copyright (C) 2010 Mathieu Comandon <strycore@gmail.com>
# This program is free software: you can redistribute it and/or modify it

View file

@ -1,4 +1,4 @@
# -*- coding: utf-8 -*-
# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*-
### BEGIN LICENSE
# Copyright (C) 2010 Mathieu Comandon <strycore@gmail.com>
# This program is free software: you can redistribute it and/or modify it

View file

@ -36,7 +36,6 @@ class openmsx(Runner):
if settings:
self.rom = settings["game"]["rom"]
def play(self):
command = [self.executable,"\""+self.rom+"\""]
return command

View file

@ -111,4 +111,3 @@ class scummvm(Runner):
gameListStart = True
return gameArray

View file

@ -123,4 +123,3 @@ class uae(Runner):
command.append(option+"="+self.uae_options[option])
return command

View file

@ -53,7 +53,6 @@ class vice(Runner):
self.arguments = self.arguments + ["\""+settings['game']['disk']+"\""]
def play(self):
command = [self.executable] + self.arguments
return command

View file

@ -21,12 +21,13 @@
import yaml
import urlparse
from tool.url_tool import UrlTool
import os
import hashlib
import logging
import lutris.constants
from lutris.tool.url_tool import UrlTool
class LutrisInterpreter():
def __init__(self, filename = None):

View file

@ -1,5 +1,5 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*-
### BEGIN LICENSE
# Copyright (C) 2010 Mathieu Comandon <strycore@gmail.com>
# This program is free software: you can redistribute it and/or modify it