public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/zniper/
@ 2021-10-19 19:09 Jakov Smolić
  0 siblings, 0 replies; 3+ messages in thread
From: Jakov Smolić @ 2021-10-19 19:09 UTC (permalink / raw
  To: gentoo-commits

commit:     53999a230cfb1981e60b96c5971b02007a065ec1
Author:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Tue Oct 19 19:05:13 2021 +0000
Commit:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Tue Oct 19 19:09:03 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=53999a23

net-analyzer/zniper: Update SRC_URI

jer@ is retired and I've archived the distfiles in my devspace

Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>

 net-analyzer/zniper/zniper-1.0-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-analyzer/zniper/zniper-1.0-r2.ebuild b/net-analyzer/zniper/zniper-1.0-r2.ebuild
index 86991e25843..e96de82264d 100644
--- a/net-analyzer/zniper/zniper-1.0-r2.ebuild
+++ b/net-analyzer/zniper/zniper-1.0-r2.ebuild
@@ -6,7 +6,7 @@ inherit toolchain-funcs
 
 DESCRIPTION="Displays and kill active TCP connections seen by the selected interface"
 HOMEPAGE="http://www.signedness.org/tools/"
-SRC_URI="https://dev.gentoo.org/~jer/${P}.tgz"
+SRC_URI="https://dev.gentoo.org/~jsmolic/distfiles/${P}.tgz"
 
 LICENSE="BSD"
 SLOT="0"


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

* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/zniper/
@ 2021-10-21 19:15 Jakov Smolić
  0 siblings, 0 replies; 3+ messages in thread
From: Jakov Smolić @ 2021-10-21 19:15 UTC (permalink / raw
  To: gentoo-commits

commit:     9256afcfd6d5d1f6a47887bb21ac5c0fb8f8229f
Author:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Thu Oct 21 19:00:32 2021 +0000
Commit:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Thu Oct 21 19:00:32 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9256afcf

net-analyzer/zniper: Port to EAPI 8

Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>

 .../zniper/{zniper-1.0-r2.ebuild => zniper-1.0-r3.ebuild}   | 13 ++++++-------
 1 file changed, 6 insertions(+), 7 deletions(-)

diff --git a/net-analyzer/zniper/zniper-1.0-r2.ebuild b/net-analyzer/zniper/zniper-1.0-r3.ebuild
similarity index 89%
rename from net-analyzer/zniper/zniper-1.0-r2.ebuild
rename to net-analyzer/zniper/zniper-1.0-r3.ebuild
index e96de82264d..0e1f35b7ba2 100644
--- a/net-analyzer/zniper/zniper-1.0-r2.ebuild
+++ b/net-analyzer/zniper/zniper-1.0-r3.ebuild
@@ -1,12 +1,14 @@
 # Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
+EAPI=8
+
 inherit toolchain-funcs
 
 DESCRIPTION="Displays and kill active TCP connections seen by the selected interface"
 HOMEPAGE="http://www.signedness.org/tools/"
 SRC_URI="https://dev.gentoo.org/~jsmolic/distfiles/${P}.tgz"
+S="${WORKDIR}/zniper"
 
 LICENSE="BSD"
 SLOT="0"
@@ -16,14 +18,11 @@ RDEPEND="
 	net-libs/libpcap
 	sys-libs/ncurses:=
 "
-DEPEND="
-	${RDEPEND}
-	virtual/pkgconfig
-"
-
-S=${WORKDIR}/"zniper"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
 
 src_prepare() {
+	default
 	sed -i \
 		-e 's| -o | $(LDFLAGS)&|g' \
 		-e 's|@make|@$(MAKE)|g' \


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

* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/zniper/
@ 2022-03-20 18:43 Sam James
  0 siblings, 0 replies; 3+ messages in thread
From: Sam James @ 2022-03-20 18:43 UTC (permalink / raw
  To: gentoo-commits

commit:     cc880b449e6e19a19e70762c3914937fb3f79eb9
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 20 18:40:48 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Mar 20 18:43:33 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cc880b44

net-analyzer/zniper: [QA] fix tc-get* quoting

This can cause build problems for e.g. 32-bit (gcc -m32 ...)

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

 net-analyzer/zniper/zniper-1.0-r3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-analyzer/zniper/zniper-1.0-r3.ebuild b/net-analyzer/zniper/zniper-1.0-r3.ebuild
index 0e1f35b7ba21..e9aa11ad3172 100644
--- a/net-analyzer/zniper/zniper-1.0-r3.ebuild
+++ b/net-analyzer/zniper/zniper-1.0-r3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -33,7 +33,7 @@ src_prepare() {
 
 src_compile() {
 	emake \
-		CC=$(tc-getCC) \
+		CC="$(tc-getCC)" \
 		CFLAGS="${CFLAGS}" \
 		linux_x86
 }


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

end of thread, other threads:[~2022-03-20 18:43 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-03-20 18:43 [gentoo-commits] repo/gentoo:master commit in: net-analyzer/zniper/ Sam James
  -- strict thread matches above, loose matches on Subject: below --
2021-10-21 19:15 Jakov Smolić
2021-10-19 19:09 Jakov Smolić

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