opnsense-ports/www/py-evernote/files/patch-setup.py
Franco Fichtner 8cb1a96ede ports: pull in a snapshot of the FreeBSD ports tree
Taken from:	https://github.com/freebsd/freebsd-ports.git
Commit id:	5070672073b68be364139bc6b3a89100bd17d331
2014-11-09 14:03:21 +01:00

20 lines
653 B
Python

# Unbundle thrift and add it to requirements
# TODO: Upstream
--- ./setup.py.orig 2013-06-13 05:14:17.000000000 +1000
+++ ./setup.py 2014-07-24 20:19:10.032661190 +1000
@@ -18,7 +18,7 @@
url='http://dev.evernote.com',
description='Evernote SDK for Python',
long_description=read('README.md'),
- packages=find_packages('lib'),
+ packages=find_packages('lib',exclude=["*.thrift", "*,thrift.*", "thrift.*", "thrift"]),
package_dir={'': 'lib'},
classifiers=[
'Development Status :: 5 - Production/Stable',
@@ -29,5 +29,6 @@
license='BSD',
install_requires=[
'oauth2',
+ 'thrift',
],
)