public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/yersinia/
@ 2017-08-24 12:47 Jeroen Roovers
  0 siblings, 0 replies; 8+ messages in thread
From: Jeroen Roovers @ 2017-08-24 12:47 UTC (permalink / raw
  To: gentoo-commits

commit:     a71a7ca20095f88e9b075944056fa1eefabfc872
Author:     Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 24 12:42:36 2017 +0000
Commit:     Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Thu Aug 24 12:47:32 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a71a7ca2

net-analyzer/yersinia: Version bump.

Package-Manager: Portage-2.3.8, Repoman-2.3.3

 net-analyzer/yersinia/Manifest              |  1 +
 net-analyzer/yersinia/yersinia-0.8.2.ebuild | 53 +++++++++++++++++++++++++++++
 2 files changed, 54 insertions(+)

diff --git a/net-analyzer/yersinia/Manifest b/net-analyzer/yersinia/Manifest
index d1a86e20572..ee8e8e0fff4 100644
--- a/net-analyzer/yersinia/Manifest
+++ b/net-analyzer/yersinia/Manifest
@@ -1 +1,2 @@
 DIST yersinia-0.7.3.tar.gz 378124 SHA256 042abc466c5b470b97079e0049b4029a8cbb75d583cfbfb756fca76e460d40b4 SHA512 60a1b58e6d76448e9332656645b468a6aa66afa0f45ea4b70a929651194a294b9b559bbe5fbacaeb475126e7ac248cd97c29f3177e5080286b2f551f1400d339 WHIRLPOOL bf554765fb4d8a5a2c4bef78841c58c8712cd3b44c3d325e0b92b51ff4ff629a377ce78471df45d1307341ff9fd3099945d5359a86df47aebafeca7b447a2c8b
+DIST yersinia-0.8.2.tar.gz 387889 SHA256 964f528dbffd904376ab7986e69b1e8639591c929e2f39186ac9ebf2d3bc761f SHA512 2c7c89f19b6791150c472a6066b6ffaf9ac5b3d1a3d2e6a27f91293bba9a0f72d147266731e5e2670e4bf7e67ccf04b6e353071ca42d3d281b25126c9bfcb1dd WHIRLPOOL 4c2d075fadebb3e6da9751f0d502dcbdbba997a48ed9616b56fc34a5fd2ea7a41aa9ef293cc88316963344254e72650188568c337535c3129d6445a716e24678

diff --git a/net-analyzer/yersinia/yersinia-0.8.2.ebuild b/net-analyzer/yersinia/yersinia-0.8.2.ebuild
new file mode 100644
index 00000000000..bd77f7338bf
--- /dev/null
+++ b/net-analyzer/yersinia/yersinia-0.8.2.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit autotools
+
+DESCRIPTION="A framework for layer 2 attacks"
+HOMEPAGE="http://www.yersinia.net/"
+SRC_URI="https://github.com/tomac/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="gtk ncurses"
+
+RDEPEND="
+	ncurses? ( >=sys-libs/ncurses-5.5 )
+	gtk? ( =x11-libs/gtk+-2* )
+	>=net-libs/libnet-1.1.2
+	>=net-libs/libpcap-0.9.4
+"
+DEPEND="
+	virtual/pkgconfig
+	${RDEPEND}
+"
+DOCS=( AUTHORS ChangeLog FAQ README THANKS TODO )
+PATCHES=(
+	"${FILESDIR}"/${PN}-0.7.1-no-ncurses.patch
+	"${FILESDIR}"/${PN}-0.7.3-tinfo.patch
+)
+
+src_prepare() {
+	default
+
+	if ! use gtk; then
+		#bug #514802
+		sed -i -e '/AM_GLIB_GNU_GETTEXT/d' configure.in || die
+	fi
+
+	eautoreconf
+}
+
+src_configure() {
+	econf \
+		--enable-admin \
+		--with-pcap-includes=/usr/include \
+		$(use_with ncurses) \
+		$(use_enable gtk)
+}
+
+src_compile() {
+	emake CFLAGS="${CFLAGS}"
+}


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

* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/yersinia/
@ 2017-08-24 12:47 Jeroen Roovers
  0 siblings, 0 replies; 8+ messages in thread
From: Jeroen Roovers @ 2017-08-24 12:47 UTC (permalink / raw
  To: gentoo-commits

commit:     5a98a6cd115db0de60e96bc221ce3ee21901d007
Author:     Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 24 12:47:16 2017 +0000
Commit:     Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Thu Aug 24 12:47:34 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a98a6cd

net-analyzer/yersinia: Update dependencies.

Package-Manager: Portage-2.3.8, Repoman-2.3.3

 net-analyzer/yersinia/yersinia-0.8.2.ebuild | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/net-analyzer/yersinia/yersinia-0.8.2.ebuild b/net-analyzer/yersinia/yersinia-0.8.2.ebuild
index bd77f7338bf..4ec918539c0 100644
--- a/net-analyzer/yersinia/yersinia-0.8.2.ebuild
+++ b/net-analyzer/yersinia/yersinia-0.8.2.ebuild
@@ -14,8 +14,12 @@ KEYWORDS="~amd64 ~x86"
 IUSE="gtk ncurses"
 
 RDEPEND="
-	ncurses? ( >=sys-libs/ncurses-5.5 )
-	gtk? ( =x11-libs/gtk+-2* )
+	ncurses? ( >=sys-libs/ncurses-5.5:= )
+	gtk? (
+		dev-libs/glib:2
+		x11-libs/gdk-pixbuf
+		=x11-libs/gtk+-2*
+	)
 	>=net-libs/libnet-1.1.2
 	>=net-libs/libpcap-0.9.4
 "


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

* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/yersinia/
@ 2020-01-28 15:38 Jeroen Roovers
  0 siblings, 0 replies; 8+ messages in thread
From: Jeroen Roovers @ 2020-01-28 15:38 UTC (permalink / raw
  To: gentoo-commits

commit:     5411d69bbb5c15708e610866f4782c73439634f3
Author:     Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Tue Jan 28 15:30:23 2020 +0000
Commit:     Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Tue Jan 28 15:38:24 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5411d69b

net-analyzer/yersinia: Set CFLAGS=-fcommon

Package-Manager: Portage-2.3.85, Repoman-2.3.20
Closes: https://bugs.gentoo.org/706724
Signed-off-by: Jeroen Roovers <jer <AT> gentoo.org>

 net-analyzer/yersinia/yersinia-0.8.2.ebuild | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/net-analyzer/yersinia/yersinia-0.8.2.ebuild b/net-analyzer/yersinia/yersinia-0.8.2.ebuild
index 4ec918539c0..669aa0df229 100644
--- a/net-analyzer/yersinia/yersinia-0.8.2.ebuild
+++ b/net-analyzer/yersinia/yersinia-0.8.2.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
-inherit autotools
+inherit autotools flag-o-matic
 
 DESCRIPTION="A framework for layer 2 attacks"
 HOMEPAGE="http://www.yersinia.net/"
@@ -45,6 +45,8 @@ src_prepare() {
 }
 
 src_configure() {
+	append-cflags -fcommon
+
 	econf \
 		--enable-admin \
 		--with-pcap-includes=/usr/include \


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

* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/yersinia/
@ 2020-11-26 23:44 Thomas Deutschmann
  0 siblings, 0 replies; 8+ messages in thread
From: Thomas Deutschmann @ 2020-11-26 23:44 UTC (permalink / raw
  To: gentoo-commits

commit:     08a2db9b4315f28a8b8381ed6ad70e19241dfde2
Author:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 26 23:42:51 2020 +0000
Commit:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Thu Nov 26 23:44:28 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=08a2db9b

net-analyzer/yersinia: x86 stable (bug #757084)

Package-Manager: Portage-3.0.10, Repoman-3.0.2
Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>

 net-analyzer/yersinia/yersinia-0.8.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-analyzer/yersinia/yersinia-0.8.2.ebuild b/net-analyzer/yersinia/yersinia-0.8.2.ebuild
index 669aa0df229..c9df25c829f 100644
--- a/net-analyzer/yersinia/yersinia-0.8.2.ebuild
+++ b/net-analyzer/yersinia/yersinia-0.8.2.ebuild
@@ -10,7 +10,7 @@ SRC_URI="https://github.com/tomac/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 IUSE="gtk ncurses"
 
 RDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/yersinia/
@ 2020-11-27  7:53 Agostino Sarubbo
  0 siblings, 0 replies; 8+ messages in thread
From: Agostino Sarubbo @ 2020-11-27  7:53 UTC (permalink / raw
  To: gentoo-commits

commit:     f779e27b0de1036d75d181ec77657b5138f6d045
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 27 07:53:40 2020 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Fri Nov 27 07:53:40 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f779e27b

net-analyzer/yersinia: amd64 stable wrt bug #757084

Package-Manager: Portage-3.0.9, Repoman-3.0.2
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>

 net-analyzer/yersinia/yersinia-0.8.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-analyzer/yersinia/yersinia-0.8.2.ebuild b/net-analyzer/yersinia/yersinia-0.8.2.ebuild
index c9df25c829f..e216096f810 100644
--- a/net-analyzer/yersinia/yersinia-0.8.2.ebuild
+++ b/net-analyzer/yersinia/yersinia-0.8.2.ebuild
@@ -10,7 +10,7 @@ SRC_URI="https://github.com/tomac/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
 IUSE="gtk ncurses"
 
 RDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/yersinia/
@ 2020-11-27 14:46 Aaron Bauman
  0 siblings, 0 replies; 8+ messages in thread
From: Aaron Bauman @ 2020-11-27 14:46 UTC (permalink / raw
  To: gentoo-commits

commit:     2a6872dc433aaa95f4a0e93e70885f755aa07bdf
Author:     Aaron Bauman <bman <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 27 14:43:47 2020 +0000
Commit:     Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Fri Nov 27 14:43:47 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a6872dc

net-analyzer/yersinia: drop old

Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>

 net-analyzer/yersinia/Manifest              |  1 -
 net-analyzer/yersinia/yersinia-0.7.3.ebuild | 53 -----------------------------
 2 files changed, 54 deletions(-)

diff --git a/net-analyzer/yersinia/Manifest b/net-analyzer/yersinia/Manifest
index 3795e6db1ce..36a60ac0659 100644
--- a/net-analyzer/yersinia/Manifest
+++ b/net-analyzer/yersinia/Manifest
@@ -1,2 +1 @@
-DIST yersinia-0.7.3.tar.gz 378124 BLAKE2B 032015045cd5683c8853504bd821ebb3decbeaeea933a14983eec6498de33db79771ddeb08934c6ddf82db620aba89c84ac8c369af25e7bc19d820395ba68b57 SHA512 60a1b58e6d76448e9332656645b468a6aa66afa0f45ea4b70a929651194a294b9b559bbe5fbacaeb475126e7ac248cd97c29f3177e5080286b2f551f1400d339
 DIST yersinia-0.8.2.tar.gz 387889 BLAKE2B 67fe92b9cd1253874c61fa38c8e89e023f7d0ec3b83fe3001b5bc203d4033e36cb94b453ed56426b34d942036a143bd135f247466425337478f292797a433652 SHA512 2c7c89f19b6791150c472a6066b6ffaf9ac5b3d1a3d2e6a27f91293bba9a0f72d147266731e5e2670e4bf7e67ccf04b6e353071ca42d3d281b25126c9bfcb1dd

diff --git a/net-analyzer/yersinia/yersinia-0.7.3.ebuild b/net-analyzer/yersinia/yersinia-0.7.3.ebuild
deleted file mode 100644
index bc346d8cf0d..00000000000
--- a/net-analyzer/yersinia/yersinia-0.7.3.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit autotools eutils
-
-DESCRIPTION="A layer 2 attack framework"
-HOMEPAGE="http://www.yersinia.net/"
-SRC_URI="http://www.yersinia.net/download/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="gtk ncurses"
-
-RDEPEND="
-	ncurses? ( >=sys-libs/ncurses-5.5 )
-	gtk? ( =x11-libs/gtk+-2* )
-	>=net-libs/libnet-1.1.2
-	>=net-libs/libpcap-0.9.4
-"
-DEPEND="
-	virtual/pkgconfig
-	${RDEPEND}
-"
-
-DOCS=( AUTHORS ChangeLog FAQ README THANKS TODO )
-
-S="${WORKDIR}"
-
-src_prepare() {
-	epatch "${FILESDIR}"/${PN}-0.7.1-no-ncurses.patch
-	epatch "${FILESDIR}"/${PN}-0.7.3-tinfo.patch
-
-	if ! use gtk; then
-		#bug #514802
-		sed -i -e '/AM_GLIB_GNU_GETTEXT/d' configure.in || die
-	fi
-
-	eautoreconf
-}
-
-src_configure() {
-	econf \
-		--enable-admin \
-		--with-pcap-includes=/usr/include \
-		$(use_with ncurses) \
-		$(use_enable gtk)
-}
-
-src_compile() {
-	emake CFLAGS="${CFLAGS}"
-}


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

* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/yersinia/
@ 2022-11-16 23:18 Sam James
  0 siblings, 0 replies; 8+ messages in thread
From: Sam James @ 2022-11-16 23:18 UTC (permalink / raw
  To: gentoo-commits

commit:     a2eae779dc4a4cabbb5ed91b0a16d634adeb17bf
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 16 23:17:33 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Nov 16 23:17:33 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a2eae779

net-analyzer/yersinia: add github upstream metadata

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

 net-analyzer/yersinia/metadata.xml | 21 ++++++++++++---------
 1 file changed, 12 insertions(+), 9 deletions(-)

diff --git a/net-analyzer/yersinia/metadata.xml b/net-analyzer/yersinia/metadata.xml
index 3fd38e1109b5..6356df3a0a4c 100644
--- a/net-analyzer/yersinia/metadata.xml
+++ b/net-analyzer/yersinia/metadata.xml
@@ -1,13 +1,16 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-<maintainer type="project">
-	<email>netmon@gentoo.org</email>
-	<name>Gentoo network monitoring and analysis project</name>
-</maintainer>
-<longdescription>
-Yersinia is a network tool designed to take advantage of some weakeness
-in different network protocols. It intends to be a solid framework for
-analyzing and testing the deployed networks and systems.
-</longdescription>
+	<maintainer type="project">
+		<email>netmon@gentoo.org</email>
+		<name>Gentoo network monitoring and analysis project</name>
+	</maintainer>
+	<longdescription>
+	Yersinia is a network tool designed to take advantage of some weakeness
+	in different network protocols. It intends to be a solid framework for
+	analyzing and testing the deployed networks and systems.
+	</longdescription>
+	<upstream>
+		<remote-id type="github">tomac/yersinia</remote-id>
+	</upstream>
 </pkgmetadata>


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

* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/yersinia/
@ 2024-09-30  4:30 Sam James
  0 siblings, 0 replies; 8+ messages in thread
From: Sam James @ 2024-09-30  4:30 UTC (permalink / raw
  To: gentoo-commits

commit:     693f8439aa271b6ffcac4dc8a1499066eaa3bea9
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Sep 30 03:05:06 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Sep 30 04:30:16 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=693f8439

net-analyzer/yersinia: fix sed for USE=-gtk

configure.in was renamed to configure.ac upstream.

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

 net-analyzer/yersinia/yersinia-0.8.2_p20221119.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-analyzer/yersinia/yersinia-0.8.2_p20221119.ebuild b/net-analyzer/yersinia/yersinia-0.8.2_p20221119.ebuild
index 3e07f8adbe01..3dd4b4f768e5 100644
--- a/net-analyzer/yersinia/yersinia-0.8.2_p20221119.ebuild
+++ b/net-analyzer/yersinia/yersinia-0.8.2_p20221119.ebuild
@@ -43,7 +43,7 @@ src_prepare() {
 
 	if ! use gtk; then
 		# bug #514802
-		sed -i -e '/AM_GLIB_GNU_GETTEXT/d' configure.in || die
+		sed -i -e '/AM_GLIB_GNU_GETTEXT/d' configure.ac || die
 	fi
 
 	eautoreconf


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

end of thread, other threads:[~2024-09-30  4:31 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-01-28 15:38 [gentoo-commits] repo/gentoo:master commit in: net-analyzer/yersinia/ Jeroen Roovers
  -- strict thread matches above, loose matches on Subject: below --
2024-09-30  4:30 Sam James
2022-11-16 23:18 Sam James
2020-11-27 14:46 Aaron Bauman
2020-11-27  7:53 Agostino Sarubbo
2020-11-26 23:44 Thomas Deutschmann
2017-08-24 12:47 Jeroen Roovers
2017-08-24 12:47 Jeroen Roovers

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