public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Sam James" <sam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/ssldump/, net-analyzer/ssldump/files/
Date: Mon, 22 Mar 2021 00:19:55 +0000 (UTC)	[thread overview]
Message-ID: <1616372382.ecdb8802af3a726b11669d0657d05bc7e60e7a0c.sam@gentoo> (raw)

commit:     ecdb8802af3a726b11669d0657d05bc7e60e7a0c
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 22 00:19:42 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Mar 22 00:19:42 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ecdb8802

net-analyzer/ssldump: drop 0.9_beta3

Closes: https://bugs.gentoo.org/776553
Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-analyzer/ssldump/Manifest                      |  1 -
 .../ssldump/files/ssldump-0.9-DLT_LINUX_SLL.patch  | 13 -----
 .../files/ssldump-0.9-configure-dylib.patch        | 28 ---------
 .../ssldump/files/ssldump-0.9-declaration.patch    | 11 ----
 .../ssldump/files/ssldump-0.9-includes.patch       | 30 ----------
 .../ssldump/files/ssldump-0.9-libpcap-header.patch | 10 ----
 .../ssldump-0.9-openssl-0.9.8.compile-fix.patch    | 18 ------
 .../ssldump/files/ssldump-0.9-prefix-fix.patch     | 22 --------
 net-analyzer/ssldump/ssldump-0.9_beta3.ebuild      | 66 ----------------------
 9 files changed, 199 deletions(-)

diff --git a/net-analyzer/ssldump/Manifest b/net-analyzer/ssldump/Manifest
index b7ac5c7e1f8..03625580b15 100644
--- a/net-analyzer/ssldump/Manifest
+++ b/net-analyzer/ssldump/Manifest
@@ -1,3 +1,2 @@
-DIST ssldump-0.9b3.tar.gz 137435 BLAKE2B e42eeac4daa99a62537ac7ee5152428664fed40256ec10f7c61621f9bbd06476d280af1a6c517eaff253058e3720a282e88604b2f1de0c7ad1b5328597879449 SHA512 ea81558a243950ab43354c9f33c0a4feae0ae859bc2bd6e6b58838a01f4a1e7a6447f2a9ab1fa40bbe8dbd6c3630c489c17fc9c066cacfddfb64269b0cd5090a
 DIST ssldump-1.1.tar.gz 187436 BLAKE2B 3cafd7263762a7a326fb30722a918bcfaae5b43eedca37a0b5c341efc510e935671dc7ebf71eb807fcacbfce5f77896f310b634028713deb5516390fcfc21f65 SHA512 00ff449d3818a27fbcb46316733428f6a623488e758a67fcb7ee4390835e3279e7242aa0134ddc158740cb8323f5fd9869bd50efb35189dce977d4768d9636c2
 DIST ssldump-1.3.tar.gz 122819 BLAKE2B 8a96746939eb8d9ba33340ff112b1bc5b436a7eb5756fda494065c8f8fd7d6ec9c1c28d8f7f880d25856f24749fd8a8a98d4104753bb68772b2583dafef099b8 SHA512 6da4db890a30673278b17eb00201b6c2535ba476b769bed6ed4e31c06744f32e299d0f0dd6420aa7255e2c982a378cd721d7bf51dd0aeb23211ab678d1e5f26e

diff --git a/net-analyzer/ssldump/files/ssldump-0.9-DLT_LINUX_SLL.patch b/net-analyzer/ssldump/files/ssldump-0.9-DLT_LINUX_SLL.patch
deleted file mode 100644
index 9a58c636992..00000000000
--- a/net-analyzer/ssldump/files/ssldump-0.9-DLT_LINUX_SLL.patch
+++ /dev/null
@@ -1,13 +0,0 @@
---- a/base/pcap-snoop.c
-+++ b/base/pcap-snoop.c
-@@ -157,6 +157,10 @@
-           return;
-         
-         break;
-+      case DLT_LINUX_SLL:
-+        data+=16;
-+        len-=16;
-+        break;
-     }
-     network_process_packet(n,&hdr->ts,data,len);
-   }

diff --git a/net-analyzer/ssldump/files/ssldump-0.9-configure-dylib.patch b/net-analyzer/ssldump/files/ssldump-0.9-configure-dylib.patch
deleted file mode 100644
index 941350e8c78..00000000000
--- a/net-analyzer/ssldump/files/ssldump-0.9-configure-dylib.patch
+++ /dev/null
@@ -1,28 +0,0 @@
---- a/configure.in
-+++ b/configure.in
-@@ -102,14 +102,13 @@
- AC_MSG_CHECKING(for PCAP library)
- ac_found_pcap_lib_dir="no"
- for dir in $ac_pcap_lib_dir; do
--	if test -f $dir/libpcap.a; then
-+	if test -f $dir/libpcap.so -o -f $dir/libpcap.dylib; then
- 	dnl Ok, we think we've found them, but check that they
--	dnl actually ontain the right functions
-+	dnl actually contain the right functions
- 		save_LIBS=$LIBS
--		save_LDFLAGS=$LDFLAGS
- 		LIBS="-lpcap $LIBS"
- 		if test "$dir" != "/usr/lib"; then
--			LDFLAGS="-L$dir $LDFLAGS"
-+			LIBS="-L$dir $LIBS"
- 		fi
- 		AC_TRY_LINK_FUNC(pcap_open_live,ac_linked_libpcap="true",
- 			ac_linked_libpcap="false");
-@@ -118,7 +117,6 @@
- 			break
- 		fi
- 		LIBS=$save_LIBS
--		LDFLAGS=$save_LDFLAGS
- 	fi
- done
- 

diff --git a/net-analyzer/ssldump/files/ssldump-0.9-declaration.patch b/net-analyzer/ssldump/files/ssldump-0.9-declaration.patch
deleted file mode 100644
index 836b52c84ab..00000000000
--- a/net-analyzer/ssldump/files/ssldump-0.9-declaration.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/ssl/ssl_rec.h
-+++ b/ssl/ssl_rec.h
-@@ -54,6 +54,8 @@
-   SSL_CipherSuite *cs,UCHAR *mk,UCHAR *sk,UCHAR *iv));
- int ssl_decode_rec_data PROTO_LIST((ssl_obj *ssl,ssl_rec_decoder *d,
-   int ct,int version,UCHAR *in,int inl,UCHAR *out,int *outl));
-+int ssl3_check_mac(ssl_rec_decoder *d, int ct, int ver, UCHAR *data,
-+  UINT4 datalen, UCHAR *mac);
- 
- #endif
- 

diff --git a/net-analyzer/ssldump/files/ssldump-0.9-includes.patch b/net-analyzer/ssldump/files/ssldump-0.9-includes.patch
deleted file mode 100644
index 8ca06dcef44..00000000000
--- a/net-analyzer/ssldump/files/ssldump-0.9-includes.patch
+++ /dev/null
@@ -1,30 +0,0 @@
---- a/common/lib/r_assoc.c
-+++ b/common/lib/r_assoc.c
-@@ -57,6 +57,7 @@
- static char *RCSSTRING="$Id$";
- 
- #include <r_common.h>
-+#include <string.h> /* memcpy() memcmp() */
- #include "r_assoc.h"
- 
- typedef struct r_assoc_el_ {
---- a/common/lib/r_bitfield.c
-+++ b/common/lib/r_bitfield.c
-@@ -11,6 +11,7 @@
- static char *RCSSTRING="$Id$";
- 
- #include <r_common.h>
-+#include <string.h> /* memcpy() memset() */
- #include "r_bitfield.h"
- 
- int r_bitfield_create(setp,size)
---- a/common/lib/r_data.c
-+++ b/common/lib/r_data.c
-@@ -47,6 +47,7 @@
- static char *RCSSTRING="$Id$";
- 
- #include <r_common.h>
-+#include <string.h> /* memcmp() memcpy() memset() */
- #include <r_data.h>
- 
- int r_data_create(dp,d,l)

diff --git a/net-analyzer/ssldump/files/ssldump-0.9-libpcap-header.patch b/net-analyzer/ssldump/files/ssldump-0.9-libpcap-header.patch
deleted file mode 100644
index a9a724658cc..00000000000
--- a/net-analyzer/ssldump/files/ssldump-0.9-libpcap-header.patch
+++ /dev/null
@@ -1,10 +0,0 @@
---- a/base/pcap-snoop.c
-+++ b/base/pcap-snoop.c
-@@ -49,7 +49,6 @@
- 
- #include <pcap.h>
- #include <unistd.h>
--#include <net/bpf.h>
- #ifndef _WIN32
- #include <sys/param.h>
- #endif

diff --git a/net-analyzer/ssldump/files/ssldump-0.9-openssl-0.9.8.compile-fix.patch b/net-analyzer/ssldump/files/ssldump-0.9-openssl-0.9.8.compile-fix.patch
deleted file mode 100644
index 2ce16d54f16..00000000000
--- a/net-analyzer/ssldump/files/ssldump-0.9-openssl-0.9.8.compile-fix.patch
+++ /dev/null
@@ -1,18 +0,0 @@
---- a/ssl/ssldecode.c
-+++ b/ssl/ssldecode.c
-@@ -51,6 +51,7 @@
- #include <openssl/ssl.h>
- #include <openssl/hmac.h>
- #include <openssl/evp.h>
-+#include <openssl/md5.h>
- #include <openssl/x509v3.h>
- #endif
- #include "ssldecode.h"
-@@ -131,6 +132,7 @@
-     ssl_decode_ctx *d=0;
-     int r,_status;
-     
-+    SSL_library_init();
-     SSLeay_add_all_algorithms();
-     if(!(d=(ssl_decode_ctx *)malloc(sizeof(ssl_decode_ctx))))
-       ABORT(R_NO_MEMORY);

diff --git a/net-analyzer/ssldump/files/ssldump-0.9-prefix-fix.patch b/net-analyzer/ssldump/files/ssldump-0.9-prefix-fix.patch
deleted file mode 100644
index 74d7ddcd6f6..00000000000
--- a/net-analyzer/ssldump/files/ssldump-0.9-prefix-fix.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-eliminates unused variable ROOT, which disturbs ld from Prefix. Bug #414335
-
---- a/Makefile.in
-+++ b/Makefile.in
-@@ -46,13 +46,12 @@ BINDIR=@sbindir@
- MANDIR=@mandir@
- RM=rm -f
- 
--ROOT=./
--ANALYZE_SRCDIR=$(ROOT)base/
-+ANALYZE_SRCDIR=base/
- COMMONDIR=common/
- COMMON_LIB_SRCDIR=$(COMMONDIR)lib/
--ANALYZE_NULL_SRCDIR=$(ROOT)null/
--ANALYZE_SSL_SRCDIR=$(ROOT)ssl/
--ANALYZE_RECORD_SRCDIR=$(ROOT)@RECORD_MOD@/
-+ANALYZE_NULL_SRCDIR=null/
-+ANALYZE_SSL_SRCDIR=ssl/
-+ANALYZE_RECORD_SRCDIR=@RECORD_MOD@/
- include rules.mk
- 
- include $(COMMON_LIB_SRCDIR)/targets.mk

diff --git a/net-analyzer/ssldump/ssldump-0.9_beta3.ebuild b/net-analyzer/ssldump/ssldump-0.9_beta3.ebuild
deleted file mode 100644
index 0f7107da7d0..00000000000
--- a/net-analyzer/ssldump/ssldump-0.9_beta3.ebuild
+++ /dev/null
@@ -1,66 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-AUTOTOOLS_IN_SOURCE_BUILD=1
-AUTOTOOLS_AUTORECONF=1
-inherit autotools eutils toolchain-funcs
-
-MY_PV=${PV/_beta/b}
-MY_P=${PN}-${MY_PV}
-
-DESCRIPTION="An SSLv3/TLS network protocol analyzer"
-HOMEPAGE="http://ssldump.sourceforge.net/"
-SRC_URI="
-	http://downloads.sourceforge.net/project/${PN}/${PN}/${MY_PV}/${MY_P}.tar.gz
-"
-
-LICENSE="openssl"
-SLOT="0"
-KEYWORDS="amd64 ~arm ppc sparc x86 ~amd64-linux ~x86-linux ~ppc-macos"
-IUSE="ssl"
-
-RDEPEND="
-	net-libs/libpcap
-	ssl? ( >=dev-libs/openssl-1:0= )
-"
-DEPEND="
-	${RDEPEND}
-"
-
-S=${WORKDIR}/${MY_P}
-
-PATCHES=(
-	"${FILESDIR}"/${PN}-0.9-libpcap-header.patch
-	"${FILESDIR}"/${PN}-0.9-configure-dylib.patch
-	"${FILESDIR}"/${PN}-0.9-openssl-0.9.8.compile-fix.patch
-	"${FILESDIR}"/${PN}-0.9-DLT_LINUX_SLL.patch
-	"${FILESDIR}"/${PN}-0.9-prefix-fix.patch
-	"${FILESDIR}"/${PN}-0.9-declaration.patch
-	"${FILESDIR}"/${PN}-0.9-includes.patch
-)
-
-src_prepare() {
-	default
-
-	eapply_user
-
-	eautoreconf
-}
-
-src_configure() {
-	tc-export CC
-
-	econf \
-		--with-pcap-inc="${EPREFIX}/usr/include" \
-		--with-pcap-lib="${EPREFIX}/usr/$(get_libdir)" \
-		$(usex ssl --with-openssl-inc="${EPREFIX}/usr/include" '--without-openssl') \
-		$(usex ssl --with-openssl-lib="${EPREFIX}/usr/$(get_libdir)" '--without-openssl')
-}
-
-src_install() {
-	dosbin ssldump
-	doman ssldump.1
-	dodoc ChangeLog CREDITS README
-}


                 reply	other threads:[~2021-03-22  0:19 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1616372382.ecdb8802af3a726b11669d0657d05bc7e60e7a0c.sam@gentoo \
    --to=sam@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox