* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/nettop/
@ 2016-07-09 8:57 Patrice Clement
0 siblings, 0 replies; 7+ messages in thread
From: Patrice Clement @ 2016-07-09 8:57 UTC (permalink / raw
To: gentoo-commits
commit: 7863251050a4b3c5640488810ac9b61735906a13
Author: Michael Mair-Keimberger (asterix) <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Thu Jul 7 17:32:20 2016 +0000
Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Sat Jul 9 08:26:49 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=78632510
net-analyzer/nettop: fix HOMEPAGE and SRC_URI.
Gentoo-Bug: https://bugs.gentoo.org/353666
Closes: https://github.com/gentoo/gentoo/pull/1848
Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
net-analyzer/nettop/nettop-0.2.3-r2.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/net-analyzer/nettop/nettop-0.2.3-r2.ebuild b/net-analyzer/nettop/nettop-0.2.3-r2.ebuild
index d1bc2d0..c027b46 100644
--- a/net-analyzer/nettop/nettop-0.2.3-r2.ebuild
+++ b/net-analyzer/nettop/nettop-0.2.3-r2.ebuild
@@ -7,8 +7,8 @@ EAPI=5
inherit eutils toolchain-funcs
DESCRIPTION="top like program for network activity"
-SRC_URI="http://srparish.net/scripts/${P}.tar.gz"
-HOMEPAGE="http://srparish.net/software/"
+SRC_URI="mirror://gentoo/${P}.tar.gz"
+HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage"
SLOT="0"
LICENSE="BSD"
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/nettop/
@ 2021-04-03 19:53 Sam James
0 siblings, 0 replies; 7+ messages in thread
From: Sam James @ 2021-04-03 19:53 UTC (permalink / raw
To: gentoo-commits
commit: 4ad2eafc531529f81f8c7109ee5283aa234e1bb4
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 3 19:08:39 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Apr 3 19:52:52 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ad2eafc
net-analyzer/nettop: eutils->epatch
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-analyzer/nettop/nettop-0.2.3-r2.ebuild | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/net-analyzer/nettop/nettop-0.2.3-r2.ebuild b/net-analyzer/nettop/nettop-0.2.3-r2.ebuild
index 9f5605fa16a..f0bb7d6d136 100644
--- a/net-analyzer/nettop/nettop-0.2.3-r2.ebuild
+++ b/net-analyzer/nettop/nettop-0.2.3-r2.ebuild
@@ -1,11 +1,11 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=5
-inherit eutils toolchain-funcs
+inherit epatch toolchain-funcs
-DESCRIPTION="top like program for network activity"
+DESCRIPTION="top-like program for network activity"
SRC_URI="mirror://gentoo/${P}.tar.gz"
HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage"
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/nettop/
@ 2021-04-03 21:58 Sam James
0 siblings, 0 replies; 7+ messages in thread
From: Sam James @ 2021-04-03 21:58 UTC (permalink / raw
To: gentoo-commits
commit: f1f651f6deeca7074689e76477177f0ebe44baae
Author: Matt Smith <matt <AT> offtopica <DOT> uk>
AuthorDate: Sat Apr 3 16:08:01 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Apr 3 21:58:06 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1f651f6
net-analyzer/nettop: EAPI 7
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Matt Smith <matt <AT> offtopica.uk>
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-analyzer/nettop/nettop-0.2.3-r2.ebuild | 13 ++++++++-----
1 file changed, 8 insertions(+), 5 deletions(-)
diff --git a/net-analyzer/nettop/nettop-0.2.3-r2.ebuild b/net-analyzer/nettop/nettop-0.2.3-r2.ebuild
index f0bb7d6d136..7128eaac519 100644
--- a/net-analyzer/nettop/nettop-0.2.3-r2.ebuild
+++ b/net-analyzer/nettop/nettop-0.2.3-r2.ebuild
@@ -1,9 +1,9 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=5
+EAPI=7
-inherit epatch toolchain-funcs
+inherit toolchain-funcs
DESCRIPTION="top-like program for network activity"
SRC_URI="mirror://gentoo/${P}.tar.gz"
@@ -19,10 +19,13 @@ DEPEND="
"
RDEPEND="${DEPEND}"
+PATCHES=(
+ "${FILESDIR}"/${P}-gcc411.patch
+ "${FILESDIR}"/${P}-offbyone.patch
+)
+
src_prepare() {
- epatch \
- "${FILESDIR}"/${P}-gcc411.patch \
- "${FILESDIR}"/${P}-offbyone.patch
+ default
tc-export CC
}
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/nettop/
@ 2021-09-08 1:28 Sam James
0 siblings, 0 replies; 7+ messages in thread
From: Sam James @ 2021-09-08 1:28 UTC (permalink / raw
To: gentoo-commits
commit: e5cfa030dcb717ba6bcaa0fe6bfcea7276ed8830
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Sep 8 01:27:11 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Sep 8 01:28:13 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e5cfa030
net-analyzer/nettop: Keyword 0.2.3-r2 arm64, #809800
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-analyzer/nettop/nettop-0.2.3-r2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-analyzer/nettop/nettop-0.2.3-r2.ebuild b/net-analyzer/nettop/nettop-0.2.3-r2.ebuild
index 7128eaac519..a42bab62df4 100644
--- a/net-analyzer/nettop/nettop-0.2.3-r2.ebuild
+++ b/net-analyzer/nettop/nettop-0.2.3-r2.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage"
SLOT="0"
LICENSE="BSD"
-KEYWORDS="amd64 ~arm ppc x86"
+KEYWORDS="amd64 ~arm ~arm64 ppc x86"
DEPEND="
sys-libs/slang
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/nettop/
@ 2022-09-29 4:28 Ionen Wolkens
0 siblings, 0 replies; 7+ messages in thread
From: Ionen Wolkens @ 2022-09-29 4:28 UTC (permalink / raw
To: gentoo-commits
commit: 474d8e27dea813d8949f5f2b90070bee7915fe4a
Author: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
AuthorDate: Thu Sep 29 04:00:39 2022 +0000
Commit: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
CommitDate: Thu Sep 29 04:17:55 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=474d8e27
net-analyzer/nettop: run eautoreconf for clang16
Closes: https://bugs.gentoo.org/871408
Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>
net-analyzer/nettop/nettop-0.2.3-r2.ebuild | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/net-analyzer/nettop/nettop-0.2.3-r2.ebuild b/net-analyzer/nettop/nettop-0.2.3-r2.ebuild
index f135facf4384..b77fcdc473e8 100644
--- a/net-analyzer/nettop/nettop-0.2.3-r2.ebuild
+++ b/net-analyzer/nettop/nettop-0.2.3-r2.ebuild
@@ -3,7 +3,7 @@
EAPI=8
-inherit toolchain-funcs
+inherit autotools toolchain-funcs
DESCRIPTION="top-like program for network activity"
HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage"
@@ -26,6 +26,9 @@ PATCHES=(
src_prepare() {
default
+ eautoreconf #871408
+ sed -i 's/configure.in/configure.ac/' Makefile.in || die
+
tc-export CC
}
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/nettop/
@ 2022-09-29 4:28 Ionen Wolkens
0 siblings, 0 replies; 7+ messages in thread
From: Ionen Wolkens @ 2022-09-29 4:28 UTC (permalink / raw
To: gentoo-commits
commit: db4f8ee1388f94047d29a8319885196c9418eeab
Author: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
AuthorDate: Thu Sep 29 03:56:52 2022 +0000
Commit: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
CommitDate: Thu Sep 29 04:17:55 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db4f8ee1
net-analyzer/nettop: EAPI7->8, tidy a bit
Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>
net-analyzer/nettop/nettop-0.2.3-r2.ebuild | 18 +++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)
diff --git a/net-analyzer/nettop/nettop-0.2.3-r2.ebuild b/net-analyzer/nettop/nettop-0.2.3-r2.ebuild
index a42bab62df49..f135facf4384 100644
--- a/net-analyzer/nettop/nettop-0.2.3-r2.ebuild
+++ b/net-analyzer/nettop/nettop-0.2.3-r2.ebuild
@@ -1,23 +1,22 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=7
+EAPI=8
inherit toolchain-funcs
DESCRIPTION="top-like program for network activity"
-SRC_URI="mirror://gentoo/${P}.tar.gz"
HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage"
+SRC_URI="mirror://gentoo/${P}.tar.gz"
-SLOT="0"
LICENSE="BSD"
+SLOT="0"
KEYWORDS="amd64 ~arm ~arm64 ppc x86"
-DEPEND="
+RDEPEND="
sys-libs/slang
- net-libs/libpcap
-"
-RDEPEND="${DEPEND}"
+ net-libs/libpcap"
+DEPEND="${RDEPEND}"
PATCHES=(
"${FILESDIR}"/${P}-gcc411.patch
@@ -26,10 +25,11 @@ PATCHES=(
src_prepare() {
default
+
tc-export CC
}
src_install() {
dosbin nettop
- dodoc ChangeLog README THANKS
+ einstalldocs
}
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/nettop/
@ 2024-06-07 6:26 Joonas Niilola
0 siblings, 0 replies; 7+ messages in thread
From: Joonas Niilola @ 2024-06-07 6:26 UTC (permalink / raw
To: gentoo-commits
commit: 271f3f8969de5fa9ad8a466f7fab4f0ec27a0fba
Author: Eli Schwartz <eschwartz93 <AT> gmail <DOT> com>
AuthorDate: Fri Jun 7 02:09:50 2024 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Fri Jun 7 06:25:59 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=271f3f89
net-analyzer/nettop: restore useful HOMEPAGE, SRC_URI
Previously, the website disappeared. Upstream is dead. As a result, the
distfile url was set to mirror:// and the homepage wiped away and turned
into "no homepage". But this is unconstructive, though, considering that
archive.org exists. So use that instead.
Fixes: 7863251050a4b3c5640488810ac9b61735906a13
Bug: https://bugs.gentoo.org/353666
Signed-off-by: Eli Schwartz <eschwartz93 <AT> gmail.com>
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
net-analyzer/nettop/nettop-0.2.3-r2.ebuild | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/net-analyzer/nettop/nettop-0.2.3-r2.ebuild b/net-analyzer/nettop/nettop-0.2.3-r2.ebuild
index b77fcdc473e8..b160aea01bdc 100644
--- a/net-analyzer/nettop/nettop-0.2.3-r2.ebuild
+++ b/net-analyzer/nettop/nettop-0.2.3-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -6,8 +6,8 @@ EAPI=8
inherit autotools toolchain-funcs
DESCRIPTION="top-like program for network activity"
-HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage"
-SRC_URI="mirror://gentoo/${P}.tar.gz"
+HOMEPAGE="https://web.archive.org/web/20060615083852/http://srparish.net/software/"
+SRC_URI="https://web.archive.org/web/20060705095248if_/http://srparish.net:80/software/nettop-0.2.3.tar.gz"
LICENSE="BSD"
SLOT="0"
^ permalink raw reply related [flat|nested] 7+ messages in thread
end of thread, other threads:[~2024-06-07 6:26 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-07 6:26 [gentoo-commits] repo/gentoo:master commit in: net-analyzer/nettop/ Joonas Niilola
-- strict thread matches above, loose matches on Subject: below --
2022-09-29 4:28 Ionen Wolkens
2022-09-29 4:28 Ionen Wolkens
2021-09-08 1:28 Sam James
2021-04-03 21:58 Sam James
2021-04-03 19:53 Sam James
2016-07-09 8:57 Patrice Clement
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox