From owner-svn-ports-head@freebsd.org Sun Jun 17 01:33:50 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7A7B9100626C; Sun, 17 Jun 2018 01:33:50 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 2F72577BFC; Sun, 17 Jun 2018 01:33:50 +0000 (UTC) (envelope-from yuri@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 1083E6A41; Sun, 17 Jun 2018 01:33:50 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5H1XniX037533; Sun, 17 Jun 2018 01:33:49 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5H1XnUv037532; Sun, 17 Jun 2018 01:33:49 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806170133.w5H1XnUv037532@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sun, 17 Jun 2018 01:33:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472582 - in head/security: . py-pycryptodomex X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/security: . py-pycryptodomex X-SVN-Commit-Revision: 472582 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.26 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: Sun, 17 Jun 2018 01:33:50 -0000 Author: yuri Date: Sun Jun 17 01:33:49 2018 New Revision: 472582 URL: https://svnweb.freebsd.org/changeset/ports/472582 Log: New port: security/py-pycryptodomex: Slave port of security/py-pycryptodome It installs the same package as security/py-pycryptodome but in a different name space, Cryptodome instead of Crypto, and therefore can be installed together with security/py-pycrypto if desired. PR: 225217 Submitted by: John W. O'Brien Added: head/security/py-pycryptodomex/ head/security/py-pycryptodomex/Makefile (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Sun Jun 17 01:26:07 2018 (r472581) +++ head/security/Makefile Sun Jun 17 01:33:49 2018 (r472582) @@ -989,6 +989,7 @@ SUBDIR += py-pyclamd SUBDIR += py-pycrypto SUBDIR += py-pycryptodome + SUBDIR += py-pycryptodomex SUBDIR += py-pycryptopp SUBDIR += py-pydeep SUBDIR += py-pyelliptic Added: head/security/py-pycryptodomex/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-pycryptodomex/Makefile Sun Jun 17 01:33:49 2018 (r472582) @@ -0,0 +1,11 @@ +# $FreeBSD$ + +PKGNAMESUFFIX= x + +CONFLICTS_INSTALL= + +MASTERDIR= ${.CURDIR}/../py-pycryptodome + +NAMESPACE= Cryptodome + +.include "${MASTERDIR}/Makefile"