Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(252)

Unified Diff: third_party/twisted_8_1/twisted/internet/cfsupport/setup.py

Issue 12261012: Remove third_party/twisted_8_1 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/twisted_8_1/twisted/internet/cfsupport/setup.py
diff --git a/third_party/twisted_8_1/twisted/internet/cfsupport/setup.py b/third_party/twisted_8_1/twisted/internet/cfsupport/setup.py
deleted file mode 100644
index e5b3b2d06ee6f1369fa01031fdc13d6d020a3b32..0000000000000000000000000000000000000000
--- a/third_party/twisted_8_1/twisted/internet/cfsupport/setup.py
+++ /dev/null
@@ -1,50 +0,0 @@
-from distutils.core import setup
-from distutils.extension import Extension
-try:
- from Pyrex.Distutils import build_ext
- # pyrex is available
- setup(
- name = 'cfsupport',
- version = '0.4',
- description = "Enough CoreFoundation wrappers to deal with CFRunLoop",
- long_description = "Pythonic wrappers for pieces of Apple's CoreFoundation API's that are not otherwise wrapped by MacPython.\nPrimarily useful for dealing with CFRunLoop.",
- maintainer = 'Bob Ippolito',
- maintainer_email = 'bob@redivi.com',
- license = 'Python',
- platforms = ['Mac OSX'],
- keywords = ['CoreFoundation', 'CFRunLoop', 'Cocoa', 'GUI'],
- ext_modules=[
- Extension(
- 'cfsupport',
- ['cfsupport.pyx'],
- extra_link_args=[
- '-framework','CoreFoundation',
- '-framework','CoreServices',
- ],
- ),
- ],
- cmdclass = {'build_ext': build_ext}
- )
-except ImportError:
- # pyrex is not available, use existing .c
- setup(
- name = 'cfsupport',
- version = '0.4',
- description = "Enough CoreFoundation wrappers to deal with CFRunLoop",
- long_description = "Pythonic wrappers for pieces of Apple's CoreFoundation API's that are not otherwise wrapped by MacPython.\nPrimarily useful for dealing with CFRunLoop.",
- maintainer = 'Bob Ippolito',
- maintainer_email = 'bob@redivi.com',
- license = 'Python',
- platforms = ['Mac OSX'],
- keywords = ['CoreFoundation', 'CFRunLoop', 'Cocoa', 'GUI'],
- ext_modules=[
- Extension(
- 'cfsupport',
- ['cfsupport.c'],
- extra_link_args=[
- '-framework','CoreFoundation',
- '-framework','CoreServices',
- ],
- ),
- ],
- )
« no previous file with comments | « third_party/twisted_8_1/twisted/internet/cfsupport/python.pxi ('k') | third_party/twisted_8_1/twisted/internet/default.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698