summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2020-09-02 10:03:03 +0200
committerMichał Górny <mgorny@gentoo.org>2020-09-02 10:03:03 +0200
commite2d70d368194c6d0dd8d97060ed6d5d2d3b969f3 (patch)
tree656030da7f5361d83822715217885bd36fd69a2c /app-crypt
parentapp-crypt/ssh-multiadd: Remove last-rited pkg (diff)
downloadgentoo-e2d70d368194c6d0dd8d97060ed6d5d2d3b969f3.tar.gz
gentoo-e2d70d368194c6d0dd8d97060ed6d5d2d3b969f3.tar.bz2
gentoo-e2d70d368194c6d0dd8d97060ed6d5d2d3b969f3.zip
app-crypt/openssl-blacklist: Remove last-rited pkg
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'app-crypt')
-rw-r--r--app-crypt/openssl-blacklist/Manifest2
-rw-r--r--app-crypt/openssl-blacklist/metadata.xml10
-rw-r--r--app-crypt/openssl-blacklist/openssl-blacklist-0.5.3.ebuild53
3 files changed, 0 insertions, 65 deletions
diff --git a/app-crypt/openssl-blacklist/Manifest b/app-crypt/openssl-blacklist/Manifest
deleted file mode 100644
index cc0c6df46b8c..000000000000
--- a/app-crypt/openssl-blacklist/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST openssl-blacklist_0.5-3.diff.gz 20228 BLAKE2B d09a6288ceb15e186855f52aef9c76fdeb94907555b8d6c8fa07963d629f0adade2f433bbf6a390a065e5ec0b336c2d2d57ecfd347fbf96d3497404eab16d1b5 SHA512 5e5b7fdc97248ccc44f3ffa306a23f9d3ed9585cee15f1ad55dffcf4e70a50463c05382b393bc07e4bd18ea530eea7d36a508f40c1e03b0932eb3cde43f886bd
-DIST openssl-blacklist_0.5.orig.tar.gz 32908393 BLAKE2B 75cbc1bb5780ded04ba84cd8cb7ea93fe271d0075a854e94dea81ff49b54e48a8207290f5e06426a090c0e913bad95b0f0d6992a1cdacfa1ea044521786ac8f1 SHA512 b0ecab15f4357b56508b048a0648263f118aa8eeda8ad6a15caab8c38b2270a5daf897026daf376a561b292c64c2651269182732e0ae3e4bbac455cc1d3985ab
diff --git a/app-crypt/openssl-blacklist/metadata.xml b/app-crypt/openssl-blacklist/metadata.xml
deleted file mode 100644
index 2a593dc51c9b..000000000000
--- a/app-crypt/openssl-blacklist/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 type="person">
- <email>hanno@gentoo.org</email>
- </maintainer>
- <upstream>
- <remote-id type="launchpad">ubuntu/+source/openssl-blacklist</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/app-crypt/openssl-blacklist/openssl-blacklist-0.5.3.ebuild b/app-crypt/openssl-blacklist/openssl-blacklist-0.5.3.ebuild
deleted file mode 100644
index 5cad464a8784..000000000000
--- a/app-crypt/openssl-blacklist/openssl-blacklist-0.5.3.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-PYTHON_COMPAT=( python2_7 )
-
-inherit eutils versionator python-single-r1
-
-MY_PV=$(get_version_component_range 1-2)
-MY_P="${PN}-${MY_PV}"
-DEB_P="${PN}_${MY_PV}"
-DEB_PVER=$(get_version_component_range 3)
-DEB_PATCH="${DEB_P}-${DEB_PVER}.diff"
-
-DESCRIPTION="Detection of weak ssl keys produced by certain debian versions in 2006-2008"
-HOMEPAGE="https://launchpad.net/ubuntu/+source/openssl-blacklist/"
-SRC_URI="mirror://debian/pool/main/o/${PN}/${DEB_P}.orig.tar.gz
- mirror://debian/pool/main/o/${PN}/${DEB_PATCH}.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 hppa x86"
-IUSE=""
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-DEPEND=""
-RDEPEND="${DEPEND}
- ${PYTHON_DEPS}"
-
-S=${WORKDIR}/${MY_P}
-
-src_prepare() {
- EPATCH_OPTS="-p1" epatch "${WORKDIR}"/${DEB_PATCH}
-}
-
-src_install() {
- dobin openssl-vulnkey
- doman openssl-vulnkey.1
- insinto /usr/share/openssl-blacklist
-
- # ripped from debian/rules "install" target
- local keysize
- for keysize in 512 1024 2048 4096 ; do
- (
- cat debian/blacklist.prefix
- cat blacklists/{be32,le32,le64}/blacklist-${keysize}.db \
- | cut -d ' ' -f 5 | cut -b21- | sort
- ) > blacklist.RSA-${keysize}
- doins blacklist.RSA-${keysize}
- done
-
- python_fix_shebang "${ED}/usr/bin/openssl-vulnkey"
-}