From owner-svn-ports-head@freebsd.org Sat Jan 5 18:52:01 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 D32F2141B0F9; Sat, 5 Jan 2019 18:52:00 +0000 (UTC) (envelope-from swills@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 7A1CC8E134; Sat, 5 Jan 2019 18:52:00 +0000 (UTC) (envelope-from swills@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 6EA651CA78; Sat, 5 Jan 2019 18:52:00 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x05Iq08W043658; Sat, 5 Jan 2019 18:52:00 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x05IpxNk043650; Sat, 5 Jan 2019 18:51:59 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201901051851.x05IpxNk043650@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Sat, 5 Jan 2019 18:51:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r489364 - in head/www: . p5-WWW-Telegram-BotAPI X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: in head/www: . p5-WWW-Telegram-BotAPI X-SVN-Commit-Revision: 489364 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 7A1CC8E134 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)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.968,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-0.999,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: Sat, 05 Jan 2019 18:52:01 -0000 Author: swills Date: Sat Jan 5 18:51:59 2019 New Revision: 489364 URL: https://svnweb.freebsd.org/changeset/ports/489364 Log: www/p5-WWW-Telegram-BotAPI: create port This module provides an easy to use interface for the Telegram Bot API. It also supports async requests out of the box using Mojo::UserAgent, which makes this module easy to integrate with an existing Mojolicious application. WWW: http://search.cpan.org/dist/WWW-Telegram-BotAPI/ PR: 227176 Submitted by: gehm@physik.tu-berlin.de Added: head/www/p5-WWW-Telegram-BotAPI/ head/www/p5-WWW-Telegram-BotAPI/Makefile (contents, props changed) head/www/p5-WWW-Telegram-BotAPI/distinfo (contents, props changed) head/www/p5-WWW-Telegram-BotAPI/pkg-descr (contents, props changed) head/www/p5-WWW-Telegram-BotAPI/pkg-plist (contents, props changed) Modified: head/www/Makefile (contents, props changed) Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Sat Jan 5 18:46:31 2019 (r489363) +++ head/www/Makefile Sat Jan 5 18:51:59 2019 (r489364) @@ -1313,6 +1313,7 @@ SUBDIR += p5-WWW-Shorten-isgd SUBDIR += p5-WWW-SourceForge SUBDIR += p5-WWW-Spinn3r + SUBDIR += p5-WWW-Telegram-BotAPI SUBDIR += p5-WWW-TV SUBDIR += p5-WWW-TWSMS SUBDIR += p5-WWW-TinySong Added: head/www/p5-WWW-Telegram-BotAPI/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/p5-WWW-Telegram-BotAPI/Makefile Sat Jan 5 18:51:59 2019 (r489364) @@ -0,0 +1,27 @@ +# $FreeBSD$ + +PORTNAME= WWW-Telegram-BotAPI +PORTVERSION= 0.10 +CATEGORIES= www perl5 +MASTER_SITES= CPAN +MASTER_SITE_SUBDIR= CPAN:ROBERTOF +PKGNAMEPREFIX= p5- + +MAINTAINER= gehm@physik.tu-berlin.de +COMMENT= Perl implementation of the Telegram Bot API + +LICENSE= ART20 GPLv1+ +LICENSE_COMB= dual + +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Carp>=0:devel/p5-Carp \ + p5-URI-Encode>0:www/p5-URI-Encode \ + p5-JSON-MaybeXS>=0:converters/p5-JSON-MaybeXS \ + p5-LWP-Protocol-https>=0:www/p5-LWP-Protocol-https \ + p5-ExtUtils-MakeMaker>=0:devel/p5-ExtUtils-MakeMaker + +USES= perl5 + +USE_PERL5= configure + +.include Added: head/www/p5-WWW-Telegram-BotAPI/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/p5-WWW-Telegram-BotAPI/distinfo Sat Jan 5 18:51:59 2019 (r489364) @@ -0,0 +1,3 @@ +TIMESTAMP = 1522590727 +SHA256 (WWW-Telegram-BotAPI-0.10.tar.gz) = 711cdd9ec5451c9515d4a2761f593e3a3a3aac9cef7e924f9544be91436907c1 +SIZE (WWW-Telegram-BotAPI-0.10.tar.gz) = 22736 Added: head/www/p5-WWW-Telegram-BotAPI/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/p5-WWW-Telegram-BotAPI/pkg-descr Sat Jan 5 18:51:59 2019 (r489364) @@ -0,0 +1,5 @@ +This module provides an easy to use interface for the Telegram Bot API. It also +supports async requests out of the box using Mojo::UserAgent, which makes this +module easy to integrate with an existing Mojolicious application. + +WWW: http://search.cpan.org/dist/WWW-Telegram-BotAPI/ Added: head/www/p5-WWW-Telegram-BotAPI/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/p5-WWW-Telegram-BotAPI/pkg-plist Sat Jan 5 18:51:59 2019 (r489364) @@ -0,0 +1,2 @@ +%%SITE_PERL%%/WWW/Telegram/BotAPI.pm +%%PERL5_MAN3%%/WWW::Telegram::BotAPI.3.gz