Bug 179818 - [new port] textproc/p5-String-HexConvert: Converts ascii strings to hex and reverse
Summary: [new port] textproc/p5-String-HexConvert: Converts ascii strings to hex and r...
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Felippe de Meirelles Motta
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-06-21 18:40 UTC by Alexandre Biancalana
Modified: 2013-06-24 19:40 UTC (History)
0 users

See Also:


Attachments
file.shar (2.23 KB, text/plain)
2013-06-21 18:40 UTC, Alexandre Biancalana
no flags Details

Note You need to log in before you can comment on or make changes to this bug.
Description Alexandre Biancalana 2013-06-21 18:40:01 UTC

Fix: Patch attached with submission follows:
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2013-06-21 18:40:14 UTC
Class Changed
From-To: update->change-request

Fix category (new ports should be change-requests) (via the GNATS Auto 
Assign Tool)
Comment 2 Felippe de Meirelles Motta freebsd_committer freebsd_triage 2013-06-21 19:14:30 UTC
Responsible Changed
From-To: freebsd-ports-bugs->lippe

I'll take it.
Comment 3 dfilter service freebsd_committer freebsd_triage 2013-06-24 19:32:16 UTC
Author: lippe
Date: Mon Jun 24 18:32:07 2013
New Revision: 321700
URL: http://svnweb.freebsd.org/changeset/ports/321700

Log:
  String::HexConvert It is a wrapper around pack and unpack of perl to convert
  a string of hex digits to ascii and other way around.
  
  WWW: http://search.cpan.org/dist/String-HexConvert/
  
  PR:		ports/179818
  Submitted by:	Alexandre Biancalana <ale@biancalanas.net>

Added:
  head/textproc/p5-String-HexConvert/
  head/textproc/p5-String-HexConvert/Makefile   (contents, props changed)
  head/textproc/p5-String-HexConvert/distinfo   (contents, props changed)
  head/textproc/p5-String-HexConvert/pkg-descr   (contents, props changed)
  head/textproc/p5-String-HexConvert/pkg-plist   (contents, props changed)
Modified:
  head/textproc/Makefile

Modified: head/textproc/Makefile
==============================================================================
--- head/textproc/Makefile	Mon Jun 24 18:24:31 2013	(r321699)
+++ head/textproc/Makefile	Mon Jun 24 18:32:07 2013	(r321700)
@@ -729,6 +729,7 @@
     SUBDIR += p5-String-Flogger
     SUBDIR += p5-String-Format
     SUBDIR += p5-String-Fraction
+    SUBDIR += p5-String-HexConvert
     SUBDIR += p5-String-Koremutake
     SUBDIR += p5-String-RewritePrefix
     SUBDIR += p5-String-Scanf

Added: head/textproc/p5-String-HexConvert/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/p5-String-HexConvert/Makefile	Mon Jun 24 18:32:07 2013	(r321700)
@@ -0,0 +1,20 @@
+# Created by: Alexandre Biancalana <ale@biancalanas.net>
+# $FreeBSD$
+
+PORTNAME=	String-HexConvert
+PORTVERSION=	0.01
+CATEGORIES=	textproc perl5
+MASTER_SITES=	CPAN
+MASTER_SITE_SUBDIR=	CPAN:AHERNIT
+PKGNAMEPREFIX=	p5-
+
+MAINTAINER=	ale@biancalanas.net
+COMMENT=	String::HexConver - Converts ascii strings to hex and reverse
+
+WRKSRC=	${WRKDIR}/${PORTNAME}
+
+PERL_CONFIGURE=	yes
+
+MAN3=	String::HexConvert.3
+
+.include <bsd.port.mk>

Added: head/textproc/p5-String-HexConvert/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/p5-String-HexConvert/distinfo	Mon Jun 24 18:32:07 2013	(r321700)
@@ -0,0 +1,2 @@
+SHA256 (String-HexConvert-0.01.tar.gz) = 7e5a9b1472edae78e00c7f31724480d88b4f41d863fce28697dc5963dac51ced
+SIZE (String-HexConvert-0.01.tar.gz) = 2109

Added: head/textproc/p5-String-HexConvert/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/p5-String-HexConvert/pkg-descr	Mon Jun 24 18:32:07 2013	(r321700)
@@ -0,0 +1,4 @@
+String::HexConvert It is a wrapper around pack and unpack of perl to convert
+a string of hex digits to ascii and other way around.
+
+WWW: http://search.cpan.org/dist/String-HexConvert/

Added: head/textproc/p5-String-HexConvert/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/p5-String-HexConvert/pkg-plist	Mon Jun 24 18:32:07 2013	(r321700)
@@ -0,0 +1,5 @@
+%%SITE_PERL%%/String/HexConvert.pm
+%%SITE_PERL%%/%%PERL_ARCH%%/auto/String/HexConvert/.packlist
+@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/String/HexConvert
+@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/String
+@dirrmtry %%SITE_PERL%%/String
_______________________________________________
svn-ports-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-ports-all
To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
Comment 4 Felippe de Meirelles Motta freebsd_committer freebsd_triage 2013-06-24 19:39:57 UTC
State Changed
From-To: open->closed

Committed. Thanks!