diff options
author | yuri <yuri@FreeBSD.org> | 2018-06-17 09:33:49 +0800 |
---|---|---|
committer | yuri <yuri@FreeBSD.org> | 2018-06-17 09:33:49 +0800 |
commit | fc420aabca45e527202fd1d68c439f23fe1ac570 (patch) | |
tree | d1429450dc01dea9d4addb0ef02d9d4f35981839 | |
parent | 957c783cd138da1d0032756a02d2350357c28d92 (diff) | |
download | freebsd-ports-gnome-fc420aabca45e527202fd1d68c439f23fe1ac570.tar.gz freebsd-ports-gnome-fc420aabca45e527202fd1d68c439f23fe1ac570.tar.zst freebsd-ports-gnome-fc420aabca45e527202fd1d68c439f23fe1ac570.zip |
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 <john@saltant.com>
-rw-r--r-- | security/Makefile | 1 | ||||
-rw-r--r-- | security/py-pycryptodomex/Makefile | 11 |
2 files changed, 12 insertions, 0 deletions
diff --git a/security/Makefile b/security/Makefile index 461abbd4d92a..06e313327068 100644 --- a/security/Makefile +++ b/security/Makefile @@ -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 diff --git a/security/py-pycryptodomex/Makefile b/security/py-pycryptodomex/Makefile new file mode 100644 index 000000000000..c06dcf8e2492 --- /dev/null +++ b/security/py-pycryptodomex/Makefile @@ -0,0 +1,11 @@ +# $FreeBSD$ + +PKGNAMESUFFIX= x + +CONFLICTS_INSTALL= + +MASTERDIR= ${.CURDIR}/../py-pycryptodome + +NAMESPACE= Cryptodome + +.include "${MASTERDIR}/Makefile" |