~ubuntu-branches/ubuntu/wily/bleachbit/wily

« back to all changes in this revision

Viewing changes to .pc/local_cleaners_dir.patch/bleachbit/Common.py

  • Committer: Package Import Robot
  • Author(s): Luca Falavigna
  • Date: 2013-05-05 14:34:45 UTC
  • mfrom: (28.1.2 experimental)
  • Revision ID: package-import@ubuntu.com-20130505143445-jjx0zylbgfp1mlty
Tags: 0.9.5-2
Upload to unstable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
# -*- coding: UTF-8 -*-
3
3
 
4
4
## BleachBit
5
 
## Copyright (C) 2012 Andrew Ziem
 
5
## Copyright (C) 2013 Andrew Ziem
6
6
## http://bleachbit.sourceforge.net
7
7
##
8
8
## This program is free software: you can redistribute it and/or modify
31
31
if 'nt' == os.name:
32
32
    from win32com.shell import shell, shellcon
33
33
 
34
 
APP_VERSION = "0.9.2"
 
34
APP_VERSION = "0.9.5"
35
35
APP_NAME = "BleachBit"
36
36
APP_URL = "http://bleachbit.sourceforge.net"
37
37
 
63
63
    '/usr/share/doc/bleachbit-' + APP_VERSION + '/COPYING', # CentOS, Fedora, RHEL
64
64
    '/usr/share/doc/packages/bleachbit/COPYING', # OpenSUSE 11.1
65
65
    '/usr/share/doc/bleachbit/COPYING', # Mandriva
66
 
    '/usr/pkg/share/doc/bleachbit/COPYING' ) # NetBSD 5
 
66
    '/usr/pkg/share/doc/bleachbit/COPYING', # NetBSD 5
 
67
    '/usr/share/licenses/common/GPL3/license.txt' ) # Arch Linux
67
68
for lf in license_filenames:
68
69
    if os.path.exists(lf):
69
70
        license_filename = lf
70
71
        break
71
 
if None == license_filename:
72
 
    print 'warning: cannot find GPLv3 license text file'
73
72
 
74
73
# configuration
75
74
portable_mode = False