Date: Wed, 30 Jun 2021 07:24:58 GMT From: Emmanuel Vadot <manu@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org Subject: git: 632e3f2f3a66 - stable/13 - pkgbase: Put openssl in its own package Message-ID: <202106300724.15U7OweC084229@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch stable/13 has been updated by manu: URL: https://cgit.FreeBSD.org/src/commit/?id=632e3f2f3a66cea437a93169b0f907931348ffb5 commit 632e3f2f3a66cea437a93169b0f907931348ffb5 Author: Emmanuel Vadot <manu@FreeBSD.org> AuthorDate: 2021-05-02 15:46:17 +0000 Commit: Emmanuel Vadot <manu@FreeBSD.org> CommitDate: 2021-06-30 07:24:31 +0000 pkgbase: Put openssl in its own package This is useful for upgrade and also to make tiny jail so they won't depend on FreeBSD-utilities (where openssl was packaged before). MFC after: 1 month Differential Revision: https://reviews.freebsd.org/D30081 --- release/packages/Makefile.package | 2 ++ secure/lib/libcrypto/Makefile | 2 +- secure/lib/libssl/Makefile | 1 + secure/usr.bin/openssl/Makefile | 1 + 4 files changed, 5 insertions(+), 1 deletion(-) diff --git a/release/packages/Makefile.package b/release/packages/Makefile.package index 125732267008..dd7ce63d78a1 100644 --- a/release/packages/Makefile.package +++ b/release/packages/Makefile.package @@ -57,6 +57,8 @@ kernel_COMMENT= FreeBSD Kernel kernel_DESC= FreeBSD Kernel manuals_COMMENT= Manual Pages manuals_DESC= Manual Pages +openssl_COMMENT= OpenSSL Library and Utility +openssl_DESC= OpenSSL Library and Utility rc_COMMENT= RC Scripts rc_DESC= RC Scripts rcmds_COMMENT= Remote Command Utilities diff --git a/secure/lib/libcrypto/Makefile b/secure/lib/libcrypto/Makefile index b82b5c8d84b1..ff9303c9edae 100644 --- a/secure/lib/libcrypto/Makefile +++ b/secure/lib/libcrypto/Makefile @@ -6,7 +6,7 @@ SUBDIR= engines .include <bsd.own.mk> .include <src.opts.mk> -PACKAGE= runtime +PACKAGE= openssl LIB= crypto SHLIB_MAJOR= 111 VERSION_MAP= ${.CURDIR}/Version.map diff --git a/secure/lib/libssl/Makefile b/secure/lib/libssl/Makefile index 74856aaa3b1f..893ea6ebed79 100644 --- a/secure/lib/libssl/Makefile +++ b/secure/lib/libssl/Makefile @@ -5,6 +5,7 @@ LIB= ssl SHLIB_MAJOR= 111 VERSION_MAP= ${.CURDIR}/Version.map +PACKAGE= openssl NO_LINT= diff --git a/secure/usr.bin/openssl/Makefile b/secure/usr.bin/openssl/Makefile index e71be39bae56..5f3bf395a149 100644 --- a/secure/usr.bin/openssl/Makefile +++ b/secure/usr.bin/openssl/Makefile @@ -3,6 +3,7 @@ CONFS= openssl.cnf CONFSDIR= /etc/ssl PROG= openssl +PACKAGE= openssl LIBADD= ssl crypto
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202106300724.15U7OweC084229>