Index: www/Makefile =================================================================== --- www/Makefile +++ www/Makefile @@ -1615,6 +1615,7 @@ SUBDIR += py-draftjs_exporter SUBDIR += py-drf-yasg SUBDIR += py-dtflickr + SUBDIR += py-ebaysdk SUBDIR += py-evernote SUBDIR += py-fake-useragent SUBDIR += py-falcon Index: www/py-ebaysdk/Makefile =================================================================== --- /dev/null +++ www/py-ebaysdk/Makefile @@ -0,0 +1,23 @@ +# $FreeBSD$ + +PORTNAME= ebaysdk +DISTVERSION= 2.1.5 +CATEGORIES= www python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= vishwin@vishwin.info +COMMENT= Programmatic interface into the eBay APIs + +LICENSE= CDDL +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}lxml>0:devel/py-lxml@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}requests>0:www/py-requests@${PY_FLAVOR} + +USES= python +USE_PYTHON= autoplist distutils + +NO_ARCH= yes + +.include Index: www/py-ebaysdk/distinfo =================================================================== --- /dev/null +++ www/py-ebaysdk/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1577182155 +SHA256 (ebaysdk-2.1.5.tar.gz) = 78458e1ea4a0fc7d693c26de363069696393767e4aa9689fd38efbfb08409acd +SIZE (ebaysdk-2.1.5.tar.gz) = 42971 Index: www/py-ebaysdk/files/patch-setup.py =================================================================== --- /dev/null +++ www/py-ebaysdk/files/patch-setup.py @@ -0,0 +1,11 @@ +--- setup.py.orig 2017-10-12 17:20:24 UTC ++++ setup.py +@@ -42,7 +42,7 @@ setup( + author_email="tkeefer@gmail.com", + url="https://github.com/timotheus/ebaysdk-python", + license="COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0", +- packages=find_packages(), ++ packages=find_packages(exclude=['samples', 'tests']), + provides=[PKG], + install_requires=['lxml', 'requests'], #requirements_file_to_list(), + test_suite='tests', Index: www/py-ebaysdk/pkg-descr =================================================================== --- /dev/null +++ www/py-ebaysdk/pkg-descr @@ -0,0 +1,6 @@ +The eBay Open source python SDK is a simple, programmatic interface +into the eBay APIs. It simplifies development and cuts development +time by standardizing calls, response processing, error handling, +debugging across the Finding, Shopping, & Trading APIs. + +WWW: https://github.com/timotheus/ebaysdk-python