dev-cpp/coeurl: Version bump 0.2.0; Add subslot

Signed-off-by: Ronny (tastytea) Gutbrod <gentoo@tastytea.de>
This commit is contained in:
Ronny (tastytea) Gutbrod
2022-03-07 17:01:50 +01:00
parent 04bd4a614b
commit 9c0898242d
2 changed files with 35 additions and 0 deletions

View File

@@ -1,2 +1,3 @@
DIST coeurl-0.1.0.tar.bz2 45278 BLAKE2B a6b4729cde8d341fe8c926f520b37ede82d677bdc3429467eefcec99ae12d706ba0c288ab8fe203fa19089c17ae7397864c5fc77b04efdc1a50861084987ff86 SHA512 a84c56b644ffae30e73f945719b524f546ea19a895b63b8d7c9b11bad95c7d2bf12956199b5a705980d9c227933ad0667478a62db8a0d15a7699febce3ba74a7
DIST coeurl-0.1.1.tar.bz2 45471 BLAKE2B ea5b490cb62ed780c4499d15c1f9502185f8edab9d706cc422eda62d9149512e693e82fa9431a05c58e2bb949314a9de0d513d54824a07c1e4ca6bc801065189 SHA512 9f781b30f57314253602b8560954122537b3c1d40cc327c62aac3662ba80ec8fe45fc69adec5c571b8861c996724c7869e4dc88fafc5ebee31794299de999e34
DIST coeurl-0.2.0.tar.bz2 45520 BLAKE2B 8a26f43817af213971c6c8d568251f3306857d9fa8ebdd09aa0a1f548c31b00fe1431334ff546ab152edd002f56d23d006240c494ad2ccaf9292afff97583a84 SHA512 de5f405b6993a33cf958996430d0f7a25cccb47488c3c2ce44525630e533a5acd1d630e2293cdae74befc627de81b211b4a9b6d53138f3de1d92f267f016e4fb

View File

@@ -0,0 +1,34 @@
# Copyright 2021-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit meson
DESCRIPTION="A simple async wrapper around CURL for C++"
HOMEPAGE="https://nheko.im/nheko-reborn/coeurl"
SRC_URI="https://nheko.im/nheko-reborn/coeurl/-/archive/v${PV}/${PN}-v${PV}.tar.bz2 -> ${P}.tar.bz2"
S="${WORKDIR}/${PN}-v${PV}"
LICENSE="MIT"
SLOT="0/${PV}" # ABI may break even on patch version changes.
KEYWORDS="~amd64"
IUSE="test"
RESTRICT="test" # Tests turned off because they need a local webserver.
RDEPEND="
net-misc/curl
dev-libs/libevent
dev-libs/spdlog
"
DEPEND="
${RDEPEND}
test? ( dev-cpp/doctest )
"
src_configure() {
local -a emesonargs=(
$(meson_use test tests)
)
meson_src_configure
}