Gentoo Archives: gentoo-commits

From: Erik Mackdanz <stasibear@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libupnpp/
Date: Sun, 25 Sep 2022 15:51:51
Message-Id: 1664120634.5c94137f0714f4e9dd71a5cf7b2ac317ff30ae0a.stasibear@gentoo
1 commit: 5c94137f0714f4e9dd71a5cf7b2ac317ff30ae0a
2 Author: Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
3 AuthorDate: Sun Sep 25 15:43:51 2022 +0000
4 Commit: Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
5 CommitDate: Sun Sep 25 15:43:54 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c94137f
7
8 net-libs/libupnpp: add 0.22.2
9
10 Signed-off-by: Erik Mackdanz <stasibear <AT> gentoo.org>
11
12 net-libs/libupnpp/Manifest | 1 +
13 net-libs/libupnpp/libupnpp-0.22.2.ebuild | 23 +++++++++++++++++++++++
14 2 files changed, 24 insertions(+)
15
16 diff --git a/net-libs/libupnpp/Manifest b/net-libs/libupnpp/Manifest
17 index 45e69d6e3458..408ccbfdfa8d 100644
18 --- a/net-libs/libupnpp/Manifest
19 +++ b/net-libs/libupnpp/Manifest
20 @@ -1 +1,2 @@
21 DIST libupnpp-0.21.0.tar.gz 478894 BLAKE2B 093803ff0a4a0b76272f44e470df69169053c66ae27a42b483623b50d0c2bffa61f51e0ca9a82b4fc759492640c68d0eae90cdc46a1e6e6f38f7655190e4101b SHA512 1032ef83e6880c1e4ae4903f6e175640b1d3da7090bfb04bf480f70d58436ef89e6a43886c86dcda2c4aab8370cbd0d5260601ac359a3dded0688ac2748d30fd
22 +DIST libupnpp-0.22.2.tar.gz 479341 BLAKE2B 5dbfa76614bb1aca1d8a3f03019ed6a95de3640a86f4ca0f3736d15fee7ccb54d454b0cb08f9595789b7478a8238410adabfdaea3a39f131094b9485a0faa701 SHA512 670f9639a4068013e1cd5cc6610e9bf38c6ab0d854079c3344525a4c5e553088a1dc49354ca33338e8d8fb487fc2c0a724f1cf3a99bf6b6f47d6a281f3a8e9e4
23
24 diff --git a/net-libs/libupnpp/libupnpp-0.22.2.ebuild b/net-libs/libupnpp/libupnpp-0.22.2.ebuild
25 new file mode 100644
26 index 000000000000..1027290bd71a
27 --- /dev/null
28 +++ b/net-libs/libupnpp/libupnpp-0.22.2.ebuild
29 @@ -0,0 +1,23 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +DESCRIPTION="The libupnpp C++ library wraps libupnp for easier use by upmpdcli and upplay"
35 +HOMEPAGE="https://www.lesbonscomptes.com/upmpdcli"
36 +SRC_URI="https://www.lesbonscomptes.com/upmpdcli/downloads/${P}.tar.gz"
37 +
38 +LICENSE="GPL-2"
39 +SLOT="0"
40 +KEYWORDS="~amd64 ~x86"
41 +
42 +DEPEND="
43 + dev-libs/expat
44 + net-libs/libnpupnp
45 + net-misc/curl
46 +"
47 +RDEPEND="${DEPEND}"
48 +
49 +src_install() {
50 + default_src_install
51 + find "${ED}" -name '*.la' -delete || die "Couldn't delete .la files"
52 +}