This file is indexed.

/usr/share/cloudprint/cloudprint-0.14.egg-info/PKG-INFO is in cloudprint 0.14-9.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
Metadata-Version: 1.1
Name: cloudprint
Version: 0.14
Summary: Google cloud print proxy for linux/OSX
Home-page: https://github.com/armooo/cloudprint
Author: Jason Michalski
Author-email: armooo@armooo.net
License: UNKNOWN
Description-Content-Type: UNKNOWN
Description: Share your CUPS printers with google's cloud print.
        Works with linux and OS X.
        
        This software is a python implementation of a cloud print connector. Unlike
        Google's linux connector, it does not require chrome to be installed on the server.
        
        
        Requires
        ---------------------------------------------------
        - python 2.6 or 2.7
        - pycups (can be tricky on OS X) wich depends on libcups2-dev
        
        Usage
        ---------------------------------------------------
        
        ::
        
          cloudprint [<option> ...]
          -d              : enable daemon mode (requires the daemon module)
          -l              : logout of the current google account
          -p pid_file     : path to write the pid to (default cloudprint.pid)
          -a account_file : path to google account ident data (optional)
          -c              : establish and store login credentials, then exit
          -f              : 'fast poll', if notifications aren't working
          -u              : store username/password in addition to login token
                            to avoid authentication expiration
          -i regexp       : include files matching regexp
          -x regexp       : exclude filees matching regexp
                            regexp: a Python regexp, which is matched against the
                                    start of the printer name
          -s sitename     : one-word site-name that will prefix printers
          -h              : display this help
        
        Google accounts with 2 step verification enabled need to use an
        `application-specific password <http://www.google.com/support/accounts/bin/static.py?page=guide.cs&guide=1056283&topic=1056286>`_.
        
        Example
        ---------------------------------------------------
        
        ::
        
          cloudprint
          Google username: username@gmail.com
          Password:
          Added Printer Brother-HL-2170W
        
        Examples - Include/Exclude
        ---------------------------------------------------
        
        Include only the printers "`lp`" and "`2up`":
        ::
        
          cloudprint -i lp -i 2up
        
        Exclude all printers whose names start with "`GCP-`":
        ::
        
          cloudprint -x GCP-
        
        By default, all printers are included.  For the include and exclude options,
        the argument is a regular expression which is matched against the start of the
        printer name.
        
        For example, to include all printers whose names begin "`lp`":
        ::
        
          cloudprint -i lp # includes both lp and lp2up
        
        
        Install
        ---------------------------------------------------
        
        ::
        
          pip install cloudprint
          or with optional daemon support
          pip install cloudprint[daemon]
        
        After running cloudprint, verify that the connector successfully installed the cloud printer by visiting
        http://www.google.com/cloudprint/manage.html.
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: End Users/Desktop
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: POSIX
Classifier: Topic :: Printing
Classifier: License :: OSI Approved :: GNU General Public License (GPL)