~james-w/pkgme-devportal/remove-tempdir-after-use

« back to all changes in this revision

Viewing changes to devportalbinary/backends/binary/extra_files

  • Committer: Tarmac
  • Author(s): James Westby, James Westby
  • Date: 2011-12-13 12:53:41 UTC
  • mfrom: (18.2.3 pdf-backend)
  • Revision ID: tarmac@server-3224-20111213125341-z46ucgmzy632jnte
[r=jml] Add a pdf backend.

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
 
9
9
from devportalbinary.binary import (
10
10
    CATEGORIES,
11
 
    get_desktop_file,
 
11
    get_binary_desktop_file,
12
12
    get_install_file,
13
13
    METADATA_FILE,
14
14
    PACKAGE_NAME,
22
22
    package_name = metadata[PACKAGE_NAME]
23
23
    path = os.getcwd()
24
24
    install_file = get_install_file(package_name, path, True)
25
 
    desktop_file = get_desktop_file(
 
25
    desktop_file = get_binary_desktop_file(
26
26
        package_name, path,
27
27
        tagline=metadata.get(TAGLINE, ''),
28
28
        categories=metadata.get(CATEGORIES, ''))