aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormaurerpe <junk4me46806@yahoo.com>2016-02-21 16:54:19 -0500
committermaurerpe <junk4me46806@yahoo.com>2016-02-21 16:54:19 -0500
commitab311f98c5aa998abeb26a4f7f6f8db683792a01 (patch)
tree3186e4f86e1e3d9312cf0de71bc6c71527f0322c /dev-libs
parentAdd several packages (diff)
downloadlibressl-ab311f98c5aa998abeb26a4f7f6f8db683792a01.tar.gz
libressl-ab311f98c5aa998abeb26a4f7f6f8db683792a01.tar.bz2
libressl-ab311f98c5aa998abeb26a4f7f6f8db683792a01.zip
Remove obsolete ebuilds
Remove ebuilds that have been fixed in portage.
Diffstat (limited to 'dev-libs')
-rw-r--r--dev-libs/libressl/Manifest2
-rw-r--r--dev-libs/libressl/files/libressl-2.3.0-buffer-overrun.patch51
-rw-r--r--dev-libs/libressl/files/libressl-2.3.0-musl.patch12
-rw-r--r--dev-libs/libressl/libressl-2.2.4.ebuild46
-rw-r--r--dev-libs/libressl/libressl-2.3.0-r1.ebuild51
-rw-r--r--dev-libs/libressl/metadata.xml10
6 files changed, 0 insertions, 172 deletions
diff --git a/dev-libs/libressl/Manifest b/dev-libs/libressl/Manifest
deleted file mode 100644
index 52b52b3..0000000
--- a/dev-libs/libressl/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST libressl-2.2.4.tar.gz 2966157 SHA256 6b409859be8654afc3862549494e097017e64c8d167f12584383586306ef9a7e SHA512 390fbf4f531976c873a0a1163fd57f33097686c6956ec4d3eb69e8271a4e40abfec76d65172b34ae50af8936dd8b5c3ca5fefee9d8686ca468a5577d432c3fe5 WHIRLPOOL 44d36b582efad0cff8015e507ea7c95befd5a44f2beaf69b534454cee4288681d55390a9d4c41ded8a535f0ad6c210348f365534fe3d82725e6b918a89b99e43
-DIST libressl-2.3.0.tar.gz 2992475 SHA256 0451498d999ccff475226f5cfae07a3754a7b28c507c6bda007e316fc90d92a0 SHA512 d495d17272f25a7219139f750c49d5dec3a77fb25d9e95e21aa8d61d3757ee850a17a8e2ecdc78636f1bc2a9d2889b38149b4e0642d4ae4c54f33da3222e2c0a WHIRLPOOL 95b3fdac8b63aca4b0c6f9d7428d92f32ecef5ce3a437a0cf1fc0cbe265e9000651545d7c1915b7b6c20dfa5dfa6f30e1f84fddc40ae7ec6c01ea99b0476bab4
diff --git a/dev-libs/libressl/files/libressl-2.3.0-buffer-overrun.patch b/dev-libs/libressl/files/libressl-2.3.0-buffer-overrun.patch
deleted file mode 100644
index f570f9d..0000000
--- a/dev-libs/libressl/files/libressl-2.3.0-buffer-overrun.patch
+++ /dev/null
@@ -1,51 +0,0 @@
-diff -Naurw libressl-2.3.0.orig/crypto/objects/obj_dat.c libressl-2.3.0/crypto/objects/obj_dat.c
---- libressl-2.3.0.orig/crypto/objects/obj_dat.c 2014-12-06 15:15:50.000000000 -0800
-+++ libressl-2.3.0/crypto/objects/obj_dat.c 2015-10-16 17:18:54.534556199 -0700
-@@ -491,7 +491,6 @@
- {
- int i, ret = 0, len, nid, first = 1, use_bn;
- BIGNUM *bl = NULL;
-- char *bndec = NULL;
- unsigned long l;
- const unsigned char *p;
-
-@@ -567,14 +566,16 @@
- }
-
- if (use_bn) {
-+ char *bndec;
-+
- bndec = BN_bn2dec(bl);
- if (!bndec)
- goto err;
- i = snprintf(buf, buf_len, ".%s", bndec);
-+ free(bndec);
- if (i == -1)
- goto err;
- if (i >= buf_len) {
-- buf += buf_len;
- buf_len = 0;
- } else {
- buf += i;
-@@ -586,7 +587,6 @@
- if (i == -1)
- goto err;
- if (i >= buf_len) {
-- buf += buf_len;
- buf_len = 0;
- } else {
- buf += i;
-@@ -598,13 +598,11 @@
- }
-
- out:
-- free(bndec);
- BN_free(bl);
- return ret;
-
- err:
- ret = 0;
-- buf[0] = '\0';
- goto out;
- }
-
diff --git a/dev-libs/libressl/files/libressl-2.3.0-musl.patch b/dev-libs/libressl/files/libressl-2.3.0-musl.patch
deleted file mode 100644
index 4fcf9a8..0000000
--- a/dev-libs/libressl/files/libressl-2.3.0-musl.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -Naurw libressl-2.3.0.orig/apps/Makefile.in libressl-2.3.0/apps/Makefile.in
---- libressl-2.3.0.orig/apps/Makefile.in 2015-09-22 05:06:38.000000000 -0700
-+++ libressl-2.3.0/apps/Makefile.in 2015-09-24 12:59:38.106937861 -0700
-@@ -310,7 +310,7 @@
- top_srcdir = @top_srcdir@
- AM_CFLAGS = -I$(top_srcdir)/include -I$(top_srcdir)/include/compat
- AM_CPPFLAGS = -DLIBRESSL_INTERNAL
--SUBDIRS = openssl nc
-+SUBDIRS = openssl
- EXTRA_DIST = CMakeLists.txt
- all: all-recursive
-
diff --git a/dev-libs/libressl/libressl-2.2.4.ebuild b/dev-libs/libressl/libressl-2.2.4.ebuild
deleted file mode 100644
index 3cfbd05..0000000
--- a/dev-libs/libressl/libressl-2.2.4.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit eutils multilib-minimal
-
-DESCRIPTION="Free version of the SSL/TLS protocol forked from OpenSSL"
-HOMEPAGE="http://www.libressl.org/"
-SRC_URI="http://ftp.openbsd.org/pub/OpenBSD/LibreSSL/${P}.tar.gz"
-
-LICENSE="ISC openssl"
-SLOT="0/35"
-KEYWORDS="amd64 mips ppc ppc64 x86"
-IUSE="+asm static-libs"
-
-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"
-}
-
-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/libressl-2.3.0-r1.ebuild b/dev-libs/libressl/libressl-2.3.0-r1.ebuild
deleted file mode 100644
index 6ed1d0e..0000000
--- a/dev-libs/libressl/libressl-2.3.0-r1.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit eutils multilib-minimal
-
-DESCRIPTION="Free version of the SSL/TLS protocol forked from OpenSSL"
-HOMEPAGE="http://www.libressl.org/"
-SRC_URI="http://ftp.openbsd.org/pub/OpenBSD/LibreSSL/${P}.tar.gz"
-
-LICENSE="ISC openssl"
-SLOT="0/36"
-KEYWORDS="~amd64 ~mips ~ppc ~ppc64 ~x86"
-IUSE="+asm static-libs"
-
-PDEPEND="app-misc/ca-certificates"
-
-src_prepare() {
- epatch "${FILESDIR}"/${P}-buffer-overrun.patch
-
- # Fix for MUSL
- epatch "${FILESDIR}"/${P}-musl.patch
-
- 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"
-}
-
-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
deleted file mode 100644
index e2b7816..0000000
--- a/dev-libs/libressl/metadata.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer>
- <email>maintainer-wanted@gentoo.org</email>
- </maintainer>
- <use>
- <flag name="asm">Enables assembly</flag>
- </use>
-</pkgmetadata>