svn commit: r309861 - in head/www: . p5-WebService-Pushover

Philippe Audeoud jadawin at FreeBSD.org
Thu Jan 3 09:32:48 UTC 2013


Author: jadawin
Date: Thu Jan  3 09:32:47 2013
New Revision: 309861
URL: http://svnweb.freebsd.org/changeset/ports/309861

Log:
  This module provides a Perl wrapper around the Pushover
  ( http://pushover.net ) RESTful API. You'll need to register with Pushover to
  obtain an API token for yourself and for your application before you'll be
  able to do anything with this module.
  
  WWW: http://search.cpan.org/dist/WebService-Pushover/
  
  PR:		ports/174720
  Submitted by:	gslin at gslin.org

Added:
  head/www/p5-WebService-Pushover/
  head/www/p5-WebService-Pushover/Makefile   (contents, props changed)
  head/www/p5-WebService-Pushover/distinfo   (contents, props changed)
  head/www/p5-WebService-Pushover/pkg-descr   (contents, props changed)
  head/www/p5-WebService-Pushover/pkg-plist   (contents, props changed)
Modified:
  head/www/Makefile

Modified: head/www/Makefile
==============================================================================
--- head/www/Makefile	Thu Jan  3 09:28:46 2013	(r309860)
+++ head/www/Makefile	Thu Jan  3 09:32:47 2013	(r309861)
@@ -1302,6 +1302,7 @@
     SUBDIR += p5-WebService-MoviePosterDB
     SUBDIR += p5-WebService-MusicBrainz
     SUBDIR += p5-WebService-NoPaste
+    SUBDIR += p5-WebService-Pushover
     SUBDIR += p5-WebService-Rakuten
     SUBDIR += p5-WebService-Simple
     SUBDIR += p5-WebService-Technorati

Added: head/www/p5-WebService-Pushover/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/p5-WebService-Pushover/Makefile	Thu Jan  3 09:32:47 2013	(r309861)
@@ -0,0 +1,24 @@
+# Created by: Gea-Suan Lin <gslin at gslin.org>
+# $FreeBSD$
+
+PORTNAME=	WebService-Pushover
+DISTVERSION=	v0.0.6
+CATEGORIES=	www perl5
+MASTER_SITES=	CPAN
+PKGNAMEPREFIX=	p5-
+
+MAINTAINER=	gslin at gslin.org
+COMMENT=	Interface to Pushover API
+
+RUN_DEPENDS=	p5-DateTime>=0:${PORTSDIR}/devel/p5-DateTime \
+		p5-DateTime-Format-Strptime>=0:${PORTSDIR}/devel/p5-DateTime-Format-Strptime \
+		p5-Params-Validate>=0:${PORTSDIR}/devel/p5-Params-Validate \
+		p5-Readonly>=0:${PORTSDIR}/devel/p5-Readonly \
+		p5-URI>=0:${PORTSDIR}/net/p5-URI \
+		p5-WebService-Simple>=0:${PORTSDIR}/www/p5-WebService-Simple
+
+PERL_CONFIGURE=	yes
+
+MAN3=		WebService::Pushover.3
+
+.include <bsd.port.mk>

Added: head/www/p5-WebService-Pushover/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/p5-WebService-Pushover/distinfo	Thu Jan  3 09:32:47 2013	(r309861)
@@ -0,0 +1,2 @@
+SHA256 (WebService-Pushover-v0.0.6.tar.gz) = f35d5cb75564fa91649c63b0d2519c877c261d820850c0ea407b13a0e8ef8eb3
+SIZE (WebService-Pushover-v0.0.6.tar.gz) = 6677

Added: head/www/p5-WebService-Pushover/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/p5-WebService-Pushover/pkg-descr	Thu Jan  3 09:32:47 2013	(r309861)
@@ -0,0 +1,6 @@
+This module provides a Perl wrapper around the Pushover
+( http://pushover.net ) RESTful API. You'll need to register with Pushover to
+obtain an API token for yourself and for your application before you'll be
+able to do anything with this module.
+
+WWW: http://search.cpan.org/dist/WebService-Pushover/

Added: head/www/p5-WebService-Pushover/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/p5-WebService-Pushover/pkg-plist	Thu Jan  3 09:32:47 2013	(r309861)
@@ -0,0 +1,6 @@
+ at comment $FreeBSD$
+%%SITE_PERL%%/%%PERL_ARCH%%/auto/WebService/Pushover/.packlist
+%%SITE_PERL%%/WebService/Pushover.pm
+ at dirrmtry %%SITE_PERL%%/WebService
+ at dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/WebService/Pushover
+ at dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/WebService


More information about the svn-ports-all mailing list