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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 9E4EE138335 for ; Tue, 18 Jun 2019 12:55:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8FA9FE0885; Tue, 18 Jun 2019 12:55:49 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 60356E0882 for ; Tue, 18 Jun 2019 12:55:49 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7DF81346407 for ; Tue, 18 Jun 2019 12:55:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id ECB63614 for ; Tue, 18 Jun 2019 12:55:46 +0000 (UTC) From: "Thomas Deutschmann" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Thomas Deutschmann" Message-ID: <1560862535.e4edcf1aaa48771665575b64c2cb27904a4ec7a8.whissi@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/liboping/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/liboping/liboping-1.10.0-r1.ebuild X-VCS-Directories: net-libs/liboping/ X-VCS-Committer: whissi X-VCS-Committer-Name: Thomas Deutschmann X-VCS-Revision: e4edcf1aaa48771665575b64c2cb27904a4ec7a8 X-VCS-Branch: master Date: Tue, 18 Jun 2019 12:55:46 +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: 60846ec0-c30d-43d4-baf8-0e6dc5aa6abd X-Archives-Hash: 2c06ee475ce8ddff1b9eab68e4d4dbdc commit: e4edcf1aaa48771665575b64c2cb27904a4ec7a8 Author: Thomas Deutschmann gentoo org> AuthorDate: Tue Jun 18 12:51:59 2019 +0000 Commit: Thomas Deutschmann gentoo org> CommitDate: Tue Jun 18 12:55:35 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4edcf1a net-libs/liboping: drop old Package-Manager: Portage-2.3.67, Repoman-2.3.14 Signed-off-by: Thomas Deutschmann gentoo.org> net-libs/liboping/liboping-1.10.0-r1.ebuild | 74 ----------------------------- 1 file changed, 74 deletions(-) diff --git a/net-libs/liboping/liboping-1.10.0-r1.ebuild b/net-libs/liboping/liboping-1.10.0-r1.ebuild deleted file mode 100644 index 50dc00c8fb4..00000000000 --- a/net-libs/liboping/liboping-1.10.0-r1.ebuild +++ /dev/null @@ -1,74 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" - -inherit autotools fcaps perl-module - -DESCRIPTION="Protocol independent ANSI-C ping library and command line utility" -HOMEPAGE="https://noping.cc/" -SRC_URI="https://noping.cc/files/${P}.tar.bz2" - -LICENSE="LGPL-2.1 GPL-2" -SLOT="0/0.3" -KEYWORDS="alpha amd64 arm x86" -IUSE="+filecaps ncurses perl" - -DEPEND="ncurses? ( sys-libs/ncurses:0= )" -RDEPEND=${DEPEND} - -PATCHES=( - "${FILESDIR}/${PN}-1.6.2-nouidmagic.patch" - "${FILESDIR}"/${P}-gcc8-fix.patch -) - -src_prepare() { - default - - eautoreconf -} - -src_configure() { - econf \ - $(use_with perl perl-bindings INSTALLDIRS=vendor) \ - $(use_with ncurses) -} - -src_test() { - if use perl; then - pushd bindings/perl >/dev/null || die - perl-module_src_test - popd >/dev/null || die - fi -} - -src_install() { - default - - find "${ED}"usr/lib* -name '*.la' -o -name '*.a' -delete || die -} - -pkg_postinst() { - if use filecaps; then - local _caps_str="CAP_NET_RAW" - _files=( "${EROOT%/}/usr/bin/oping") - - if use ncurses; then - _files+=( "${EROOT%/}/usr/bin/noping") - fi - - fcaps "${_caps_str}" "${_files[@]}" - - elog "Capabilities for" - elog "" - - local _file= - for _file in "${_files[@]}"; do - elog " ${_file}" - done - - elog "" - elog "set to ${_caps_str}+EP due to set 'filecaps' USE flag." - elog - fi -}