mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-27 00:57:50 +00:00
[NEW] www/py-evernote: Evernote SDK for Python
This SDK contains wrapper code used to call the Evernote Cloud API from Python. WWW: https://dev.evernote.com
This commit is contained in:
parent
0469597f00
commit
d2cddc450b
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=365731
@ -1537,6 +1537,7 @@
|
||||
SUBDIR += py-dojango
|
||||
SUBDIR += py-dotcloud.cli
|
||||
SUBDIR += py-dtflickr
|
||||
SUBDIR += py-evernote
|
||||
SUBDIR += py-falcon
|
||||
SUBDIR += py-fcgi
|
||||
SUBDIR += py-fedex
|
||||
|
21
www/py-evernote/Makefile
Normal file
21
www/py-evernote/Makefile
Normal file
@ -0,0 +1,21 @@
|
||||
# Created by: Kubilay Kocak <koobs@FreeBSD.org>
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= evernote
|
||||
PORTVERSION= 1.25.0
|
||||
CATEGORIES= www python
|
||||
MASTER_SITES= CHEESESHOP
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
|
||||
MAINTAINER= koobs@FreeBSD.org
|
||||
COMMENT= Evernote SDK for Python
|
||||
|
||||
LICENSE= BSD2CLAUSE
|
||||
|
||||
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}oauth2>0:${PORTSDIR}/net/py-oauth2 \
|
||||
${PYTHON_PKGNAMEPREFIX}thrift>0:${PORTSDIR}/devel/py-thrift
|
||||
|
||||
USES= python:-2.7
|
||||
USE_PYTHON= autoplist distutils
|
||||
|
||||
.include <bsd.port.mk>
|
2
www/py-evernote/distinfo
Normal file
2
www/py-evernote/distinfo
Normal file
@ -0,0 +1,2 @@
|
||||
SHA256 (evernote-1.25.0.tar.gz) = 4d801dde4c300931996f4b93ba4a41ab280048a80a7e598800a38c789d7994d3
|
||||
SIZE (evernote-1.25.0.tar.gz) = 140770
|
20
www/py-evernote/files/patch-setup.py
Normal file
20
www/py-evernote/files/patch-setup.py
Normal file
@ -0,0 +1,20 @@
|
||||
# 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',
|
||||
],
|
||||
)
|
3
www/py-evernote/pkg-descr
Normal file
3
www/py-evernote/pkg-descr
Normal file
@ -0,0 +1,3 @@
|
||||
This SDK contains wrapper code used to call the Evernote Cloud API from Python.
|
||||
|
||||
WWW: https://dev.evernote.com
|
Loading…
Reference in New Issue
Block a user