From owner-svn-ports-head@freebsd.org Sun Mar 10 18:22:03 2019 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2D93A153C280; Sun, 10 Mar 2019 18:22:03 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C587B87F67; Sun, 10 Mar 2019 18:22:02 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id BA3E926E1B; Sun, 10 Mar 2019 18:22:02 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x2AIM2Sr069875; Sun, 10 Mar 2019 18:22:02 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x2AIM1iH069871; Sun, 10 Mar 2019 18:22:01 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201903101822.x2AIM1iH069871@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Sun, 10 Mar 2019 18:22:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r495312 - in head/devel: . py-launchpadlib X-SVN-Group: ports-head X-SVN-Commit-Author: pi X-SVN-Commit-Paths: in head/devel: . py-launchpadlib X-SVN-Commit-Revision: 495312 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: C587B87F67 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.97)[-0.973,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Mar 2019 18:22:03 -0000 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 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