From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id CC8CE158042 for ; Wed, 30 Oct 2024 21:58:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0835AE07A9; Wed, 30 Oct 2024 21:58:14 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id AB01AE07A9 for ; Wed, 30 Oct 2024 21:58:13 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B0991343065 for ; Wed, 30 Oct 2024 21:58:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4A99811DF for ; Wed, 30 Oct 2024 21:58:11 +0000 (UTC) From: "Bernard Cafarelli" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Bernard Cafarelli" Message-ID: <1730325482.d96e41a5200ba0b8d1f63442e9f4471cc3f2bc73.voyageur@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/dibbler/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/dibbler/dibbler-1.0.1-r3.ebuild X-VCS-Directories: net-misc/dibbler/ X-VCS-Committer: voyageur X-VCS-Committer-Name: Bernard Cafarelli X-VCS-Revision: d96e41a5200ba0b8d1f63442e9f4471cc3f2bc73 X-VCS-Branch: master Date: Wed, 30 Oct 2024 21:58:11 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: b2b4aa56-8ac0-4444-afd3-aebaa09fbe49 X-Archives-Hash: 11fa6e7e5fee6391614de9423f9019af commit: d96e41a5200ba0b8d1f63442e9f4471cc3f2bc73 Author: Bernard Cafarelli gentoo org> AuthorDate: Wed Oct 30 21:58:02 2024 +0000 Commit: Bernard Cafarelli gentoo org> CommitDate: Wed Oct 30 21:58:02 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d96e41a5 net-misc/dibbler: drop 1.0.1-r3 Signed-off-by: Bernard Cafarelli gentoo.org> net-misc/dibbler/dibbler-1.0.1-r3.ebuild | 64 -------------------------------- 1 file changed, 64 deletions(-) diff --git a/net-misc/dibbler/dibbler-1.0.1-r3.ebuild b/net-misc/dibbler/dibbler-1.0.1-r3.ebuild deleted file mode 100644 index 0568063a62b9..000000000000 --- a/net-misc/dibbler/dibbler-1.0.1-r3.ebuild +++ /dev/null @@ -1,64 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -inherit flag-o-matic readme.gentoo-r1 systemd - -DESCRIPTION="Portable DHCPv6 implementation (server, client and relay)" -HOMEPAGE="http://klub.com.pl/dhcpv6/" -SRC_URI="http://klub.com.pl/dhcpv6/dibbler/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ~arm64 ~hppa ~mips x86" -IUSE="doc resolvconf" - -RDEPEND="resolvconf? ( virtual/resolvconf )" -DEPEND="${RDEPEND} - doc? ( dev-texlive/texlive-latexextra )" - -PATCHES=( "${FILESDIR}"/${P}-fno-common.patch - "${FILESDIR}"/${P}-gnu-ism.patch - ) - -DOC_CONTENTS="Make sure that you modify client.conf, server.conf and/or relay.conf -to suit your needs. They are stored in /etc/dibbler" - -src_configure() { - # ODR violations, bug #861611 - filter-lto - - # Uses removed 'register' keyword - append-cxxflags -std=c++14 - - econf $(use_enable resolvconf) -} - -src_compile() { - default - # devel documentation is broken and users should consult the online version - # http://klub.com.pl/dhcpv6/doxygen/ - use doc && emake -C doc/ user -} - -src_install() { - default - readme.gentoo_create_doc - - dosbin dibbler-{client,relay,server} - doman doc/man/*.8 - - insinto /etc/dibbler - doins doc/examples/*.conf - keepdir /var/lib/dibbler - - dodoc AUTHORS CHANGELOG RELNOTES TODO - use doc && dodoc doc/dibbler-user.pdf - - doinitd "${FILESDIR}"/dibbler-{client,relay,server} - systemd_dounit "${FILESDIR}"/dibbler-client.service -} - -pkg_postinst() { - readme.gentoo_print_elog -}