public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: net-misc/nicstat/
@ 2017-01-27 18:54 Zac Medico
  0 siblings, 0 replies; 2+ messages in thread
From: Zac Medico @ 2017-01-27 18:54 UTC (permalink / raw
  To: gentoo-commits

commit:     1af3bab44aabaf36cd0e4892a8413cb208f82a05
Author:     Zac Medico <zmedico <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 27 18:49:58 2017 +0000
Commit:     Zac Medico <zmedico <AT> gentoo <DOT> org>
CommitDate: Fri Jan 27 18:54:03 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1af3bab4

net-misc/nicstat: new package

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 net-misc/nicstat/Manifest            |  1 +
 net-misc/nicstat/metadata.xml        | 11 +++++++++++
 net-misc/nicstat/nicstat-1.95.ebuild | 31 +++++++++++++++++++++++++++++++
 3 files changed, 43 insertions(+)

diff --git a/net-misc/nicstat/Manifest b/net-misc/nicstat/Manifest
new file mode 100644
index 00000000..19943e7
--- /dev/null
+++ b/net-misc/nicstat/Manifest
@@ -0,0 +1 @@
+DIST nicstat-1.95.tar.gz 33601 SHA256 0556e890e7c671ee85ccef861ede034719101125c06f750166e723f2bff34e37 SHA512 542de1e0a388f699e184e8f92ca732ce68974a3adc3b60247170cc32a737fd191c43a9b7a761cc8b8ed411e914756f1ae3727b1a5a8e5753643f98a80443ad5a WHIRLPOOL 8fe4bae340e0a84bc6f2a8e4880abffcfa3c3e62f44ee3fa23a06c11a1de1964ff40124055d1b1d1ab3e853d295171017d96de0165f1c11d824cd85d6ab6a7a2

diff --git a/net-misc/nicstat/metadata.xml b/net-misc/nicstat/metadata.xml
new file mode 100644
index 00000000..d0f2dbf
--- /dev/null
+++ b/net-misc/nicstat/metadata.xml
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<upstream>
+		<remote-id type="github">scotte/nicstat</remote-id>
+		<remote-id type="sourceforge">nicstat</remote-id>
+	</upstream>
+	<maintainer type="person">
+		<email>zmedico@gentoo.org</email>
+	</maintainer>
+</pkgmetadata>

diff --git a/net-misc/nicstat/nicstat-1.95.ebuild b/net-misc/nicstat/nicstat-1.95.ebuild
new file mode 100644
index 00000000..455661f
--- /dev/null
+++ b/net-misc/nicstat/nicstat-1.95.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit toolchain-funcs
+
+DESCRIPTION="Network traffic statics utility for Solaris and Linux"
+HOMEPAGE="https://sourceforge.net/projects/nicstat/ https://github.com/scotte/nicstat/"
+EGIT_COMMIT="a716ee81cbf1e177267e20a880b5a0d9fa5b689e"
+SRC_URI="https://github.com/scotte/nicstat/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="Artistic-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND=""
+RDEPEND=""
+S=${WORKDIR}/${PN}-${EGIT_COMMIT}
+
+src_compile() {
+	$(tc-getCC) ${CFLAGS} ${PN}.c -o ${PN} ${LDFLAGS} || die
+}
+
+src_install() {
+	dobin {e,}${PN}
+	doman ${PN}.1
+	dodoc BUGS.md ChangeLog.txt README*
+}


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

* [gentoo-commits] repo/gentoo:master commit in: net-misc/nicstat/
@ 2024-02-08  3:49 Zac Medico
  0 siblings, 0 replies; 2+ messages in thread
From: Zac Medico @ 2024-02-08  3:49 UTC (permalink / raw
  To: gentoo-commits

commit:     9a93f50a6c6e210364147058d09f9f064d5cf79c
Author:     Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
AuthorDate: Wed Feb  7 19:18:52 2024 +0000
Commit:     Zac Medico <zmedico <AT> gentoo <DOT> org>
CommitDate: Thu Feb  8 03:49:02 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a93f50a

net-misc/nicstat: EAPI8 bump

Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/35216
Signed-off-by: Zac Medico <zmedico <AT> gentoo.org>

 net-misc/nicstat/nicstat-1.95.ebuild | 10 +++-------
 1 file changed, 3 insertions(+), 7 deletions(-)

diff --git a/net-misc/nicstat/nicstat-1.95.ebuild b/net-misc/nicstat/nicstat-1.95.ebuild
index 1936dbeeb9d5..18f9993c3b4f 100644
--- a/net-misc/nicstat/nicstat-1.95.ebuild
+++ b/net-misc/nicstat/nicstat-1.95.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=8
 
 inherit toolchain-funcs
 
@@ -9,15 +9,11 @@ DESCRIPTION="Network traffic statics utility for Solaris and Linux"
 HOMEPAGE="https://sourceforge.net/projects/nicstat/ https://github.com/scotte/nicstat/"
 EGIT_COMMIT="a716ee81cbf1e177267e20a880b5a0d9fa5b689e"
 SRC_URI="https://github.com/scotte/nicstat/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
+S="${WORKDIR}/${PN}-${EGIT_COMMIT}"
 
 LICENSE="Artistic-2"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND=""
-RDEPEND=""
-S=${WORKDIR}/${PN}-${EGIT_COMMIT}
 
 src_compile() {
 	$(tc-getCC) ${CFLAGS} ${PN}.c -o ${PN} ${LDFLAGS} || die


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

end of thread, other threads:[~2024-02-08  3:49 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-02-08  3:49 [gentoo-commits] repo/gentoo:master commit in: net-misc/nicstat/ Zac Medico
  -- strict thread matches above, loose matches on Subject: below --
2017-01-27 18:54 Zac Medico

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