commit:     788b584066869cafe7a7fab302713d740fc07b3c
Author:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 25 02:22:20 2019 +0000
Commit:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Thu Apr 25 02:22:47 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=788b5840

net-analyzer/testssl: remove 2.9.5_p5

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Michael Palimaka <kensington <AT> gentoo.org>

 net-analyzer/testssl/Manifest                   |  1 -
 net-analyzer/testssl/testssl-2.9.5_p5-r1.ebuild | 60 --------------------
 net-analyzer/testssl/testssl-2.9.5_p5-r2.ebuild | 74 -------------------------
 net-analyzer/testssl/testssl-2.9.5_p5.ebuild    | 65 ----------------------
 4 files changed, 200 deletions(-)

diff --git a/net-analyzer/testssl/Manifest b/net-analyzer/testssl/Manifest
index 5d7991e9fe1..1b35a61ab57 100644
--- a/net-analyzer/testssl/Manifest
+++ b/net-analyzer/testssl/Manifest
@@ -1,2 +1 @@
-DIST testssl-2.9.5_p5.tar.gz 8955523 BLAKE2B 
dcafb0931ddfb9d653acf79f72d2e30b2acc4a80246ecb3f26eaa35d4a69d5af65123005de34d09c563978593450895bf451b866182fd3ea38bdb121fb8e9385
 SHA512 
8a26989e1b8f45a2ac25efab500c89eeec2dbdbb9c0af715a61433ce0737ed69221df09a9554b6ae4415081a66ef4f6afd44c92405afefe4a810cb4375988700
 DIST testssl-2.9.5_p7.tar.gz 8955971 BLAKE2B 
6ca3bc60445c9448c3dc24ee7262e57bc03a2c686bbeebcc1cc850edfa652538c1ba5365189c27e78f0cb977e68d2ea1a9f940d47cd0a53402d1fa9a31a33483
 SHA512 
35ab900b84db8a0a210cb9ce8bb794ff7e8cddd5c85a151083bc76eba834dce37597b29b6235fcf2ce37b004dd295b1756e01374a4943e1e2ed0d2a8cf8761f6

diff --git a/net-analyzer/testssl/testssl-2.9.5_p5-r1.ebuild 
b/net-analyzer/testssl/testssl-2.9.5_p5-r1.ebuild
deleted file mode 100644
index 41bdd598f1b..00000000000
--- a/net-analyzer/testssl/testssl-2.9.5_p5-r1.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-MY_PN="${PN}.sh"
-MY_PV="${PV/_p/-}"
-
-DESCRIPTION="Tool to check TLS/SSL cipher support"
-HOMEPAGE="https://testssl.sh/";
-SRC_URI="https://github.com/drwetter/${MY_PN}/archive/v${MY_PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="GPL-2 bundled-openssl? ( openssl )"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="bundled-openssl"
-
-RDEPEND="
-       app-shells/bash[net]
-       net-dns/bind-tools
-       sys-apps/util-linux
-       sys-libs/ncurses:0
-       sys-process/procps
-       !bundled-openssl? ( dev-libs/openssl:0 )
-"
-
-S=${WORKDIR}/${MY_PN}-${MY_PV}
-
-QA_PREBUILT="opt/${PN}/*"
-
-pkg_setup() {
-       use amd64 && BUNDLED_OPENSSL="openssl.Linux.x86_64"
-}
-
-src_prepare() {
-       default
-       sed -i ${PN}.sh \
-               -e 
's|TESTSSL_INSTALL_DIR="${TESTSSL_INSTALL_DIR:-""}"|TESTSSL_INSTALL_DIR="/"|' \
-               -e 's|$TESTSSL_INSTALL_DIR/etc/|&testssl/|g' || die
-
-       if use bundled-openssl; then
-               sed -i ${PN}.sh \
-                       -e "/find_openssl_binary()/a 
OPENSSL=\"/opt/${PN}/${BUNDLED_OPENSSL}\"" || die
-       fi
-}
-
-src_install() {
-       dodoc CHANGELOG.stable-releases.txt CREDITS.md Readme.md
-       dodoc openssl-rfc.mappping.html
-
-       dobin ${PN}.sh
-
-       insinto /etc/${PN}
-       doins etc/*
-
-       if use bundled-openssl; then
-               exeinto /opt/${PN}
-               use amd64 && doexe bin/${BUNDLED_OPENSSL}
-       fi
-}

diff --git a/net-analyzer/testssl/testssl-2.9.5_p5-r2.ebuild 
b/net-analyzer/testssl/testssl-2.9.5_p5-r2.ebuild
deleted file mode 100644
index 2cabe7984eb..00000000000
--- a/net-analyzer/testssl/testssl-2.9.5_p5-r2.ebuild
+++ /dev/null
@@ -1,74 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-MY_PN="${PN}.sh"
-MY_PV="${PV/_p/-}"
-
-DESCRIPTION="Tool to check TLS/SSL cipher support"
-HOMEPAGE="https://testssl.sh/";
-SRC_URI="https://github.com/drwetter/${MY_PN}/archive/v${MY_PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="GPL-2 bundled-openssl? ( openssl )"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="bundled-openssl kerberos"
-
-RDEPEND="
-       app-shells/bash[net]
-       net-dns/bind-tools
-       sys-apps/util-linux
-       sys-libs/ncurses:0
-       sys-process/procps
-       bundled-openssl? (
-               kerberos? (
-                       sys-libs/zlib
-                       virtual/krb5
-               )
-       )
-       !bundled-openssl? ( dev-libs/openssl:0 )
-"
-
-S=${WORKDIR}/${MY_PN}-${MY_PV}
-
-QA_PREBUILT="opt/${PN}/*"
-
-pkg_setup() {
-       if use amd64; then
-               if use kerberos; then
-                       BUNDLED_OPENSSL="openssl.Linux.x86_64.krb5"
-               else
-                       BUNDLED_OPENSSL="openssl.Linux.x86_64"
-               fi
-       elif use x86; then
-               BUNDLED_OPENSSL="openssl.Linux.i686"
-       fi
-}
-
-src_prepare() {
-       default
-       sed -i ${PN}.sh \
-               -e 
's|TESTSSL_INSTALL_DIR="${TESTSSL_INSTALL_DIR:-""}"|TESTSSL_INSTALL_DIR="/"|' \
-               -e 's|$TESTSSL_INSTALL_DIR/etc/|&testssl/|g' || die
-
-       if use bundled-openssl; then
-               sed -i ${PN}.sh \
-                       -e "/find_openssl_binary()/a 
OPENSSL=\"/opt/${PN}/${BUNDLED_OPENSSL}\"" || die
-       fi
-}
-
-src_install() {
-       dodoc CHANGELOG.stable-releases.txt CREDITS.md Readme.md
-       dodoc openssl-rfc.mappping.html
-
-       dobin ${PN}.sh
-
-       insinto /etc/${PN}
-       doins etc/*
-
-       if use bundled-openssl; then
-               exeinto /opt/${PN}
-               use amd64 && doexe bin/${BUNDLED_OPENSSL}
-       fi
-}

diff --git a/net-analyzer/testssl/testssl-2.9.5_p5.ebuild 
b/net-analyzer/testssl/testssl-2.9.5_p5.ebuild
deleted file mode 100644
index 74b3c219771..00000000000
--- a/net-analyzer/testssl/testssl-2.9.5_p5.ebuild
+++ /dev/null
@@ -1,65 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-MY_PN="${PN}.sh"
-MY_PV="${PV/_p/-}"
-
-DESCRIPTION="Tool to check TLS/SSL cipher support"
-HOMEPAGE="https://testssl.sh/";
-SRC_URI="https://github.com/drwetter/${MY_PN}/archive/v${MY_PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="GPL-2 bundled-openssl? ( openssl )"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="bundled-openssl"
-
-RDEPEND="
-       app-shells/bash[net]
-       dev-libs/openssl:0
-       net-dns/bind-tools
-       sys-apps/util-linux
-       sys-libs/ncurses:0
-       sys-process/procps
-"
-
-S=${WORKDIR}/${MY_PN}-${MY_PV}
-
-QA_PREBUILT="opt/${PN}/*"
-
-pkg_setup() {
-       use amd64 && BUNDLED_OPENSSL="openssl.Linux.x86_64"
-}
-
-src_prepare() {
-       default
-       sed -i ${PN}.sh \
-               -e 
's|TESTSSL_INSTALL_DIR="${TESTSSL_INSTALL_DIR:-""}"|TESTSSL_INSTALL_DIR="/"|' \
-               -e 's|$TESTSSL_INSTALL_DIR/etc/|&testssl/|g' || die
-}
-
-src_install() {
-       dodoc CHANGELOG.stable-releases.txt CREDITS.md Readme.md
-       dodoc openssl-rfc.mappping.html
-
-       dobin ${PN}.sh
-
-       insinto /etc/${PN}
-       doins etc/*
-
-       if use bundled-openssl; then
-               exeinto /opt/${PN}
-               use amd64 && doexe bin/${BUNDLED_OPENSSL}
-       fi
-}
-
-pkg_postinst() {
-       if use bundled-openssl; then
-               einfo "A precompiled version of OpenSSL has been installed into 
/opt/${PN},"
-               einfo "configured to enable a wider range of features to allow 
better testing."
-               einfo ""
-               einfo "To use it, call ${PN} appropriately:"
-               einfo "${MY_PN} --openssl /opt/${PN}/${BUNDLED_OPENSSL} 
example.com"
-       fi
-}

Reply via email to