This file is indexed.

/usr/lib/python2.7/dist-packages/zope.component-4.2.2.egg-info/PKG-INFO is in python-zope.component 4.2.2-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
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
Metadata-Version: 1.1
Name: zope.component
Version: 4.2.2
Summary: Zope Component Architecture
Home-page: https://github.com/zopefoundation/zope.component
Author: Zope Foundation and Contributors
Author-email: zope-dev@zope.org
License: ZPL 2.1
Description: ``zope.component``
        ==================
        
        .. image:: https://pypip.in/version/zope.component/badge.svg?style=flat
            :target: https://pypi.python.org/pypi/zope.component/
            :alt: Latest Version
        
        .. image:: https://travis-ci.org/zopefoundation/zope.component.png?branch=master
                :target: https://travis-ci.org/zopefoundation/zope.component
        
        .. image:: https://readthedocs.org/projects/zopecomponent/badge/?version=latest
                :target: http://zopecomponent.readthedocs.org/en/latest/
                :alt: Documentation Status
        
        .. note::
        
           This package is intended to be independently reusable in any Python
           project. It is maintained by the
           `Zope Toolkit project <http://docs.zope.org/zopetoolkit/>`_.
        
        This package represents the core of the Zope Component Architecture.
        Together with the zope.interface_ package, it provides facilities for
        defining, registering and looking up components.
        
        Please see http://docs.zope.org/zope.component/ for the documentation.
        
        .. _zope.interface: https://github.com/zopefoundation/zope.interface
        
        Changes
        =======
        
        4.2.2 (2015-06-04)
        ------------------
        
        - Fix test cases for PyPy and PyPy3.
        
        4.2.1 (2014-03-19)
        ------------------
        
        - Add support for Python 3.4.
        
        4.2.0 (2014-02-05)
        ------------------
        
        - Update ``boostrap.py`` to version 2.2.
        
        - Reset the cached ``adapter_hooks`` at ``zope.testing.cleanup.cleanUp``
          time (LP1100501).
        
        - Implement ability to specify adapter and utility names in Python. Use
          the ``@zope.component.named(name)`` decorator to specify the name.
        
        4.1.0 (2013-02-28)
        ------------------
        
        - Change "ZODB3" depdendency to "persistent".
        
        - ``tox`` now runs all tests for Python 3.2 and 3.3.
        
        - Enable buildout for Python 3.
        
        - Fix new failing tests.
        
        4.0.2 (2012-12-31)
        ------------------
        
        - Flesh out PyPI Trove classifiers.
        
        4.0.1 (2012-11-21)
        ------------------
        
        - Add support for Python 3.3.
        
        4.0.0 (2012-07-02)
        ------------------
        
        - Add PyPy and Python 3.2 support:
        
          - Security support omitted until ``zope.security`` ported.
        
          - Persistent registry support omitted until ``ZODB`` ported (or
            ``persistent`` factored out).
        
        - Bring unit test coverage to 100%.
        
        - Remove the long-deprecated ``layer`` argument to the
          ``zope.component.zcml.view`` and ``zope.component.zcml.resource``
          ZCML directives.
        
        - Add support for continuous integration using ``tox`` and ``jenkins``.
        
        - Got tests to run using ``setup.py test``.
        
        - Add ``Sphinx`` documentation.
        
        - Add ``setup.py docs`` alias (installs ``Sphinx`` and dependencies).
        
        - Add ``setup.py dev`` alias (runs ``setup.py develop`` plus installs
          ``nose`` and ``coverage``).
        
        3.12.1 (2012-04-02)
        -------------------
        
        - Wrap ``with site(foo)`` in try/finally (LP768151).
        
        3.12.0 (2011-11-16)
        -------------------
        
        - Add convenience function zope.component.hooks.site (a contextmanager),
          so one can write ``with site(foo): ...``.
        
        3.11.0 (2011-09-22)
        -------------------
        
        - Move code from ``zope.component.registry`` which implements a basic
          nonperistent component registry to ``zope.interface.registry``.  This code
          was moved from ``zope.component`` into ``zope.interface`` to make porting
          systems (such as Pyramid) that rely only on a basic component registry to
          Python 3 possible without needing to port the entirety of the
          ``zope.component`` package.  Backwards compatibility import shims have been
          left behind in ``zope.component``, so this change will not break any
          existing code.
        
        - Move interfaces from ``zope.component.interfaces`` to
          ``zope.interface.interfaces``: ``ComponentLookupError``, ``Invalid``,
          ``IObjectEvent``, ``ObjectEvent``, ``IComponentLookup``, ``IRegistration``,
          ``IUtilityRegistration``, ``IAdapterRegistration``,
          ``ISubscriptionAdapterRegistration``, ``IHandlerRegistration``,
          ``IRegistrationEvent``, ``RegistrationEvent``, ``IRegistered``,
          ``Registered``, ``IUnregistered``, ``Unregistered``,
          ``IComponentRegistry``, and ``IComponents``.  Backwards compatibility shims
          left in place.
        
        - Depend on ``zope.interface`` >= 3.8.0.
        
        3.10.0 (2010-09-25)
        -------------------
        
        - Remove the ``docs`` extra and the ``sphinxdoc`` recipe.
        
        - Create a ``security`` extra to move security-related dependencies out of the
          ``test`` extra.
        
        - Use the new ``zope.testrunner`` package for tests.
        
        - Add a basic test for the ``configure.zcml`` file provided.
        
        3.9.5 (2010-07-09)
        ------------------
        
        - Fix test requirements specification.
        
        3.9.4 (2010-04-30)
        ------------------
        
        - Prefer the standard library ``doctest`` to the one from ``zope.testing``.
        
        3.9.3 (2010-03-08)
        ------------------
        
        - The ZCML directives provided by ``zope.component`` now register the
          components in the registry returned by ``getSiteManager`` instead of the
          global registry. This change allows the hooking of the ``getSiteManager``
          method before the load of a ZCML file to register the components in a
          custom registry.
        
        3.9.2 (2010-01-22)
        ------------------
        
        - Fix a bug introduced by recent refactoring, where passing
          ``CheckerPublic`` to ``securityAdapterFactory`` wrongly wrapped the factory
          into a ``LocatingUntrustedAdapterFactory``.
        
        3.9.1 (2010-01-21)
        ------------------
        
        - Modify the tests to avoid allowing the tested testrunner to be influenced
          by options of the outer testrunner, such a the ``-v`` option.
        
        3.9.0 (2010-01-21)
        ------------------
        
        - Add testlayer support. It is now possible to load a ZCML file within
          tests more easily. See ``src/zope/component/testlayer.py`` and
          ``src/zope/component/testlayer.txt``.
        
        3.8.0 (2009-11-16)
        ------------------
        
        - Remove the dependencies on ``zope.proxy`` and ``zope.security`` from the
          zcml extra: ``zope.component`` no longer has a hard dependency on them;
          the support for security proxied components ZCML registrations is enabled
          only if ``zope.security`` and ``zope.proxy`` are available.
        
        - Move the ``IPossibleSite`` and ``ISite`` interfaces here from
          ``zope.location`` as they are dealing with ``zope.component``'s concept of
          a site, but not with location.
        
        - Move the ``zope.site.hooks`` functionality to ``zope.component.hooks`` as it
          isn't actually dealing with ``zope.site``'s concept of a site.
        
        3.7.1 (2009-07-24)
        ------------------
        
        - Fix a problem, where ``queryNextUtility`` could fail if the context could
          not be adapted to a ``IComponentLookup``.
        
        - Fix 2 related bugs:
        
          When a utility is registered and there was previously a utility
          registered for the same interface and name, then the old utility is
          unregistered.  The 2 bugs related to this:
        
          - There was no ``Unregistered`` for the implicit unregistration. Now
            there is.
        
          - The old utility was still held and returned by
            ``getAllUtilitiesRegisteredFor``.  In other words, it was still
            considered registered, eeven though it wasn't.  A particularly
            negative consequence of this is that the utility is held in memory
            or in the database even though it isn't used.
        
        3.7.0 (2009-05-21)
        ------------------
        
        - Ensure that ``HookableTests`` are run by the testrunner.
        
        - Add ``zope:view`` and ``zope:resource`` implementations into
          ``zope.component.zcml`` (dependency loaded with ``zope.component [zcml]``).
        
        3.6.0 (2009-03-12)
        ------------------
        
        - IMPORTANT: the interfaces that were defined in the
          ``zope.component.bbb.interfaces`` and deprecated for years are
          now (re)moved. However, some packages, including part of zope
          framework were still using those interfaces. They will be adapted
          for this change. If you were using some of those interfaces, you
          need to adapt your code as well:
        
           - Move ``IView`` and ``IDefaultViewName`` to ``zope.publisher.interfaces``.
        
           - Move ``IResource`` to ``zope.app.publisher.interfaces``.
        
           - Remove ``IContextDependent``, ``IPresentation``, ``IPresentationRequest``,
             ``IResourceFactory``, and ``IViewFactory`` completely.
        
             If you used ``IViewFactory`` in context of ``zope.app.form``, there's now
             ``IWidgetFactory`` in the ``zope.app.form.interfaces`` instead.
        
        - Move ``getNextUtility`` / ``queryNextUtility`` functions here from
          ``zope.site`` (they were in ``zope.app.component`` even earlier).
        
        - Add a pure-Python ``hookable`` implementation, for use when
          ``zope.hookable`` is not present.
        
        - Remove use of ``zope.deferredimport`` by breaking import cycles.
        
        - Cleanup package documentation and changelog a bit. Add sphinx-based
          documentation building command to the buildout.
        
        - Remove deprecated code.
        
        - Change package's mailing list address to zope-dev at zope.org, because
          zope3-dev at zope.org is now retired.
        
        3.5.1 (2008-07-25)
        ------------------
        
        - Fix bug introduced in 3.5.0: ``<utility factory="...">`` no longer supported
          interfaces declared in Python and always wanted an explicit
          ``provides="..."`` attribute. https://bugs.launchpad.net/zope3/+bug/251865
        
        3.5.0 (2008-07-25)
        ------------------
        
        - Support registration of utilities via factories through the component
          registry and return factory information in the registration information.
          Fixes https://bugs.launchpad.net/zope3/+bug/240631
        
        - Optimize ``un/registerUtility`` by storing an optimized data structure for
          efficient retrieval of already registered utilities. This avoids looping over
          all utilities when registering a new one.
        
        3.4.0 (2007-09-29)
        ------------------
        
        No further changes since 3.4.0a1.
        
        3.4.0a1 (2007-04-22)
        --------------------
        
        Corresponds to ``zope.component`` from Zope 3.4.0a1.
        
        - In the Zope 3.3.x series, ``zope.component`` was simplified yet once
          more.  See http://wiki.zope.org/zope3/LocalComponentManagementSimplification
          for the proposal describing the changes.
        
        3.2.0.2 (2006-04-15)
        --------------------
        
        - Fix packaging bug:  ``package_dir`` must be a *relative* path.
        
        3.2.0.1 (2006-04-14)
        --------------------
        
        - Packaging change: suppress inclusion of ``setup.cfg`` in ``sdist`` builds.
        
        3.2.0 (2006-01-05)
        ------------------
        
        Corresponds to the verison of the ``zope.component`` package shipped as part
        of the Zope 3.2.0 release.
        
        - Deprecated services and related APIs. The adapter and utility registries
          are now available directly via the site manager's 'adapters' and 'utilities'
          attributes, respectively.  Services are accessible, but deprecated, and
          will be removed in Zope 3.3.
        
        - Deprecated all presentation-related APIs, including all view-related
          API functions. Use the adapter API functions instead.
          See http://dev.zope.org/Zope3/ImplementViewsAsAdapters`
        
        - Deprecated ``contextdependent`` package:  site managers are now looked up
          via a thread global, set during URL traversal.  The ``context`` argument
          is now always optional, and should no longer be passed.
        
        3.0.0 (2004-11-07)
        ------------------
        
        Corresponds to the verison of the ``zope.component`` package shipped as part of
        the Zope X3.0.0 release.
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved
Classifier: License :: OSI Approved :: Zope Public License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Framework :: Zope3
Classifier: Topic :: Software Development :: Libraries :: Python Modules