Received: by mail.netbsd.org (Postfix, from userid 605) id 52CDE84D78; Wed, 15 Nov 2017 08:58:37 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id D1A3384D35 for ; Wed, 15 Nov 2017 08:58:36 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id vGo-QNGhk_yV for ; Wed, 15 Nov 2017 08:58:36 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 6058784CE1 for ; Wed, 15 Nov 2017 08:58:36 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id D012AFBDE; Wed, 15 Nov 2017 08:58:35 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1510736315297970" MIME-Version: 1.0 Date: Wed, 15 Nov 2017 08:58:35 +0000 From: "Jaromir Dolecek" Subject: CVS commit: pkgsrc/security To: pkgsrc-changes@NetBSD.org Reply-To: jdolecek@netbsd.org X-Mailer: log_accum Message-Id: <20171115085835.D012AFBDE@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1510736315297970 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jdolecek Date: Wed Nov 15 08:58:35 UTC 2017 Modified Files: pkgsrc/security: Makefile Added Files: pkgsrc/security/php-sodium: DESCR Makefile Log Message: Add php-sodim - php module for libsodium library, new module for PHP 7.2 To generate a diff of this commit: cvs rdiff -u -r1.656 -r1.657 pkgsrc/security/Makefile cvs rdiff -u -r0 -r1.1 pkgsrc/security/php-sodium/DESCR \ pkgsrc/security/php-sodium/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1510736315297970 Content-Disposition: inline Content-Length: 1601 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/security/Makefile diff -u pkgsrc/security/Makefile:1.656 pkgsrc/security/Makefile:1.657 --- pkgsrc/security/Makefile:1.656 Mon Oct 30 18:21:20 2017 +++ pkgsrc/security/Makefile Wed Nov 15 08:58:35 2017 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.656 2017/10/30 18:21:20 adam Exp $ +# $NetBSD: Makefile,v 1.657 2017/11/15 08:58:35 jdolecek Exp $ # COMMENT= Security tools @@ -349,6 +349,7 @@ SUBDIR+= php-mcrypt SUBDIR+= php-oauth SUBDIR+= php-oauth1 SUBDIR+= php-pecl-mcrypt +SUBDIR+= php-sodium SUBDIR+= php-ssdeep SUBDIR+= php-ssh2 SUBDIR+= php-suhosin Added files: Index: pkgsrc/security/php-sodium/DESCR diff -u /dev/null pkgsrc/security/php-sodium/DESCR:1.1 --- /dev/null Wed Nov 15 08:58:35 2017 +++ pkgsrc/security/php-sodium/DESCR Wed Nov 15 08:58:35 2017 @@ -0,0 +1,3 @@ +PHP is a programming language designed to be embedded into web +pages. This module provides access to libsodium, a library for +network communication, encryption, decryption, signatures, etc Index: pkgsrc/security/php-sodium/Makefile diff -u /dev/null pkgsrc/security/php-sodium/Makefile:1.1 --- /dev/null Wed Nov 15 08:58:35 2017 +++ pkgsrc/security/php-sodium/Makefile Wed Nov 15 08:58:35 2017 @@ -0,0 +1,13 @@ +# $NetBSD: Makefile,v 1.1 2017/11/15 08:58:35 jdolecek Exp $ + +MODNAME= sodium +CATEGORIES+= security +COMMENT= PHP extension for the sodium crypto algorithms library + +CONFIGURE_ARGS+= --with-${MODNAME}=shared + +PHP_VERSIONS_ACCEPTED= 72 + +.include "../../lang/php/ext.mk" +.include "../../security/libsodium/buildlink3.mk" +.include "../../mk/bsd.pkg.mk" --_----------=_1510736315297970--