~ev/ubuntu/maverick/jockey/auto_install

« back to all changes in this revision

Viewing changes to tests/run-kde

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2009-06-29 16:21:37 UTC
  • mfrom: (2.1.16 upstream)
  • Revision ID: james.westby@ubuntu.com-20090629162137-phmyaeb6mmnti5qh
Tags: 0.5.2-0ubuntu1
* New upstream release 0.5.1:
  - Add yum detection to packaging_system.
  - Implement package installation/removal with PackageKit. (Not used in
    Ubuntu right now).
  - Fully functional on Fedora Core 10.
* New upstream release 0.5.2:
  - Convert build system to DistUtilsExtra.auto.
  - kde/jockey-kde.desktop.in: Move autostart to phase 2, for smoother
    login. (LP: #369733)
  - ui.py: Make proprietary driver warning less scary. (LP: #381805)
  - jockey-gtk: port from glade to GtkBuilder.
* debian/control: Bump python-distutils-extra build dependency to ensure
  availability of DistUtilsExtra.auto.
* debian/control: Drop obsolete python-glade2 dependency.
* debian/jockey-gtk.install: Install *.ui file instead of *.glade.
* jockey/oslib.py, ui_help(): Update yelp location for help, thanks Matthew
  East! (LP: #274845)
* data/handlers/broadcom_wl.py: Require package bcmwl-kernel-source. Drop
  our handling of the module blacklisting, bcmwl-kernel-source now does that
  by itself. (LP: #381678)
* Move jockey.kdeui Python modules from jockey-common to jockey-kde.
* debian/control: Drop obsolete restricted-manager-* conflicts/replaces.
* debian/rules: Drop call to dh_icons, cdbs has done that for us for a long
  time.
* debian/control: Bump Standards-Version to 3.8.2 (no changes necessary).
* debian/control: Recommend bcmwl-modaliases, so that the driver is detected
  by default. (LP: #381683)

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
# with this program; if not, write to the Free Software Foundation, Inc.,
19
19
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20
20
 
21
 
import sys, imp, os.path, unittest, time, os, signal
 
21
import sys, imp, os.path, unittest, time, os, signal, atexit
22
22
 
23
23
from PyKDE4.kdecore import *
24
24
from PyKDE4.kdeui import *
30
30
 
31
31
# prefer modules in the local tree
32
32
sys.path.insert(0, root_dir)
 
33
# modules in build/ aren't recognized even when we put them into PYTHONPATH, so
 
34
# hack around
 
35
if not os.path.exists(os.path.join(root_dir, 'jockey', 'kdeui')):
 
36
    os.symlink(os.path.join('..', 'build', 'kdeui', 'jockey', 'kdeui'),
 
37
            os.path.join(root_dir, 'jockey', 'kdeui'))
 
38
    atexit.register(os.unlink, os.path.join(root_dir, 'jockey', 'kdeui'))
33
39
 
34
40
from jockey.oslib import OSLib
35
41
import jockey.backend