~ubuntu-branches/ubuntu/lucid/software-center/lucid

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Bazaar Package Importer
  • Author(s): Michael Vogt, Gary Lasker, Michael Vogt
  • Date: 2010-03-11 16:58:00 UTC
  • Revision ID: james.westby@ubuntu.com-20100311165800-t1x7nerqb5dxjyeq
Tags: 1.1.17
[ Gary Lasker ]
* softwarecenter/view/navhistory.py:
  - unescape the nav button label text (LP: #531689)
  - fix up and just use a single __str__ method (LP: #531780)
* softwarecenter/view/availablepane.py,
  softwarecenter/view/channelpane.py:
  - fix intermittent AttributeError when a previous
    model does not exist when refreshing the apps view
    (LP: #531820)

[ Michael Vogt ]
* merged lp:~mpt/software-center/bug-499893 (thanks)
* merged lp:~mpt/software-center/categorization (thanks)
* merged lp:~michaelforrest/software-center/ui-changes (thanks)
* data/icons/scalable/apps/partner.svg:
  - add partner icon (LP: #531694)
* softwarecenter/view/catview.py:
  - do not show header in subsection view
* softwarecenter/view/availablepane.py:
  - fix race in initial part creation (LP: #531798)
* debian/control:
  - add gnome-app-install transitional package (closes: #572941)

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
# only ones using them.
9
9
override_dh_auto_install:
10
10
        dh_auto_install -- --install-lib /usr/share/software-center
11
 
        rm -r debian/software-center/usr/share/software-center/*.egg-info
 
11
        rm -r debian/tmp/usr/share/software-center/*.egg-info
12
12
        # Move the scripts to $(SHARE) and relink them again later.
13
 
        mv debian/software-center/usr/*bin/* debian/software-center/$(share)
14
 
        rmdir debian/software-center/usr/*bin
 
13
        mv debian/tmp/usr/*bin/* debian/tmp/$(share)
 
14
        rmdir debian/tmp/usr/*bin
15
15
        dh_link $(share)/software-center usr/bin/software-center \
16
16
                $(share)/update-software-center usr/sbin/update-software-center
17
17
        # Remove empty directories.
18
 
        find debian/software-center/usr -type d -empty -delete
 
18
        find debian/tmp/usr -type d -empty -delete
 
19
        dh_install --fail-missing
19
20
 
20
21
.PHONY: override_dh_auto_install