This file is indexed.

/usr/share/pyshared/bb/ui/crumbs/progress.py is in bitbake 1.12.0-1.

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
import gtk

class ProgressBar(gtk.Dialog):
    def __init__(self, parent):

        gtk.Dialog.__init__(self)
        self.set_title("Parsing metadata, please wait...")
        self.set_default_size(500, 0)
        self.set_transient_for(parent)
        self.set_destroy_with_parent(True)
        self.progress = gtk.ProgressBar()
        self.vbox.pack_start(self.progress)
        self.show_all()

    def update(self, x, y):
        self.progress.set_fraction(float(x)/float(y))
        self.progress.set_text("%2d %%" % (x*100/y))