public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/thc-ipv6/
@ 2019-01-27 19:46 Pacho Ramos
  0 siblings, 0 replies; 7+ messages in thread
From: Pacho Ramos @ 2019-01-27 19:46 UTC (permalink / raw
  To: gentoo-commits

commit:     ac4ddf800a9410162f13a586a01369b4674e66c1
Author:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 27 19:43:19 2019 +0000
Commit:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sun Jan 27 19:46:03 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac4ddf80

net-analyzer/thc-ipv6: Drop old

Package-Manager: Portage-2.3.58, Repoman-2.3.12
Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>

 net-analyzer/thc-ipv6/Manifest            |  1 -
 net-analyzer/thc-ipv6/thc-ipv6-3.0.ebuild | 55 -------------------------------
 2 files changed, 56 deletions(-)

diff --git a/net-analyzer/thc-ipv6/Manifest b/net-analyzer/thc-ipv6/Manifest
index c7586fa05c7..2d19bb77271 100644
--- a/net-analyzer/thc-ipv6/Manifest
+++ b/net-analyzer/thc-ipv6/Manifest
@@ -1,2 +1 @@
-DIST thc-ipv6-3.0.tar.gz 667859 BLAKE2B 6fa4f697bf316c3b9730b58e35c3d8ac6910c0e063751037a0900aa459c128c5de9a07e4912025dd6eebb92061a7cc48a6e2e2a0b5d7d53b339e4d5416e4fdf7 SHA512 969ebbf4da4514cb83e3abcff637f7ba301c4f072f1f983b3cd3cfd3b0643b55af6eacca3c76e39e11ea9ef6e465be03dfa7ce1d6c988cabbd42cdd95d1e2552
 DIST thc-ipv6-3.2.tar.gz 1595453 BLAKE2B f1bb1cdc31f4cf4d067b39997ca3cc2d6d8c15e7a8c585c7c494f03e229fccbcd65677e382a65f0e650d79278f5ede89173db1cdf313ade7c48dff1566856afa SHA512 648db4618ebb83572e2e318cdbb284fe96a86adf335f7dd9b26fd010c76d12e9137ed7367207c66c93c1961c868d3917d706db9f597289ac47ea3f9b83c03441

diff --git a/net-analyzer/thc-ipv6/thc-ipv6-3.0.ebuild b/net-analyzer/thc-ipv6/thc-ipv6-3.0.ebuild
deleted file mode 100644
index d4aee56ff48..00000000000
--- a/net-analyzer/thc-ipv6/thc-ipv6-3.0.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-[[ ${PV} == *9999 ]] && SCM="git-r3"
-EGIT_REPO_URI="https://github.com/vanhauser-thc/thc-ipv6.git"
-EGIT_BRANCH=master
-
-inherit eutils toolchain-funcs ${SCM}
-
-DESCRIPTION="complete tool set to attack the inherent protocol weaknesses of IPV6 and ICMP6"
-HOMEPAGE="https://www.thc.org/thc-ipv6/"
-LICENSE="AGPL-3 openssl"
-SLOT="0"
-IUSE="ssl"
-
-if [[ ${PV} != *9999 ]]; then
-	SRC_URI="http://www.thc.org/releases/${P}.tar.gz"
-	KEYWORDS="~amd64 ~x86"
-fi
-
-DEPEND="net-libs/libpcap
-	net-libs/libnetfilter_queue
-	ssl? ( dev-libs/openssl:* )"
-RDEPEND="${DEPEND}"
-
-PATCHES=( "${FILESDIR}/${PN}-3.2-stdint.patch"
-	"${FILESDIR}"/${PN}-3.0-Makefile.patch )
-
-src_unpack() {
-	if [[ ${PV} != *9999 ]]; then
-		default_src_unpack
-	else
-		git-r3_src_unpack
-	fi
-}
-
-src_prepare() {
-	sed -e '/^CFLAGS=/s,CFLAGS=,CFLAGS?=,' \
-		-i Makefile || die
-	if ! use ssl ; then
-		sed -e '/^HAVE_SSL/s:^:#:' \
-			-i Makefile
-	fi
-	default
-}
-
-src_compile() {
-	emake CC="$(tc-getCC)"
-}
-
-src_install() {
-	emake DESTDIR="${D}" PREFIX="/usr" STRIP="true" install
-	dodoc CHANGES HOWTO-INJECT README
-}


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/thc-ipv6/
@ 2019-05-29 10:03 Michał Górny
  0 siblings, 0 replies; 7+ messages in thread
From: Michał Górny @ 2019-05-29 10:03 UTC (permalink / raw
  To: gentoo-commits

commit:     50e183a0341bdaa4a4386b643dddcd3685259f6f
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Tue May 28 18:48:34 2019 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed May 29 10:01:49 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50e183a0

net-analyzer/thc-ipv6: [QA] Fix openssl dep to :0=

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 net-analyzer/thc-ipv6/{thc-ipv6-3.2.ebuild => thc-ipv6-3.2-r1.ebuild} | 4 ++--
 net-analyzer/thc-ipv6/thc-ipv6-9999.ebuild                            | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/net-analyzer/thc-ipv6/thc-ipv6-3.2.ebuild b/net-analyzer/thc-ipv6/thc-ipv6-3.2-r1.ebuild
similarity index 94%
rename from net-analyzer/thc-ipv6/thc-ipv6-3.2.ebuild
rename to net-analyzer/thc-ipv6/thc-ipv6-3.2-r1.ebuild
index a0934cf80b9..71f98da3f73 100644
--- a/net-analyzer/thc-ipv6/thc-ipv6-3.2.ebuild
+++ b/net-analyzer/thc-ipv6/thc-ipv6-3.2-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -21,7 +21,7 @@ fi
 
 DEPEND="net-libs/libpcap
 	net-libs/libnetfilter_queue
-	ssl? ( dev-libs/openssl:* )"
+	ssl? ( dev-libs/openssl:0= )"
 RDEPEND="${DEPEND}"
 
 PATCHES=( "${FILESDIR}/${PN}-3.2-stdint.patch" )

diff --git a/net-analyzer/thc-ipv6/thc-ipv6-9999.ebuild b/net-analyzer/thc-ipv6/thc-ipv6-9999.ebuild
index a0934cf80b9..71f98da3f73 100644
--- a/net-analyzer/thc-ipv6/thc-ipv6-9999.ebuild
+++ b/net-analyzer/thc-ipv6/thc-ipv6-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -21,7 +21,7 @@ fi
 
 DEPEND="net-libs/libpcap
 	net-libs/libnetfilter_queue
-	ssl? ( dev-libs/openssl:* )"
+	ssl? ( dev-libs/openssl:0= )"
 RDEPEND="${DEPEND}"
 
 PATCHES=( "${FILESDIR}/${PN}-3.2-stdint.patch" )


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/thc-ipv6/
@ 2021-04-03 16:10 Sam James
  0 siblings, 0 replies; 7+ messages in thread
From: Sam James @ 2021-04-03 16:10 UTC (permalink / raw
  To: gentoo-commits

commit:     ceff568ec25f068bd4c5aedd66e1c1c905d0804f
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Apr  2 00:39:56 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Apr  3 16:10:30 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ceff568e

net-analyzer/thc-ipv6: EAPI 7, consistent style, misc QA

* Port to EAPI 7
* Drop unused eutils
* Missing || die
* Use standard ebuild "block structure"
* Sort DEPEND
* Use consistent semicolon style

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-analyzer/thc-ipv6/thc-ipv6-3.2-r1.ebuild | 42 ++++++++++++++++------------
 net-analyzer/thc-ipv6/thc-ipv6-9999.ebuild   | 42 ++++++++++++++++------------
 2 files changed, 48 insertions(+), 36 deletions(-)

diff --git a/net-analyzer/thc-ipv6/thc-ipv6-3.2-r1.ebuild b/net-analyzer/thc-ipv6/thc-ipv6-3.2-r1.ebuild
index 71f98da3f73..396a0b2a216 100644
--- a/net-analyzer/thc-ipv6/thc-ipv6-3.2-r1.ebuild
+++ b/net-analyzer/thc-ipv6/thc-ipv6-3.2-r1.ebuild
@@ -1,46 +1,52 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
-[[ ${PV} == *9999 ]] && SCM="git-r3"
-EGIT_REPO_URI="https://github.com/vanhauser-thc/thc-ipv6.git"
-EGIT_BRANCH=master
+EAPI=7
 
-inherit eutils toolchain-funcs ${SCM}
+inherit toolchain-funcs
 
-DESCRIPTION="complete tool set to attack the inherent protocol weaknesses of IPV6 and ICMP6"
+DESCRIPTION="Complete tool set to attack the inherent protocol weaknesses of IPV6 and ICMP6"
 HOMEPAGE="https://www.thc.org/thc-ipv6/"
-LICENSE="AGPL-3 openssl"
-SLOT="0"
-IUSE="ssl"
 
-if [[ ${PV} != *9999 ]]; then
+if [[ ${PV} == *9999 ]]; then
+	EGIT_REPO_URI="https://github.com/vanhauser-thc/thc-ipv6.git"
+	EGIT_BRANCH=master
+	inherit git-r3
+else
 	SRC_URI="https://github.com/vanhauser-thc/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 	KEYWORDS="~amd64 ~x86"
 fi
 
-DEPEND="net-libs/libpcap
+LICENSE="AGPL-3 openssl"
+SLOT="0"
+IUSE="ssl"
+
+DEPEND="
 	net-libs/libnetfilter_queue
-	ssl? ( dev-libs/openssl:0= )"
+	net-libs/libpcap
+	ssl? ( dev-libs/openssl:0= )
+"
 RDEPEND="${DEPEND}"
 
 PATCHES=( "${FILESDIR}/${PN}-3.2-stdint.patch" )
 
 src_unpack() {
-	if [[ ${PV} != *9999 ]]; then
-		default_src_unpack
-	else
+	if [[ ${PV} == *9999 ]]; then
 		git-r3_src_unpack
 	fi
+
+	default
 }
 
 src_prepare() {
 	sed -e '/^CFLAGS=/s,CFLAGS=,CFLAGS?=,' \
 		-i Makefile || die
-	if ! use ssl ; then
+
+	if ! use ssl; then
 		sed -e '/^HAVE_SSL/s:^:#:' \
-			-i Makefile
+			-i Makefile || die
 	fi
+
 	default
 }
 

diff --git a/net-analyzer/thc-ipv6/thc-ipv6-9999.ebuild b/net-analyzer/thc-ipv6/thc-ipv6-9999.ebuild
index 71f98da3f73..396a0b2a216 100644
--- a/net-analyzer/thc-ipv6/thc-ipv6-9999.ebuild
+++ b/net-analyzer/thc-ipv6/thc-ipv6-9999.ebuild
@@ -1,46 +1,52 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
-[[ ${PV} == *9999 ]] && SCM="git-r3"
-EGIT_REPO_URI="https://github.com/vanhauser-thc/thc-ipv6.git"
-EGIT_BRANCH=master
+EAPI=7
 
-inherit eutils toolchain-funcs ${SCM}
+inherit toolchain-funcs
 
-DESCRIPTION="complete tool set to attack the inherent protocol weaknesses of IPV6 and ICMP6"
+DESCRIPTION="Complete tool set to attack the inherent protocol weaknesses of IPV6 and ICMP6"
 HOMEPAGE="https://www.thc.org/thc-ipv6/"
-LICENSE="AGPL-3 openssl"
-SLOT="0"
-IUSE="ssl"
 
-if [[ ${PV} != *9999 ]]; then
+if [[ ${PV} == *9999 ]]; then
+	EGIT_REPO_URI="https://github.com/vanhauser-thc/thc-ipv6.git"
+	EGIT_BRANCH=master
+	inherit git-r3
+else
 	SRC_URI="https://github.com/vanhauser-thc/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 	KEYWORDS="~amd64 ~x86"
 fi
 
-DEPEND="net-libs/libpcap
+LICENSE="AGPL-3 openssl"
+SLOT="0"
+IUSE="ssl"
+
+DEPEND="
 	net-libs/libnetfilter_queue
-	ssl? ( dev-libs/openssl:0= )"
+	net-libs/libpcap
+	ssl? ( dev-libs/openssl:0= )
+"
 RDEPEND="${DEPEND}"
 
 PATCHES=( "${FILESDIR}/${PN}-3.2-stdint.patch" )
 
 src_unpack() {
-	if [[ ${PV} != *9999 ]]; then
-		default_src_unpack
-	else
+	if [[ ${PV} == *9999 ]]; then
 		git-r3_src_unpack
 	fi
+
+	default
 }
 
 src_prepare() {
 	sed -e '/^CFLAGS=/s,CFLAGS=,CFLAGS?=,' \
 		-i Makefile || die
-	if ! use ssl ; then
+
+	if ! use ssl; then
 		sed -e '/^HAVE_SSL/s:^:#:' \
-			-i Makefile
+			-i Makefile || die
 	fi
+
 	default
 }
 


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/thc-ipv6/
@ 2021-04-03 18:59 Sam James
  0 siblings, 0 replies; 7+ messages in thread
From: Sam James @ 2021-04-03 18:59 UTC (permalink / raw
  To: gentoo-commits

commit:     4b05bacae32547859932234896b9dba01893d5dc
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Apr  3 18:57:53 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Apr  3 18:59:15 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b05baca

net-analyzer/thc-ipv6: drop superfluous src_unpack definition

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-analyzer/thc-ipv6/thc-ipv6-3.2-r1.ebuild | 8 --------
 net-analyzer/thc-ipv6/thc-ipv6-9999.ebuild   | 8 --------
 2 files changed, 16 deletions(-)

diff --git a/net-analyzer/thc-ipv6/thc-ipv6-3.2-r1.ebuild b/net-analyzer/thc-ipv6/thc-ipv6-3.2-r1.ebuild
index 396a0b2a216..b5817554f26 100644
--- a/net-analyzer/thc-ipv6/thc-ipv6-3.2-r1.ebuild
+++ b/net-analyzer/thc-ipv6/thc-ipv6-3.2-r1.ebuild
@@ -30,14 +30,6 @@ RDEPEND="${DEPEND}"
 
 PATCHES=( "${FILESDIR}/${PN}-3.2-stdint.patch" )
 
-src_unpack() {
-	if [[ ${PV} == *9999 ]]; then
-		git-r3_src_unpack
-	fi
-
-	default
-}
-
 src_prepare() {
 	sed -e '/^CFLAGS=/s,CFLAGS=,CFLAGS?=,' \
 		-i Makefile || die

diff --git a/net-analyzer/thc-ipv6/thc-ipv6-9999.ebuild b/net-analyzer/thc-ipv6/thc-ipv6-9999.ebuild
index 396a0b2a216..b5817554f26 100644
--- a/net-analyzer/thc-ipv6/thc-ipv6-9999.ebuild
+++ b/net-analyzer/thc-ipv6/thc-ipv6-9999.ebuild
@@ -30,14 +30,6 @@ RDEPEND="${DEPEND}"
 
 PATCHES=( "${FILESDIR}/${PN}-3.2-stdint.patch" )
 
-src_unpack() {
-	if [[ ${PV} == *9999 ]]; then
-		git-r3_src_unpack
-	fi
-
-	default
-}
-
 src_prepare() {
 	sed -e '/^CFLAGS=/s,CFLAGS=,CFLAGS?=,' \
 		-i Makefile || die


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/thc-ipv6/
@ 2024-05-24 23:35 Conrad Kostecki
  0 siblings, 0 replies; 7+ messages in thread
From: Conrad Kostecki @ 2024-05-24 23:35 UTC (permalink / raw
  To: gentoo-commits

commit:     f9a95deafded1b1d62dfc219e108bd9e28b2d7f8
Author:     Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
AuthorDate: Sat May 18 07:17:35 2024 +0000
Commit:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Fri May 24 23:35:13 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f9a95dea

net-analyzer/thc-ipv6: EAPI8 bump

Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>

 net-analyzer/thc-ipv6/thc-ipv6-9999.ebuild | 12 +++++-------
 1 file changed, 5 insertions(+), 7 deletions(-)

diff --git a/net-analyzer/thc-ipv6/thc-ipv6-9999.ebuild b/net-analyzer/thc-ipv6/thc-ipv6-9999.ebuild
index b5817554f26c..d1e5d1c4b80d 100644
--- a/net-analyzer/thc-ipv6/thc-ipv6-9999.ebuild
+++ b/net-analyzer/thc-ipv6/thc-ipv6-9999.ebuild
@@ -1,12 +1,12 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
 inherit toolchain-funcs
 
 DESCRIPTION="Complete tool set to attack the inherent protocol weaknesses of IPV6 and ICMP6"
-HOMEPAGE="https://www.thc.org/thc-ipv6/"
+HOMEPAGE="https://github.com/vanhauser-thc/thc-ipv6"
 
 if [[ ${PV} == *9999 ]]; then
 	EGIT_REPO_URI="https://github.com/vanhauser-thc/thc-ipv6.git"
@@ -28,10 +28,8 @@ DEPEND="
 "
 RDEPEND="${DEPEND}"
 
-PATCHES=( "${FILESDIR}/${PN}-3.2-stdint.patch" )
-
 src_prepare() {
-	sed -e '/^CFLAGS=/s,CFLAGS=,CFLAGS?=,' \
+	sed -e '/^CFLAGS+=-g/s,CFLAGS+=,CFLAGS?=,' \
 		-i Makefile || die
 
 	if ! use ssl; then
@@ -48,5 +46,5 @@ src_compile() {
 
 src_install() {
 	emake DESTDIR="${D}" PREFIX="/usr" STRIP="true" install
-	dodoc CHANGES HOWTO-INJECT README
+	dodoc CHANGES HOWTO-INJECT README.md
 }


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/thc-ipv6/
@ 2024-05-24 23:35 Conrad Kostecki
  0 siblings, 0 replies; 7+ messages in thread
From: Conrad Kostecki @ 2024-05-24 23:35 UTC (permalink / raw
  To: gentoo-commits

commit:     8a99f51e8092f5dbd7ac69d8a52297b7c70d7c7b
Author:     Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
AuthorDate: Sat May 18 07:50:20 2024 +0000
Commit:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Fri May 24 23:35:13 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a99f51e

net-analyzer/thc-ipv6: add 3.8

Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/36728
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>

 net-analyzer/thc-ipv6/Manifest            |  1 +
 net-analyzer/thc-ipv6/thc-ipv6-3.8.ebuild | 50 +++++++++++++++++++++++++++++++
 2 files changed, 51 insertions(+)

diff --git a/net-analyzer/thc-ipv6/Manifest b/net-analyzer/thc-ipv6/Manifest
index 2d19bb77271b..689dcd41d86b 100644
--- a/net-analyzer/thc-ipv6/Manifest
+++ b/net-analyzer/thc-ipv6/Manifest
@@ -1 +1,2 @@
 DIST thc-ipv6-3.2.tar.gz 1595453 BLAKE2B f1bb1cdc31f4cf4d067b39997ca3cc2d6d8c15e7a8c585c7c494f03e229fccbcd65677e382a65f0e650d79278f5ede89173db1cdf313ade7c48dff1566856afa SHA512 648db4618ebb83572e2e318cdbb284fe96a86adf335f7dd9b26fd010c76d12e9137ed7367207c66c93c1961c868d3917d706db9f597289ac47ea3f9b83c03441
+DIST thc-ipv6-3.8.tar.gz 705821 BLAKE2B a2b57e13a47aacf1205b87c6f30cbea2468f47aad7232b92190995bf7ffbb64904d4d0cd187657c12584cd41e66cb0e4db3b6d826d41287aa020398de8ca7f91 SHA512 e3d8c80e1383e4825a3db717192446754d01e8e3098deb3075df0d60f79f014cefbd62a16c04379539e42c74513aa0f8bb97fc59221e100563aa7c6398a8b893

diff --git a/net-analyzer/thc-ipv6/thc-ipv6-3.8.ebuild b/net-analyzer/thc-ipv6/thc-ipv6-3.8.ebuild
new file mode 100644
index 000000000000..53f532b0d072
--- /dev/null
+++ b/net-analyzer/thc-ipv6/thc-ipv6-3.8.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit toolchain-funcs
+
+DESCRIPTION="Complete tool set to attack the inherent protocol weaknesses of IPV6 and ICMP6"
+HOMEPAGE="https://github.com/vanhauser-thc/thc-ipv6"
+
+if [[ ${PV} == *9999 ]]; then
+	EGIT_REPO_URI="https://github.com/vanhauser-thc/thc-ipv6.git"
+	EGIT_BRANCH=master
+	inherit git-r3
+else
+	SRC_URI="https://github.com/vanhauser-thc/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+	KEYWORDS="~amd64 ~x86"
+fi
+
+LICENSE="AGPL-3 openssl"
+SLOT="0"
+IUSE="ssl"
+
+DEPEND="
+	net-libs/libnetfilter_queue
+	net-libs/libpcap
+	ssl? ( dev-libs/openssl:0= )
+"
+RDEPEND="${DEPEND}"
+
+src_prepare() {
+	sed -e '/^CFLAGS+=-g/s,CFLAGS+=,CFLAGS?=,' \
+		-i Makefile || die
+
+	if ! use ssl; then
+		sed -e '/^HAVE_SSL/s:^:#:' \
+			-i Makefile || die
+	fi
+
+	default
+}
+
+src_compile() {
+	emake CC="$(tc-getCC)"
+}
+
+src_install() {
+	emake DESTDIR="${D}" PREFIX="/usr" STRIP="true" install
+	dodoc CHANGES HOWTO-INJECT README
+}


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/thc-ipv6/
@ 2025-04-12 19:19 Arthur Zamarin
  0 siblings, 0 replies; 7+ messages in thread
From: Arthur Zamarin @ 2025-04-12 19:19 UTC (permalink / raw
  To: gentoo-commits

commit:     f60762fcc0491741bbb3270aa20cef7291ab1991
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 12 19:19:13 2025 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Apr 12 19:19:13 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f60762fc

net-analyzer/thc-ipv6: drop 3.2-r1, EAPI=7--

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 net-analyzer/thc-ipv6/Manifest               |  1 -
 net-analyzer/thc-ipv6/thc-ipv6-3.2-r1.ebuild | 52 ----------------------------
 2 files changed, 53 deletions(-)

diff --git a/net-analyzer/thc-ipv6/Manifest b/net-analyzer/thc-ipv6/Manifest
index 689dcd41d86b..2f99cfa8c685 100644
--- a/net-analyzer/thc-ipv6/Manifest
+++ b/net-analyzer/thc-ipv6/Manifest
@@ -1,2 +1 @@
-DIST thc-ipv6-3.2.tar.gz 1595453 BLAKE2B f1bb1cdc31f4cf4d067b39997ca3cc2d6d8c15e7a8c585c7c494f03e229fccbcd65677e382a65f0e650d79278f5ede89173db1cdf313ade7c48dff1566856afa SHA512 648db4618ebb83572e2e318cdbb284fe96a86adf335f7dd9b26fd010c76d12e9137ed7367207c66c93c1961c868d3917d706db9f597289ac47ea3f9b83c03441
 DIST thc-ipv6-3.8.tar.gz 705821 BLAKE2B a2b57e13a47aacf1205b87c6f30cbea2468f47aad7232b92190995bf7ffbb64904d4d0cd187657c12584cd41e66cb0e4db3b6d826d41287aa020398de8ca7f91 SHA512 e3d8c80e1383e4825a3db717192446754d01e8e3098deb3075df0d60f79f014cefbd62a16c04379539e42c74513aa0f8bb97fc59221e100563aa7c6398a8b893

diff --git a/net-analyzer/thc-ipv6/thc-ipv6-3.2-r1.ebuild b/net-analyzer/thc-ipv6/thc-ipv6-3.2-r1.ebuild
deleted file mode 100644
index b5817554f26c..000000000000
--- a/net-analyzer/thc-ipv6/thc-ipv6-3.2-r1.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit toolchain-funcs
-
-DESCRIPTION="Complete tool set to attack the inherent protocol weaknesses of IPV6 and ICMP6"
-HOMEPAGE="https://www.thc.org/thc-ipv6/"
-
-if [[ ${PV} == *9999 ]]; then
-	EGIT_REPO_URI="https://github.com/vanhauser-thc/thc-ipv6.git"
-	EGIT_BRANCH=master
-	inherit git-r3
-else
-	SRC_URI="https://github.com/vanhauser-thc/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-	KEYWORDS="~amd64 ~x86"
-fi
-
-LICENSE="AGPL-3 openssl"
-SLOT="0"
-IUSE="ssl"
-
-DEPEND="
-	net-libs/libnetfilter_queue
-	net-libs/libpcap
-	ssl? ( dev-libs/openssl:0= )
-"
-RDEPEND="${DEPEND}"
-
-PATCHES=( "${FILESDIR}/${PN}-3.2-stdint.patch" )
-
-src_prepare() {
-	sed -e '/^CFLAGS=/s,CFLAGS=,CFLAGS?=,' \
-		-i Makefile || die
-
-	if ! use ssl; then
-		sed -e '/^HAVE_SSL/s:^:#:' \
-			-i Makefile || die
-	fi
-
-	default
-}
-
-src_compile() {
-	emake CC="$(tc-getCC)"
-}
-
-src_install() {
-	emake DESTDIR="${D}" PREFIX="/usr" STRIP="true" install
-	dodoc CHANGES HOWTO-INJECT README
-}


^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2025-04-12 19:19 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-04-03 16:10 [gentoo-commits] repo/gentoo:master commit in: net-analyzer/thc-ipv6/ Sam James
  -- strict thread matches above, loose matches on Subject: below --
2025-04-12 19:19 Arthur Zamarin
2024-05-24 23:35 Conrad Kostecki
2024-05-24 23:35 Conrad Kostecki
2021-04-03 18:59 Sam James
2019-05-29 10:03 Michał Górny
2019-01-27 19:46 Pacho Ramos

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox