svn commit: r397531 - in head/sysutils: . p5-Log-Syslog-Constants

Matthew Seaman matthew at FreeBSD.org
Tue Sep 22 09:52:37 UTC 2015


Author: matthew
Date: Tue Sep 22 09:52:35 2015
New Revision: 397531
URL: https://svnweb.freebsd.org/changeset/ports/397531

Log:
  Syslog messages--as standardized in RFC3164--embed a priority number
  (the PRI part) which is composed of a severity and a facility
  value. The constants which encode these values are specified in
  section 4.1.1, and are made available by this module. For instance,
  the exportable LOG_FTP constant has a value of 11, the value for the
  FTP facility.
  
  WWW: http://search.cpan.org/dist/Log-Syslog-Constants/

Added:
  head/sysutils/p5-Log-Syslog-Constants/
  head/sysutils/p5-Log-Syslog-Constants/Makefile   (contents, props changed)
  head/sysutils/p5-Log-Syslog-Constants/distinfo   (contents, props changed)
  head/sysutils/p5-Log-Syslog-Constants/pkg-descr   (contents, props changed)
Modified:
  head/sysutils/Makefile

Modified: head/sysutils/Makefile
==============================================================================
--- head/sysutils/Makefile	Tue Sep 22 07:01:16 2015	(r397530)
+++ head/sysutils/Makefile	Tue Sep 22 09:52:35 2015	(r397531)
@@ -626,6 +626,7 @@
     SUBDIR += p5-Iterator-File
     SUBDIR += p5-Lchown
     SUBDIR += p5-Linux-Cpuinfo
+    SUBDIR += p5-Log-Syslog-Constants
     SUBDIR += p5-MogileFS-Client
     SUBDIR += p5-MogileFS-Network
     SUBDIR += p5-MogileFS-Server

Added: head/sysutils/p5-Log-Syslog-Constants/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/p5-Log-Syslog-Constants/Makefile	Tue Sep 22 09:52:35 2015	(r397531)
@@ -0,0 +1,21 @@
+# Created by: Matthew Seaman <matthew at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	Log-Syslog-Constants
+PORTVERSION=	1.02
+CATEGORIES=	sysutils perl5
+MASTER_SITES=	CPAN
+PKGNAMEPREFIX=	p5-
+
+MAINTAINER=	matthew at FreeBSD.org
+COMMENT=	Syslog priority constants as defined in RFC3164
+
+NO_ARCH=	yes
+
+USES=		perl5
+USE_PERL5=	configure
+
+PLIST_FILES=	%%SITE_PERL%%/Log/Syslog/Constants.pm \
+		%%PERL5_MAN3%%/Log::Syslog::Constants.3.gz
+
+.include <bsd.port.mk>

Added: head/sysutils/p5-Log-Syslog-Constants/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/p5-Log-Syslog-Constants/distinfo	Tue Sep 22 09:52:35 2015	(r397531)
@@ -0,0 +1,2 @@
+SHA256 (Log-Syslog-Constants-1.02.tar.gz) = 40170daad7c31c19c3c13b062c2d97c5165a3a75ab69ed89e8455f1db8b8f973
+SIZE (Log-Syslog-Constants-1.02.tar.gz) = 5488

Added: head/sysutils/p5-Log-Syslog-Constants/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/p5-Log-Syslog-Constants/pkg-descr	Tue Sep 22 09:52:35 2015	(r397531)
@@ -0,0 +1,8 @@
+Syslog messages--as standardized in RFC3164--embed a priority number
+(the PRI part) which is composed of a severity and a facility
+value. The constants which encode these values are specified in
+section 4.1.1, and are made available by this module. For instance,
+the exportable LOG_FTP constant has a value of 11, the value for the
+FTP facility.
+
+WWW: http://search.cpan.org/dist/Log-Syslog-Constants/


More information about the svn-ports-all mailing list