svn commit: r342833 - in head/devel: . php-Psr_Log
Sunpoet Po-Chuan Hsieh
sunpoet at FreeBSD.org
Wed Feb 5 20:03:41 UTC 2014
Author: sunpoet
Date: Wed Feb 5 20:03:40 2014
New Revision: 342833
URL: http://svnweb.freebsd.org/changeset/ports/342833
QAT: https://qat.redports.org/buildarchive/r342833/
Log:
- Add php-Psr_Log 1.0.0
This repository holds all interfaces/classes/traits related to PSR-3.
WWW: https://github.com/php-fig/log
PR: ports/186222
Submitted by: Gasol Wu <gasol.wu at gmail.com>
Added:
head/devel/php-Psr_Log/
head/devel/php-Psr_Log/Makefile (contents, props changed)
head/devel/php-Psr_Log/distinfo (contents, props changed)
head/devel/php-Psr_Log/pkg-descr (contents, props changed)
Modified:
head/devel/Makefile
Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile Wed Feb 5 20:03:02 2014 (r342832)
+++ head/devel/Makefile Wed Feb 5 20:03:40 2014 (r342833)
@@ -3319,6 +3319,7 @@
SUBDIR += pep8
SUBDIR += performance
SUBDIR += perlconsole
+ SUBDIR += php-Psr_Log
SUBDIR += php-java-bridge
SUBDIR += php-libawl
SUBDIR += php-memoize
Added: head/devel/php-Psr_Log/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/php-Psr_Log/Makefile Wed Feb 5 20:03:40 2014 (r342833)
@@ -0,0 +1,46 @@
+# Created by: Gasol Wu <gasol.wu at gmail.com>
+# $FreeBSD$
+
+PORTNAME= Psr_Log
+PORTVERSION= 1.0.0
+CATEGORIES= devel
+PKGNAMEPREFIX= php-
+EXTRACT_SUFX= .tgz
+DIST_SUBDIR= PSR
+
+MAINTAINER= gasol.wu at gmail.com
+COMMENT= PSR-3 logger interface
+
+LICENSE= MIT
+
+NO_BUILD= yes
+USE_GITHUB= yes
+GH_ACCOUNT= php-fig
+GH_TAGNAME= ${PORTVERSION}
+GH_COMMIT= fe0936e
+GH_PROJECT= log
+
+PLIST_DIRSTRY= share/pear/Psr/Log/Test \
+ share/pear/Psr/Log \
+ share/pear/Psr \
+ share/pear
+
+PLIST_FILES= share/pear/Psr/Log/AbstractLogger.php \
+ share/pear/Psr/Log/InvalidArgumentException.php \
+ share/pear/Psr/Log/LogLevel.php \
+ share/pear/Psr/Log/LoggerAwareInterface.php \
+ share/pear/Psr/Log/LoggerAwareTrait.php \
+ share/pear/Psr/Log/LoggerInterface.php \
+ share/pear/Psr/Log/LoggerTrait.php \
+ share/pear/Psr/Log/NullLogger.php \
+ share/pear/Psr/Log/Test/LoggerInterfaceTest.php
+
+IGNORE_WITH_PHP=52
+
+do-install:
+ ${MKDIR} ${STAGEDIR}${PREFIX}/share/pear/Psr/Log/Test
+.for file in ${PLIST_FILES}
+ ${INSTALL_DATA} ${WRKSRC}/${file:S/share\/pear\///} ${STAGEDIR}${PREFIX}/${file}
+.endfor
+
+.include <bsd.port.mk>
Added: head/devel/php-Psr_Log/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/php-Psr_Log/distinfo Wed Feb 5 20:03:40 2014 (r342833)
@@ -0,0 +1,2 @@
+SHA256 (PSR/Psr_Log-1.0.0.tgz) = 2cb5fe551831bbf17f766382d7d50ab77c731058a6cd4c2a3277e31fd11545a3
+SIZE (PSR/Psr_Log-1.0.0.tgz) = 4614
Added: head/devel/php-Psr_Log/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/php-Psr_Log/pkg-descr Wed Feb 5 20:03:40 2014 (r342833)
@@ -0,0 +1,3 @@
+This repository holds all interfaces/classes/traits related to PSR-3.
+
+WWW: https://github.com/php-fig/log
More information about the svn-ports-all
mailing list