This file is indexed.

/usr/lib/ruby/vendor_ruby/pango/deprecated.rb is in ruby-pango 3.2.4-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
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
# Copyright (C) 2017  Ruby-GNOME2 Project Team
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA

module Pango
  extend GLib::Deprecatable

  define_deprecated_enums :Alignment, "ALIGN"
  define_deprecated_enums :Alignment
  define_deprecated_enums :CoverageLevel, "COVERAGE"
  define_deprecated_enums :CoverageLevel
  define_deprecated_enums :Direction, "DIRECTION"
  define_deprecated_enums :Direction
  define_deprecated_enums :WrapMode, "WRAP"
  define_deprecated_enums :WrapMode
  define_deprecated_enums :FontMask, "FONT_MASK"
  define_deprecated_enums :FontMask
  define_deprecated_enums :Stretch, "STRETCH"
  define_deprecated_enums :Stretch
  define_deprecated_enums :Style, "STYLE"
  define_deprecated_enums :Style
  define_deprecated_enums :Variant, "VARIANT"
  define_deprecated_enums :Variant
  define_deprecated_enums :Weight, "WEIGHT"
  define_deprecated_enums :Weight
  define_deprecated_enums :TabAlign, "TAB"
  define_deprecated_enums :TabAlign
  define_deprecated_enums :Underline, "UNDERLINE"
  define_deprecated_enums :Underline
  define_deprecated_const :UNDERLINE, "Pango::Underline"
  define_deprecated_enums :Script, "SCRIPT"
  define_deprecated_enums :Script
  define_deprecated_enums :EllipsizeMode, "ELLIPSIZE"
  define_deprecated_enums :EllipsizeMode
  define_deprecated_enums :RenderPart, "PART"
  define_deprecated_enums :RenderPart

  class AttrScale
    extend GLib::Deprecatable

    define_deprecated_const :XX_SMALL, "Pango::Scale::XX_SMALL"
    define_deprecated_const :X_SMALL, "Pango::Scale::X_SMALL"
    define_deprecated_const :SMALL, "Pango::Scale::SMALL"
    define_deprecated_const :MEDIUM, "Pango::Scale::MEDIUM"
    define_deprecated_const :LARGE, "Pango::Scale::LARGE"
    define_deprecated_const :X_LARGE, "Pango::Scale::X_LARGE"
    define_deprecated_const :XX_LARGE, "Pango::Scale::XX_LARGE"
  end

  class AttrUnderline
    extend GLib::Deprecatable

    define_deprecated_enums :Underline
  end

  class Context
    extend GLib::Deprecatable

    define_deprecated_enums :Direction, "DIRECTION"
  end

  class FontDescription
    extend GLib::Deprecatable

    define_deprecated_enums :Weight, "WEIGHT"
    define_deprecated_enums :Style, "STYLE"
  end

  class Gravity
    extend GLib::Deprecatable

    define_deprecated_enums :GravityHint, "HINT"
  end

  class Layout
    extend GLib::Deprecatable

    define_deprecated_enums :Alignment, "ALIGN"
    define_deprecated_const :Alignment, "Pango::Alignment"
    define_deprecated_enums :WrapMode, "WRAP"
    define_deprecated_const :WrapMode, "Pango::WrapMode"
    define_deprecated_enums :EllipsizeMode, "ELLIPSIZE"
    define_deprecated_const :EllipsizeMode, "Pango::EllipsizeMode"
  end
end