Gentoo Archives: gentoo-commits

From: Ronny Gutbrod <gentoo@××××××××.de>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-cpp/coeurl/
Date: Tue, 21 Dec 2021 11:46:49
Message-Id: 1640087101.917a9454a0f331ecb85ab91dec23977a888bd015.tastytea@gentoo
1 commit: 917a9454a0f331ecb85ab91dec23977a888bd015
2 Author: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea <DOT> de>
3 AuthorDate: Mon Dec 20 00:34:50 2021 +0000
4 Commit: Ronny Gutbrod <gentoo <AT> tastytea <DOT> de>
5 CommitDate: Tue Dec 21 11:45:01 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=917a9454
7
8 dev-cpp/coeurl: Version bump 0.1.1
9
10 Signed-off-by: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea.de>
11
12 dev-cpp/coeurl/Manifest | 1 +
13 dev-cpp/coeurl/coeurl-0.1.1.ebuild | 34 ++++++++++++++++++++++++++++++++++
14 2 files changed, 35 insertions(+)
15
16 diff --git a/dev-cpp/coeurl/Manifest b/dev-cpp/coeurl/Manifest
17 index 7a311d505..a88539855 100644
18 --- a/dev-cpp/coeurl/Manifest
19 +++ b/dev-cpp/coeurl/Manifest
20 @@ -1,2 +1,3 @@
21 DIST coeurl-0.0.1_pre20210813.tar.bz2 19129 BLAKE2B f6b4b57cebd0251ddc778ad9d0fe02a852604b84894662c1dda644687dea8603aac6bd2f2a6108ae72ca8c08b07204992a8874313975ff9c03f3c49f5ddc7993 SHA512 9f50778a0f3de966bb60bb524413e783277175ae4fa38dd8a356159dd7ed65338ceab309a510bbf040b076d03f8bfeb77fd10426e2291cadff4b27afe8d0ed2e
22 DIST coeurl-0.1.0.tar.bz2 45278 BLAKE2B a6b4729cde8d341fe8c926f520b37ede82d677bdc3429467eefcec99ae12d706ba0c288ab8fe203fa19089c17ae7397864c5fc77b04efdc1a50861084987ff86 SHA512 a84c56b644ffae30e73f945719b524f546ea19a895b63b8d7c9b11bad95c7d2bf12956199b5a705980d9c227933ad0667478a62db8a0d15a7699febce3ba74a7
23 +DIST coeurl-0.1.1.tar.bz2 45471 BLAKE2B ea5b490cb62ed780c4499d15c1f9502185f8edab9d706cc422eda62d9149512e693e82fa9431a05c58e2bb949314a9de0d513d54824a07c1e4ca6bc801065189 SHA512 9f781b30f57314253602b8560954122537b3c1d40cc327c62aac3662ba80ec8fe45fc69adec5c571b8861c996724c7869e4dc88fafc5ebee31794299de999e34
24
25 diff --git a/dev-cpp/coeurl/coeurl-0.1.1.ebuild b/dev-cpp/coeurl/coeurl-0.1.1.ebuild
26 new file mode 100644
27 index 000000000..53569de45
28 --- /dev/null
29 +++ b/dev-cpp/coeurl/coeurl-0.1.1.ebuild
30 @@ -0,0 +1,34 @@
31 +# Copyright 2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +inherit meson
37 +
38 +DESCRIPTION="A simple async wrapper around CURL for C++"
39 +HOMEPAGE="https://nheko.im/nheko-reborn/coeurl"
40 +SRC_URI="https://nheko.im/nheko-reborn/coeurl/-/archive/v${PV}/${PN}-v${PV}.tar.bz2 -> ${P}.tar.bz2"
41 +S="${WORKDIR}/${PN}-v${PV}"
42 +
43 +LICENSE="MIT"
44 +SLOT="0"
45 +KEYWORDS="~amd64"
46 +IUSE="test"
47 +RESTRICT="test" # Tests turned off because they need a local webserver.
48 +
49 +RDEPEND="
50 + net-misc/curl
51 + dev-libs/libevent
52 + dev-libs/spdlog
53 +"
54 +DEPEND="
55 + ${RDEPEND}
56 + test? ( dev-cpp/doctest )
57 +"
58 +
59 +src_configure() {
60 + local -a emesonargs=(
61 + $(meson_use test tests)
62 + )
63 + meson_src_configure
64 +}