1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-27 05:10:36 +00:00
freebsd-ports/security/go.crypto/Makefile
Tobias Kortkamp c84e8b76d8 Deprecate Go library ports
Many of them are out of date now and there are few reasons to have
them in the tree [1].

[1] https://www.freebsd.org/doc/en/books/porters-handbook/go-libs.html

PR:		236502
Reviewed by:	dg@syrec.org
Approved by:	portmgr (mat), jlaffaye, wen, olgeni
Differential Revision:	https://reviews.freebsd.org/D19568
2019-03-20 06:42:08 +00:00

62 lines
1.5 KiB
Makefile

# $FreeBSD$
PORTNAME= go.crypto
PORTVERSION= 20170330
CATEGORIES= security devel
MAINTAINER= jlaffaye@FreeBSD.org
COMMENT= Additional cryptography packages for Go
LICENSE= BSD3CLAUSE
DEPRECATED= Go libraries should not be packaged
EXPIRATION_DATE= 2019-03-31
USE_GITHUB= yes
GH_ACCOUNT= golang
GH_PROJECT= crypto
GH_TAGNAME= 3cb0727
USES= go
GO_PKGNAME= golang.org/x/crypto
GO_TARGET= ${GO_PKGNAME}/bcrypt \
${GO_PKGNAME}/blake2b \
${GO_PKGNAME}/blake2s \
${GO_PKGNAME}/blowfish \
${GO_PKGNAME}/bn256 \
${GO_PKGNAME}/cast5 \
${GO_PKGNAME}/chacha20poly1305 \
${GO_PKGNAME}/cryptobyte \
${GO_PKGNAME}/curve25519 \
${GO_PKGNAME}/ed25519 \
${GO_PKGNAME}/hkdf \
${GO_PKGNAME}/md4 \
${GO_PKGNAME}/nacl/box \
${GO_PKGNAME}/nacl/secretbox \
${GO_PKGNAME}/ocsp \
${GO_PKGNAME}/openpgp \
${GO_PKGNAME}/openpgp/armor \
${GO_PKGNAME}/openpgp/clearsign \
${GO_PKGNAME}/openpgp/elgamal \
${GO_PKGNAME}/openpgp/errors \
${GO_PKGNAME}/openpgp/packet \
${GO_PKGNAME}/openpgp/s2k \
${GO_PKGNAME}/otr \
${GO_PKGNAME}/pbkdf2 \
${GO_PKGNAME}/pkcs12 \
${GO_PKGNAME}/poly1305 \
${GO_PKGNAME}/ripemd160 \
${GO_PKGNAME}/salsa20 \
${GO_PKGNAME}/salsa20/salsa \
${GO_PKGNAME}/scrypt \
${GO_PKGNAME}/sha3 \
${GO_PKGNAME}/ssh \
${GO_PKGNAME}/ssh/agent \
${GO_PKGNAME}/ssh/terminal \
${GO_PKGNAME}/ssh/test \
${GO_PKGNAME}/tea \
${GO_PKGNAME}/twofish \
${GO_PKGNAME}/xtea \
${GO_PKGNAME}/xts
.include <bsd.port.mk>