From owner-svn-ports-all@freebsd.org Fri Dec 22 13:51:43 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 459A8E999A2; Fri, 22 Dec 2017 13:51:43 +0000 (UTC) (envelope-from olgeni@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 mx1.freebsd.org (Postfix) with ESMTPS id 0ED5C775DE; Fri, 22 Dec 2017 13:51:42 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vBMDpf6c061470; Fri, 22 Dec 2017 13:51:41 GMT (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vBMDpfD4061466; Fri, 22 Dec 2017 13:51:41 GMT (envelope-from olgeni@FreeBSD.org) Message-Id: <201712221351.vBMDpfD4061466@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olgeni set sender to olgeni@FreeBSD.org using -f From: Jimmy Olgeni Date: Fri, 22 Dec 2017 13:51:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r456978 - in head/devel: . py-apns2 X-SVN-Group: ports-head X-SVN-Commit-Author: olgeni X-SVN-Commit-Paths: in head/devel: . py-apns2 X-SVN-Commit-Revision: 456978 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Dec 2017 13:51:43 -0000 Author: olgeni Date: Fri Dec 22 13:51:41 2017 New Revision: 456978 URL: https://svnweb.freebsd.org/changeset/ports/456978 Log: Add devel/py-apns2, a Python client for the Apple Push Notification service. Added: head/devel/py-apns2/ head/devel/py-apns2/Makefile (contents, props changed) head/devel/py-apns2/distinfo (contents, props changed) head/devel/py-apns2/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri Dec 22 13:45:31 2017 (r456977) +++ head/devel/Makefile Fri Dec 22 13:51:41 2017 (r456978) @@ -4235,6 +4235,7 @@ SUBDIR += py-anyjson SUBDIR += py-apache_conf_parser SUBDIR += py-apipkg + SUBDIR += py-apns2 SUBDIR += py-appdirs SUBDIR += py-application SUBDIR += py-apptools Added: head/devel/py-apns2/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-apns2/Makefile Fri Dec 22 13:51:41 2017 (r456978) @@ -0,0 +1,23 @@ +# $FreeBSD$ + +PORTNAME= apns2 +PORTVERSION= 0.3.0 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= olgeni@FreeBSD.org + +COMMENT= Python client for Apple Push Notification service + +LICENSE= MIT + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cryptography>0:security/py-cryptography@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}hyper>0:www/py-hyper@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pyjwt>0:www/py-pyjwt@${FLAVOR} + +USES= python +USE_PYTHON= distutils autoplist +NO_ARCH= yes + +.include Added: head/devel/py-apns2/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-apns2/distinfo Fri Dec 22 13:51:41 2017 (r456978) @@ -0,0 +1,3 @@ +TIMESTAMP = 1513941333 +SHA256 (apns2-0.3.0.tar.gz) = a24052d8251b423f2224effb0891bdba217c92fe9d6d18c7f5b86099bd083c08 +SIZE (apns2-0.3.0.tar.gz) = 8878 Added: head/devel/py-apns2/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-apns2/pkg-descr Fri Dec 22 13:51:41 2017 (r456978) @@ -0,0 +1,4 @@ +Python library for interacting with the Apple Push Notification +service (APNs) via HTTP/2 protocol. + +WWW: https://github.com/Pr0Ger/PyAPNs2