From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Nov 14 22:10:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DB9814E1 for ; Thu, 14 Nov 2013 22:10:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id BD7D4222F for ; Thu, 14 Nov 2013 22:10:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rAEMA05K040070 for ; Thu, 14 Nov 2013 22:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rAEMA0rO040069; Thu, 14 Nov 2013 22:10:00 GMT (envelope-from gnats) Resent-Date: Thu, 14 Nov 2013 22:10:00 GMT Resent-Message-Id: <201311142210.rAEMA0rO040069@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Olli Hauer Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6E33F2F0 for ; Thu, 14 Nov 2013 22:02:41 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4D92621CE for ; Thu, 14 Nov 2013 22:02:41 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rAEM2fKP039620 for ; Thu, 14 Nov 2013 22:02:41 GMT (envelope-from ohauer@freefall.freebsd.org) Received: (from ohauer@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rAEM2fFZ039619; Thu, 14 Nov 2013 22:02:41 GMT (envelope-from ohauer) Message-Id: <201311142202.rAEM2fFZ039619@freefall.freebsd.org> Date: Thu, 14 Nov 2013 22:02:41 GMT From: Olli Hauer To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.114 Subject: ports/183974: [new port] security/p5-Crypt-Passwd-XS X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.16 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Nov 2013 22:10:00 -0000 >Number: 183974 >Category: ports >Synopsis: [new port] security/p5-Crypt-Passwd-XS >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Nov 14 22:10:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Olli Hauer >Release: >Organization: >Environment: >Description: Crypt::Passwd::XS - Full XS implementation of common crypt() algorithms This module provides several common crypt() schemes as full XS implementations. It allows you to validate crypted passwords that were hashed using a scheme that the system's native crypt() implementation does not support. The following files are adapted from other sources (primarily DragonFly BSD.) See the copyright notices in these files for full details: crypt_to64.c - copyright 1991 University of California crypt_to64.h - copyright 1991 University of California des.c - copyright 1994 David Burren, Geoffrey M. Rehmet, Mark R V Murray md5.c - copyright 1999, 2000, 2002 Aladdin Enterprises md5.h - copyright 1999, 2000, 2002 Aladdin Enterprises md5crypt.c - copyright Poul-Henning Kamp md5crypt.h - copyright Poul-Henning Kamp sha256crypt.c - public domain reference implementation by Ulrich Drepper sha512crypt.c - public domain reference implementation by Ulrich Drepper WWW: http://search.cpan.org/dist/Crypt-Passwd-XS/ >How-To-Repeat: >Fix: --- p5-Crypt-Passwd-XS.diff begins here --- Index: p5-Crypt-Passwd-XS/Makefile =================================================================== --- p5-Crypt-Passwd-XS/Makefile (revision 0) +++ p5-Crypt-Passwd-XS/Makefile (working copy) @@ -0,0 +1,15 @@ +# $FreeBSD$ + +PORTNAME= Crypt-Passwd-XS +PORTVERSION= 0.601 +CATEGORIES= security perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= perl@FreeBSD.org +COMMENT= Full XS implementation of common crypt() algorithms + +USES= perl5 +USE_PERL5= configure + +.include Property changes on: p5-Crypt-Passwd-XS/Makefile ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Index: p5-Crypt-Passwd-XS/distinfo =================================================================== --- p5-Crypt-Passwd-XS/distinfo (revision 0) +++ p5-Crypt-Passwd-XS/distinfo (working copy) @@ -0,0 +1,2 @@ +SHA256 (Crypt-Passwd-XS-0.601.tar.gz) = 598398104be3f2f14612126a932f8fcc6786999aedd67238d6de2b97e99cca3a +SIZE (Crypt-Passwd-XS-0.601.tar.gz) = 28191 Property changes on: p5-Crypt-Passwd-XS/distinfo ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: p5-Crypt-Passwd-XS/pkg-descr =================================================================== --- p5-Crypt-Passwd-XS/pkg-descr (revision 0) +++ p5-Crypt-Passwd-XS/pkg-descr (working copy) @@ -0,0 +1,21 @@ +Crypt::Passwd::XS - Full XS implementation of common crypt() algorithms + +This module provides several common crypt() schemes as full XS +implementations. It allows you to validate crypted passwords that were +hashed using a scheme that the system's native crypt() implementation +does not support. + +The following files are adapted from other sources (primarily DragonFly BSD.) +See the copyright notices in these files for full details: + +crypt_to64.c - copyright 1991 University of California +crypt_to64.h - copyright 1991 University of California +des.c - copyright 1994 David Burren, Geoffrey M. Rehmet, Mark R V Murray +md5.c - copyright 1999, 2000, 2002 Aladdin Enterprises +md5.h - copyright 1999, 2000, 2002 Aladdin Enterprises +md5crypt.c - copyright Poul-Henning Kamp +md5crypt.h - copyright Poul-Henning Kamp +sha256crypt.c - public domain reference implementation by Ulrich Drepper +sha512crypt.c - public domain reference implementation by Ulrich Drepper + +WWW: http://search.cpan.org/dist/Crypt-Passwd-XS/ Property changes on: p5-Crypt-Passwd-XS/pkg-descr ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: p5-Crypt-Passwd-XS/pkg-plist =================================================================== --- p5-Crypt-Passwd-XS/pkg-plist (revision 0) +++ p5-Crypt-Passwd-XS/pkg-plist (working copy) @@ -0,0 +1,10 @@ +%%PERL5_MAN3%%/Crypt::Passwd::XS.3.gz +%%SITE_PERL%%/%%PERL_ARCH%%/Crypt/Passwd/XS.pm +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Crypt/Passwd/XS/.packlist +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Crypt/Passwd/XS/XS.bs +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Crypt/Passwd/XS/XS.so +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Crypt/Passwd/XS +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Crypt/Passwd +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Crypt +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/Crypt/Passwd +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/Crypt Property changes on: p5-Crypt-Passwd-XS/pkg-plist ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property --- p5-Crypt-Passwd-XS.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: