Date: Sun, 10 Mar 2019 18:22:01 +0000 (UTC) From: Kurt Jaeger <pi@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r495312 - in head/devel: . py-launchpadlib Message-ID: <201903101822.x2AIM1iH069871@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: pi Date: Sun Mar 10 18:22:01 2019 New Revision: 495312 URL: https://svnweb.freebsd.org/changeset/ports/495312 Log: New port: devel/py-launchpadlib launchpadlib is an open-source Python library that lets you treat the HTTP resources published by Launchpad's web service as Python objects responding to a standard set of commands. With launchpadlib you can integrate your applications into Launchpad without knowing a lot about HTTP client programming. WWW: https://help.launchpad.net/API/launchpadlib PR: 236434 Submitted by: fullermd@over-yonder.net Added: head/devel/py-launchpadlib/ head/devel/py-launchpadlib/Makefile (contents, props changed) head/devel/py-launchpadlib/distinfo (contents, props changed) head/devel/py-launchpadlib/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Mar 10 18:14:15 2019 (r495311) +++ head/devel/Makefile Sun Mar 10 18:22:01 2019 (r495312) @@ -4754,6 +4754,7 @@ SUBDIR += py-knack SUBDIR += py-kqueue SUBDIR += py-lark-parser + SUBDIR += py-launchpadlib SUBDIR += py-lazr.config SUBDIR += py-lazr.delegates SUBDIR += py-lazr.restfulclient Added: head/devel/py-launchpadlib/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-launchpadlib/Makefile Sun Mar 10 18:22:01 2019 (r495312) @@ -0,0 +1,28 @@ +# $FreeBSD$ + +PORTNAME= launchpadlib +PORTVERSION= 1.10.6 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= fullermd@over-yonder.net +COMMENT= Python API for Launchpad + +LICENSE= LGPL3 +LICENSE_FILE= ${WRKSRC}/COPYING.txt + +RUN_DEPENDS= \ + ${PYTHON_PKGNAMEPREFIX}httplib2>=0:www/py-httplib2@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}keyring>=0:security/py-keyring@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}lazr.restfulclient>=0:devel/py-lazr.restfulclient@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}lazr.uri>=0:devel/py-lazr.uri@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}testresources>=0:devel/py-testresources@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}wadllib>=0:devel/py-wadllib@${PY_FLAVOR} + +USES= python +USE_PYTHON= distutils autoplist + +NO_ARCH= yes + +.include <bsd.port.mk> Added: head/devel/py-launchpadlib/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-launchpadlib/distinfo Sun Mar 10 18:22:01 2019 (r495312) @@ -0,0 +1,3 @@ +TIMESTAMP = 1552171592 +SHA256 (launchpadlib-1.10.6.tar.gz) = e4709c18214863d147c6e0415e695d5cfddefc0dbd6ea28eb03e6eada956ae8b +SIZE (launchpadlib-1.10.6.tar.gz) = 58795 Added: head/devel/py-launchpadlib/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-launchpadlib/pkg-descr Sun Mar 10 18:22:01 2019 (r495312) @@ -0,0 +1,7 @@ +launchpadlib is an open-source Python library that lets you treat the +HTTP resources published by Launchpad's web service as Python objects +responding to a standard set of commands. With launchpadlib you can +integrate your applications into Launchpad without knowing a lot about +HTTP client programming. + +WWW: https://help.launchpad.net/API/launchpadlib
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201903101822.x2AIM1iH069871>