2756N/A#
2756N/A# CDDL HEADER START
2756N/A#
2756N/A# The contents of this file are subject to the terms of the
2756N/A# Common Development and Distribution License (the "License").
2756N/A# You may not use this file except in compliance with the License.
2756N/A#
2756N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
2756N/A# or http://www.opensolaris.org/os/licensing.
2756N/A# See the License for the specific language governing permissions
2756N/A# and limitations under the License.
2756N/A#
2756N/A# When distributing Covered Code, include this CDDL HEADER in each
2756N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
2756N/A# If applicable, add the following below this CDDL HEADER, with the
2756N/A# fields enclosed by brackets "[]" replaced with your own identifying
2756N/A# information: Portions Copyright [yyyy] [name of copyright owner]
2756N/A#
2756N/A# CDDL HEADER END
2756N/A#
2756N/A
2756N/A#
7083N/A# Copyright (c) 2014, 2016, Oracle and/or its affiliates. All rights reserved.
2756N/A#
2756N/A
2756N/Aset name=pkg.fmri \
2756N/A value=pkg:/library/python/cffi-$(PYV)@$(IPS_COMPONENT_VERSION),$(BUILD_VERSION)
2756N/Aset name=pkg.summary \
2756N/A value="Foreign function interface for Python calling C code"
2756N/Aset name=pkg.description \
2756N/A value="CFFI provides a convenient and reliable way of calling C code from Python. It does not require learning a new language or an extensive API, and tries to minimize the amount of C code you have to write. It works at both an ABI level, allowing you to reference symbols in libraries as well as at an API level, allowing you to embed C code in your Python program."
2756N/Aset name=com.oracle.info.description value="the cffi Python module"
3661N/Aset name=com.oracle.info.tpno value=$(TPNO)
3734N/Aset name=info.classification value=org.opensolaris.category.2008:Development/C \
3734N/A value=org.opensolaris.category.2008:Development/Python
2756N/Aset name=info.source-url value=$(COMPONENT_ARCHIVE_URL)
2756N/Aset name=info.upstream value=python-cffi@googlegroups.com
2756N/Aset name=info.upstream-url value=$(COMPONENT_PROJECT_URL)
2756N/Aset name=org.opensolaris.arc-caseid value=PSARC/2014/110
2756N/Aset name=org.opensolaris.consolidation value=$(CONSOLIDATION)
2756N/A#
2756N/Afile path=usr/lib/python$(PYVER)/vendor-packages/64/_cffi_backend.so
2756N/Afile path=usr/lib/python$(PYVER)/vendor-packages/_cffi_backend.so
2756N/Afile path=usr/lib/python$(PYVER)/vendor-packages/cffi-$(COMPONENT_VERSION)-py$(PYVER).egg-info/PKG-INFO
2756N/Afile path=usr/lib/python$(PYVER)/vendor-packages/cffi-$(COMPONENT_VERSION)-py$(PYVER).egg-info/SOURCES.txt
2756N/Afile path=usr/lib/python$(PYVER)/vendor-packages/cffi-$(COMPONENT_VERSION)-py$(PYVER).egg-info/dependency_links.txt
7083N/Afile path=usr/lib/python$(PYVER)/vendor-packages/cffi-$(COMPONENT_VERSION)-py$(PYVER).egg-info/entry_points.txt
2756N/Afile path=usr/lib/python$(PYVER)/vendor-packages/cffi-$(COMPONENT_VERSION)-py$(PYVER).egg-info/not-zip-safe
2756N/Afile path=usr/lib/python$(PYVER)/vendor-packages/cffi-$(COMPONENT_VERSION)-py$(PYVER).egg-info/requires.txt
2756N/Afile path=usr/lib/python$(PYVER)/vendor-packages/cffi-$(COMPONENT_VERSION)-py$(PYVER).egg-info/top_level.txt
2756N/Afile path=usr/lib/python$(PYVER)/vendor-packages/cffi/__init__.py
7083N/Afile path=usr/lib/python$(PYVER)/vendor-packages/cffi/_cffi_include.h
7083N/Afile path=usr/lib/python$(PYVER)/vendor-packages/cffi/_embedding.h
2756N/Afile path=usr/lib/python$(PYVER)/vendor-packages/cffi/api.py
2756N/Afile path=usr/lib/python$(PYVER)/vendor-packages/cffi/backend_ctypes.py
7083N/Afile path=usr/lib/python$(PYVER)/vendor-packages/cffi/cffi_opcode.py
2756N/Afile path=usr/lib/python$(PYVER)/vendor-packages/cffi/commontypes.py
2756N/Afile path=usr/lib/python$(PYVER)/vendor-packages/cffi/cparser.py
2756N/Afile path=usr/lib/python$(PYVER)/vendor-packages/cffi/ffiplatform.py
2756N/Afile path=usr/lib/python$(PYVER)/vendor-packages/cffi/gc_weakref.py
2756N/Afile path=usr/lib/python$(PYVER)/vendor-packages/cffi/lock.py
2756N/Afile path=usr/lib/python$(PYVER)/vendor-packages/cffi/model.py
7083N/Afile path=usr/lib/python$(PYVER)/vendor-packages/cffi/parse_c_type.h
7083N/Afile path=usr/lib/python$(PYVER)/vendor-packages/cffi/recompiler.py
7083N/Afile path=usr/lib/python$(PYVER)/vendor-packages/cffi/setuptools_ext.py
2756N/Afile path=usr/lib/python$(PYVER)/vendor-packages/cffi/vengine_cpy.py
2756N/Afile path=usr/lib/python$(PYVER)/vendor-packages/cffi/vengine_gen.py
2756N/Afile path=usr/lib/python$(PYVER)/vendor-packages/cffi/verifier.py
2756N/A#
7083N/Alicense cffi.license license=MIT
2756N/A#
2756N/A# force a dependency on the Python runtime
2756N/Adepend type=require fmri=__TBD pkg.debug.depend.file=python$(PYVER) \
2756N/A pkg.debug.depend.path=usr/bin
2756N/A
2756N/A# force a dependency on the cffi package
2756N/Adepend type=require \
2756N/A fmri=library/python/cffi@$(IPS_COMPONENT_VERSION),$(BUILD_VERSION)
2756N/A
2756N/A# force a dependency on pycparser; pkgdepend work is needed to flush this
2756N/A# out.
2756N/Adepend type=require fmri=library/python/pycparser-$(PYV)