* [gentoo-commits] repo/gentoo:master commit in: profiles/, net-misc/arpd/, net-misc/arpd/files/
@ 2024-07-19 11:34 Arthur Zamarin
0 siblings, 0 replies; only message in thread
From: Arthur Zamarin @ 2024-07-19 11:34 UTC (permalink / raw
To: gentoo-commits
commit: 805dc9e652c18badbb0a09e0776dad294c228703
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Jul 19 11:31:28 2024 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Jul 19 11:34:42 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=805dc9e6
net-misc/arpd: treeclean
Bug: https://bugs.gentoo.org/934242
Bug: https://bugs.gentoo.org/430816
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
net-misc/arpd/Manifest | 1 -
net-misc/arpd/arpd-0.2-r1.ebuild | 49 ----------------------
.../files/arpd-0.2-buildsystem-libevent-test.patch | 11 -----
net-misc/arpd/files/arpd-0.2-libevent.patch | 28 -------------
net-misc/arpd/files/arpd.c.patch | 42 -------------------
net-misc/arpd/metadata.xml | 5 ---
profiles/package.mask | 6 ---
7 files changed, 142 deletions(-)
diff --git a/net-misc/arpd/Manifest b/net-misc/arpd/Manifest
deleted file mode 100644
index 6fa7ee7fb6cb..000000000000
--- a/net-misc/arpd/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST arpd-0.2.tar.gz 49437 BLAKE2B 6739954b5cb1da3d23251b526c5bc39b1563f6d54e74e5ff8d8e9c3f9b0ed1ecedc7caf805e51321849036d3dc49ab2e7f244599c7c2ef2b02d65160a8cf669c SHA512 24bd4626188d74e172a46312790f8453619af2ac634c23379d1922c789ed97ef5db8a73ae13fccd98c94457da79682d6a1d7ccc3236c787f9d2eb15f64716ea2
diff --git a/net-misc/arpd/arpd-0.2-r1.ebuild b/net-misc/arpd/arpd-0.2-r1.ebuild
deleted file mode 100644
index de6e16c1ce37..000000000000
--- a/net-misc/arpd/arpd-0.2-r1.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools
-
-DESCRIPTION="ARP server claiming all unassigned addresses (for network monitoring/simulation)"
-HOMEPAGE="http://www.citi.umich.edu/u/provos/honeyd/"
-SRC_URI="http://www.citi.umich.edu/u/provos/honeyd/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 ~hppa ppc ~ppc64 sparc x86"
-IUSE=""
-
-DEPEND="
- >=dev-libs/libdnet-1.4
- >=dev-libs/libevent-0.6
- net-libs/libpcap
- !sys-apps/iproute2"
-RDEPEND="${DEPEND}"
-
-S=${WORKDIR}/${PN}
-
-PATCHES=(
- "${FILESDIR}"/arpd.c.patch
- "${FILESDIR}"/${P}-libevent.patch
-
- # bug 337481, replace test on libevent.a with libevent.so
- "${FILESDIR}"/${P}-buildsystem-libevent-test.patch
-)
-
-src_prepare() {
- default
- mv configure.{in,ac} || die
- eautoreconf
-}
-
-src_configure() {
- econf \
- --with-libdnet="${EPREFIX}"/usr \
- --with-libevent="${EPREFIX}"/usr
-}
-
-src_install() {
- dosbin arpd
- doman arpd.8
-}
diff --git a/net-misc/arpd/files/arpd-0.2-buildsystem-libevent-test.patch b/net-misc/arpd/files/arpd-0.2-buildsystem-libevent-test.patch
deleted file mode 100644
index 598fd0b73777..000000000000
--- a/net-misc/arpd/files/arpd-0.2-buildsystem-libevent-test.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/configure.in
-+++ b/configure.in
-@@ -62,7 +62,7 @@
- ;;
- *)
- AC_MSG_RESULT($withval)
-- if test -f $withval/include/event.h -a -f $withval/lib/libevent.a; then
-+ if test -f $withval/include/event.h -a -f $withval/lib/libevent.so; then
- owd=`pwd`
- if cd $withval; then withval=`pwd`; cd $owd; fi
- EVENTINC="-I$withval/include"
diff --git a/net-misc/arpd/files/arpd-0.2-libevent.patch b/net-misc/arpd/files/arpd-0.2-libevent.patch
deleted file mode 100644
index 367ae551ad98..000000000000
--- a/net-misc/arpd/files/arpd-0.2-libevent.patch
+++ /dev/null
@@ -1,28 +0,0 @@
---- a/arpd.c
-+++ b/arpd.c
-@@ -445,9 +445,6 @@
- void
- terminate_handler(int sig)
- {
-- extern int event_gotsig;
--
-- event_gotsig = 1;
- arpd_sig = sig;
- }
-
-@@ -464,7 +461,6 @@
- main(int argc, char *argv[])
- {
- struct event recv_ev;
-- extern int (*event_sigcb)(void);
- char *dev;
- int c, debug;
- FILE *fp;
-@@ -524,7 +520,6 @@
- perror("signal");
- return (-1);
- }
-- event_sigcb = arpd_signal;
-
- event_dispatch();
-
diff --git a/net-misc/arpd/files/arpd.c.patch b/net-misc/arpd/files/arpd.c.patch
deleted file mode 100644
index b8d2bbdb94b0..000000000000
--- a/net-misc/arpd/files/arpd.c.patch
+++ /dev/null
@@ -1,42 +0,0 @@
---- a/arpd.c
-+++ b/arpd.c
-@@ -265,7 +265,7 @@
- spa->addr_ip, tha->addr_eth, tpa->addr_ip);
-
- if (op == ARP_OP_REQUEST) {
-- syslog(LOG_DEBUG, __FUNCTION__ ": who-has %s tell %s",
-+ syslog(LOG_DEBUG, __FUNCTION__, ": who-has %s tell %s",
- addr_ntoa(tpa), addr_ntoa(spa));
- } else if (op == ARP_OP_REPLY) {
- syslog(LOG_INFO, "arp reply %s is-at %s",
-@@ -282,7 +282,7 @@
- int error;
-
- if (addr_cmp(addr, &arpd_ifent.intf_addr) == 0) {
-- syslog(LOG_DEBUG, __FUNCTION__ ": %s at %s",
-+ syslog(LOG_DEBUG, __FUNCTION__, ": %s at %s",
- addr_ntoa(addr), addr_ntoa(&arpd_ifent.intf_link_addr));
- return (0);
- }
-@@ -291,10 +291,10 @@
- error = arp_get(arpd_arp, &arpent);
-
- if (error == -1) {
-- syslog(LOG_DEBUG, __FUNCTION__ ": no entry for %s",
-+ syslog(LOG_DEBUG, __FUNCTION__, ": no entry for %s",
- addr_ntoa(addr));
- } else {
-- syslog(LOG_DEBUG, __FUNCTION__ ": %s at %s",
-+ syslog(LOG_DEBUG, __FUNCTION__, ": %s at %s",
- addr_ntoa(addr), addr_ntoa(&arpent.arp_ha));
- }
- return (error);
-@@ -423,7 +423,7 @@
- if ((req = SPLAY_FIND(tree, &arpd_reqs, &tmp)) != NULL) {
- addr_pack(&src.arp_ha, ADDR_TYPE_ETH, ETH_ADDR_BITS,
- ethip->ar_sha, ETH_ADDR_LEN);
-- syslog(LOG_DEBUG, __FUNCTION__ ": %s at %s",
-+ syslog(LOG_DEBUG, __FUNCTION__, ": %s at %s",
- addr_ntoa(&req->pa), addr_ntoa(&src.arp_ha));
-
- /* This address is claimed */
diff --git a/net-misc/arpd/metadata.xml b/net-misc/arpd/metadata.xml
deleted file mode 100644
index 115e9d64a669..000000000000
--- a/net-misc/arpd/metadata.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <!-- maintainer-needed -->
-</pkgmetadata>
diff --git a/profiles/package.mask b/profiles/package.mask
index fd18c307232e..0d30b2f1a714 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -279,12 +279,6 @@ sci-astronomy/predict
~dev-vcs/mercurial-6.7.2
~dev-vcs/mercurial-6.7.3
-# Arthur Zamarin <arthurzam@gentoo.org> (2024-06-14)
-# EAPI=6, no reverse dependencies, maintainer-needed, installation
-# blocked by iproute2.
-# Removal on 2024-07-14. Bugs #934242, #430816.
-net-misc/arpd
-
# Arthur Zamarin <arthurzam@gentoo.org> (2024-06-14)
# EAPI=6, not maintained in Gentoo for a long time. procheck is
# fetch restricted, and the file you download from upstream
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2024-07-19 11:35 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-07-19 11:34 [gentoo-commits] repo/gentoo:master commit in: profiles/, net-misc/arpd/, net-misc/arpd/files/ Arthur Zamarin
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox