dev-libs/libressl: drop old
authorAaron Bauman <bman@gentoo.org>
Sun, 6 May 2018 16:15:26 +0000 (12:15 -0400)
committerAaron Bauman <bman@gentoo.org>
Sun, 6 May 2018 16:15:56 +0000 (12:15 -0400)
Package-Manager: Portage-2.3.36, Repoman-2.3.9

dev-libs/libressl/Manifest
dev-libs/libressl/libressl-2.6.0.ebuild [deleted file]

index 1e55c4d34be9f6f4577e3818b86051b937c2a633..213f79d3fa307a01b62fbe95ac04c71d932a4a8e 100644 (file)
@@ -1,3 +1,2 @@
-DIST libressl-2.6.0.tar.gz 3297288 BLAKE2B 8906227a1d125e32afafb666e67c1364d764234d6a3c389c59f820cb5d778133811cc4be06de948fe6375e36ceddd061e1736e3b0fe3511e8807f5cb9fddc978 SHA512 e195c6a2c9680cfaaca31bb6d3392fc6f725efd2a2d18b9a24d457d035a581c88630e6a066a4a4e0903e71f3ae3c30a031eb4f58281e483fdf1d877227452e9a
 DIST libressl-2.6.4.tar.gz 3227935 BLAKE2B 48e865448a9e5b0b604b06060091073276aebd376506de73773a5eb9cb0bb4c5b93aa16353b4892abaee97ec933ad77e89775c3f52263d77bb17c68e481b4f70 SHA512 181761da573ff392aaee17dd3dde416d7cbb299ab3e07b49c97e279ceb3f619e78d1dc9ec4c59b0af024f0a8270ff31fe37f8282d0392be34c3143c9647cd246
 DIST libressl-2.7.3.tar.gz 3364724 BLAKE2B e245cd0e3c4819e12f3f05898429c10894959d9bbe27bfca38543ec304a84abc8edda7c968eb8d25e5c589011c5482060d05bd1e5aef71c13708ec804cd05a72 SHA512 5fafff32bc4effa98c00278206f0aeca92652c6a8101b2c5da3904a5a3deead2d1e3ce979c644b8dc6060ec216eb878a5069324a0396c0b1d7b6f8169d509e9b
diff --git a/dev-libs/libressl/libressl-2.6.0.ebuild b/dev-libs/libressl/libressl-2.6.0.ebuild
deleted file mode 100644 (file)
index 2613eb3..0000000
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit ltprune multilib-minimal
-
-DESCRIPTION="Free version of the SSL/TLS protocol forked from OpenSSL"
-HOMEPAGE="https://www.libressl.org/"
-SRC_URI="https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/${P}.tar.gz"
-
-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/43"
-KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~mips ppc ppc64 sparc x86"
-IUSE="+asm static-libs test"
-REQUIRED_USE="test? ( static-libs )"
-
-RDEPEND="!dev-libs/openssl:0"
-DEPEND="${RDEPEND}"
-PDEPEND="app-misc/ca-certificates"
-
-src_prepare() {
-       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
-}