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 CBEC0138359 for ; Thu, 12 Nov 2020 05:04:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B7EB0E069C; Thu, 12 Nov 2020 05:04:22 +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 1CE02E069C for ; Thu, 12 Nov 2020 05:04:21 +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 827C8340CB4 for ; Thu, 12 Nov 2020 05:04:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F223F439 for ; Thu, 12 Nov 2020 05:04:18 +0000 (UTC) From: "Erik Mackdanz" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Erik Mackdanz" Message-ID: <1605157421.e2990436bce967ea8c782843873100a883d0dd4e.stasibear@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libnpupnp/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/libnpupnp/Manifest net-libs/libnpupnp/libnpupnp-4.0.13.ebuild net-libs/libnpupnp/metadata.xml X-VCS-Directories: net-libs/libnpupnp/ X-VCS-Committer: stasibear X-VCS-Committer-Name: Erik Mackdanz X-VCS-Revision: e2990436bce967ea8c782843873100a883d0dd4e X-VCS-Branch: master Date: Thu, 12 Nov 2020 05:04:18 +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: 91c86baa-2557-4e20-bcdc-98ec6eb74658 X-Archives-Hash: 47690a88b7f3a57b0f9a046c4228ac54 commit: e2990436bce967ea8c782843873100a883d0dd4e Author: Erik Mackdanz gentoo org> AuthorDate: Thu Nov 12 05:03:41 2020 +0000 Commit: Erik Mackdanz gentoo org> CommitDate: Thu Nov 12 05:03:41 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e2990436 net-libs/libnpupnp: Add new package 4.0.13 Signed-off-by: Erik Mackdanz gentoo.org> Package-Manager: Portage-3.0.9, Repoman-3.0.2 net-libs/libnpupnp/Manifest | 1 + net-libs/libnpupnp/libnpupnp-4.0.13.ebuild | 39 ++++++++++++++++++++++++++++++ net-libs/libnpupnp/metadata.xml | 36 +++++++++++++++++++++++++++ 3 files changed, 76 insertions(+) diff --git a/net-libs/libnpupnp/Manifest b/net-libs/libnpupnp/Manifest new file mode 100644 index 00000000000..73b212161a1 --- /dev/null +++ b/net-libs/libnpupnp/Manifest @@ -0,0 +1 @@ +DIST libnpupnp-4.0.13.tar.gz 537389 BLAKE2B 0085d9ea9cf1786bba8e8abb812b0c1279fc30c70a16cb2bf4cfad405ec1346180171dd39296a30f5747cd55ee06fc314bcb49fdb6537a4dfbcf048fb66fd7f5 SHA512 c0332552ab2ba8aea8e72858601f2415a08a68224f724454d230acddf612b2fdd873daf41aeeeb3e1b4d1694665245087b3c4f96c896d36e2e9c017ea95d13aa diff --git a/net-libs/libnpupnp/libnpupnp-4.0.13.ebuild b/net-libs/libnpupnp/libnpupnp-4.0.13.ebuild new file mode 100644 index 00000000000..80a418d1649 --- /dev/null +++ b/net-libs/libnpupnp/libnpupnp-4.0.13.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="A C++ base UPnP library, derived from Portable UPnP, a.k.a libupnp" +HOMEPAGE="https://framagit.org/medoc92/npupnp" +SRC_URI="https://www.lesbonscomptes.com/upmpdcli/downloads/${P}.tar.gz" +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64" + +IUSE="client debug device gena ipv6 optssdp reuseaddr soap ssdp tools webserver" + +RDEPEND=" + dev-libs/expat + net-libs/libmicrohttpd + net-misc/curl +" + +src_prepare() { + default + ./autogen.sh || die +} + +src_configure() { + econf \ + $(use_enable client) \ + $(use_enable debug) \ + $(use_enable device) \ + $(use_enable gena) \ + $(use_enable ipv6) \ + $(use_enable optssdp) \ + $(use_enable reuseaddr) \ + $(use_enable soap) \ + $(use_enable ssdp) \ + $(use_enable tools) \ + $(use_enable webserver) +} diff --git a/net-libs/libnpupnp/metadata.xml b/net-libs/libnpupnp/metadata.xml new file mode 100644 index 00000000000..63aca78f507 --- /dev/null +++ b/net-libs/libnpupnp/metadata.xml @@ -0,0 +1,36 @@ + + + + + + stasibear@gentoo.org + Primary maintainer + + + The libupnpp library, which provides the C++ interface for + upmpdcli and upplay, used to rely on the venerable libupnp library + (a.k.a pupnp: Portable UPnP) to provide the base UPnP protocol + functionality. + + + control point code (client) + device specific code (implies -webserver if disabled) + GENA part + optional SSDP headers support + bind the miniserver socket with reuseaddr + SOAP part + SSDP part + helper APIs in upnptools.h + integrated web server + +