svn commit: r411580 - in head/www: . p5-WWW-Salesforce

Matthew Seaman matthew at FreeBSD.org
Mon Mar 21 17:36:15 UTC 2016


Author: matthew
Date: Mon Mar 21 17:36:13 2016
New Revision: 411580
URL: https://svnweb.freebsd.org/changeset/ports/411580

Log:
  This class provides a simple abstraction layer between SOAP::Lite and
  Salesforce.com. Because SOAP::Lite does not support complexTypes, and
  document/literal encoding is limited, this module works around those
  limitations and provides a more intuitive interface a developer can
  interact with.
  
  WWW: http://search.cpan.org/dist/WWW-Salesforce/

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

Modified: head/www/Makefile
==============================================================================
--- head/www/Makefile	Mon Mar 21 17:31:49 2016	(r411579)
+++ head/www/Makefile	Mon Mar 21 17:36:13 2016	(r411580)
@@ -1303,6 +1303,7 @@
     SUBDIR += p5-WWW-Robot
     SUBDIR += p5-WWW-RobotRules
     SUBDIR += p5-WWW-RobotRules-Parser
+    SUBDIR += p5-WWW-Salesforce
     SUBDIR += p5-WWW-Scraper-ISBN
     SUBDIR += p5-WWW-Scraper-ISBN-Amazon_Driver
     SUBDIR += p5-WWW-Scraper-ISBN-ORA_Driver

Added: head/www/p5-WWW-Salesforce/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/p5-WWW-Salesforce/Makefile	Mon Mar 21 17:36:13 2016	(r411580)
@@ -0,0 +1,26 @@
+# Created by: Matthew Seaman <matthew at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=       WWW-Salesforce
+PORTVERSION=    0.25
+CATEGORIES=     www perl5
+MASTER_SITES=   CPAN
+PKGNAMEPREFIX=  p5-
+
+MAINTAINER=     matthew at FreeBSD.org
+COMMENT=        Simple abstraction layer between SOAP::Lite and Salesforce.com
+
+LICENSE=        ART10 GPLv1
+LICENSE_COMB=   dual
+
+BUILD_DEPENDS=	p5-SOAP-Lite>=0.68:${PORTSDIR}/net/p5-SOAP-Lite \
+		p5-Crypt-SSLeay>=0.56:${PORTSDIR}/security/p5-Crypt-SSLeay
+RUN_DEPENDS:=   ${BUILD_DEPENDS}
+TEST_DEPENDS=   p5-Test-Pod>=0:${PORTSDIR}/devel/p5-Test-Pod \
+		p5-Test-Pod-Coverage>=0:${PORTSDIR}/devel/p5-Test-Pod-Coverage
+
+NO_ARCH=        yes
+USES=           perl5
+USE_PERL5=      configure
+
+.include <bsd.port.mk>

Added: head/www/p5-WWW-Salesforce/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/p5-WWW-Salesforce/distinfo	Mon Mar 21 17:36:13 2016	(r411580)
@@ -0,0 +1,2 @@
+SHA256 (WWW-Salesforce-0.25.tar.gz) = a96916cc67212bf382942adac003d0f65c5fd3e77f038b3b9670ebc001de0e5f
+SIZE (WWW-Salesforce-0.25.tar.gz) = 29085

Added: head/www/p5-WWW-Salesforce/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/p5-WWW-Salesforce/pkg-descr	Mon Mar 21 17:36:13 2016	(r411580)
@@ -0,0 +1,7 @@
+This class provides a simple abstraction layer between SOAP::Lite and
+Salesforce.com. Because SOAP::Lite does not support complexTypes, and
+document/literal encoding is limited, this module works around those
+limitations and provides a more intuitive interface a developer can
+interact with.
+
+WWW: http://search.cpan.org/dist/WWW-Salesforce/

Added: head/www/p5-WWW-Salesforce/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/p5-WWW-Salesforce/pkg-plist	Mon Mar 21 17:36:13 2016	(r411580)
@@ -0,0 +1,7 @@
+%%SITE_PERL%%/WWW/Salesforce.pm
+%%SITE_PERL%%/WWW/Salesforce/Constants.pm
+%%SITE_PERL%%/WWW/Salesforce/Deserializer.pm
+%%SITE_PERL%%/WWW/Salesforce/Serializer.pm
+%%SITE_PERL%%/WWW/Salesforce/Simple.pm
+%%PERL5_MAN3%%/WWW::Salesforce.3.gz
+%%PERL5_MAN3%%/WWW::Salesforce::Simple.3.gz


More information about the svn-ports-head mailing list