author | John Beck <John.Beck@Oracle.COM> |
Mon, 27 Jan 2014 17:48:58 -0800 | |
changeset 1666 | 69d14d547e77 |
parent 1602 | f0ef141ec2b9 |
child 1890 | 5a4ef66c42bf |
permissions | -rw-r--r-- |
1484
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
1 |
# |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
2 |
# CDDL HEADER START |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
3 |
# |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
4 |
# The contents of this file are subject to the terms of the |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
5 |
# Common Development and Distribution License (the "License"). |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
6 |
# You may not use this file except in compliance with the License. |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
7 |
# |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
8 |
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
9 |
# or http://www.opensolaris.org/os/licensing. |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
10 |
# See the License for the specific language governing permissions |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
11 |
# and limitations under the License. |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
12 |
# |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
13 |
# When distributing Covered Code, include this CDDL HEADER in each |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
14 |
# file and include the License file at usr/src/OPENSOLARIS.LICENSE. |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
15 |
# If applicable, add the following below this CDDL HEADER, with the |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
16 |
# fields enclosed by brackets "[]" replaced with your own identifying |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
17 |
# information: Portions Copyright [yyyy] [name of copyright owner] |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
18 |
# |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
19 |
# CDDL HEADER END |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
20 |
# |
1666
69d14d547e77
PSARC 2014/009 Python pkg(5) name-space update
John Beck <John.Beck@Oracle.COM>
parents:
1602
diff
changeset
|
21 |
# Copyright (c) 2012, 2014, Oracle and/or its affiliates. All rights reserved. |
1484
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
22 |
# |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
23 |
|
1602
f0ef141ec2b9
17952019 kombu is missing python dependencies
Drew Fisher <drew.fisher@oracle.com>
parents:
1484
diff
changeset
|
24 |
# importlib is part of python 2.7, but separate in 2.6 |
1666
69d14d547e77
PSARC 2014/009 Python pkg(5) name-space update
John Beck <John.Beck@Oracle.COM>
parents:
1602
diff
changeset
|
25 |
<transform depend type=require fmri=library/python/importlib-27 -> drop> |
1602
f0ef141ec2b9
17952019 kombu is missing python dependencies
Drew Fisher <drew.fisher@oracle.com>
parents:
1484
diff
changeset
|
26 |
# ordereddict is part of python 2.7, but separate in 2.6 |
1666
69d14d547e77
PSARC 2014/009 Python pkg(5) name-space update
John Beck <John.Beck@Oracle.COM>
parents:
1602
diff
changeset
|
27 |
<transform depend type=require fmri=library/python/ordereddict-27 -> drop> |
1484
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
28 |
# The test related file actions have not been included because they will fail |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
29 |
# in dependency generation until the various test related modules that they |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
30 |
# need are also provided. |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
31 |
set name=pkg.fmri \ |
1666
69d14d547e77
PSARC 2014/009 Python pkg(5) name-space update
John Beck <John.Beck@Oracle.COM>
parents:
1602
diff
changeset
|
32 |
value=pkg:/library/python/kombu-$(PYV)@$(IPS_COMPONENT_VERSION),$(BUILD_VERSION) |
1484
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
33 |
set name=pkg.summary value="Messaging framework for Python" |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
34 |
set name=pkg.description \ |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
35 |
value="The aim of Kombu is to make messaging in Python as easy as possible by providing an idiomatic high-level interface for the AMQ protocol (AMQP), and also provide proven and tested solutions to common messaging problems." |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
36 |
set name=com.oracle.info.description value="the Python kombu module" |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
37 |
set name=com.oracle.info.tpno value=14503 |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
38 |
set name=info.classification \ |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
39 |
value=org.opensolaris.category.2008:Development/Python |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
40 |
set name=info.source-url value=$(COMPONENT_ARCHIVE_URL) |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
41 |
set name=info.upstream value="Ask Solem <[email protected]>" |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
42 |
set name=info.upstream-url value=$(COMPONENT_PROJECT_URL) |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
43 |
set name=org.opensolaris.arc-caseid value=PSARC/2013/187 |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
44 |
set name=org.opensolaris.consolidation value=$(CONSOLIDATION) |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
45 |
file path=usr/lib/python$(PYVER)/vendor-packages/kombu-$(COMPONENT_VERSION)-py$(PYVER).egg-info/PKG-INFO |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
46 |
file path=usr/lib/python$(PYVER)/vendor-packages/kombu-$(COMPONENT_VERSION)-py$(PYVER).egg-info/SOURCES.txt |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
47 |
file path=usr/lib/python$(PYVER)/vendor-packages/kombu-$(COMPONENT_VERSION)-py$(PYVER).egg-info/dependency_links.txt |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
48 |
file path=usr/lib/python$(PYVER)/vendor-packages/kombu-$(COMPONENT_VERSION)-py$(PYVER).egg-info/not-zip-safe |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
49 |
file path=usr/lib/python$(PYVER)/vendor-packages/kombu-$(COMPONENT_VERSION)-py$(PYVER).egg-info/requires.txt |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
50 |
file path=usr/lib/python$(PYVER)/vendor-packages/kombu-$(COMPONENT_VERSION)-py$(PYVER).egg-info/top_level.txt |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
51 |
file path=usr/lib/python$(PYVER)/vendor-packages/kombu/__init__.py |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
52 |
file path=usr/lib/python$(PYVER)/vendor-packages/kombu/abstract.py |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
53 |
file path=usr/lib/python$(PYVER)/vendor-packages/kombu/clocks.py |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
54 |
file path=usr/lib/python$(PYVER)/vendor-packages/kombu/common.py |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
55 |
file path=usr/lib/python$(PYVER)/vendor-packages/kombu/compat.py |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
56 |
file path=usr/lib/python$(PYVER)/vendor-packages/kombu/compression.py |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
57 |
file path=usr/lib/python$(PYVER)/vendor-packages/kombu/connection.py |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
58 |
file path=usr/lib/python$(PYVER)/vendor-packages/kombu/entity.py |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
59 |
file path=usr/lib/python$(PYVER)/vendor-packages/kombu/exceptions.py |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
60 |
file path=usr/lib/python$(PYVER)/vendor-packages/kombu/log.py |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
61 |
file path=usr/lib/python$(PYVER)/vendor-packages/kombu/messaging.py |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
62 |
file path=usr/lib/python$(PYVER)/vendor-packages/kombu/mixins.py |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
63 |
file path=usr/lib/python$(PYVER)/vendor-packages/kombu/pidbox.py |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
64 |
file path=usr/lib/python$(PYVER)/vendor-packages/kombu/pools.py |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
65 |
file path=usr/lib/python$(PYVER)/vendor-packages/kombu/serialization.py |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
66 |
file path=usr/lib/python$(PYVER)/vendor-packages/kombu/simple.py |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
67 |
file path=usr/lib/python$(PYVER)/vendor-packages/kombu/syn.py |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
68 |
file path=usr/lib/python$(PYVER)/vendor-packages/kombu/transport/SQS.py |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
69 |
file path=usr/lib/python$(PYVER)/vendor-packages/kombu/transport/__init__.py |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
70 |
file path=usr/lib/python$(PYVER)/vendor-packages/kombu/transport/amqplib.py |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
71 |
file path=usr/lib/python$(PYVER)/vendor-packages/kombu/transport/base.py |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
72 |
file path=usr/lib/python$(PYVER)/vendor-packages/kombu/transport/beanstalk.py |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
73 |
file path=usr/lib/python$(PYVER)/vendor-packages/kombu/transport/couchdb.py |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
74 |
file path=usr/lib/python$(PYVER)/vendor-packages/kombu/transport/django/__init__.py |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
75 |
file path=usr/lib/python$(PYVER)/vendor-packages/kombu/transport/django/management/__init__.py |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
76 |
file path=usr/lib/python$(PYVER)/vendor-packages/kombu/transport/django/management/commands/__init__.py |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
77 |
file path=usr/lib/python$(PYVER)/vendor-packages/kombu/transport/django/management/commands/clean_kombu_messages.py |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
78 |
file path=usr/lib/python$(PYVER)/vendor-packages/kombu/transport/django/managers.py |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
79 |
file path=usr/lib/python$(PYVER)/vendor-packages/kombu/transport/django/migrations/0001_initial.py |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
80 |
file path=usr/lib/python$(PYVER)/vendor-packages/kombu/transport/django/migrations/__init__.py |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
81 |
file path=usr/lib/python$(PYVER)/vendor-packages/kombu/transport/django/models.py |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
82 |
file path=usr/lib/python$(PYVER)/vendor-packages/kombu/transport/filesystem.py |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
83 |
file path=usr/lib/python$(PYVER)/vendor-packages/kombu/transport/librabbitmq.py |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
84 |
file path=usr/lib/python$(PYVER)/vendor-packages/kombu/transport/memory.py |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
85 |
file path=usr/lib/python$(PYVER)/vendor-packages/kombu/transport/mongodb.py |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
86 |
file path=usr/lib/python$(PYVER)/vendor-packages/kombu/transport/pyamqp.py |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
87 |
file path=usr/lib/python$(PYVER)/vendor-packages/kombu/transport/redis.py |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
88 |
file path=usr/lib/python$(PYVER)/vendor-packages/kombu/transport/sqlalchemy/__init__.py |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
89 |
file path=usr/lib/python$(PYVER)/vendor-packages/kombu/transport/sqlalchemy/models.py |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
90 |
file path=usr/lib/python$(PYVER)/vendor-packages/kombu/transport/virtual/__init__.py |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
91 |
file path=usr/lib/python$(PYVER)/vendor-packages/kombu/transport/virtual/exchange.py |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
92 |
file path=usr/lib/python$(PYVER)/vendor-packages/kombu/transport/virtual/scheduling.py |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
93 |
file path=usr/lib/python$(PYVER)/vendor-packages/kombu/transport/zmq.py |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
94 |
file path=usr/lib/python$(PYVER)/vendor-packages/kombu/transport/zookeeper.py |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
95 |
file path=usr/lib/python$(PYVER)/vendor-packages/kombu/utils/__init__.py |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
96 |
file path=usr/lib/python$(PYVER)/vendor-packages/kombu/utils/amq_manager.py |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
97 |
file path=usr/lib/python$(PYVER)/vendor-packages/kombu/utils/compat.py |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
98 |
file path=usr/lib/python$(PYVER)/vendor-packages/kombu/utils/debug.py |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
99 |
file path=usr/lib/python$(PYVER)/vendor-packages/kombu/utils/encoding.py |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
100 |
file path=usr/lib/python$(PYVER)/vendor-packages/kombu/utils/eventio.py |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
101 |
file path=usr/lib/python$(PYVER)/vendor-packages/kombu/utils/finalize.py |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
102 |
file path=usr/lib/python$(PYVER)/vendor-packages/kombu/utils/functional.py |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
103 |
file path=usr/lib/python$(PYVER)/vendor-packages/kombu/utils/limits.py |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
104 |
file path=usr/lib/python$(PYVER)/vendor-packages/kombu/utils/text.py |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
105 |
file path=usr/lib/python$(PYVER)/vendor-packages/kombu/utils/url.py |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
106 |
license kombu.license license=BSD |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
107 |
|
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
108 |
# force a dependency on the Python runtime |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
109 |
depend type=require fmri=__TBD pkg.debug.depend.file=python$(PYVER) \ |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
110 |
pkg.debug.depend.path=usr/bin |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
111 |
|
1602
f0ef141ec2b9
17952019 kombu is missing python dependencies
Drew Fisher <drew.fisher@oracle.com>
parents:
1484
diff
changeset
|
112 |
# force a dependency on amqp; pkgdepend work is needed to flush this out. |
1666
69d14d547e77
PSARC 2014/009 Python pkg(5) name-space update
John Beck <John.Beck@Oracle.COM>
parents:
1602
diff
changeset
|
113 |
depend type=require fmri=library/python/amqp-$(PYV) |
1602
f0ef141ec2b9
17952019 kombu is missing python dependencies
Drew Fisher <drew.fisher@oracle.com>
parents:
1484
diff
changeset
|
114 |
|
1484
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
115 |
# force a dependency on anyjson; pkgdepend work is needed to flush this out. |
1666
69d14d547e77
PSARC 2014/009 Python pkg(5) name-space update
John Beck <John.Beck@Oracle.COM>
parents:
1602
diff
changeset
|
116 |
depend type=require fmri=library/python/anyjson-$(PYV) |
1484
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
117 |
|
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
118 |
# force a dependency on boto; pkgdepend work is needed to flush this out. |
1666
69d14d547e77
PSARC 2014/009 Python pkg(5) name-space update
John Beck <John.Beck@Oracle.COM>
parents:
1602
diff
changeset
|
119 |
depend type=require fmri=library/python/boto-$(PYV) |
1484
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
120 |
|
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
121 |
# force a dependency on eventlet; pkgdepend work is needed to flush this out. |
1666
69d14d547e77
PSARC 2014/009 Python pkg(5) name-space update
John Beck <John.Beck@Oracle.COM>
parents:
1602
diff
changeset
|
122 |
depend type=require fmri=library/python/eventlet-$(PYV) |
1484
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
123 |
|
1602
f0ef141ec2b9
17952019 kombu is missing python dependencies
Drew Fisher <drew.fisher@oracle.com>
parents:
1484
diff
changeset
|
124 |
# force a dependency on importlib; pkgdepend work is needed to flush this out. |
1666
69d14d547e77
PSARC 2014/009 Python pkg(5) name-space update
John Beck <John.Beck@Oracle.COM>
parents:
1602
diff
changeset
|
125 |
depend type=require fmri=library/python/importlib-$(PYV) |
1602
f0ef141ec2b9
17952019 kombu is missing python dependencies
Drew Fisher <drew.fisher@oracle.com>
parents:
1484
diff
changeset
|
126 |
|
1484
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
127 |
# force a dependency on the kombu package |
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
128 |
depend type=require \ |
1666
69d14d547e77
PSARC 2014/009 Python pkg(5) name-space update
John Beck <John.Beck@Oracle.COM>
parents:
1602
diff
changeset
|
129 |
fmri=library/python/kombu@$(IPS_COMPONENT_VERSION),$(BUILD_VERSION) |
1484
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
130 |
|
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
131 |
# force a dependency on librabbitmq; pkgdepend work is needed to flush this out. |
1666
69d14d547e77
PSARC 2014/009 Python pkg(5) name-space update
John Beck <John.Beck@Oracle.COM>
parents:
1602
diff
changeset
|
132 |
depend type=require fmri=library/python/librabbitmq-$(PYV) |
1484
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
133 |
|
1602
f0ef141ec2b9
17952019 kombu is missing python dependencies
Drew Fisher <drew.fisher@oracle.com>
parents:
1484
diff
changeset
|
134 |
# force a dependency on ordereddict; pkgdepend work is needed to flush this out. |
1666
69d14d547e77
PSARC 2014/009 Python pkg(5) name-space update
John Beck <John.Beck@Oracle.COM>
parents:
1602
diff
changeset
|
135 |
depend type=require fmri=library/python/ordereddict-$(PYV) |
1602
f0ef141ec2b9
17952019 kombu is missing python dependencies
Drew Fisher <drew.fisher@oracle.com>
parents:
1484
diff
changeset
|
136 |
|
1484
01108fd9c6ef
PSARC 2013/140 greenlet version 0.4.0 - Python coroutines module
John Beck <John.Beck@Oracle.COM>
parents:
diff
changeset
|
137 |
# force a dependency on pyrabbit; pkgdepend work is needed to flush this out. |
1666
69d14d547e77
PSARC 2014/009 Python pkg(5) name-space update
John Beck <John.Beck@Oracle.COM>
parents:
1602
diff
changeset
|
138 |
depend type=require fmri=library/python/pyrabbit-$(PYV) |
69d14d547e77
PSARC 2014/009 Python pkg(5) name-space update
John Beck <John.Beck@Oracle.COM>
parents:
1602
diff
changeset
|
139 |
|
69d14d547e77
PSARC 2014/009 Python pkg(5) name-space update
John Beck <John.Beck@Oracle.COM>
parents:
1602
diff
changeset
|
140 |
# force the rename with an optional dependency on the old name |
69d14d547e77
PSARC 2014/009 Python pkg(5) name-space update
John Beck <John.Beck@Oracle.COM>
parents:
1602
diff
changeset
|
141 |
depend type=optional fmri=library/python-2/kombu-$(PYV)@2.5.12,5.12-5.12.0.0.0.41.0 |