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 54ED113835C for ; Sat, 22 May 2021 02:27:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8010CE0872; Sat, 22 May 2021 02:27:39 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 33D29E086D for ; Sat, 22 May 2021 02:27:39 +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 3AFEB340CAC for ; Sat, 22 May 2021 02:27:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B962B79A for ; Sat, 22 May 2021 02:27:35 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1621650391.6f8231d1e5db7716b1b3a4164063c0d0584632b8.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libndp/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/libndp/Manifest net-libs/libndp/libndp-1.8.ebuild X-VCS-Directories: net-libs/libndp/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 6f8231d1e5db7716b1b3a4164063c0d0584632b8 X-VCS-Branch: master Date: Sat, 22 May 2021 02:27:35 +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: c698c2a3-1984-42e7-bc42-e9f12ff84fda X-Archives-Hash: 5024966dbb628b2be3f08317c33764be commit: 6f8231d1e5db7716b1b3a4164063c0d0584632b8 Author: Matt Turner gentoo org> AuthorDate: Sat May 22 02:18:09 2021 +0000 Commit: Matt Turner gentoo org> CommitDate: Sat May 22 02:26:31 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f8231d1 net-libs/libndp: Version bump to 1.8 Signed-off-by: Matt Turner gentoo.org> net-libs/libndp/Manifest | 1 + net-libs/libndp/libndp-1.8.ebuild | 25 +++++++++++++++++++++++++ 2 files changed, 26 insertions(+) diff --git a/net-libs/libndp/Manifest b/net-libs/libndp/Manifest index c8f12580f8a..53ecbbbad8a 100644 --- a/net-libs/libndp/Manifest +++ b/net-libs/libndp/Manifest @@ -1 +1,2 @@ DIST libndp-1.7.tar.gz 363502 BLAKE2B f9b4dc455a666fb8d7bbedd49ed2c66764eac0e886943647be906fbd2912379c8b0bcaf64460316417b9d13011c79f5cf6a79d0dae0af991b137cb69940e85c2 SHA512 4aadaf6d7d8b9e57983cba17ce92715cceef6635613c4c5326decb97fb575ce5f5d5586a629645e3605a03e385c6481bfb6c4458216be2bbd36959af62783790 +DIST libndp-1.8.tar.gz 364669 BLAKE2B 29fa41b40300b273d50aed4f1fe4a1c552023aa83d6f4b1bd6033cd0a41618b453bd1ec7ac5223fe7c123649f389587e89e635cb988b392f1af04cc1d6b79002 SHA512 bce17095f01eb9df6601a2ff0597b0373f4b0005b1edac8c085e4c9d54f9cd18f08faf1604624e0e0992be66fa6f22a71106af46bc73c9e326663c7cf0c5a7fd diff --git a/net-libs/libndp/libndp-1.8.ebuild b/net-libs/libndp/libndp-1.8.ebuild new file mode 100644 index 00000000000..e187a404419 --- /dev/null +++ b/net-libs/libndp/libndp-1.8.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +inherit gnome2 multilib-minimal + +DESCRIPTION="Library for Neighbor Discovery Protocol" +HOMEPAGE="http://libndp.org" +SRC_URI="http://libndp.org/files/${P}.tar.gz" + +LICENSE="LGPL-2.1+" +SLOT="0" + +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86" + +multilib_src_configure() { + ECONF_SOURCE="${S}" \ + gnome2_src_configure \ + --disable-static \ + --enable-logging +} + +multilib_src_install() { + gnome2_src_install +}