~ubuntu-branches/ubuntu/oneiric/software-properties/oneiric-updates

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Bazaar Package Importer
  • Author(s): Michael Vogt, Mohamed Amine IL Idrissi, Michael Vogt
  • Date: 2011-07-22 19:11:26 UTC
  • Revision ID: james.westby@ubuntu.com-20110722191126-xoi15h2c116uzlgu
Tags: 0.81
[ Mohamed Amine IL Idrissi ]
* Redesigned the Updates tab according to
  https://wiki.ubuntu.com/SoftwareUpdateHandling#settings (LP:
  #351484, #357676, #253412)

[ Michael Vogt ]
* add dbus/polkit backend, based on 
  lp:~kubuntu-packagers/software-properties/dbusworker
* use new dbus backend
* automatically run tests at bzr-buildpackage time

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
      version='0.60',
10
10
      packages=[
11
11
                'softwareproperties',
 
12
                'softwareproperties.dbus',
12
13
                'softwareproperties.gtk',
13
14
                'softwareproperties.kde',
14
15
                ],
18
19
               'add-apt-repository',
19
20
               ],
20
21
      data_files=[
 
22
                  ("../etc/dbus-1/system.d/",
 
23
                   ["data/com.ubuntu.SoftwareProperties.conf"]
 
24
                  ),
 
25
                  ("share/dbus-1/system-services/",
 
26
                   ["data/com.ubuntu.SoftwareProperties.service"]
 
27
                  ),
21
28
                  ('share/software-properties/designer',
22
29
                   glob.glob("data/designer/*.ui")
23
30
                  ),
24
31
                  ('share/software-properties/gtkbuilder',
25
32
                   glob.glob("data/gtkbuilder/*.ui")
26
33
                  ),
 
34
                  ('lib/software-properties/',
 
35
                   ['software-properties-dbus', ]
 
36
                  ),
27
37
                  ],
28
38
      cmdclass = { "build" : build_extra.build_extra,
29
39
                   "build_i18n" :  build_i18n.build_i18n,