From owner-svn-ports-head@freebsd.org Fri Dec 22 13:45:33 2017 Return-Path: Delivered-To: svn-ports-head@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 7E5B4E99499; Fri, 22 Dec 2017 13:45:33 +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 5420A77119; Fri, 22 Dec 2017 13:45:33 +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 vBMDjWiE058254; Fri, 22 Dec 2017 13:45:32 GMT (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vBMDjVCf058249; Fri, 22 Dec 2017 13:45:31 GMT (envelope-from olgeni@FreeBSD.org) Message-Id: <201712221345.vBMDjVCf058249@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:45:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r456977 - in head/devel: . py-pyfcm py-pyfcm/files X-SVN-Group: ports-head X-SVN-Commit-Author: olgeni X-SVN-Commit-Paths: in head/devel: . py-pyfcm py-pyfcm/files X-SVN-Commit-Revision: 456977 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.25 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: Fri, 22 Dec 2017 13:45:33 -0000 Author: olgeni Date: Fri Dec 22 13:45:31 2017 New Revision: 456977 URL: https://svnweb.freebsd.org/changeset/ports/456977 Log: Add devel/py-pyfcm, a Python client for Firebase Cloud Messaging. Added: head/devel/py-pyfcm/ head/devel/py-pyfcm/Makefile (contents, props changed) head/devel/py-pyfcm/distinfo (contents, props changed) head/devel/py-pyfcm/files/ head/devel/py-pyfcm/files/patch-README.rst (contents, props changed) head/devel/py-pyfcm/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri Dec 22 12:27:14 2017 (r456976) +++ head/devel/Makefile Fri Dec 22 13:45:31 2017 (r456977) @@ -4720,6 +4720,7 @@ SUBDIR += py-pyelftools SUBDIR += py-pyev SUBDIR += py-pyface + SUBDIR += py-pyfcm SUBDIR += py-pyflakes SUBDIR += py-pygdbmi SUBDIR += py-pygit2 Added: head/devel/py-pyfcm/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pyfcm/Makefile Fri Dec 22 13:45:31 2017 (r456977) @@ -0,0 +1,21 @@ +# $FreeBSD$ + +PORTNAME= pyfcm +PORTVERSION= 1.4.3 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= olgeni@FreeBSD.org + +COMMENT= Python client for Firebase Cloud Messaging + +LICENSE= MIT + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}requests>0:www/py-requests@${FLAVOR} + +USES= python +USE_PYTHON= distutils autoplist +NO_ARCH= yes + +.include Added: head/devel/py-pyfcm/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pyfcm/distinfo Fri Dec 22 13:45:31 2017 (r456977) @@ -0,0 +1,3 @@ +TIMESTAMP = 1513940242 +SHA256 (pyfcm-1.4.3.tar.gz) = dd66f890ea20178eaaa274d781809b672187d76b10f56cf7cbe4d54c8b6a01b0 +SIZE (pyfcm-1.4.3.tar.gz) = 15209 Added: head/devel/py-pyfcm/files/patch-README.rst ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pyfcm/files/patch-README.rst Fri Dec 22 13:45:31 2017 (r456977) @@ -0,0 +1,13 @@ +--- README.rst.orig 2017-10-18 23:26:43 UTC ++++ README.rst +@@ -119,8 +119,8 @@ Send a data message. + # To send extra kwargs (keyword arguments not provided in any of the methods), + # pass it as a key value in a dictionary to the method being used + extra_kwargs = { +-        'priority': 'high' +-   } ++ 'priority': 'high' ++ } + result = push_service.notify_single_device(registration_id=registration_id, data_message=data_message, extra_kwargs=extra_kwargs) + + # To process background notifications in iOS 10, set content_available Added: head/devel/py-pyfcm/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pyfcm/pkg-descr Fri Dec 22 13:45:31 2017 (r456977) @@ -0,0 +1,3 @@ +Python client for FCM - Firebase Cloud Messaging (Android & iOS) + +WWW: http://olucurious.github.io/PyFCM/