From owner-svn-ports-head@freebsd.org Tue May 5 07:03:52 2020 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id D0B4E2DA5C3; Tue, 5 May 2020 07:03:52 +0000 (UTC) (envelope-from tagattie@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 49GW0m58cfz4Qy9; Tue, 5 May 2020 07:03:52 +0000 (UTC) (envelope-from tagattie@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id AC1989DFF; Tue, 5 May 2020 07:03:52 +0000 (UTC) (envelope-from tagattie@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 04573qbC056755; Tue, 5 May 2020 07:03:52 GMT (envelope-from tagattie@FreeBSD.org) Received: (from tagattie@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 04573qJk056752; Tue, 5 May 2020 07:03:52 GMT (envelope-from tagattie@FreeBSD.org) Message-Id: <202005050703.04573qJk056752@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tagattie set sender to tagattie@FreeBSD.org using -f From: Hiroki Tagato Date: Tue, 5 May 2020 07:03:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r534029 - head/security/makepasswd X-SVN-Group: ports-head X-SVN-Commit-Author: tagattie X-SVN-Commit-Paths: head/security/makepasswd X-SVN-Commit-Revision: 534029 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.30 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 May 2020 07:03:52 -0000 Author: tagattie Date: Tue May 5 07:03:51 2020 New Revision: 534029 URL: https://svnweb.freebsd.org/changeset/ports/534029 Log: - Make fetchable and undeprecate by switching to a higher patch level - Add LICENSE_FILE - Use MANPREFIX for manpage path instead of PREFIX - Update pkg-descr to match the description on WWW - Update WWW to use https PR: 246142 Submitted by: Toshimichi Masubuchi Approved by: toni.viemero@iki.fi (maintainer), ehaupt (mentor) Modified: head/security/makepasswd/Makefile head/security/makepasswd/distinfo head/security/makepasswd/pkg-descr Modified: head/security/makepasswd/Makefile ============================================================================== --- head/security/makepasswd/Makefile Tue May 5 06:58:30 2020 (r534028) +++ head/security/makepasswd/Makefile Tue May 5 07:03:51 2020 (r534029) @@ -3,24 +3,22 @@ PORTNAME= makepasswd PORTVERSION= 1.10 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= security MASTER_SITES= DEBIAN_POOL DISTNAME= ${PORTNAME}_${PORTVERSION}.orig -PATCHFILES= ${PORTNAME}_${PORTVERSION}-5.diff.gz +PATCHFILES= ${PORTNAME}_${PORTVERSION}-12.diff.gz PATCH_SITES= ${MASTER_SITES} PATCH_DIST_STRIP= -p1 MAINTAINER= toni.viemero@iki.fi COMMENT= Random password generator -BROKEN= unfetchable -DEPRECATED= Broken for more than 6 months -EXPIRATION_DATE= 2020-05-05 +LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/COPYING-2.0 -LICENSE= GPLv1 - +NO_ARCH= yes NO_BUILD= yes USES= perl5 shebangfix SHEBANG_FILES= makepasswd @@ -29,19 +27,19 @@ USE_PERL5= run OPTIONS_DEFINE= DOCS RUN_DEPENDS+= p5-Crypt-PasswdMD5>=0:security/p5-Crypt-PasswdMD5 \ - p5-Crypt-OpenSSL-Random>=0:security/p5-Crypt-OpenSSL-Random + p5-Bytes-Random-Secure>=0:security/p5-Bytes-Random-Secure WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} PLIST_FILES= bin/${PORTNAME} man/man1/${PORTNAME}.1.gz -PORTDOCS= CHANGES README +PORTDOCS= CHANGES README post-patch: ${REINPLACE_CMD} -e "s/use bytes;/#use bytes;/" ${WRKSRC}/makepasswd do-install: ${INSTALL_SCRIPT} ${WRKSRC}/makepasswd ${STAGEDIR}${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${STAGEDIR}${PREFIX}/man/man1 + ${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${STAGEDIR}${MANPREFIX}/man/man1 @${MKDIR} ${STAGEDIR}${DOCSDIR} .for file in ${PORTDOCS} ${INSTALL_DATA} ${WRKSRC}/${file} ${STAGEDIR}${DOCSDIR} Modified: head/security/makepasswd/distinfo ============================================================================== --- head/security/makepasswd/distinfo Tue May 5 06:58:30 2020 (r534028) +++ head/security/makepasswd/distinfo Tue May 5 07:03:51 2020 (r534029) @@ -1,4 +1,5 @@ +TIMESTAMP = 1574004786 SHA256 (makepasswd_1.10.orig.tar.gz) = 41491f361d810f9bb3e08b40df3c3034faec306d434dab15534e19023f91a75c SIZE (makepasswd_1.10.orig.tar.gz) = 12382 -SHA256 (makepasswd_1.10-5.diff.gz) = b1c039090ad4f60be9f8fe05465b37c32ee20245b14fcd0708a93f78f1392097 -SIZE (makepasswd_1.10-5.diff.gz) = 7506 +SHA256 (makepasswd_1.10-12.diff.gz) = e72d5f45de382fc70b108d692ca4fc2f66fcc280d693a54982ec2ae0ef1d712c +SIZE (makepasswd_1.10-12.diff.gz) = 8160 Modified: head/security/makepasswd/pkg-descr ============================================================================== --- head/security/makepasswd/pkg-descr Tue May 5 06:58:30 2020 (r534028) +++ head/security/makepasswd/pkg-descr Tue May 5 07:03:51 2020 (r534029) @@ -1,5 +1,5 @@ -Generates true random passwords by using the /dev/random feature -of Linux, with the emphasis on security over pronounceability. It -can also encrypt plaintext passwords given on the command line. +Generates true random passwords using /dev/urandom, with the +emphasis on security over pronounceability. It can also encrypt +plaintext passwords given in a temporary file. -WWW: http://packages.debian.org/stable/makepasswd +WWW: https://packages.debian.org/stable/makepasswd