From 67699aec80b613ef3aaeac108408c7585b8099f6 Mon Sep 17 00:00:00 2001 From: Gluzskiy Alexandr Date: Sat, 10 Mar 2018 00:04:19 +0300 Subject: libressl-scm --- dev-libs/libressl/.libressl-scm.ebuild.swp | Bin 0 -> 12288 bytes dev-libs/libressl/files/update.sh.patch | 25 +++++++++++ dev-libs/libressl/libressl-scm.ebuild | 66 +++++++++++++++++++++++++++++ dev-libs/libressl/metadata.xml | 30 +++++++++++++ 4 files changed, 121 insertions(+) create mode 100644 dev-libs/libressl/.libressl-scm.ebuild.swp create mode 100644 dev-libs/libressl/files/update.sh.patch create mode 100644 dev-libs/libressl/libressl-scm.ebuild create mode 100644 dev-libs/libressl/metadata.xml (limited to 'dev-libs') diff --git a/dev-libs/libressl/.libressl-scm.ebuild.swp b/dev-libs/libressl/.libressl-scm.ebuild.swp new file mode 100644 index 0000000..65841f9 Binary files /dev/null and b/dev-libs/libressl/.libressl-scm.ebuild.swp differ diff --git a/dev-libs/libressl/files/update.sh.patch b/dev-libs/libressl/files/update.sh.patch new file mode 100644 index 0000000..688270c --- /dev/null +++ b/dev-libs/libressl/files/update.sh.patch @@ -0,0 +1,25 @@ +diff --git a/update.sh b/update.sh +index f11aa04..4016093 100755 +--- a/update.sh ++++ b/update.sh +@@ -3,20 +3,6 @@ set -e + + openbsd_branch=`cat OPENBSD_BRANCH` + +-# pull in latest upstream code +-echo "pulling upstream openbsd source" +-if [ ! -d openbsd ]; then +- if [ -z "$LIBRESSL_GIT" ]; then +- git clone https://github.com/libressl-portable/openbsd.git +- else +- git clone $LIBRESSL_GIT/openbsd +- fi +-fi +-(cd openbsd +- git fetch +- git checkout $openbsd_branch +- git pull --rebase) +- + # setup source paths + CWD=`pwd` + OPENBSD_SRC=$CWD/openbsd/src diff --git a/dev-libs/libressl/libressl-scm.ebuild b/dev-libs/libressl/libressl-scm.ebuild new file mode 100644 index 0000000..e89cc24 --- /dev/null +++ b/dev-libs/libressl/libressl-scm.ebuild @@ -0,0 +1,66 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit eutils multilib-minimal git-r3 + +DESCRIPTION="Free version of the SSL/TLS protocol forked from OpenSSL" +HOMEPAGE="http://www.libressl.org/" +SRC_URI="" +EGIT_REPO_URI="https://github.com/libressl-portable/portable.git" + +LICENSE="ISC openssl" +# Reflects ABI of libcrypto.so and libssl.so. Since these can differ, +# we'll try to use the max of either. However, if either change between +# versions, we have to change the subslot to trigger rebuild of consumers. +SLOT="0/44" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86" +IUSE="+asm static-libs" + +RDEPEND="!dev-libs/openssl:0" +DEPEND="${RDEPEND}" +PDEPEND="app-misc/ca-certificates" + +PATCHES=( + "${FILESDIR}/update.sh.patch" +) + +src_unpack() { + git-r3_src_unpack + EGIT_REPO_URI="https://github.com/libressl-portable/openbsd.git" + EGIT_CHECKOUT_DIR=${WORKDIR}/${P}/openbsd + git-r3_src_unpack +} + +src_prepare() { + default + ./autogen.sh + touch crypto/Makefile.in + + sed -i \ + -e '/^[ \t]*CFLAGS=/s#-g ##' \ + -e '/^[ \t]*CFLAGS=/s#-g"#"#' \ + -e '/^[ \t]*CFLAGS=/s#-O2 ##' \ + -e '/^[ \t]*CFLAGS=/s#-O2"#"#' \ + -e '/^[ \t]*USER_CFLAGS=/s#-O2 ##' \ + -e '/^[ \t]*USER_CFLAGS=/s#-O2"#"#' \ + configure || die "fixing CFLAGS failed" + + eapply_user +} + +multilib_src_configure() { + ECONF_SOURCE="${S}" econf \ + $(use_enable asm) \ + $(use_enable static-libs static) +} + +multilib_src_test() { + emake check +} + +multilib_src_install_all() { + einstalldocs + prune_libtool_files +} diff --git a/dev-libs/libressl/metadata.xml b/dev-libs/libressl/metadata.xml new file mode 100644 index 0000000..a7201a6 --- /dev/null +++ b/dev-libs/libressl/metadata.xml @@ -0,0 +1,30 @@ + + + + + libressl@gentoo.org + + + LibreSSL is a version of the TLS/crypto stack forked from OpenSSL in + 2014, with goals of modernizing the codebase, improving security, and + applying best practice development processes. + + + Enables assembly + + + http://www.libressl.org/releases.html + + https://github.com/libressl-portable/portable/issues + + libressl-portable/portable + + + + Pin source packages to SLOT 0, as binary compatibility slots are expected to come and go. + + + Reflect ABI of libcrypto.so and libssl.so only, NOT libtls.so. + + + -- cgit v1.2.3