From: "Jeroen Roovers" <jer@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/arpwatch/
Date: Fri, 20 Oct 2017 15:42:03 +0000 (UTC) [thread overview]
Message-ID: <1508514102.8bcb4df691249edabc337cbc90d407bc86dad0e5.jer@gentoo> (raw)
commit: 8bcb4df691249edabc337cbc90d407bc86dad0e5
Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 20 15:41:42 2017 +0000
Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Fri Oct 20 15:41:42 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8bcb4df6
net-analyzer/arpwatch: EAPI bump with fixed patchset.
Package-Manager: Portage-2.3.11, Repoman-2.3.3
net-analyzer/arpwatch/Manifest | 1 +
net-analyzer/arpwatch/arpwatch-2.1.15-r9.ebuild | 63 +++++++++++++++++++++++++
2 files changed, 64 insertions(+)
diff --git a/net-analyzer/arpwatch/Manifest b/net-analyzer/arpwatch/Manifest
index fc03570d091..7ccaaec4ddf 100644
--- a/net-analyzer/arpwatch/Manifest
+++ b/net-analyzer/arpwatch/Manifest
@@ -1,2 +1,3 @@
DIST arpwatch-2.1a15.tar.gz 202729 SHA256 c1df9737e208a96a61fa92ddad83f4b4d9be66f8992f3c917e9edf4b05ff5898 SHA512 f770b5b7954afe910dafb016e6e886a4e785564bcdc0ea0de9d7b1ca6a9a0b219a9d1b50b6f42a67afc2f836e782e8ff85ba5780583015d62c9694ac53f0bf90 WHIRLPOOL e653eb83d8dbc8777c3aaa5920bc1e5b46c64aa740c64a79b24a42abdee4625baa72a51f9f0441549b7325fcb07b94f1964887df1b6d707eddde162e1073691f
DIST arpwatch-patchset-0.7.tar.xz 132868 SHA256 ccc3f84f452306b153175bbdec33f9913848ac57866a4ee52b974d7087b7fe48 SHA512 2cbfa37acd29c30232da9ad0a742ddc9cd35c228fb786c6798555962841006ba0f47e31097722a3303e25f2e7c665b6e93707e49c02a8a9171b484b56a133e00 WHIRLPOOL f6624f459f2172b10beb6eaa15e0e5111566cd360195e4ca08ec4e5962bb1156aaf133701730e8146cb049a9759f7063bbc225d99f824827bb8bb72d3e0cebb3
+DIST arpwatch-patchset-0.8.tar.xz 131692 SHA256 de504e93277696b35c2e184a3ff6cf28f4ff559a549873af3cb4aa8b0965e00f SHA512 3e8f1c043f09fbeacadb40c1db47fb907314ed18bb3fb506c6c510977fd0e6dd9950becc830cf7c10911a7eec97e56e0af8c8c3d7df811e8ab820290973ea0b0 WHIRLPOOL 9b8efd22dc3f5500868c092bc4c3a022094b2e134b9098dcb2596aca8ba411592ecfb1f54d7f01fcf117d3109ed4c2c3db21225970bc15a8c437da93a9181dcb
diff --git a/net-analyzer/arpwatch/arpwatch-2.1.15-r9.ebuild b/net-analyzer/arpwatch/arpwatch-2.1.15-r9.ebuild
new file mode 100644
index 00000000000..8fdf28d149d
--- /dev/null
+++ b/net-analyzer/arpwatch/arpwatch-2.1.15-r9.ebuild
@@ -0,0 +1,63 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit user versionator
+
+PATCH_VER="0.8"
+MY_P="${PN}-$(replace_version_separator 2 'a')"
+
+DESCRIPTION="An ethernet monitor program that keeps track of ethernet/IP address pairings"
+HOMEPAGE="http://ee.lbl.gov/"
+SRC_URI="
+ ftp://ftp.ee.lbl.gov/${MY_P}.tar.gz
+ https://dev.gentoo.org/~jer/arpwatch-patchset-${PATCH_VER}.tar.xz
+"
+
+LICENSE="BSD GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~hppa ~ppc ~sparc ~x86 ~x86-fbsd"
+IUSE="selinux"
+
+DEPEND="
+ net-libs/libpcap
+ sys-libs/ncurses:*
+"
+RDEPEND="
+ ${DEPEND}
+ selinux? ( sec-policy/selinux-arpwatch )
+"
+
+S=${WORKDIR}/${MY_P}
+
+pkg_preinst() {
+ enewuser arpwatch
+}
+
+src_prepare() {
+ eapply "${WORKDIR}"/arpwatch-patchset/*.patch
+ eapply_user
+
+ cp "${WORKDIR}"/arpwatch-patchset/*.8 . || die
+}
+
+src_install () {
+ dosbin arpwatch arpsnmp arp2ethers massagevendor arpfetch bihourly.sh
+ doman arpwatch.8 arpsnmp.8 arp2ethers.8 massagevendor.8 arpfetch.8 bihourly.8
+
+ insinto /usr/share/arpwatch
+ doins ethercodes.dat
+
+ insinto /usr/share/arpwatch/awk
+ doins duplicates.awk euppertolower.awk p.awk e.awk d.awk
+
+ keepdir /var/lib/arpwatch
+ dodoc README CHANGES
+
+ newinitd "${FILESDIR}"/arpwatch.initd arpwatch
+ newconfd "${FILESDIR}"/arpwatch.confd arpwatch
+}
+
+pkg_postinst() {
+ fowners arpwatch:0 "${ROOT}"/var/lib/arpwatch
+}
next reply other threads:[~2017-10-20 15:42 UTC|newest]
Thread overview: 37+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-10-20 15:42 Jeroen Roovers [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-03-08 18:54 [gentoo-commits] repo/gentoo:master commit in: net-analyzer/arpwatch/ Arthur Zamarin
2025-03-08 16:42 Arthur Zamarin
2025-03-08 14:58 Arthur Zamarin
2025-03-08 14:09 Sam James
2024-12-23 20:01 Conrad Kostecki
2024-11-14 18:41 Sam James
2024-11-14 4:35 Sam James
2024-11-14 3:39 Sam James
2024-11-14 3:17 Sam James
2024-10-25 20:15 Andreas K. Hüttel
2024-08-25 23:54 Conrad Kostecki
2024-02-02 17:51 Arthur Zamarin
2024-02-02 16:27 Arthur Zamarin
2024-02-02 5:29 Sam James
2024-02-02 4:44 Sam James
2021-10-19 19:09 Jakov Smolić
2021-07-16 1:31 Yixun Lan
2021-03-26 13:40 Agostino Sarubbo
2021-03-17 9:00 Sam James
2021-03-16 12:21 Sam James
2021-03-15 21:54 Sam James
2021-03-15 21:25 Sam James
2020-06-28 16:02 Jeroen Roovers
2020-06-28 12:05 Jeroen Roovers
2020-06-28 12:05 Jeroen Roovers
2020-06-20 1:05 Aaron Bauman
2020-06-03 15:27 Agostino Sarubbo
2020-06-01 20:51 Sergei Trofimovich
2020-06-01 19:52 Sergei Trofimovich
2019-03-11 4:48 Aaron Bauman
2018-01-09 21:07 Michael Orlitzky
2016-03-24 11:13 Jeroen Roovers
2016-03-02 13:58 Agostino Sarubbo
2016-02-22 6:01 Jeroen Roovers
2016-02-21 7:17 Jeroen Roovers
2016-02-21 7:17 Jeroen Roovers
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1508514102.8bcb4df691249edabc337cbc90d407bc86dad0e5.jer@gentoo \
--to=jer@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox